diff --git a/README.md b/README.md index cfa91192c..6446b78d2 100644 --- a/README.md +++ b/README.md @@ -1,63 +1,79 @@ -Project description - About -This package is part of the Isilon SDK. It includes language bindings for easier programmatic access to the OneFS API for cluster configuration (on your cluster this is the REST API made up of all the URIs underneath https://[cluster]:8080/platform/*, also called the “Platform API” or “PAPI”). The SDK also includes language bindings for the OneFS RAN (i.e. RESTful Access to Namespace) interface, which provides access to the OneFS filesystem namespace. -Note: The package has been tested with Python 3.12 +----- + +This package is part of the Isilon SDK. It includes language bindings +for easier programmatic access to the OneFS API for cluster +configuration (on your cluster this is the REST API made up of all the +URIs underneath ``https://[cluster]:8080/platform/*``, also called the +"Platform API" or "PAPI"). The SDK also includes language bindings for +the OneFS RAN (i.e. RESTful Access to Namespace) interface, which +provides access to the OneFS filesystem namespace. Installation -pip install isilon_sdk +------------ + +``pip install isilon_sdk`` Example program -Please select the subpackage as applicable to the OneFS version of your cluster by referring to the below table: +--------------- + +Please select the subpackage as applicable to the OneFS version of your +cluster by referring to the below table: + + +OneFS Version and respective subpackage name are as: -OneFS Version and respective package names are as: +9.4.0.0: v9_4_0 -OneFS Release Package Name +9.5.0.0: v9_5_0 -9.5.0.0 isilon_sdk.v9_5_0 +9.6.0.0: v9_6_0 -9.6.0.0 isilon_sdk.v9_6_0 +9.7.0.0: v9_7_0 -9.7.0.0 isilon_sdk.v9_7_0 +9.8.0.0: v9_8_0 -9.8.0.0 isilon_sdk.v9_8_0 +9.9.0.0: v9_9_0 -9.9.0.0 isilon_sdk.v9_9_0 +Here’s an example of using the Python PAPI bindings to retrieve a list +of NFS exports from your clusters -9.10.0.0 isilon_sdk.v9_10_0 +:: -9.11.0.0 isilon_sdk.v9_11_0 + from __future__ import print_function -Here’s an example of using the Python PAPI bindings to retrieve a list of NFS exports from your clusters + from pprint import pprint + import time + import urllib3 -from __future__ import print_function + import isilon_sdk.v9_9_0 + from isilon_sdk.v9_9_0.rest import ApiException -from pprint import pprint -import time -import urllib3 + urllib3.disable_warnings() -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException + # configure cluster connection: basicAuth + configuration = isilon_sdk.v9_9_0.Configuration() + configuration.host = 'https://10.205.228.161:8080' + configuration.username = 'root' + configuration.password = 'a' + configuration.verify_ssl = False -urllib3.disable_warnings() + # create an instance of the API class + api_client = isilon_sdk.v9_9_0.ApiClient(configuration) + api_instance = isilon_sdk.v9_9_0.ProtocolsApi(api_client) -# configure cluster connection: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.host = 'https://10.205.228.161:8080' -configuration.username = 'root' -configuration.password = 'a' -configuration.verify_ssl = False + # get all exports + sort = 'description' + limit = 50 + order = 'ASC' + try: + api_response = api_instance.list_nfs_exports(sort=sort, limit=limit, dir=order) + pprint(api_response) + except ApiException as e: + print("Exception when calling ProtocolsApi->list_nfs_exports: %s\n" % e) -# create an instance of the API class -api_client = isilon_sdk.v9_11_0.ApiClient(configuration) -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(api_client) +More Info +--------------- +See the Github repo for more information: +https://github.com/isilon/isilon_sdk -# get all exports -sort = 'description' -limit = 50 -order = 'ASC' -try: - api_response = api_instance.list_nfs_exports(sort=sort, limit=limit, dir=order) - pprint(api_response) -except ApiException as e: - print("Exception when calling ProtocolsApi->list_nfs_exports: %s\n" % e) diff --git a/isilon_sdk/README.rst b/isilon_sdk/README.rst index 7443639a4..a37e1c5cf 100644 --- a/isilon_sdk/README.rst +++ b/isilon_sdk/README.rst @@ -25,13 +25,13 @@ OneFS Version and respective package names are as: ============= ================== OneFS Release Package Name +9.4.0.0 isilon_sdk.v9_4_0 9.5.0.0 isilon_sdk.v9_5_0 9.6.0.0 isilon_sdk.v9_6_0 9.7.0.0 isilon_sdk.v9_7_0 9.8.0.0 isilon_sdk.v9_8_0 9.9.0.0 isilon_sdk.v9_9_0 9.10.0.0 isilon_sdk.v9_10_0 -9.11.0.0 isilon_sdk.v9_11_0 ============= ================== Here’s an example of using the Python PAPI bindings to retrieve a list @@ -45,21 +45,21 @@ of NFS exports from your clusters import time import urllib3 - import isilon_sdk.v9_11_0 - from isilon_sdk.v9_11_0.rest import ApiException + import isilon_sdk.v9_9_0 + from isilon_sdk.v9_9_0.rest import ApiException urllib3.disable_warnings() # configure cluster connection: basicAuth - configuration = isilon_sdk.v9_11_0.Configuration() + configuration = isilon_sdk.v9_9_0.Configuration() configuration.host = 'https://10.205.228.161:8080' configuration.username = 'root' configuration.password = 'a' configuration.verify_ssl = False # create an instance of the API class - api_client = isilon_sdk.v9_11_0.ApiClient(configuration) - api_instance = isilon_sdk.v9_11_0.ProtocolsApi(api_client) + api_client = isilon_sdk.v9_9_0.ApiClient(configuration) + api_instance = isilon_sdk.v9_9_0.ProtocolsApi(api_client) # get all exports sort = 'description' diff --git a/isilon_sdk/isilon_sdk/v9_10_0/README.md b/isilon_sdk/isilon_sdk/v9_10_0/README.md index 8bb13bdf5..fef6f017b 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/README.md +++ b/isilon_sdk/isilon_sdk/v9_10_0/README.md @@ -18,7 +18,7 @@ Isilon SDK - Language bindings for the OneFS API This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project: - API version: 21 -- Package version: 0.6.0 +- Package version: 0.5.0 - Build package: io.swagger.codegen.languages.PythonClientCodegen For more information, please visit [https://github.com/Isilon/isilon_sdk](https://github.com/Isilon/isilon_sdk) @@ -1485,6 +1485,11 @@ Class | Method | HTTP request | Description - [ConfigUserExtended](docs/ConfigUserExtended.md) - [ConfigUserUser](docs/ConfigUserUser.md) - [ConnectivitySettings](docs/ConnectivitySettings.md) + - [ConnectivitySettingsContact](docs/ConnectivitySettingsContact.md) + - [ConnectivitySettingsContactExtended](docs/ConnectivitySettingsContactExtended.md) + - [ConnectivitySettingsContactPrimary](docs/ConnectivitySettingsContactPrimary.md) + - [ConnectivitySettingsContactPrimaryExtended](docs/ConnectivitySettingsContactPrimaryExtended.md) + - [ConnectivitySettingsExtended](docs/ConnectivitySettingsExtended.md) - [ConnectivityStatus](docs/ConnectivityStatus.md) - [ConnectivityStatusExtended](docs/ConnectivityStatusExtended.md) - [ConnectivityStatusStatus](docs/ConnectivityStatusStatus.md) @@ -2735,7 +2740,7 @@ sdk@isilon.com ## License -Copyright (c) 2025 Dell EMC Isilon +Copyright (c) 2018 Dell EMC Isilon Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/isilon_sdk/isilon_sdk/v9_10_0/__init__.py b/isilon_sdk/isilon_sdk/v9_10_0/__init__.py index 1eb46d23d..2b74c90bf 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/__init__.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/__init__.py @@ -358,6 +358,11 @@ from isilon_sdk.v9_10_0.models.config_user_extended import ConfigUserExtended from isilon_sdk.v9_10_0.models.config_user_user import ConfigUserUser from isilon_sdk.v9_10_0.models.connectivity_settings import ConnectivitySettings +from isilon_sdk.v9_10_0.models.connectivity_settings_contact import ConnectivitySettingsContact +from isilon_sdk.v9_10_0.models.connectivity_settings_contact_extended import ConnectivitySettingsContactExtended +from isilon_sdk.v9_10_0.models.connectivity_settings_contact_primary import ConnectivitySettingsContactPrimary +from isilon_sdk.v9_10_0.models.connectivity_settings_contact_primary_extended import ConnectivitySettingsContactPrimaryExtended +from isilon_sdk.v9_10_0.models.connectivity_settings_extended import ConnectivitySettingsExtended from isilon_sdk.v9_10_0.models.connectivity_status import ConnectivityStatus from isilon_sdk.v9_10_0.models.connectivity_status_extended import ConnectivityStatusExtended from isilon_sdk.v9_10_0.models.connectivity_status_status import ConnectivityStatusStatus diff --git a/isilon_sdk/isilon_sdk/v9_10_0/api/connectivity_api.py b/isilon_sdk/isilon_sdk/v9_10_0/api/connectivity_api.py index f4506a2a4..ebeab585b 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/api/connectivity_api.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/api/connectivity_api.py @@ -993,7 +993,7 @@ def update_connectivity_settings(self, connectivity_settings, **kwargs): # noqa >>> result = thread.get() :param async_req bool - :param SupportassistSettingsExtended connectivity_settings: (required) + :param ConnectivitySettingsExtended connectivity_settings: (required) :return: None If the method is called asynchronously, returns the request thread. @@ -1015,7 +1015,7 @@ def update_connectivity_settings_with_http_info(self, connectivity_settings, **k >>> result = thread.get() :param async_req bool - :param SupportassistSettingsExtended connectivity_settings: (required) + :param ConnectivitySettingsExtended connectivity_settings: (required) :return: None If the method is called asynchronously, returns the request thread. diff --git a/isilon_sdk/isilon_sdk/v9_10_0/api/namespace_api.py b/isilon_sdk/isilon_sdk/v9_10_0/api/namespace_api.py index b1abf8c8f..06b72c206 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/api/namespace_api.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/api/namespace_api.py @@ -1188,7 +1188,6 @@ def get_acl(self, namespace_path, acl, **kwargs): # noqa: E501 :param str namespace_path: Namespace path relative to /. (required) :param bool acl: Show access control lists. (required) :param bool nsaccess: Indicates that the operation is on the access point instead of the store path. - :param str zone: Specifies the access zone name. :return: NamespaceAcl If the method is called asynchronously, returns the request thread. @@ -1213,13 +1212,12 @@ def get_acl_with_http_info(self, namespace_path, acl, **kwargs): # noqa: E501 :param str namespace_path: Namespace path relative to /. (required) :param bool acl: Show access control lists. (required) :param bool nsaccess: Indicates that the operation is on the access point instead of the store path. - :param str zone: Specifies the access zone name. :return: NamespaceAcl If the method is called asynchronously, returns the request thread. """ - all_params = ['namespace_path', 'acl', 'nsaccess', 'zone'] # noqa: E501 + all_params = ['namespace_path', 'acl', 'nsaccess'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -1254,8 +1252,6 @@ def get_acl_with_http_info(self, namespace_path, acl, **kwargs): # noqa: E501 query_params.append(('acl', params['acl'])) # noqa: E501 if 'nsaccess' in params: query_params.append(('nsaccess', params['nsaccess'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -1536,7 +1532,6 @@ def get_directory_metadata(self, directory_metadata_path, metadata, **kwargs): :param async_req bool :param str directory_metadata_path: Directory path relative to /. (required) :param bool metadata: Show directory metadata. (required) - :param str zone: Specifies the access zone name. :return: NamespaceMetadataList If the method is called asynchronously, returns the request thread. @@ -1560,13 +1555,12 @@ def get_directory_metadata_with_http_info(self, directory_metadata_path, metadat :param async_req bool :param str directory_metadata_path: Directory path relative to /. (required) :param bool metadata: Show directory metadata. (required) - :param str zone: Specifies the access zone name. :return: NamespaceMetadataList If the method is called asynchronously, returns the request thread. """ - all_params = ['directory_metadata_path', 'metadata', 'zone'] # noqa: E501 + all_params = ['directory_metadata_path', 'metadata'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -1599,8 +1593,6 @@ def get_directory_metadata_with_http_info(self, directory_metadata_path, metadat query_params = [] if 'metadata' in params: query_params.append(('metadata', params['metadata'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -2000,7 +1992,6 @@ def get_file_metadata(self, file_metadata_path, metadata, **kwargs): # noqa: E5 :param async_req bool :param str file_metadata_path: File path relative to /. (required) :param bool metadata: Show file metadata. (required) - :param str zone: Specifies the access zone name. :return: NamespaceMetadataList If the method is called asynchronously, returns the request thread. @@ -2024,13 +2015,12 @@ def get_file_metadata_with_http_info(self, file_metadata_path, metadata, **kwarg :param async_req bool :param str file_metadata_path: File path relative to /. (required) :param bool metadata: Show file metadata. (required) - :param str zone: Specifies the access zone name. :return: NamespaceMetadataList If the method is called asynchronously, returns the request thread. """ - all_params = ['file_metadata_path', 'metadata', 'zone'] # noqa: E501 + all_params = ['file_metadata_path', 'metadata'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2063,8 +2053,6 @@ def get_file_metadata_with_http_info(self, file_metadata_path, metadata, **kwarg query_params = [] if 'metadata' in params: query_params.append(('metadata', params['metadata'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -2791,7 +2779,6 @@ def set_acl(self, namespace_path, acl, namespace_acl, **kwargs): # noqa: E501 :param bool acl: Update access control lists. (required) :param NamespaceAcl namespace_acl: Namespace ACL parameters model. (required) :param bool nsaccess: Indicates that the operation is on the access point instead of the store path. - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. @@ -2817,13 +2804,12 @@ def set_acl_with_http_info(self, namespace_path, acl, namespace_acl, **kwargs): :param bool acl: Update access control lists. (required) :param NamespaceAcl namespace_acl: Namespace ACL parameters model. (required) :param bool nsaccess: Indicates that the operation is on the access point instead of the store path. - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. """ - all_params = ['namespace_path', 'acl', 'namespace_acl', 'nsaccess', 'zone'] # noqa: E501 + all_params = ['namespace_path', 'acl', 'namespace_acl', 'nsaccess'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2862,8 +2848,6 @@ def set_acl_with_http_info(self, namespace_path, acl, namespace_acl, **kwargs): query_params.append(('acl', params['acl'])) # noqa: E501 if 'nsaccess' in params: query_params.append(('nsaccess', params['nsaccess'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -2913,7 +2897,6 @@ def set_directory_metadata(self, directory_metadata_path, metadata, directory_me :param str directory_metadata_path: Directory path relative to /. (required) :param bool metadata: Set directory metadata. (required) :param NamespaceMetadata directory_metadata: Directory metadata parameters model. (required) - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. @@ -2938,13 +2921,12 @@ def set_directory_metadata_with_http_info(self, directory_metadata_path, metadat :param str directory_metadata_path: Directory path relative to /. (required) :param bool metadata: Set directory metadata. (required) :param NamespaceMetadata directory_metadata: Directory metadata parameters model. (required) - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. """ - all_params = ['directory_metadata_path', 'metadata', 'directory_metadata', 'zone'] # noqa: E501 + all_params = ['directory_metadata_path', 'metadata', 'directory_metadata'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2981,8 +2963,6 @@ def set_directory_metadata_with_http_info(self, directory_metadata_path, metadat query_params = [] if 'metadata' in params: query_params.append(('metadata', params['metadata'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -3032,7 +3012,6 @@ def set_file_metadata(self, file_metadata_path, metadata, file_metadata, **kwarg :param str file_metadata_path: File path relative to /. (required) :param bool metadata: Set file metadata. (required) :param NamespaceMetadata file_metadata: File metadata parameters model. (required) - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. @@ -3057,13 +3036,12 @@ def set_file_metadata_with_http_info(self, file_metadata_path, metadata, file_me :param str file_metadata_path: File path relative to /. (required) :param bool metadata: Set file metadata. (required) :param NamespaceMetadata file_metadata: File metadata parameters model. (required) - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. """ - all_params = ['file_metadata_path', 'metadata', 'file_metadata', 'zone'] # noqa: E501 + all_params = ['file_metadata_path', 'metadata', 'file_metadata'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -3100,8 +3078,6 @@ def set_file_metadata_with_http_info(self, file_metadata_path, metadata, file_me query_params = [] if 'metadata' in params: query_params.append(('metadata', params['metadata'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} diff --git a/isilon_sdk/isilon_sdk/v9_10_0/api_client.py b/isilon_sdk/isilon_sdk/v9_10_0/api_client.py index 8543cb5d5..de411d5a0 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/api_client.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/api_client.py @@ -74,7 +74,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None, self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'Swagger-Codegen/0.6.0/python' + self.user_agent = 'Swagger-Codegen/0.5.0/python' # This is used for detecting for the special case of a path parameter # that is tagged with x-isi-url-encode-path-param (more details in the # __call_api function). diff --git a/isilon_sdk/isilon_sdk/v9_10_0/configuration.py b/isilon_sdk/isilon_sdk/v9_10_0/configuration.py index 86c5088f5..9d3d0b883 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/configuration.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/configuration.py @@ -260,5 +260,5 @@ def to_debug_report(self): "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: 21\n"\ - "SDK Package Version: 0.6.0".\ + "SDK Package Version: 0.5.0".\ format(env=sys.platform, pyversion=sys.version) diff --git a/isilon_sdk/isilon_sdk/v9_10_0/docs/ConnectivityApi.md b/isilon_sdk/isilon_sdk/v9_10_0/docs/ConnectivityApi.md index 4c1a02ef1..5a9a1dd0a 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/docs/ConnectivityApi.md +++ b/isilon_sdk/isilon_sdk/v9_10_0/docs/ConnectivityApi.md @@ -540,7 +540,7 @@ configuration.password = 'YOUR_PASSWORD' # create an instance of the API class api_instance = isilon_sdk.v9_10_0.ConnectivityApi(isilon_sdk.v9_10_0.ApiClient(configuration)) -connectivity_settings = isilon_sdk.v9_10_0.SupportassistSettingsExtended() # SupportassistSettingsExtended | +connectivity_settings = isilon_sdk.v9_10_0.ConnectivitySettingsExtended() # ConnectivitySettingsExtended | try: api_instance.update_connectivity_settings(connectivity_settings) @@ -552,7 +552,7 @@ except ApiException as e: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **connectivity_settings** | [**SupportassistSettingsExtended**](SupportassistSettingsExtended.md)| | + **connectivity_settings** | [**ConnectivitySettingsExtended**](ConnectivitySettingsExtended.md)| | ### Return type diff --git a/isilon_sdk/isilon_sdk/v9_10_0/docs/ConnectivitySettings.md b/isilon_sdk/isilon_sdk/v9_10_0/docs/ConnectivitySettings.md index 42a366517..bd529a70e 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/docs/ConnectivitySettings.md +++ b/isilon_sdk/isilon_sdk/v9_10_0/docs/ConnectivitySettings.md @@ -7,7 +7,7 @@ Name | Type | Description | Notes **connection** | [**SupportassistSettingsConnection**](SupportassistSettingsConnection.md) | | [optional] **connection_state** | **str** | connection state. | [optional] **connectivity_enabled** | **bool** | Whether Dell Technologies connectivity services is enabled | -**contact** | [**SupportassistSettingsContact**](SupportassistSettingsContact.md) | | [optional] +**contact** | [**ConnectivitySettingsContact**](ConnectivitySettingsContact.md) | | [optional] **enable_download** | **bool** | True indicates downloads are enabled | [optional] [default to True] **enable_remote_support** | **bool** | Whether remoteAccessEnabled is enabled | [optional] [default to False] **onefs_software_id** | **str** | The software ID used by Dell Technologies connectivity services | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_10_0/docs/ConnectivitySettingsContact.md b/isilon_sdk/isilon_sdk/v9_10_0/docs/ConnectivitySettingsContact.md new file mode 100644 index 000000000..18deac1e1 --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_10_0/docs/ConnectivitySettingsContact.md @@ -0,0 +1,11 @@ +# ConnectivitySettingsContact + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**primary** | [**ConnectivitySettingsContactPrimary**](ConnectivitySettingsContactPrimary.md) | | [optional] +**secondary** | [**ConnectivitySettingsContactPrimary**](ConnectivitySettingsContactPrimary.md) | | [optional] + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/isilon_sdk/isilon_sdk/v9_10_0/docs/ConnectivitySettingsContactExtended.md b/isilon_sdk/isilon_sdk/v9_10_0/docs/ConnectivitySettingsContactExtended.md new file mode 100644 index 000000000..556fbbde8 --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_10_0/docs/ConnectivitySettingsContactExtended.md @@ -0,0 +1,11 @@ +# ConnectivitySettingsContactExtended + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**primary** | [**ConnectivitySettingsContactPrimaryExtended**](ConnectivitySettingsContactPrimaryExtended.md) | | [optional] +**secondary** | [**ConnectivitySettingsContactPrimaryExtended**](ConnectivitySettingsContactPrimaryExtended.md) | | [optional] + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsContactPrimary.md b/isilon_sdk/isilon_sdk/v9_10_0/docs/ConnectivitySettingsContactPrimary.md similarity index 75% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsContactPrimary.md rename to isilon_sdk/isilon_sdk/v9_10_0/docs/ConnectivitySettingsContactPrimary.md index 4c4991d5d..dea49ae8a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsContactPrimary.md +++ b/isilon_sdk/isilon_sdk/v9_10_0/docs/ConnectivitySettingsContactPrimary.md @@ -1,12 +1,13 @@ -# SupportassistSettingsContactPrimary +# ConnectivitySettingsContactPrimary ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **email** | **str** | Contact's email address. | [optional] [default to ''] **first_name** | **str** | Contact's first name. | [optional] [default to ''] +**language** | **str** | | [optional] [default to ''] **last_name** | **str** | Contact's last name. | [optional] [default to ''] -**phone** | **str** | Contact's phone number. | [optional] +**phone** | **str** | Contact's phone number. | [optional] [default to ''] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsContactPrimaryExtended.md b/isilon_sdk/isilon_sdk/v9_10_0/docs/ConnectivitySettingsContactPrimaryExtended.md similarity index 71% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsContactPrimaryExtended.md rename to isilon_sdk/isilon_sdk/v9_10_0/docs/ConnectivitySettingsContactPrimaryExtended.md index 56221c9e3..49c8305c0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsContactPrimaryExtended.md +++ b/isilon_sdk/isilon_sdk/v9_10_0/docs/ConnectivitySettingsContactPrimaryExtended.md @@ -1,12 +1,13 @@ -# SupportassistSettingsContactPrimaryExtended +# ConnectivitySettingsContactPrimaryExtended ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**email** | **str** | Contact's email address. | [optional] +**email** | **str** | Contact's email address. | [optional] [default to ''] **first_name** | **str** | Contact's first name. | [optional] [default to ''] +**language** | **str** | | [optional] [default to 'En'] **last_name** | **str** | Contact's last name. | [optional] [default to ''] -**phone** | **str** | Contact's phone number. | [optional] +**phone** | **str** | Contact's phone number. | [optional] [default to ''] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsExtended.md b/isilon_sdk/isilon_sdk/v9_10_0/docs/ConnectivitySettingsExtended.md similarity index 87% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsExtended.md rename to isilon_sdk/isilon_sdk/v9_10_0/docs/ConnectivitySettingsExtended.md index 7f29fabec..e08437c86 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsExtended.md +++ b/isilon_sdk/isilon_sdk/v9_10_0/docs/ConnectivitySettingsExtended.md @@ -1,4 +1,4 @@ -# SupportassistSettingsExtended +# ConnectivitySettingsExtended ## Properties Name | Type | Description | Notes @@ -6,7 +6,7 @@ Name | Type | Description | Notes **automatic_case_creation** | **bool** | True indicates automatic case creation is enabled | [optional] [default to True] **connection** | [**SupportassistSettingsConnectionExtended**](SupportassistSettingsConnectionExtended.md) | | [optional] **connection_state** | **str** | Set connectivity state. | [optional] -**contact** | [**SupportassistSettingsContactExtended**](SupportassistSettingsContactExtended.md) | | [optional] +**contact** | [**ConnectivitySettingsContactExtended**](ConnectivitySettingsContactExtended.md) | | [optional] **enable_download** | **bool** | True indicates downloads are enabled | [optional] [default to True] **enable_remote_support** | **bool** | Allow remote support. | [optional] [default to False] **enable_service** | **bool** | Enable or disable Dell Technologies connectivity services. | [optional] [default to False] diff --git a/isilon_sdk/isilon_sdk/v9_10_0/docs/NamespaceApi.md b/isilon_sdk/isilon_sdk/v9_10_0/docs/NamespaceApi.md index 1ce49eeee..fb3f6c13e 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/docs/NamespaceApi.md +++ b/isilon_sdk/isilon_sdk/v9_10_0/docs/NamespaceApi.md @@ -613,7 +613,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_acl** -> NamespaceAcl get_acl(namespace_path, acl, nsaccess=nsaccess, zone=zone) +> NamespaceAcl get_acl(namespace_path, acl, nsaccess=nsaccess) @@ -637,10 +637,9 @@ api_instance = isilon_sdk.v9_10_0.NamespaceApi(isilon_sdk.v9_10_0.ApiClient(conf namespace_path = 'namespace_path_example' # str | Namespace path relative to /. acl = true # bool | Show access control lists. nsaccess = true # bool | Indicates that the operation is on the access point instead of the store path. (optional) -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.get_acl(namespace_path, acl, nsaccess=nsaccess, zone=zone) + api_response = api_instance.get_acl(namespace_path, acl, nsaccess=nsaccess) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->get_acl: %s\n" % e) @@ -653,7 +652,6 @@ Name | Type | Description | Notes **namespace_path** | **str**| Namespace path relative to /. | **acl** | **bool**| Show access control lists. | **nsaccess** | **bool**| Indicates that the operation is on the access point instead of the store path. | [optional] - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -793,7 +791,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_directory_metadata** -> NamespaceMetadataList get_directory_metadata(directory_metadata_path, metadata, zone=zone) +> NamespaceMetadataList get_directory_metadata(directory_metadata_path, metadata) @@ -816,10 +814,9 @@ configuration.password = 'YOUR_PASSWORD' api_instance = isilon_sdk.v9_10_0.NamespaceApi(isilon_sdk.v9_10_0.ApiClient(configuration)) directory_metadata_path = 'directory_metadata_path_example' # str | Directory path relative to /. metadata = true # bool | Show directory metadata. -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.get_directory_metadata(directory_metadata_path, metadata, zone=zone) + api_response = api_instance.get_directory_metadata(directory_metadata_path, metadata) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->get_directory_metadata: %s\n" % e) @@ -831,7 +828,6 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **directory_metadata_path** | **str**| Directory path relative to /. | **metadata** | **bool**| Show directory metadata. | - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -1031,7 +1027,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_file_metadata** -> NamespaceMetadataList get_file_metadata(file_metadata_path, metadata, zone=zone) +> NamespaceMetadataList get_file_metadata(file_metadata_path, metadata) @@ -1054,10 +1050,9 @@ configuration.password = 'YOUR_PASSWORD' api_instance = isilon_sdk.v9_10_0.NamespaceApi(isilon_sdk.v9_10_0.ApiClient(configuration)) file_metadata_path = 'file_metadata_path_example' # str | File path relative to /. metadata = true # bool | Show file metadata. -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.get_file_metadata(file_metadata_path, metadata, zone=zone) + api_response = api_instance.get_file_metadata(file_metadata_path, metadata) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->get_file_metadata: %s\n" % e) @@ -1069,7 +1064,6 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **file_metadata_path** | **str**| File path relative to /. | **metadata** | **bool**| Show file metadata. | - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -1429,7 +1423,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **set_acl** -> Empty set_acl(namespace_path, acl, namespace_acl, nsaccess=nsaccess, zone=zone) +> Empty set_acl(namespace_path, acl, namespace_acl, nsaccess=nsaccess) @@ -1454,10 +1448,9 @@ namespace_path = 'namespace_path_example' # str | Namespace path relative to /. acl = true # bool | Update access control lists. namespace_acl = isilon_sdk.v9_10_0.NamespaceAcl() # NamespaceAcl | Namespace ACL parameters model. nsaccess = true # bool | Indicates that the operation is on the access point instead of the store path. (optional) -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.set_acl(namespace_path, acl, namespace_acl, nsaccess=nsaccess, zone=zone) + api_response = api_instance.set_acl(namespace_path, acl, namespace_acl, nsaccess=nsaccess) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->set_acl: %s\n" % e) @@ -1471,7 +1464,6 @@ Name | Type | Description | Notes **acl** | **bool**| Update access control lists. | **namespace_acl** | [**NamespaceAcl**](NamespaceAcl.md)| Namespace ACL parameters model. | **nsaccess** | **bool**| Indicates that the operation is on the access point instead of the store path. | [optional] - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -1489,7 +1481,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **set_directory_metadata** -> Empty set_directory_metadata(directory_metadata_path, metadata, directory_metadata, zone=zone) +> Empty set_directory_metadata(directory_metadata_path, metadata, directory_metadata) @@ -1513,10 +1505,9 @@ api_instance = isilon_sdk.v9_10_0.NamespaceApi(isilon_sdk.v9_10_0.ApiClient(conf directory_metadata_path = 'directory_metadata_path_example' # str | Directory path relative to /. metadata = true # bool | Set directory metadata. directory_metadata = isilon_sdk.v9_10_0.NamespaceMetadata() # NamespaceMetadata | Directory metadata parameters model. -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.set_directory_metadata(directory_metadata_path, metadata, directory_metadata, zone=zone) + api_response = api_instance.set_directory_metadata(directory_metadata_path, metadata, directory_metadata) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->set_directory_metadata: %s\n" % e) @@ -1529,7 +1520,6 @@ Name | Type | Description | Notes **directory_metadata_path** | **str**| Directory path relative to /. | **metadata** | **bool**| Set directory metadata. | **directory_metadata** | [**NamespaceMetadata**](NamespaceMetadata.md)| Directory metadata parameters model. | - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -1547,7 +1537,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **set_file_metadata** -> Empty set_file_metadata(file_metadata_path, metadata, file_metadata, zone=zone) +> Empty set_file_metadata(file_metadata_path, metadata, file_metadata) @@ -1571,10 +1561,9 @@ api_instance = isilon_sdk.v9_10_0.NamespaceApi(isilon_sdk.v9_10_0.ApiClient(conf file_metadata_path = 'file_metadata_path_example' # str | File path relative to /. metadata = true # bool | Set file metadata. file_metadata = isilon_sdk.v9_10_0.NamespaceMetadata() # NamespaceMetadata | File metadata parameters model. -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.set_file_metadata(file_metadata_path, metadata, file_metadata, zone=zone) + api_response = api_instance.set_file_metadata(file_metadata_path, metadata, file_metadata) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->set_file_metadata: %s\n" % e) @@ -1587,7 +1576,6 @@ Name | Type | Description | Notes **file_metadata_path** | **str**| File path relative to /. | **metadata** | **bool**| Set file metadata. | **file_metadata** | [**NamespaceMetadata**](NamespaceMetadata.md)| File metadata parameters model. | - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type diff --git a/isilon_sdk/isilon_sdk/v9_10_0/docs/SupportassistSettingsContactPrimary.md b/isilon_sdk/isilon_sdk/v9_10_0/docs/SupportassistSettingsContactPrimary.md index 4c4991d5d..91e4979e1 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/docs/SupportassistSettingsContactPrimary.md +++ b/isilon_sdk/isilon_sdk/v9_10_0/docs/SupportassistSettingsContactPrimary.md @@ -6,7 +6,7 @@ Name | Type | Description | Notes **email** | **str** | Contact's email address. | [optional] [default to ''] **first_name** | **str** | Contact's first name. | [optional] [default to ''] **last_name** | **str** | Contact's last name. | [optional] [default to ''] -**phone** | **str** | Contact's phone number. | [optional] +**phone** | **str** | Contact's phone number. | [optional] [default to ''] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/__init__.py b/isilon_sdk/isilon_sdk/v9_10_0/models/__init__.py index 882b201b3..e2b8a1e2d 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/__init__.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/__init__.py @@ -275,6 +275,11 @@ from isilon_sdk.v9_10_0.models.config_user_extended import ConfigUserExtended from isilon_sdk.v9_10_0.models.config_user_user import ConfigUserUser from isilon_sdk.v9_10_0.models.connectivity_settings import ConnectivitySettings +from isilon_sdk.v9_10_0.models.connectivity_settings_contact import ConnectivitySettingsContact +from isilon_sdk.v9_10_0.models.connectivity_settings_contact_extended import ConnectivitySettingsContactExtended +from isilon_sdk.v9_10_0.models.connectivity_settings_contact_primary import ConnectivitySettingsContactPrimary +from isilon_sdk.v9_10_0.models.connectivity_settings_contact_primary_extended import ConnectivitySettingsContactPrimaryExtended +from isilon_sdk.v9_10_0.models.connectivity_settings_extended import ConnectivitySettingsExtended from isilon_sdk.v9_10_0.models.connectivity_status import ConnectivityStatus from isilon_sdk.v9_10_0.models.connectivity_status_extended import ConnectivityStatusExtended from isilon_sdk.v9_10_0.models.connectivity_status_status import ConnectivityStatusStatus diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/changelist_entry.py b/isilon_sdk/isilon_sdk/v9_10_0/models/changelist_entry.py index 25903e4fb..836156074 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/changelist_entry.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/changelist_entry.py @@ -554,6 +554,8 @@ def physical_size(self, physical_size): """ if physical_size is None: raise ValueError("Invalid value for `physical_size`, must not be `None`") # noqa: E501 + if physical_size is not None and physical_size > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `physical_size`, must be a value less than or equal to `4294967295`") # noqa: E501 if physical_size is not None and physical_size < 0: # noqa: E501 raise ValueError("Invalid value for `physical_size`, must be a value greater than or equal to `0`") # noqa: E501 @@ -581,6 +583,8 @@ def size(self, size): """ if size is None: raise ValueError("Invalid value for `size`, must not be `None`") # noqa: E501 + if size is not None and size > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `size`, must be a value less than or equal to `4294967295`") # noqa: E501 if size is not None and size < 0: # noqa: E501 raise ValueError("Invalid value for `size`, must be a value greater than or equal to `0`") # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_email_extended.py b/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_email_extended.py index a07393be6..2ec70f367 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_email_extended.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_email_extended.py @@ -141,8 +141,8 @@ def mail_relay(self, mail_relay): :param mail_relay: The mail_relay of this ClusterEmailExtended. # noqa: E501 :type: str """ - if mail_relay is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', mail_relay): # noqa: E501 - raise ValueError(r"Invalid value for `mail_relay`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if mail_relay is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', mail_relay): # noqa: E501 + raise ValueError(r"Invalid value for `mail_relay`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._mail_relay = mail_relay @@ -170,8 +170,8 @@ def mail_sender(self, mail_sender): raise ValueError("Invalid value for `mail_sender`, length must be less than or equal to `254`") # noqa: E501 if mail_sender is not None and len(mail_sender) < 3: raise ValueError("Invalid value for `mail_sender`, length must be greater than or equal to `3`") # noqa: E501 - if mail_sender is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', mail_sender): # noqa: E501 - raise ValueError(r"Invalid value for `mail_sender`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if mail_sender is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', mail_sender): # noqa: E501 + raise ValueError(r"Invalid value for `mail_sender`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._mail_sender = mail_sender @@ -278,8 +278,8 @@ def smtp_auth_username(self, smtp_auth_username): raise ValueError("Invalid value for `smtp_auth_username`, length must be less than or equal to `256`") # noqa: E501 if smtp_auth_username is not None and len(smtp_auth_username) < 1: raise ValueError("Invalid value for `smtp_auth_username`, length must be greater than or equal to `1`") # noqa: E501 - if smtp_auth_username is not None and not re.search(r'^[a-zA-Z0-9!@#%^&(){}~`_ .-]+$', smtp_auth_username): # noqa: E501 - raise ValueError(r"Invalid value for `smtp_auth_username`, must be a follow pattern or equal to `/^[a-zA-Z0-9!@#%^&(){}~`_ .-]+$/`") # noqa: E501 + if smtp_auth_username is not None and not re.search(r'^[^]\"\/\\[\\:;|=,+*?<>$]+', smtp_auth_username): # noqa: E501 + raise ValueError(r"Invalid value for `smtp_auth_username`, must be a follow pattern or equal to `/^[^]\"\/\\[\\:;|=,+*?<>$]+/`") # noqa: E501 self._smtp_auth_username = smtp_auth_username diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_email_settings.py b/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_email_settings.py index 3ff8657bc..36d247c06 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_email_settings.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_email_settings.py @@ -136,8 +136,8 @@ def mail_relay(self, mail_relay): """ if mail_relay is None: raise ValueError("Invalid value for `mail_relay`, must not be `None`") # noqa: E501 - if mail_relay is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', mail_relay): # noqa: E501 - raise ValueError(r"Invalid value for `mail_relay`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if mail_relay is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', mail_relay): # noqa: E501 + raise ValueError(r"Invalid value for `mail_relay`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._mail_relay = mail_relay diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_internal_networks_failover_ip_addresse.py b/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_internal_networks_failover_ip_addresse.py index dc4dc8b66..0025785be 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_internal_networks_failover_ip_addresse.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_internal_networks_failover_ip_addresse.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_internal_networks_failover_ip_addresse_extended.py b/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_internal_networks_failover_ip_addresse_extended.py index 293f52cb7..3210dbc18 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_internal_networks_failover_ip_addresse_extended.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_internal_networks_failover_ip_addresse_extended.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_internal_networks_int_a_ip_addresse.py b/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_internal_networks_int_a_ip_addresse.py index 7baf18bce..2fc43526d 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_internal_networks_int_a_ip_addresse.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_internal_networks_int_a_ip_addresse.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py b/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py index 8cfd1ab5a..9e6964932 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_internal_networks_int_b_ip_addresse.py b/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_internal_networks_int_b_ip_addresse.py index a781b1c54..55048f3b1 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_internal_networks_int_b_ip_addresse.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_internal_networks_int_b_ip_addresse.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py b/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py index 4116b6330..94d37f8dc 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_mode_settings.py b/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_mode_settings.py index 4f1a02c6b..cf1de1970 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_mode_settings.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_mode_settings.py @@ -84,8 +84,8 @@ def cloud_storage_console(self, cloud_storage_console): raise ValueError("Invalid value for `cloud_storage_console`, length must be less than or equal to `2048`") # noqa: E501 if cloud_storage_console is not None and len(cloud_storage_console) < 11: raise ValueError("Invalid value for `cloud_storage_console`, length must be greater than or equal to `11`") # noqa: E501 - if cloud_storage_console is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', cloud_storage_console): # noqa: E501 - raise ValueError(r"Invalid value for `cloud_storage_console`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if cloud_storage_console is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', cloud_storage_console): # noqa: E501 + raise ValueError(r"Invalid value for `cloud_storage_console`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._cloud_storage_console = cloud_storage_console @@ -111,8 +111,8 @@ def monitoring(self, monitoring): raise ValueError("Invalid value for `monitoring`, length must be less than or equal to `2048`") # noqa: E501 if monitoring is not None and len(monitoring) < 11: raise ValueError("Invalid value for `monitoring`, length must be greater than or equal to `11`") # noqa: E501 - if monitoring is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', monitoring): # noqa: E501 - raise ValueError(r"Invalid value for `monitoring`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if monitoring is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', monitoring): # noqa: E501 + raise ValueError(r"Invalid value for `monitoring`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._monitoring = monitoring @@ -161,8 +161,8 @@ def support(self, support): raise ValueError("Invalid value for `support`, length must be less than or equal to `2048`") # noqa: E501 if support is not None and len(support) < 11: raise ValueError("Invalid value for `support`, length must be greater than or equal to `11`") # noqa: E501 - if support is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', support): # noqa: E501 - raise ValueError(r"Invalid value for `support`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if support is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', support): # noqa: E501 + raise ValueError(r"Invalid value for `support`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._support = support diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_mode_settings_extended.py b/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_mode_settings_extended.py index 580e3fb94..818112a68 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_mode_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_mode_settings_extended.py @@ -79,8 +79,8 @@ def cloud_storage_console(self, cloud_storage_console): raise ValueError("Invalid value for `cloud_storage_console`, length must be less than or equal to `2048`") # noqa: E501 if cloud_storage_console is not None and len(cloud_storage_console) < 11: raise ValueError("Invalid value for `cloud_storage_console`, length must be greater than or equal to `11`") # noqa: E501 - if cloud_storage_console is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', cloud_storage_console): # noqa: E501 - raise ValueError(r"Invalid value for `cloud_storage_console`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if cloud_storage_console is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', cloud_storage_console): # noqa: E501 + raise ValueError(r"Invalid value for `cloud_storage_console`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._cloud_storage_console = cloud_storage_console @@ -106,8 +106,8 @@ def monitoring(self, monitoring): raise ValueError("Invalid value for `monitoring`, length must be less than or equal to `2048`") # noqa: E501 if monitoring is not None and len(monitoring) < 11: raise ValueError("Invalid value for `monitoring`, length must be greater than or equal to `11`") # noqa: E501 - if monitoring is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', monitoring): # noqa: E501 - raise ValueError(r"Invalid value for `monitoring`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if monitoring is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', monitoring): # noqa: E501 + raise ValueError(r"Invalid value for `monitoring`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._monitoring = monitoring @@ -133,8 +133,8 @@ def support(self, support): raise ValueError("Invalid value for `support`, length must be less than or equal to `2048`") # noqa: E501 if support is not None and len(support) < 11: raise ValueError("Invalid value for `support`, length must be greater than or equal to `11`") # noqa: E501 - if support is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', support): # noqa: E501 - raise ValueError(r"Invalid value for `support`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if support is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', support): # noqa: E501 + raise ValueError(r"Invalid value for `support`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._support = support diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_node.py b/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_node.py index 0c1db43a8..7abf1decc 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_node.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_node.py @@ -218,8 +218,8 @@ def internal_ip_address(self, internal_ip_address): raise ValueError("Invalid value for `internal_ip_address`, length must be less than or equal to `45`") # noqa: E501 if internal_ip_address is not None and len(internal_ip_address) < 2: raise ValueError("Invalid value for `internal_ip_address`, length must be greater than or equal to `2`") # noqa: E501 - if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 - raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 + raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._internal_ip_address = internal_ip_address diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_node_extended.py b/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_node_extended.py index 67e54ddff..4296a1707 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_node_extended.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/cluster_node_extended.py @@ -218,8 +218,8 @@ def internal_ip_address(self, internal_ip_address): raise ValueError("Invalid value for `internal_ip_address`, length must be less than or equal to `45`") # noqa: E501 if internal_ip_address is not None and len(internal_ip_address) < 2: raise ValueError("Invalid value for `internal_ip_address`, length must be greater than or equal to `2`") # noqa: E501 - if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 - raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 + raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._internal_ip_address = internal_ip_address diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/config_network_network.py b/isilon_sdk/isilon_sdk/v9_10_0/models/config_network_network.py index a4a6218c4..840f01ee2 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/config_network_network.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/config_network_network.py @@ -81,8 +81,8 @@ def gateway(self, gateway): raise ValueError("Invalid value for `gateway`, length must be less than or equal to `45`") # noqa: E501 if gateway is not None and len(gateway) < 2: raise ValueError("Invalid value for `gateway`, length must be greater than or equal to `2`") # noqa: E501 - if gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', gateway): # noqa: E501 - raise ValueError(r"Invalid value for `gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', gateway): # noqa: E501 + raise ValueError(r"Invalid value for `gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._gateway = gateway diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/config_network_network_range.py b/isilon_sdk/isilon_sdk/v9_10_0/models/config_network_network_range.py index 378d446c3..573f0ea34 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/config_network_network_range.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/config_network_network_range.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -105,8 +105,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/config_node.py b/isilon_sdk/isilon_sdk/v9_10_0/models/config_node.py index ead9f83fb..c63bf88ac 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/config_node.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/config_node.py @@ -118,8 +118,8 @@ def ip_addr(self, ip_addr): raise ValueError("Invalid value for `ip_addr`, length must be less than or equal to `45`") # noqa: E501 if ip_addr is not None and len(ip_addr) < 2: raise ValueError("Invalid value for `ip_addr`, length must be greater than or equal to `2`") # noqa: E501 - if ip_addr is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ip_addr): # noqa: E501 - raise ValueError(r"Invalid value for `ip_addr`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if ip_addr is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ip_addr): # noqa: E501 + raise ValueError(r"Invalid value for `ip_addr`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._ip_addr = ip_addr diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/connectivity_settings.py b/isilon_sdk/isilon_sdk/v9_10_0/models/connectivity_settings.py index b6752f15f..05e004953 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/connectivity_settings.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/connectivity_settings.py @@ -35,7 +35,7 @@ class ConnectivitySettings(object): 'connection': 'SupportassistSettingsConnection', 'connection_state': 'str', 'connectivity_enabled': 'bool', - 'contact': 'SupportassistSettingsContact', + 'contact': 'ConnectivitySettingsContact', 'enable_download': 'bool', 'enable_remote_support': 'bool', 'onefs_software_id': 'str', @@ -193,7 +193,7 @@ def contact(self): # noqa: E501 :return: The contact of this ConnectivitySettings. # noqa: E501 - :rtype: SupportassistSettingsContact + :rtype: ConnectivitySettingsContact """ return self._contact @@ -204,7 +204,7 @@ def contact(self, contact): # noqa: E501 :param contact: The contact of this ConnectivitySettings. # noqa: E501 - :type: SupportassistSettingsContact + :type: ConnectivitySettingsContact """ self._contact = contact diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_contact.py b/isilon_sdk/isilon_sdk/v9_10_0/models/connectivity_settings_contact.py similarity index 71% rename from isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_contact.py rename to isilon_sdk/isilon_sdk/v9_10_0/models/connectivity_settings_contact.py index 7ec6d14c5..2242c28a6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_contact.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/connectivity_settings_contact.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 21 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class SupportassistSettingsContact(object): +class ConnectivitySettingsContact(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -31,8 +31,8 @@ class SupportassistSettingsContact(object): and the value is json key in definition. """ swagger_types = { - 'primary': 'SupportassistSettingsContactPrimary', - 'secondary': 'SupportassistSettingsContactPrimary' + 'primary': 'ConnectivitySettingsContactPrimary', + 'secondary': 'ConnectivitySettingsContactPrimary' } attribute_map = { @@ -41,7 +41,7 @@ class SupportassistSettingsContact(object): } def __init__(self, primary=None, secondary=None): # noqa: E501 - """SupportassistSettingsContact - a model defined in Swagger""" # noqa: E501 + """ConnectivitySettingsContact - a model defined in Swagger""" # noqa: E501 self._primary = None self._secondary = None @@ -54,46 +54,46 @@ def __init__(self, primary=None, secondary=None): # noqa: E501 @property def primary(self): - """Gets the primary of this SupportassistSettingsContact. # noqa: E501 + """Gets the primary of this ConnectivitySettingsContact. # noqa: E501 # noqa: E501 - :return: The primary of this SupportassistSettingsContact. # noqa: E501 - :rtype: SupportassistSettingsContactPrimary + :return: The primary of this ConnectivitySettingsContact. # noqa: E501 + :rtype: ConnectivitySettingsContactPrimary """ return self._primary @primary.setter def primary(self, primary): - """Sets the primary of this SupportassistSettingsContact. + """Sets the primary of this ConnectivitySettingsContact. # noqa: E501 - :param primary: The primary of this SupportassistSettingsContact. # noqa: E501 - :type: SupportassistSettingsContactPrimary + :param primary: The primary of this ConnectivitySettingsContact. # noqa: E501 + :type: ConnectivitySettingsContactPrimary """ self._primary = primary @property def secondary(self): - """Gets the secondary of this SupportassistSettingsContact. # noqa: E501 + """Gets the secondary of this ConnectivitySettingsContact. # noqa: E501 # noqa: E501 - :return: The secondary of this SupportassistSettingsContact. # noqa: E501 - :rtype: SupportassistSettingsContactPrimary + :return: The secondary of this ConnectivitySettingsContact. # noqa: E501 + :rtype: ConnectivitySettingsContactPrimary """ return self._secondary @secondary.setter def secondary(self, secondary): - """Sets the secondary of this SupportassistSettingsContact. + """Sets the secondary of this ConnectivitySettingsContact. # noqa: E501 - :param secondary: The secondary of this SupportassistSettingsContact. # noqa: E501 - :type: SupportassistSettingsContactPrimary + :param secondary: The secondary of this ConnectivitySettingsContact. # noqa: E501 + :type: ConnectivitySettingsContactPrimary """ self._secondary = secondary @@ -119,7 +119,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(SupportassistSettingsContact, dict): + if issubclass(ConnectivitySettingsContact, dict): for key, value in self.items(): result[key] = value @@ -135,7 +135,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, SupportassistSettingsContact): + if not isinstance(other, ConnectivitySettingsContact): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_contact_extended.py b/isilon_sdk/isilon_sdk/v9_10_0/models/connectivity_settings_contact_extended.py similarity index 69% rename from isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_contact_extended.py rename to isilon_sdk/isilon_sdk/v9_10_0/models/connectivity_settings_contact_extended.py index 1a37ae479..53bc507cb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_contact_extended.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/connectivity_settings_contact_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 21 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class SupportassistSettingsContactExtended(object): +class ConnectivitySettingsContactExtended(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -31,8 +31,8 @@ class SupportassistSettingsContactExtended(object): and the value is json key in definition. """ swagger_types = { - 'primary': 'SupportassistSettingsContactPrimaryExtended', - 'secondary': 'SupportassistSettingsContactPrimaryExtended' + 'primary': 'ConnectivitySettingsContactPrimaryExtended', + 'secondary': 'ConnectivitySettingsContactPrimaryExtended' } attribute_map = { @@ -41,7 +41,7 @@ class SupportassistSettingsContactExtended(object): } def __init__(self, primary=None, secondary=None): # noqa: E501 - """SupportassistSettingsContactExtended - a model defined in Swagger""" # noqa: E501 + """ConnectivitySettingsContactExtended - a model defined in Swagger""" # noqa: E501 self._primary = None self._secondary = None @@ -54,46 +54,46 @@ def __init__(self, primary=None, secondary=None): # noqa: E501 @property def primary(self): - """Gets the primary of this SupportassistSettingsContactExtended. # noqa: E501 + """Gets the primary of this ConnectivitySettingsContactExtended. # noqa: E501 # noqa: E501 - :return: The primary of this SupportassistSettingsContactExtended. # noqa: E501 - :rtype: SupportassistSettingsContactPrimaryExtended + :return: The primary of this ConnectivitySettingsContactExtended. # noqa: E501 + :rtype: ConnectivitySettingsContactPrimaryExtended """ return self._primary @primary.setter def primary(self, primary): - """Sets the primary of this SupportassistSettingsContactExtended. + """Sets the primary of this ConnectivitySettingsContactExtended. # noqa: E501 - :param primary: The primary of this SupportassistSettingsContactExtended. # noqa: E501 - :type: SupportassistSettingsContactPrimaryExtended + :param primary: The primary of this ConnectivitySettingsContactExtended. # noqa: E501 + :type: ConnectivitySettingsContactPrimaryExtended """ self._primary = primary @property def secondary(self): - """Gets the secondary of this SupportassistSettingsContactExtended. # noqa: E501 + """Gets the secondary of this ConnectivitySettingsContactExtended. # noqa: E501 # noqa: E501 - :return: The secondary of this SupportassistSettingsContactExtended. # noqa: E501 - :rtype: SupportassistSettingsContactPrimaryExtended + :return: The secondary of this ConnectivitySettingsContactExtended. # noqa: E501 + :rtype: ConnectivitySettingsContactPrimaryExtended """ return self._secondary @secondary.setter def secondary(self, secondary): - """Sets the secondary of this SupportassistSettingsContactExtended. + """Sets the secondary of this ConnectivitySettingsContactExtended. # noqa: E501 - :param secondary: The secondary of this SupportassistSettingsContactExtended. # noqa: E501 - :type: SupportassistSettingsContactPrimaryExtended + :param secondary: The secondary of this ConnectivitySettingsContactExtended. # noqa: E501 + :type: ConnectivitySettingsContactPrimaryExtended """ self._secondary = secondary @@ -119,7 +119,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(SupportassistSettingsContactExtended, dict): + if issubclass(ConnectivitySettingsContactExtended, dict): for key, value in self.items(): result[key] = value @@ -135,7 +135,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, SupportassistSettingsContactExtended): + if not isinstance(other, ConnectivitySettingsContactExtended): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_contact_primary.py b/isilon_sdk/isilon_sdk/v9_10_0/models/connectivity_settings_contact_primary.py similarity index 62% rename from isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_contact_primary.py rename to isilon_sdk/isilon_sdk/v9_10_0/models/connectivity_settings_contact_primary.py index 01d261d6c..d814b79bb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_contact_primary.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/connectivity_settings_contact_primary.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 21 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class SupportassistSettingsContactPrimary(object): +class ConnectivitySettingsContactPrimary(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -33,6 +33,7 @@ class SupportassistSettingsContactPrimary(object): swagger_types = { 'email': 'str', 'first_name': 'str', + 'language': 'str', 'last_name': 'str', 'phone': 'str' } @@ -40,15 +41,17 @@ class SupportassistSettingsContactPrimary(object): attribute_map = { 'email': 'email', 'first_name': 'first_name', + 'language': 'language', 'last_name': 'last_name', 'phone': 'phone' } - def __init__(self, email='', first_name='', last_name='', phone=None): # noqa: E501 - """SupportassistSettingsContactPrimary - a model defined in Swagger""" # noqa: E501 + def __init__(self, email='', first_name='', language='', last_name='', phone=''): # noqa: E501 + """ConnectivitySettingsContactPrimary - a model defined in Swagger""" # noqa: E501 self._email = None self._first_name = None + self._language = None self._last_name = None self._phone = None self.discriminator = None @@ -57,6 +60,8 @@ def __init__(self, email='', first_name='', last_name='', phone=None): # noqa: self.email = email if first_name is not None: self.first_name = first_name + if language is not None: + self.language = language if last_name is not None: self.last_name = last_name if phone is not None: @@ -64,115 +69,144 @@ def __init__(self, email='', first_name='', last_name='', phone=None): # noqa: @property def email(self): - """Gets the email of this SupportassistSettingsContactPrimary. # noqa: E501 + """Gets the email of this ConnectivitySettingsContactPrimary. # noqa: E501 Contact's email address. # noqa: E501 - :return: The email of this SupportassistSettingsContactPrimary. # noqa: E501 + :return: The email of this ConnectivitySettingsContactPrimary. # noqa: E501 :rtype: str """ return self._email @email.setter def email(self, email): - """Sets the email of this SupportassistSettingsContactPrimary. + """Sets the email of this ConnectivitySettingsContactPrimary. Contact's email address. # noqa: E501 - :param email: The email of this SupportassistSettingsContactPrimary. # noqa: E501 + :param email: The email of this ConnectivitySettingsContactPrimary. # noqa: E501 :type: str """ if email is not None and len(email) > 320: raise ValueError("Invalid value for `email`, length must be less than or equal to `320`") # noqa: E501 if email is not None and len(email) < 0: raise ValueError("Invalid value for `email`, length must be greater than or equal to `0`") # noqa: E501 - if email is not None and not re.search(r'(^$|^([a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+[.])+[a-zA-Z0-9]+$))', email): # noqa: E501 - raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/(^$|^([a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+[.])+[a-zA-Z0-9]+$))/`") # noqa: E501 + if email is not None and not re.search(r'(^$|^([a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]+$))', email): # noqa: E501 + raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/(^$|^([a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]+$))/`") # noqa: E501 self._email = email @property def first_name(self): - """Gets the first_name of this SupportassistSettingsContactPrimary. # noqa: E501 + """Gets the first_name of this ConnectivitySettingsContactPrimary. # noqa: E501 Contact's first name. # noqa: E501 - :return: The first_name of this SupportassistSettingsContactPrimary. # noqa: E501 + :return: The first_name of this ConnectivitySettingsContactPrimary. # noqa: E501 :rtype: str """ return self._first_name @first_name.setter def first_name(self, first_name): - """Sets the first_name of this SupportassistSettingsContactPrimary. + """Sets the first_name of this ConnectivitySettingsContactPrimary. Contact's first name. # noqa: E501 - :param first_name: The first_name of this SupportassistSettingsContactPrimary. # noqa: E501 + :param first_name: The first_name of this ConnectivitySettingsContactPrimary. # noqa: E501 :type: str """ if first_name is not None and len(first_name) > 50: raise ValueError("Invalid value for `first_name`, length must be less than or equal to `50`") # noqa: E501 if first_name is not None and len(first_name) < 0: raise ValueError("Invalid value for `first_name`, length must be greater than or equal to `0`") # noqa: E501 - if first_name is not None and not re.search(r'[a-zA-Z]*[-.\']*', first_name): # noqa: E501 - raise ValueError(r"Invalid value for `first_name`, must be a follow pattern or equal to `/[a-zA-Z]*[-.']*/`") # noqa: E501 + if first_name is not None and not re.search(r'[\\p{L}\\p{M}*\\-\\.\\\' ]*', first_name): # noqa: E501 + raise ValueError(r"Invalid value for `first_name`, must be a follow pattern or equal to `/[\\p{L}\\p{M}*\\-\\.\\' ]*/`") # noqa: E501 self._first_name = first_name + @property + def language(self): + """Gets the language of this ConnectivitySettingsContactPrimary. # noqa: E501 + + + :return: The language of this ConnectivitySettingsContactPrimary. # noqa: E501 + :rtype: str + """ + return self._language + + @language.setter + def language(self, language): + """Sets the language of this ConnectivitySettingsContactPrimary. + + + :param language: The language of this ConnectivitySettingsContactPrimary. # noqa: E501 + :type: str + """ + allowed_values = ["Cs", "Da", "De", "El", "En", "Es", "es-LA", "Fi", "fr-CA", "He", "It", "Ja", "Ko", "Nl", "No", "Pl", "Pt", "pt-BR", "Ru", "Sk", "Sv", "Th", "Tr", "zh-CN", "zh-TW"] # noqa: E501 + if language not in allowed_values: + raise ValueError( + "Invalid value for `language` ({0}), must be one of {1}" # noqa: E501 + .format(language, allowed_values) + ) + + self._language = language + @property def last_name(self): - """Gets the last_name of this SupportassistSettingsContactPrimary. # noqa: E501 + """Gets the last_name of this ConnectivitySettingsContactPrimary. # noqa: E501 Contact's last name. # noqa: E501 - :return: The last_name of this SupportassistSettingsContactPrimary. # noqa: E501 + :return: The last_name of this ConnectivitySettingsContactPrimary. # noqa: E501 :rtype: str """ return self._last_name @last_name.setter def last_name(self, last_name): - """Sets the last_name of this SupportassistSettingsContactPrimary. + """Sets the last_name of this ConnectivitySettingsContactPrimary. Contact's last name. # noqa: E501 - :param last_name: The last_name of this SupportassistSettingsContactPrimary. # noqa: E501 + :param last_name: The last_name of this ConnectivitySettingsContactPrimary. # noqa: E501 :type: str """ if last_name is not None and len(last_name) > 50: raise ValueError("Invalid value for `last_name`, length must be less than or equal to `50`") # noqa: E501 if last_name is not None and len(last_name) < 0: raise ValueError("Invalid value for `last_name`, length must be greater than or equal to `0`") # noqa: E501 - if last_name is not None and not re.search(r'[a-zA-Z]*[-.\']*', last_name): # noqa: E501 - raise ValueError(r"Invalid value for `last_name`, must be a follow pattern or equal to `/[a-zA-Z]*[-.']*/`") # noqa: E501 + if last_name is not None and not re.search(r'[\\p{L}\\p{M}*\\-\\.\\\' ]*', last_name): # noqa: E501 + raise ValueError(r"Invalid value for `last_name`, must be a follow pattern or equal to `/[\\p{L}\\p{M}*\\-\\.\\' ]*/`") # noqa: E501 self._last_name = last_name @property def phone(self): - """Gets the phone of this SupportassistSettingsContactPrimary. # noqa: E501 + """Gets the phone of this ConnectivitySettingsContactPrimary. # noqa: E501 Contact's phone number. # noqa: E501 - :return: The phone of this SupportassistSettingsContactPrimary. # noqa: E501 + :return: The phone of this ConnectivitySettingsContactPrimary. # noqa: E501 :rtype: str """ return self._phone @phone.setter def phone(self, phone): - """Sets the phone of this SupportassistSettingsContactPrimary. + """Sets the phone of this ConnectivitySettingsContactPrimary. Contact's phone number. # noqa: E501 - :param phone: The phone of this SupportassistSettingsContactPrimary. # noqa: E501 + :param phone: The phone of this ConnectivitySettingsContactPrimary. # noqa: E501 :type: str """ if phone is not None and len(phone) > 40: raise ValueError("Invalid value for `phone`, length must be less than or equal to `40`") # noqa: E501 if phone is not None and len(phone) < 0: raise ValueError("Invalid value for `phone`, length must be greater than or equal to `0`") # noqa: E501 + if phone is not None and not re.search(r'(^$|([\\.\\-\\+\/\\sxX]*([0-9]+|[\\(\\d+\\)])+)+)', phone): # noqa: E501 + raise ValueError(r"Invalid value for `phone`, must be a follow pattern or equal to `/(^$|([\\.\\-\\+\/\\sxX]*([0-9]+|[\\(\\d+\\)])+)+)/`") # noqa: E501 self._phone = phone @@ -197,7 +231,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(SupportassistSettingsContactPrimary, dict): + if issubclass(ConnectivitySettingsContactPrimary, dict): for key, value in self.items(): result[key] = value @@ -213,7 +247,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, SupportassistSettingsContactPrimary): + if not isinstance(other, ConnectivitySettingsContactPrimary): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_contact_primary_extended.py b/isilon_sdk/isilon_sdk/v9_10_0/models/connectivity_settings_contact_primary_extended.py similarity index 61% rename from isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_contact_primary_extended.py rename to isilon_sdk/isilon_sdk/v9_10_0/models/connectivity_settings_contact_primary_extended.py index 036f6d073..a642f41d2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_contact_primary_extended.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/connectivity_settings_contact_primary_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 21 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class SupportassistSettingsContactPrimaryExtended(object): +class ConnectivitySettingsContactPrimaryExtended(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -33,6 +33,7 @@ class SupportassistSettingsContactPrimaryExtended(object): swagger_types = { 'email': 'str', 'first_name': 'str', + 'language': 'str', 'last_name': 'str', 'phone': 'str' } @@ -40,15 +41,17 @@ class SupportassistSettingsContactPrimaryExtended(object): attribute_map = { 'email': 'email', 'first_name': 'first_name', + 'language': 'language', 'last_name': 'last_name', 'phone': 'phone' } - def __init__(self, email=None, first_name='', last_name='', phone=None): # noqa: E501 - """SupportassistSettingsContactPrimaryExtended - a model defined in Swagger""" # noqa: E501 + def __init__(self, email='', first_name='', language='En', last_name='', phone=''): # noqa: E501 + """ConnectivitySettingsContactPrimaryExtended - a model defined in Swagger""" # noqa: E501 self._email = None self._first_name = None + self._language = None self._last_name = None self._phone = None self.discriminator = None @@ -57,6 +60,8 @@ def __init__(self, email=None, first_name='', last_name='', phone=None): # noqa self.email = email if first_name is not None: self.first_name = first_name + if language is not None: + self.language = language if last_name is not None: self.last_name = last_name if phone is not None: @@ -64,115 +69,144 @@ def __init__(self, email=None, first_name='', last_name='', phone=None): # noqa @property def email(self): - """Gets the email of this SupportassistSettingsContactPrimaryExtended. # noqa: E501 + """Gets the email of this ConnectivitySettingsContactPrimaryExtended. # noqa: E501 Contact's email address. # noqa: E501 - :return: The email of this SupportassistSettingsContactPrimaryExtended. # noqa: E501 + :return: The email of this ConnectivitySettingsContactPrimaryExtended. # noqa: E501 :rtype: str """ return self._email @email.setter def email(self, email): - """Sets the email of this SupportassistSettingsContactPrimaryExtended. + """Sets the email of this ConnectivitySettingsContactPrimaryExtended. Contact's email address. # noqa: E501 - :param email: The email of this SupportassistSettingsContactPrimaryExtended. # noqa: E501 + :param email: The email of this ConnectivitySettingsContactPrimaryExtended. # noqa: E501 :type: str """ if email is not None and len(email) > 320: raise ValueError("Invalid value for `email`, length must be less than or equal to `320`") # noqa: E501 if email is not None and len(email) < 0: raise ValueError("Invalid value for `email`, length must be greater than or equal to `0`") # noqa: E501 - if email is not None and not re.search(r'^[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+[.])+[a-zA-Z0-9]+$', email): # noqa: E501 - raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/^[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+[.])+[a-zA-Z0-9]+$/`") # noqa: E501 + if email is not None and not re.search(r'^[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]+$', email): # noqa: E501 + raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/^[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]+$/`") # noqa: E501 self._email = email @property def first_name(self): - """Gets the first_name of this SupportassistSettingsContactPrimaryExtended. # noqa: E501 + """Gets the first_name of this ConnectivitySettingsContactPrimaryExtended. # noqa: E501 Contact's first name. # noqa: E501 - :return: The first_name of this SupportassistSettingsContactPrimaryExtended. # noqa: E501 + :return: The first_name of this ConnectivitySettingsContactPrimaryExtended. # noqa: E501 :rtype: str """ return self._first_name @first_name.setter def first_name(self, first_name): - """Sets the first_name of this SupportassistSettingsContactPrimaryExtended. + """Sets the first_name of this ConnectivitySettingsContactPrimaryExtended. Contact's first name. # noqa: E501 - :param first_name: The first_name of this SupportassistSettingsContactPrimaryExtended. # noqa: E501 + :param first_name: The first_name of this ConnectivitySettingsContactPrimaryExtended. # noqa: E501 :type: str """ if first_name is not None and len(first_name) > 50: raise ValueError("Invalid value for `first_name`, length must be less than or equal to `50`") # noqa: E501 if first_name is not None and len(first_name) < 0: raise ValueError("Invalid value for `first_name`, length must be greater than or equal to `0`") # noqa: E501 - if first_name is not None and not re.search(r'[a-zA-Z]*[-.\']*', first_name): # noqa: E501 - raise ValueError(r"Invalid value for `first_name`, must be a follow pattern or equal to `/[a-zA-Z]*[-.']*/`") # noqa: E501 + if first_name is not None and not re.search(r'[\\p{L}\\p{M}*\\-\\.\\\' ]*', first_name): # noqa: E501 + raise ValueError(r"Invalid value for `first_name`, must be a follow pattern or equal to `/[\\p{L}\\p{M}*\\-\\.\\' ]*/`") # noqa: E501 self._first_name = first_name + @property + def language(self): + """Gets the language of this ConnectivitySettingsContactPrimaryExtended. # noqa: E501 + + + :return: The language of this ConnectivitySettingsContactPrimaryExtended. # noqa: E501 + :rtype: str + """ + return self._language + + @language.setter + def language(self, language): + """Sets the language of this ConnectivitySettingsContactPrimaryExtended. + + + :param language: The language of this ConnectivitySettingsContactPrimaryExtended. # noqa: E501 + :type: str + """ + allowed_values = ["Cs", "Da", "De", "El", "En", "Es", "es-LA", "Fi", "fr-CA", "He", "It", "Ja", "Ko", "Nl", "No", "Pl", "Pt", "pt-BR", "Ru", "Sk", "Sv", "Th", "Tr", "zh-CN", "zh-TW"] # noqa: E501 + if language not in allowed_values: + raise ValueError( + "Invalid value for `language` ({0}), must be one of {1}" # noqa: E501 + .format(language, allowed_values) + ) + + self._language = language + @property def last_name(self): - """Gets the last_name of this SupportassistSettingsContactPrimaryExtended. # noqa: E501 + """Gets the last_name of this ConnectivitySettingsContactPrimaryExtended. # noqa: E501 Contact's last name. # noqa: E501 - :return: The last_name of this SupportassistSettingsContactPrimaryExtended. # noqa: E501 + :return: The last_name of this ConnectivitySettingsContactPrimaryExtended. # noqa: E501 :rtype: str """ return self._last_name @last_name.setter def last_name(self, last_name): - """Sets the last_name of this SupportassistSettingsContactPrimaryExtended. + """Sets the last_name of this ConnectivitySettingsContactPrimaryExtended. Contact's last name. # noqa: E501 - :param last_name: The last_name of this SupportassistSettingsContactPrimaryExtended. # noqa: E501 + :param last_name: The last_name of this ConnectivitySettingsContactPrimaryExtended. # noqa: E501 :type: str """ if last_name is not None and len(last_name) > 50: raise ValueError("Invalid value for `last_name`, length must be less than or equal to `50`") # noqa: E501 if last_name is not None and len(last_name) < 0: raise ValueError("Invalid value for `last_name`, length must be greater than or equal to `0`") # noqa: E501 - if last_name is not None and not re.search(r'[a-zA-Z]*[-.\']*', last_name): # noqa: E501 - raise ValueError(r"Invalid value for `last_name`, must be a follow pattern or equal to `/[a-zA-Z]*[-.']*/`") # noqa: E501 + if last_name is not None and not re.search(r'[\\p{L}\\p{M}*\\-\\.\\\' ]*', last_name): # noqa: E501 + raise ValueError(r"Invalid value for `last_name`, must be a follow pattern or equal to `/[\\p{L}\\p{M}*\\-\\.\\' ]*/`") # noqa: E501 self._last_name = last_name @property def phone(self): - """Gets the phone of this SupportassistSettingsContactPrimaryExtended. # noqa: E501 + """Gets the phone of this ConnectivitySettingsContactPrimaryExtended. # noqa: E501 Contact's phone number. # noqa: E501 - :return: The phone of this SupportassistSettingsContactPrimaryExtended. # noqa: E501 + :return: The phone of this ConnectivitySettingsContactPrimaryExtended. # noqa: E501 :rtype: str """ return self._phone @phone.setter def phone(self, phone): - """Sets the phone of this SupportassistSettingsContactPrimaryExtended. + """Sets the phone of this ConnectivitySettingsContactPrimaryExtended. Contact's phone number. # noqa: E501 - :param phone: The phone of this SupportassistSettingsContactPrimaryExtended. # noqa: E501 + :param phone: The phone of this ConnectivitySettingsContactPrimaryExtended. # noqa: E501 :type: str """ if phone is not None and len(phone) > 40: raise ValueError("Invalid value for `phone`, length must be less than or equal to `40`") # noqa: E501 if phone is not None and len(phone) < 0: raise ValueError("Invalid value for `phone`, length must be greater than or equal to `0`") # noqa: E501 + if phone is not None and not re.search(r'([\\.\\-\\+\/\\sxX]*([0-9]+|[\\(\\d+\\)])+)+', phone): # noqa: E501 + raise ValueError(r"Invalid value for `phone`, must be a follow pattern or equal to `/([\\.\\-\\+\/\\sxX]*([0-9]+|[\\(\\d+\\)])+)+/`") # noqa: E501 self._phone = phone @@ -197,7 +231,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(SupportassistSettingsContactPrimaryExtended, dict): + if issubclass(ConnectivitySettingsContactPrimaryExtended, dict): for key, value in self.items(): result[key] = value @@ -213,7 +247,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, SupportassistSettingsContactPrimaryExtended): + if not isinstance(other, ConnectivitySettingsContactPrimaryExtended): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_extended.py b/isilon_sdk/isilon_sdk/v9_10_0/models/connectivity_settings_extended.py similarity index 72% rename from isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_extended.py rename to isilon_sdk/isilon_sdk/v9_10_0/models/connectivity_settings_extended.py index 7f1176fc5..1d8072f77 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/connectivity_settings_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 21 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class SupportassistSettingsExtended(object): +class ConnectivitySettingsExtended(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -34,7 +34,7 @@ class SupportassistSettingsExtended(object): 'automatic_case_creation': 'bool', 'connection': 'SupportassistSettingsConnectionExtended', 'connection_state': 'str', - 'contact': 'SupportassistSettingsContactExtended', + 'contact': 'ConnectivitySettingsContactExtended', 'enable_download': 'bool', 'enable_remote_support': 'bool', 'enable_service': 'bool', @@ -53,7 +53,7 @@ class SupportassistSettingsExtended(object): } def __init__(self, automatic_case_creation=True, connection=None, connection_state=None, contact=None, enable_download=True, enable_remote_support=False, enable_service=False, telemetry=None): # noqa: E501 - """SupportassistSettingsExtended - a model defined in Swagger""" # noqa: E501 + """ConnectivitySettingsExtended - a model defined in Swagger""" # noqa: E501 self._automatic_case_creation = None self._connection = None @@ -84,22 +84,22 @@ def __init__(self, automatic_case_creation=True, connection=None, connection_sta @property def automatic_case_creation(self): - """Gets the automatic_case_creation of this SupportassistSettingsExtended. # noqa: E501 + """Gets the automatic_case_creation of this ConnectivitySettingsExtended. # noqa: E501 True indicates automatic case creation is enabled # noqa: E501 - :return: The automatic_case_creation of this SupportassistSettingsExtended. # noqa: E501 + :return: The automatic_case_creation of this ConnectivitySettingsExtended. # noqa: E501 :rtype: bool """ return self._automatic_case_creation @automatic_case_creation.setter def automatic_case_creation(self, automatic_case_creation): - """Sets the automatic_case_creation of this SupportassistSettingsExtended. + """Sets the automatic_case_creation of this ConnectivitySettingsExtended. True indicates automatic case creation is enabled # noqa: E501 - :param automatic_case_creation: The automatic_case_creation of this SupportassistSettingsExtended. # noqa: E501 + :param automatic_case_creation: The automatic_case_creation of this ConnectivitySettingsExtended. # noqa: E501 :type: bool """ @@ -107,22 +107,22 @@ def automatic_case_creation(self, automatic_case_creation): @property def connection(self): - """Gets the connection of this SupportassistSettingsExtended. # noqa: E501 + """Gets the connection of this ConnectivitySettingsExtended. # noqa: E501 # noqa: E501 - :return: The connection of this SupportassistSettingsExtended. # noqa: E501 + :return: The connection of this ConnectivitySettingsExtended. # noqa: E501 :rtype: SupportassistSettingsConnectionExtended """ return self._connection @connection.setter def connection(self, connection): - """Sets the connection of this SupportassistSettingsExtended. + """Sets the connection of this ConnectivitySettingsExtended. # noqa: E501 - :param connection: The connection of this SupportassistSettingsExtended. # noqa: E501 + :param connection: The connection of this ConnectivitySettingsExtended. # noqa: E501 :type: SupportassistSettingsConnectionExtended """ @@ -130,22 +130,22 @@ def connection(self, connection): @property def connection_state(self): - """Gets the connection_state of this SupportassistSettingsExtended. # noqa: E501 + """Gets the connection_state of this ConnectivitySettingsExtended. # noqa: E501 Set connectivity state. # noqa: E501 - :return: The connection_state of this SupportassistSettingsExtended. # noqa: E501 + :return: The connection_state of this ConnectivitySettingsExtended. # noqa: E501 :rtype: str """ return self._connection_state @connection_state.setter def connection_state(self, connection_state): - """Sets the connection_state of this SupportassistSettingsExtended. + """Sets the connection_state of this ConnectivitySettingsExtended. Set connectivity state. # noqa: E501 - :param connection_state: The connection_state of this SupportassistSettingsExtended. # noqa: E501 + :param connection_state: The connection_state of this ConnectivitySettingsExtended. # noqa: E501 :type: str """ allowed_values = ["enabled", "disabled"] # noqa: E501 @@ -159,45 +159,45 @@ def connection_state(self, connection_state): @property def contact(self): - """Gets the contact of this SupportassistSettingsExtended. # noqa: E501 + """Gets the contact of this ConnectivitySettingsExtended. # noqa: E501 # noqa: E501 - :return: The contact of this SupportassistSettingsExtended. # noqa: E501 - :rtype: SupportassistSettingsContactExtended + :return: The contact of this ConnectivitySettingsExtended. # noqa: E501 + :rtype: ConnectivitySettingsContactExtended """ return self._contact @contact.setter def contact(self, contact): - """Sets the contact of this SupportassistSettingsExtended. + """Sets the contact of this ConnectivitySettingsExtended. # noqa: E501 - :param contact: The contact of this SupportassistSettingsExtended. # noqa: E501 - :type: SupportassistSettingsContactExtended + :param contact: The contact of this ConnectivitySettingsExtended. # noqa: E501 + :type: ConnectivitySettingsContactExtended """ self._contact = contact @property def enable_download(self): - """Gets the enable_download of this SupportassistSettingsExtended. # noqa: E501 + """Gets the enable_download of this ConnectivitySettingsExtended. # noqa: E501 True indicates downloads are enabled # noqa: E501 - :return: The enable_download of this SupportassistSettingsExtended. # noqa: E501 + :return: The enable_download of this ConnectivitySettingsExtended. # noqa: E501 :rtype: bool """ return self._enable_download @enable_download.setter def enable_download(self, enable_download): - """Sets the enable_download of this SupportassistSettingsExtended. + """Sets the enable_download of this ConnectivitySettingsExtended. True indicates downloads are enabled # noqa: E501 - :param enable_download: The enable_download of this SupportassistSettingsExtended. # noqa: E501 + :param enable_download: The enable_download of this ConnectivitySettingsExtended. # noqa: E501 :type: bool """ @@ -205,22 +205,22 @@ def enable_download(self, enable_download): @property def enable_remote_support(self): - """Gets the enable_remote_support of this SupportassistSettingsExtended. # noqa: E501 + """Gets the enable_remote_support of this ConnectivitySettingsExtended. # noqa: E501 Allow remote support. # noqa: E501 - :return: The enable_remote_support of this SupportassistSettingsExtended. # noqa: E501 + :return: The enable_remote_support of this ConnectivitySettingsExtended. # noqa: E501 :rtype: bool """ return self._enable_remote_support @enable_remote_support.setter def enable_remote_support(self, enable_remote_support): - """Sets the enable_remote_support of this SupportassistSettingsExtended. + """Sets the enable_remote_support of this ConnectivitySettingsExtended. Allow remote support. # noqa: E501 - :param enable_remote_support: The enable_remote_support of this SupportassistSettingsExtended. # noqa: E501 + :param enable_remote_support: The enable_remote_support of this ConnectivitySettingsExtended. # noqa: E501 :type: bool """ @@ -228,22 +228,22 @@ def enable_remote_support(self, enable_remote_support): @property def enable_service(self): - """Gets the enable_service of this SupportassistSettingsExtended. # noqa: E501 + """Gets the enable_service of this ConnectivitySettingsExtended. # noqa: E501 Enable or disable Dell Technologies connectivity services. # noqa: E501 - :return: The enable_service of this SupportassistSettingsExtended. # noqa: E501 + :return: The enable_service of this ConnectivitySettingsExtended. # noqa: E501 :rtype: bool """ return self._enable_service @enable_service.setter def enable_service(self, enable_service): - """Sets the enable_service of this SupportassistSettingsExtended. + """Sets the enable_service of this ConnectivitySettingsExtended. Enable or disable Dell Technologies connectivity services. # noqa: E501 - :param enable_service: The enable_service of this SupportassistSettingsExtended. # noqa: E501 + :param enable_service: The enable_service of this ConnectivitySettingsExtended. # noqa: E501 :type: bool """ @@ -251,22 +251,22 @@ def enable_service(self, enable_service): @property def telemetry(self): - """Gets the telemetry of this SupportassistSettingsExtended. # noqa: E501 + """Gets the telemetry of this ConnectivitySettingsExtended. # noqa: E501 # noqa: E501 - :return: The telemetry of this SupportassistSettingsExtended. # noqa: E501 + :return: The telemetry of this ConnectivitySettingsExtended. # noqa: E501 :rtype: SupportassistSettingsTelemetryExtended """ return self._telemetry @telemetry.setter def telemetry(self, telemetry): - """Sets the telemetry of this SupportassistSettingsExtended. + """Sets the telemetry of this ConnectivitySettingsExtended. # noqa: E501 - :param telemetry: The telemetry of this SupportassistSettingsExtended. # noqa: E501 + :param telemetry: The telemetry of this ConnectivitySettingsExtended. # noqa: E501 :type: SupportassistSettingsTelemetryExtended """ @@ -293,7 +293,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(SupportassistSettingsExtended, dict): + if issubclass(ConnectivitySettingsExtended, dict): for key, value in self.items(): result[key] = value @@ -309,7 +309,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, SupportassistSettingsExtended): + if not isinstance(other, ConnectivitySettingsExtended): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/diagnostics_gather_settings_extended.py b/isilon_sdk/isilon_sdk/v9_10_0/models/diagnostics_gather_settings_extended.py index a1208e5fb..39a6d15a7 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/diagnostics_gather_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/diagnostics_gather_settings_extended.py @@ -251,8 +251,8 @@ def ftp_upload_host(self, ftp_upload_host): :param ftp_upload_host: The ftp_upload_host of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_host = ftp_upload_host @@ -370,8 +370,8 @@ def ftp_upload_proxy(self, ftp_upload_proxy): :param ftp_upload_proxy: The ftp_upload_proxy of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_proxy = ftp_upload_proxy @@ -645,8 +645,8 @@ def http_upload_host(self, http_upload_host): :param http_upload_host: The http_upload_host of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_host = http_upload_host @@ -695,8 +695,8 @@ def http_upload_proxy(self, http_upload_proxy): :param http_upload_proxy: The http_upload_proxy of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_proxy = http_upload_proxy diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/diagnostics_gather_settings_settings.py b/isilon_sdk/isilon_sdk/v9_10_0/models/diagnostics_gather_settings_settings.py index eb60a2add..1629f708b 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/diagnostics_gather_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/diagnostics_gather_settings_settings.py @@ -246,8 +246,8 @@ def ftp_upload_host(self, ftp_upload_host): :param ftp_upload_host: The ftp_upload_host of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_host = ftp_upload_host @@ -342,8 +342,8 @@ def ftp_upload_proxy(self, ftp_upload_proxy): :param ftp_upload_proxy: The ftp_upload_proxy of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_proxy = ftp_upload_proxy @@ -617,8 +617,8 @@ def http_upload_host(self, http_upload_host): :param http_upload_host: The http_upload_host of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_host = http_upload_host @@ -667,8 +667,8 @@ def http_upload_proxy(self, http_upload_proxy): :param http_upload_proxy: The http_upload_proxy of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_proxy = http_upload_proxy diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/diagnostics_gather_start_item.py b/isilon_sdk/isilon_sdk/v9_10_0/models/diagnostics_gather_start_item.py index b95000710..53b85f55d 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/diagnostics_gather_start_item.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/diagnostics_gather_start_item.py @@ -256,8 +256,8 @@ def ftp_upload_host(self, ftp_upload_host): :param ftp_upload_host: The ftp_upload_host of this DiagnosticsGatherStartItem. # noqa: E501 :type: str """ - if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_host = ftp_upload_host @@ -375,8 +375,8 @@ def ftp_upload_proxy(self, ftp_upload_proxy): :param ftp_upload_proxy: The ftp_upload_proxy of this DiagnosticsGatherStartItem. # noqa: E501 :type: str """ - if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_proxy = ftp_upload_proxy @@ -650,8 +650,8 @@ def http_upload_host(self, http_upload_host): :param http_upload_host: The http_upload_host of this DiagnosticsGatherStartItem. # noqa: E501 :type: str """ - if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_host = http_upload_host @@ -700,8 +700,8 @@ def http_upload_proxy(self, http_upload_proxy): :param http_upload_proxy: The http_upload_proxy of this DiagnosticsGatherStartItem. # noqa: E501 :type: str """ - if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_proxy = http_upload_proxy diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/diagnostics_netlogger_settings_settings.py b/isilon_sdk/isilon_sdk/v9_10_0/models/diagnostics_netlogger_settings_settings.py index 5150ce294..f9c1a6814 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/diagnostics_netlogger_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/diagnostics_netlogger_settings_settings.py @@ -102,8 +102,8 @@ def clients(self, clients): :param clients: The clients of this DiagnosticsNetloggerSettingsSettings. # noqa: E501 :type: str """ - if clients is not None and not re.search(r'^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$', clients): # noqa: E501 - raise ValueError(r"Invalid value for `clients`, must be a follow pattern or equal to `/^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$/`") # noqa: E501 + if clients is not None and not re.search(r'^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$', clients): # noqa: E501 + raise ValueError(r"Invalid value for `clients`, must be a follow pattern or equal to `/^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$/`") # noqa: E501 self._clients = clients diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/groupnet_subnet.py b/isilon_sdk/isilon_sdk/v9_10_0/models/groupnet_subnet.py index 3bf9b3ce8..6ea7ba092 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/groupnet_subnet.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/groupnet_subnet.py @@ -331,8 +331,8 @@ def sc_service_name(self, sc_service_name): raise ValueError("Invalid value for `sc_service_name`, length must be less than or equal to `2048`") # noqa: E501 if sc_service_name is not None and len(sc_service_name) < 0: raise ValueError("Invalid value for `sc_service_name`, length must be greater than or equal to `0`") # noqa: E501 - if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 - raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 + raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_service_name = sc_service_name diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/groupnet_subnet_create_params.py b/isilon_sdk/isilon_sdk/v9_10_0/models/groupnet_subnet_create_params.py index e2cde728d..1c8f74613 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/groupnet_subnet_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/groupnet_subnet_create_params.py @@ -342,8 +342,8 @@ def sc_service_name(self, sc_service_name): raise ValueError("Invalid value for `sc_service_name`, length must be less than or equal to `2048`") # noqa: E501 if sc_service_name is not None and len(sc_service_name) < 0: raise ValueError("Invalid value for `sc_service_name`, length must be greater than or equal to `0`") # noqa: E501 - if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 - raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 + raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_service_name = sc_service_name diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/groupnet_subnet_extended.py b/isilon_sdk/isilon_sdk/v9_10_0/models/groupnet_subnet_extended.py index d4231fc8d..c3e817b08 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/groupnet_subnet_extended.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/groupnet_subnet_extended.py @@ -366,8 +366,8 @@ def sc_service_name(self, sc_service_name): raise ValueError("Invalid value for `sc_service_name`, length must be less than or equal to `2048`") # noqa: E501 if sc_service_name is not None and len(sc_service_name) < 0: raise ValueError("Invalid value for `sc_service_name`, length must be greater than or equal to `0`") # noqa: E501 - if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 - raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 + raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_service_name = sc_service_name diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/network_interface.py b/isilon_sdk/isilon_sdk/v9_10_0/models/network_interface.py index 9533837a4..104ec2431 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/network_interface.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/network_interface.py @@ -212,8 +212,8 @@ def ipv4_gateway(self, ipv4_gateway): raise ValueError("Invalid value for `ipv4_gateway`, length must be less than or equal to `16`") # noqa: E501 if ipv4_gateway is not None and len(ipv4_gateway) < 1: raise ValueError("Invalid value for `ipv4_gateway`, length must be greater than or equal to `1`") # noqa: E501 - if ipv4_gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ipv4_gateway): # noqa: E501 - raise ValueError(r"Invalid value for `ipv4_gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if ipv4_gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ipv4_gateway): # noqa: E501 + raise ValueError(r"Invalid value for `ipv4_gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._ipv4_gateway = ipv4_gateway diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/network_interface_vlan.py b/isilon_sdk/isilon_sdk/v9_10_0/models/network_interface_vlan.py index b7c505a20..bdada9325 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/network_interface_vlan.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/network_interface_vlan.py @@ -197,8 +197,8 @@ def ipv4_gateway(self, ipv4_gateway): raise ValueError("Invalid value for `ipv4_gateway`, length must be less than or equal to `16`") # noqa: E501 if ipv4_gateway is not None and len(ipv4_gateway) < 1: raise ValueError("Invalid value for `ipv4_gateway`, length must be greater than or equal to `1`") # noqa: E501 - if ipv4_gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ipv4_gateway): # noqa: E501 - raise ValueError(r"Invalid value for `ipv4_gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if ipv4_gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ipv4_gateway): # noqa: E501 + raise ValueError(r"Invalid value for `ipv4_gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._ipv4_gateway = ipv4_gateway diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/network_pool.py b/isilon_sdk/isilon_sdk/v9_10_0/models/network_pool.py index 7879b0ad9..30761c301 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/network_pool.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/network_pool.py @@ -676,8 +676,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/node_internal_ip_address_node.py b/isilon_sdk/isilon_sdk/v9_10_0/models/node_internal_ip_address_node.py index ccbb08de7..ed691522c 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/node_internal_ip_address_node.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/node_internal_ip_address_node.py @@ -146,8 +146,8 @@ def internal_ip_address(self, internal_ip_address): raise ValueError("Invalid value for `internal_ip_address`, length must be less than or equal to `45`") # noqa: E501 if internal_ip_address is not None and len(internal_ip_address) < 2: raise ValueError("Invalid value for `internal_ip_address`, length must be greater than or equal to `2`") # noqa: E501 - if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 - raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 + raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._internal_ip_address = internal_ip_address diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/nodes_node_internal_ip_address.py b/isilon_sdk/isilon_sdk/v9_10_0/models/nodes_node_internal_ip_address.py index 19d44b7f2..7a772af6b 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/nodes_node_internal_ip_address.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/nodes_node_internal_ip_address.py @@ -72,8 +72,8 @@ def internal_ip_address(self, internal_ip_address): raise ValueError("Invalid value for `internal_ip_address`, length must be less than or equal to `45`") # noqa: E501 if internal_ip_address is not None and len(internal_ip_address) < 2: raise ValueError("Invalid value for `internal_ip_address`, length must be greater than or equal to `2`") # noqa: E501 - if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 - raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 + raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._internal_ip_address = internal_ip_address diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/providers_ldap_id_params.py b/isilon_sdk/isilon_sdk/v9_10_0/models/providers_ldap_id_params.py index c54a8e5fa..1340907a0 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/providers_ldap_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/providers_ldap_id_params.py @@ -2076,8 +2076,8 @@ def tls_protocol_min(self, tls_protocol_min): raise ValueError("Invalid value for `tls_protocol_min`, length must be less than or equal to `255`") # noqa: E501 if tls_protocol_min is not None and len(tls_protocol_min) < 0: raise ValueError("Invalid value for `tls_protocol_min`, length must be greater than or equal to `0`") # noqa: E501 - if tls_protocol_min is not None and not re.search(r'^[0-9]+[.][0-9]+$', tls_protocol_min): # noqa: E501 - raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+[.][0-9]+$/`") # noqa: E501 + if tls_protocol_min is not None and not re.search(r'^[0-9]+\\.[0-9]+$', tls_protocol_min): # noqa: E501 + raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+\\.[0-9]+$/`") # noqa: E501 self._tls_protocol_min = tls_protocol_min diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/providers_ldap_item.py b/isilon_sdk/isilon_sdk/v9_10_0/models/providers_ldap_item.py index b1d67b9d3..d5b4feb29 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/providers_ldap_item.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/providers_ldap_item.py @@ -2153,8 +2153,8 @@ def tls_protocol_min(self, tls_protocol_min): raise ValueError("Invalid value for `tls_protocol_min`, length must be less than or equal to `255`") # noqa: E501 if tls_protocol_min is not None and len(tls_protocol_min) < 0: raise ValueError("Invalid value for `tls_protocol_min`, length must be greater than or equal to `0`") # noqa: E501 - if tls_protocol_min is not None and not re.search(r'^[0-9]+[.][0-9]+$', tls_protocol_min): # noqa: E501 - raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+[.][0-9]+$/`") # noqa: E501 + if tls_protocol_min is not None and not re.search(r'^[0-9]+\\.[0-9]+$', tls_protocol_min): # noqa: E501 + raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+\\.[0-9]+$/`") # noqa: E501 self._tls_protocol_min = tls_protocol_min diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/providers_ldap_ldap_item.py b/isilon_sdk/isilon_sdk/v9_10_0/models/providers_ldap_ldap_item.py index 2e6061d4b..31688b3cc 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/providers_ldap_ldap_item.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/providers_ldap_ldap_item.py @@ -2181,8 +2181,8 @@ def tls_protocol_min(self, tls_protocol_min): raise ValueError("Invalid value for `tls_protocol_min`, length must be less than or equal to `255`") # noqa: E501 if tls_protocol_min is not None and len(tls_protocol_min) < 0: raise ValueError("Invalid value for `tls_protocol_min`, length must be greater than or equal to `0`") # noqa: E501 - if tls_protocol_min is not None and not re.search(r'^[0-9]+[.][0-9]+$', tls_protocol_min): # noqa: E501 - raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+[.][0-9]+$/`") # noqa: E501 + if tls_protocol_min is not None and not re.search(r'^[0-9]+\\.[0-9]+$', tls_protocol_min): # noqa: E501 + raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+\\.[0-9]+$/`") # noqa: E501 self._tls_protocol_min = tls_protocol_min diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/providers_saml_services_sp_extended.py b/isilon_sdk/isilon_sdk/v9_10_0/models/providers_saml_services_sp_extended.py index 74f9d3181..eda2e34dc 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/providers_saml_services_sp_extended.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/providers_saml_services_sp_extended.py @@ -106,8 +106,8 @@ def email(self, email): raise ValueError("Invalid value for `email`, length must be less than or equal to `254`") # noqa: E501 if email is not None and len(email) < 3: raise ValueError("Invalid value for `email`, length must be greater than or equal to `3`") # noqa: E501 - if email is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', email): # noqa: E501 - raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if email is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', email): # noqa: E501 + raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._email = email diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/providers_saml_services_sp_sp.py b/isilon_sdk/isilon_sdk/v9_10_0/models/providers_saml_services_sp_sp.py index 74ad6876b..75bcc2f0f 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/providers_saml_services_sp_sp.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/providers_saml_services_sp_sp.py @@ -158,8 +158,8 @@ def email(self, email): raise ValueError("Invalid value for `email`, length must be less than or equal to `254`") # noqa: E501 if email is not None and len(email) < 3: raise ValueError("Invalid value for `email`, length must be greater than or equal to `3`") # noqa: E501 - if email is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', email): # noqa: E501 - raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if email is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', email): # noqa: E501 + raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._email = email diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/s3_settings_zone_settings.py b/isilon_sdk/isilon_sdk/v9_10_0/models/s3_settings_zone_settings.py index 662634e96..8814fe4ec 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/s3_settings_zone_settings.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/s3_settings_zone_settings.py @@ -96,8 +96,8 @@ def base_domain(self, base_domain): raise ValueError("Invalid value for `base_domain`, length must be less than or equal to `255`") # noqa: E501 if base_domain is not None and len(base_domain) < 0: raise ValueError("Invalid value for `base_domain`, length must be greater than or equal to `0`") # noqa: E501 - if base_domain is not None and not re.search(r'^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$', base_domain): # noqa: E501 - raise ValueError(r"Invalid value for `base_domain`, must be a follow pattern or equal to `/^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$/`") # noqa: E501 + if base_domain is not None and not re.search(r'^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$', base_domain): # noqa: E501 + raise ValueError(r"Invalid value for `base_domain`, must be a follow pattern or equal to `/^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$/`") # noqa: E501 self._base_domain = base_domain diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/snmp_settings_extended.py b/isilon_sdk/isilon_sdk/v9_10_0/models/snmp_settings_extended.py index 705829788..4e6f833f3 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/snmp_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/snmp_settings_extended.py @@ -386,8 +386,8 @@ def system_contact(self, system_contact): raise ValueError("Invalid value for `system_contact`, length must be less than or equal to `254`") # noqa: E501 if system_contact is not None and len(system_contact) < 3: raise ValueError("Invalid value for `system_contact`, length must be greater than or equal to `3`") # noqa: E501 - if system_contact is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', system_contact): # noqa: E501 - raise ValueError(r"Invalid value for `system_contact`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if system_contact is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', system_contact): # noqa: E501 + raise ValueError(r"Invalid value for `system_contact`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._system_contact = system_contact diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/snmp_settings_settings.py b/isilon_sdk/isilon_sdk/v9_10_0/models/snmp_settings_settings.py index 8ec0b6b1e..04ea701c2 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/snmp_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/snmp_settings_settings.py @@ -322,8 +322,8 @@ def system_contact(self, system_contact): raise ValueError("Invalid value for `system_contact`, length must be less than or equal to `254`") # noqa: E501 if system_contact is not None and len(system_contact) < 3: raise ValueError("Invalid value for `system_contact`, length must be greater than or equal to `3`") # noqa: E501 - if system_contact is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', system_contact): # noqa: E501 - raise ValueError(r"Invalid value for `system_contact`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if system_contact is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', system_contact): # noqa: E501 + raise ValueError(r"Invalid value for `system_contact`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._system_contact = system_contact diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/ssh_settings_extended.py b/isilon_sdk/isilon_sdk/v9_10_0/models/ssh_settings_extended.py index 5b51d526e..d8b22d2b9 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/ssh_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/ssh_settings_extended.py @@ -303,8 +303,8 @@ def ca_signature_algorithms(self, ca_signature_algorithms): raise ValueError("Invalid value for `ca_signature_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if ca_signature_algorithms is not None and len(ca_signature_algorithms) < 0: raise ValueError("Invalid value for `ca_signature_algorithms`, length must be greater than or equal to `0`") # noqa: E501 - if ca_signature_algorithms is not None and not re.search(r'^([+]?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$', ca_signature_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `ca_signature_algorithms`, must be a follow pattern or equal to `/^([+]?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$/`") # noqa: E501 + if ca_signature_algorithms is not None and not re.search(r'^(\\+?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$', ca_signature_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `ca_signature_algorithms`, must be a follow pattern or equal to `/^(\\+?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$/`") # noqa: E501 self._ca_signature_algorithms = ca_signature_algorithms @@ -355,8 +355,8 @@ def ciphers(self, ciphers): raise ValueError("Invalid value for `ciphers`, length must be less than or equal to `4096`") # noqa: E501 if ciphers is not None and len(ciphers) < 7: raise ValueError("Invalid value for `ciphers`, length must be greater than or equal to `7`") # noqa: E501 - if ciphers is not None and not re.search(r'^([+]?)(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com)(,(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com))*$', ciphers): # noqa: E501 - raise ValueError(r"Invalid value for `ciphers`, must be a follow pattern or equal to `/^([+]?)(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com)(,(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com))*$/`") # noqa: E501 + if ciphers is not None and not re.search(r'^(\\+?)(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com)(,(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com))*$', ciphers): # noqa: E501 + raise ValueError(r"Invalid value for `ciphers`, must be a follow pattern or equal to `/^(\\+?)(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com)(,(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com))*$/`") # noqa: E501 self._ciphers = ciphers @@ -384,8 +384,8 @@ def host_key_algorithms(self, host_key_algorithms): raise ValueError("Invalid value for `host_key_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if host_key_algorithms is not None and len(host_key_algorithms) < 7: raise ValueError("Invalid value for `host_key_algorithms`, length must be greater than or equal to `7`") # noqa: E501 - if host_key_algorithms is not None and not re.search(r'^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$', host_key_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `host_key_algorithms`, must be a follow pattern or equal to `/^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$/`") # noqa: E501 + if host_key_algorithms is not None and not re.search(r'^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$', host_key_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `host_key_algorithms`, must be a follow pattern or equal to `/^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$/`") # noqa: E501 self._host_key_algorithms = host_key_algorithms @@ -436,8 +436,8 @@ def kex_algorithms(self, kex_algorithms): raise ValueError("Invalid value for `kex_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if kex_algorithms is not None and len(kex_algorithms) < 18: raise ValueError("Invalid value for `kex_algorithms`, length must be greater than or equal to `18`") # noqa: E501 - if kex_algorithms is not None and not re.search(r'^([+]?)(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$', kex_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `kex_algorithms`, must be a follow pattern or equal to `/^([+]?)(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$/`") # noqa: E501 + if kex_algorithms is not None and not re.search(r'^(\\+?)(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$', kex_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `kex_algorithms`, must be a follow pattern or equal to `/^(\\+?)(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$/`") # noqa: E501 self._kex_algorithms = kex_algorithms @@ -544,8 +544,8 @@ def macs(self, macs): raise ValueError("Invalid value for `macs`, length must be less than or equal to `4096`") # noqa: E501 if macs is not None and len(macs) < 8: raise ValueError("Invalid value for `macs`, length must be greater than or equal to `8`") # noqa: E501 - if macs is not None and not re.search(r'^([+]?)(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$', macs): # noqa: E501 - raise ValueError(r"Invalid value for `macs`, must be a follow pattern or equal to `/^([+]?)(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$/`") # noqa: E501 + if macs is not None and not re.search(r'^(\\+?)(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$', macs): # noqa: E501 + raise ValueError(r"Invalid value for `macs`, must be a follow pattern or equal to `/^(\\+?)(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$/`") # noqa: E501 self._macs = macs @@ -802,8 +802,8 @@ def pubkey_accepted_key_types(self, pubkey_accepted_key_types): raise ValueError("Invalid value for `pubkey_accepted_key_types`, length must be less than or equal to `4096`") # noqa: E501 if pubkey_accepted_key_types is not None and len(pubkey_accepted_key_types) < 7: raise ValueError("Invalid value for `pubkey_accepted_key_types`, length must be greater than or equal to `7`") # noqa: E501 - if pubkey_accepted_key_types is not None and not re.search(r'^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$', pubkey_accepted_key_types): # noqa: E501 - raise ValueError(r"Invalid value for `pubkey_accepted_key_types`, must be a follow pattern or equal to `/^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$/`") # noqa: E501 + if pubkey_accepted_key_types is not None and not re.search(r'^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$', pubkey_accepted_key_types): # noqa: E501 + raise ValueError(r"Invalid value for `pubkey_accepted_key_types`, must be a follow pattern or equal to `/^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$/`") # noqa: E501 self._pubkey_accepted_key_types = pubkey_accepted_key_types @@ -877,6 +877,8 @@ def subsystem(self, subsystem): raise ValueError("Invalid value for `subsystem`, length must be less than or equal to `1024`") # noqa: E501 if subsystem is not None and len(subsystem) < 0: raise ValueError("Invalid value for `subsystem`, length must be greater than or equal to `0`") # noqa: E501 + if subsystem is not None and not re.search(r'b\'^[^\\\\n]*$\'', subsystem): # noqa: E501 + raise ValueError(r"Invalid value for `subsystem`, must be a follow pattern or equal to `/b'^[^\\\\n]*$'/`") # noqa: E501 self._subsystem = subsystem diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/ssh_settings_settings.py b/isilon_sdk/isilon_sdk/v9_10_0/models/ssh_settings_settings.py index b512f3f7e..b68b3feb6 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/ssh_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/ssh_settings_settings.py @@ -303,8 +303,8 @@ def ca_signature_algorithms(self, ca_signature_algorithms): raise ValueError("Invalid value for `ca_signature_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if ca_signature_algorithms is not None and len(ca_signature_algorithms) < 0: raise ValueError("Invalid value for `ca_signature_algorithms`, length must be greater than or equal to `0`") # noqa: E501 - if ca_signature_algorithms is not None and not re.search(r'^([+]?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$', ca_signature_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `ca_signature_algorithms`, must be a follow pattern or equal to `/^([+]?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$/`") # noqa: E501 + if ca_signature_algorithms is not None and not re.search(r'^(\\+?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$', ca_signature_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `ca_signature_algorithms`, must be a follow pattern or equal to `/^(\\+?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$/`") # noqa: E501 self._ca_signature_algorithms = ca_signature_algorithms @@ -355,8 +355,8 @@ def ciphers(self, ciphers): raise ValueError("Invalid value for `ciphers`, length must be less than or equal to `4096`") # noqa: E501 if ciphers is not None and len(ciphers) < 7: raise ValueError("Invalid value for `ciphers`, length must be greater than or equal to `7`") # noqa: E501 - if ciphers is not None and not re.search(r'^([+]?)(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com)(,(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com))*$', ciphers): # noqa: E501 - raise ValueError(r"Invalid value for `ciphers`, must be a follow pattern or equal to `/^([+]?)(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com)(,(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com))*$/`") # noqa: E501 + if ciphers is not None and not re.search(r'^(\\+?)(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com)(,(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com))*$', ciphers): # noqa: E501 + raise ValueError(r"Invalid value for `ciphers`, must be a follow pattern or equal to `/^(\\+?)(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com)(,(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com))*$/`") # noqa: E501 self._ciphers = ciphers @@ -384,8 +384,8 @@ def host_key_algorithms(self, host_key_algorithms): raise ValueError("Invalid value for `host_key_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if host_key_algorithms is not None and len(host_key_algorithms) < 7: raise ValueError("Invalid value for `host_key_algorithms`, length must be greater than or equal to `7`") # noqa: E501 - if host_key_algorithms is not None and not re.search(r'^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$', host_key_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `host_key_algorithms`, must be a follow pattern or equal to `/^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$/`") # noqa: E501 + if host_key_algorithms is not None and not re.search(r'^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$', host_key_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `host_key_algorithms`, must be a follow pattern or equal to `/^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$/`") # noqa: E501 self._host_key_algorithms = host_key_algorithms @@ -436,8 +436,8 @@ def kex_algorithms(self, kex_algorithms): raise ValueError("Invalid value for `kex_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if kex_algorithms is not None and len(kex_algorithms) < 18: raise ValueError("Invalid value for `kex_algorithms`, length must be greater than or equal to `18`") # noqa: E501 - if kex_algorithms is not None and not re.search(r'^([+]?)(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$', kex_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `kex_algorithms`, must be a follow pattern or equal to `/^([+]?)(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$/`") # noqa: E501 + if kex_algorithms is not None and not re.search(r'^(\\+?)(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$', kex_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `kex_algorithms`, must be a follow pattern or equal to `/^(\\+?)(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$/`") # noqa: E501 self._kex_algorithms = kex_algorithms @@ -544,8 +544,8 @@ def macs(self, macs): raise ValueError("Invalid value for `macs`, length must be less than or equal to `4096`") # noqa: E501 if macs is not None and len(macs) < 8: raise ValueError("Invalid value for `macs`, length must be greater than or equal to `8`") # noqa: E501 - if macs is not None and not re.search(r'^([+]?)(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$', macs): # noqa: E501 - raise ValueError(r"Invalid value for `macs`, must be a follow pattern or equal to `/^([+]?)(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$/`") # noqa: E501 + if macs is not None and not re.search(r'^(\\+?)(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$', macs): # noqa: E501 + raise ValueError(r"Invalid value for `macs`, must be a follow pattern or equal to `/^(\\+?)(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$/`") # noqa: E501 self._macs = macs @@ -802,8 +802,8 @@ def pubkey_accepted_key_types(self, pubkey_accepted_key_types): raise ValueError("Invalid value for `pubkey_accepted_key_types`, length must be less than or equal to `4096`") # noqa: E501 if pubkey_accepted_key_types is not None and len(pubkey_accepted_key_types) < 7: raise ValueError("Invalid value for `pubkey_accepted_key_types`, length must be greater than or equal to `7`") # noqa: E501 - if pubkey_accepted_key_types is not None and not re.search(r'^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$', pubkey_accepted_key_types): # noqa: E501 - raise ValueError(r"Invalid value for `pubkey_accepted_key_types`, must be a follow pattern or equal to `/^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$/`") # noqa: E501 + if pubkey_accepted_key_types is not None and not re.search(r'^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$', pubkey_accepted_key_types): # noqa: E501 + raise ValueError(r"Invalid value for `pubkey_accepted_key_types`, must be a follow pattern or equal to `/^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$/`") # noqa: E501 self._pubkey_accepted_key_types = pubkey_accepted_key_types @@ -877,6 +877,8 @@ def subsystem(self, subsystem): raise ValueError("Invalid value for `subsystem`, length must be less than or equal to `1024`") # noqa: E501 if subsystem is not None and len(subsystem) < 0: raise ValueError("Invalid value for `subsystem`, length must be greater than or equal to `0`") # noqa: E501 + if subsystem is not None and not re.search(r'b\'^[^\\\\n]*$\'', subsystem): # noqa: E501 + raise ValueError(r"Invalid value for `subsystem`, must be a follow pattern or equal to `/b'^[^\\\\n]*$'/`") # noqa: E501 self._subsystem = subsystem diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/subnets_subnet_pool.py b/isilon_sdk/isilon_sdk/v9_10_0/models/subnets_subnet_pool.py index 61469690d..c94d85b94 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/subnets_subnet_pool.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/subnets_subnet_pool.py @@ -418,8 +418,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/subnets_subnet_pool_create_params.py b/isilon_sdk/isilon_sdk/v9_10_0/models/subnets_subnet_pool_create_params.py index c13777db0..277ea224e 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/subnets_subnet_pool_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/subnets_subnet_pool_create_params.py @@ -443,8 +443,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/subnets_subnet_pool_range.py b/isilon_sdk/isilon_sdk/v9_10_0/models/subnets_subnet_pool_range.py index fe21a4d1f..3fabcb903 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/subnets_subnet_pool_range.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/subnets_subnet_pool_range.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `40`") # noqa: E501 if high is not None and len(high) < 1: raise ValueError("Invalid value for `high`, length must be greater than or equal to `1`") # noqa: E501 - if high is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if high is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `40`") # noqa: E501 if low is not None and len(low) < 1: raise ValueError("Invalid value for `low`, length must be greater than or equal to `1`") # noqa: E501 - if low is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if low is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/subnets_subnet_pool_static_route.py b/isilon_sdk/isilon_sdk/v9_10_0/models/subnets_subnet_pool_static_route.py index 8672ea463..c7546c98d 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/subnets_subnet_pool_static_route.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/subnets_subnet_pool_static_route.py @@ -80,8 +80,8 @@ def gateway(self, gateway): raise ValueError("Invalid value for `gateway`, length must be less than or equal to `40`") # noqa: E501 if gateway is not None and len(gateway) < 1: raise ValueError("Invalid value for `gateway`, length must be greater than or equal to `1`") # noqa: E501 - if gateway is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', gateway): # noqa: E501 - raise ValueError(r"Invalid value for `gateway`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if gateway is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', gateway): # noqa: E501 + raise ValueError(r"Invalid value for `gateway`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._gateway = gateway @@ -140,8 +140,8 @@ def subnet(self, subnet): raise ValueError("Invalid value for `subnet`, length must be less than or equal to `40`") # noqa: E501 if subnet is not None and len(subnet) < 1: raise ValueError("Invalid value for `subnet`, length must be greater than or equal to `1`") # noqa: E501 - if subnet is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', subnet): # noqa: E501 - raise ValueError(r"Invalid value for `subnet`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if subnet is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', subnet): # noqa: E501 + raise ValueError(r"Invalid value for `subnet`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._subnet = subnet diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/subnets_subnet_pools_pool.py b/isilon_sdk/isilon_sdk/v9_10_0/models/subnets_subnet_pools_pool.py index cacdc2624..e0db79608 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/subnets_subnet_pools_pool.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/subnets_subnet_pools_pool.py @@ -687,8 +687,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/subnets_subnet_pools_pool_extended.py b/isilon_sdk/isilon_sdk/v9_10_0/models/subnets_subnet_pools_pool_extended.py index 97cfe9be2..709dba5c1 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/subnets_subnet_pools_pool_extended.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/subnets_subnet_pools_pool_extended.py @@ -676,8 +676,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/supportassist_settings_connection_gateway_endpoint.py b/isilon_sdk/isilon_sdk/v9_10_0/models/supportassist_settings_connection_gateway_endpoint.py index e8ec4cf64..a37abdfbd 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/supportassist_settings_connection_gateway_endpoint.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/supportassist_settings_connection_gateway_endpoint.py @@ -120,8 +120,8 @@ def host(self, host): raise ValueError("Invalid value for `host`, length must be less than or equal to `255`") # noqa: E501 if host is not None and len(host) < 0: raise ValueError("Invalid value for `host`, length must be greater than or equal to `0`") # noqa: E501 - if host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', host): # noqa: E501 - raise ValueError(r"Invalid value for `host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', host): # noqa: E501 + raise ValueError(r"Invalid value for `host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._host = host diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/supportassist_settings_contact_primary.py b/isilon_sdk/isilon_sdk/v9_10_0/models/supportassist_settings_contact_primary.py index ca98189c5..ea42a8a50 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/supportassist_settings_contact_primary.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/supportassist_settings_contact_primary.py @@ -44,7 +44,7 @@ class SupportassistSettingsContactPrimary(object): 'phone': 'phone' } - def __init__(self, email='', first_name='', last_name='', phone=None): # noqa: E501 + def __init__(self, email='', first_name='', last_name='', phone=''): # noqa: E501 """SupportassistSettingsContactPrimary - a model defined in Swagger""" # noqa: E501 self._email = None @@ -86,8 +86,8 @@ def email(self, email): raise ValueError("Invalid value for `email`, length must be less than or equal to `320`") # noqa: E501 if email is not None and len(email) < 0: raise ValueError("Invalid value for `email`, length must be greater than or equal to `0`") # noqa: E501 - if email is not None and not re.search(r'(^$|^([a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+[.])+[a-zA-Z0-9]+$))', email): # noqa: E501 - raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/(^$|^([a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+[.])+[a-zA-Z0-9]+$))/`") # noqa: E501 + if email is not None and not re.search(r'(^$|^([a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]+$))', email): # noqa: E501 + raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/(^$|^([a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]+$))/`") # noqa: E501 self._email = email @@ -115,8 +115,8 @@ def first_name(self, first_name): raise ValueError("Invalid value for `first_name`, length must be less than or equal to `50`") # noqa: E501 if first_name is not None and len(first_name) < 0: raise ValueError("Invalid value for `first_name`, length must be greater than or equal to `0`") # noqa: E501 - if first_name is not None and not re.search(r'[a-zA-Z]*[-.\']*', first_name): # noqa: E501 - raise ValueError(r"Invalid value for `first_name`, must be a follow pattern or equal to `/[a-zA-Z]*[-.']*/`") # noqa: E501 + if first_name is not None and not re.search(r'[a-zA-Z]*[\\-\\.\\\']*', first_name): # noqa: E501 + raise ValueError(r"Invalid value for `first_name`, must be a follow pattern or equal to `/[a-zA-Z]*[\\-\\.\\']*/`") # noqa: E501 self._first_name = first_name @@ -144,8 +144,8 @@ def last_name(self, last_name): raise ValueError("Invalid value for `last_name`, length must be less than or equal to `50`") # noqa: E501 if last_name is not None and len(last_name) < 0: raise ValueError("Invalid value for `last_name`, length must be greater than or equal to `0`") # noqa: E501 - if last_name is not None and not re.search(r'[a-zA-Z]*[-.\']*', last_name): # noqa: E501 - raise ValueError(r"Invalid value for `last_name`, must be a follow pattern or equal to `/[a-zA-Z]*[-.']*/`") # noqa: E501 + if last_name is not None and not re.search(r'[a-zA-Z]*[\\-\\.\\\']*', last_name): # noqa: E501 + raise ValueError(r"Invalid value for `last_name`, must be a follow pattern or equal to `/[a-zA-Z]*[\\-\\.\\']*/`") # noqa: E501 self._last_name = last_name @@ -173,6 +173,8 @@ def phone(self, phone): raise ValueError("Invalid value for `phone`, length must be less than or equal to `40`") # noqa: E501 if phone is not None and len(phone) < 0: raise ValueError("Invalid value for `phone`, length must be greater than or equal to `0`") # noqa: E501 + if phone is not None and not re.search(r'(^$|([\\.\\-\\+\/\\sxX]*([0-9]+|[\\(\\d+\\)])+)+)', phone): # noqa: E501 + raise ValueError(r"Invalid value for `phone`, must be a follow pattern or equal to `/(^$|([\\.\\-\\+\/\\sxX]*([0-9]+|[\\(\\d+\\)])+)+)/`") # noqa: E501 self._phone = phone diff --git a/isilon_sdk/isilon_sdk/v9_10_0/models/supportassist_settings_contact_primary_extended.py b/isilon_sdk/isilon_sdk/v9_10_0/models/supportassist_settings_contact_primary_extended.py index bac7fcbd2..bfb816a27 100644 --- a/isilon_sdk/isilon_sdk/v9_10_0/models/supportassist_settings_contact_primary_extended.py +++ b/isilon_sdk/isilon_sdk/v9_10_0/models/supportassist_settings_contact_primary_extended.py @@ -86,8 +86,8 @@ def email(self, email): raise ValueError("Invalid value for `email`, length must be less than or equal to `320`") # noqa: E501 if email is not None and len(email) < 0: raise ValueError("Invalid value for `email`, length must be greater than or equal to `0`") # noqa: E501 - if email is not None and not re.search(r'^[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+[.])+[a-zA-Z0-9]+$', email): # noqa: E501 - raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/^[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+[.])+[a-zA-Z0-9]+$/`") # noqa: E501 + if email is not None and not re.search(r'^[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]+$', email): # noqa: E501 + raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/^[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]+$/`") # noqa: E501 self._email = email @@ -115,8 +115,8 @@ def first_name(self, first_name): raise ValueError("Invalid value for `first_name`, length must be less than or equal to `50`") # noqa: E501 if first_name is not None and len(first_name) < 0: raise ValueError("Invalid value for `first_name`, length must be greater than or equal to `0`") # noqa: E501 - if first_name is not None and not re.search(r'[a-zA-Z]*[-.\']*', first_name): # noqa: E501 - raise ValueError(r"Invalid value for `first_name`, must be a follow pattern or equal to `/[a-zA-Z]*[-.']*/`") # noqa: E501 + if first_name is not None and not re.search(r'[a-zA-Z]*[\\-\\.\\\']*', first_name): # noqa: E501 + raise ValueError(r"Invalid value for `first_name`, must be a follow pattern or equal to `/[a-zA-Z]*[\\-\\.\\']*/`") # noqa: E501 self._first_name = first_name @@ -144,8 +144,8 @@ def last_name(self, last_name): raise ValueError("Invalid value for `last_name`, length must be less than or equal to `50`") # noqa: E501 if last_name is not None and len(last_name) < 0: raise ValueError("Invalid value for `last_name`, length must be greater than or equal to `0`") # noqa: E501 - if last_name is not None and not re.search(r'[a-zA-Z]*[-.\']*', last_name): # noqa: E501 - raise ValueError(r"Invalid value for `last_name`, must be a follow pattern or equal to `/[a-zA-Z]*[-.']*/`") # noqa: E501 + if last_name is not None and not re.search(r'[a-zA-Z]*[\\-\\.\\\']*', last_name): # noqa: E501 + raise ValueError(r"Invalid value for `last_name`, must be a follow pattern or equal to `/[a-zA-Z]*[\\-\\.\\']*/`") # noqa: E501 self._last_name = last_name @@ -173,6 +173,8 @@ def phone(self, phone): raise ValueError("Invalid value for `phone`, length must be less than or equal to `40`") # noqa: E501 if phone is not None and len(phone) < 0: raise ValueError("Invalid value for `phone`, length must be greater than or equal to `0`") # noqa: E501 + if phone is not None and not re.search(r'([\\.\\-\\+\/\\sxX]*([0-9]+|[\\(\\d+\\)])+)+', phone): # noqa: E501 + raise ValueError(r"Invalid value for `phone`, must be a follow pattern or equal to `/([\\.\\-\\+\/\\sxX]*([0-9]+|[\\(\\d+\\)])+)+/`") # noqa: E501 self._phone = phone diff --git a/isilon_sdk/isilon_sdk/v9_11_0/__init__.py b/isilon_sdk/isilon_sdk/v9_11_0/__init__.py deleted file mode 100644 index 46bdf6a97..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/__init__.py +++ /dev/null @@ -1,1613 +0,0 @@ -# coding: utf-8 - -# flake8: noqa - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -from __future__ import absolute_import - -# import apis into sdk package -from isilon_sdk.v9_11_0.api.antivirus_api import AntivirusApi -from isilon_sdk.v9_11_0.api.api_api import ApiApi -from isilon_sdk.v9_11_0.api.audit_api import AuditApi -from isilon_sdk.v9_11_0.api.auth_api import AuthApi -from isilon_sdk.v9_11_0.api.auth_groups_api import AuthGroupsApi -from isilon_sdk.v9_11_0.api.auth_providers_api import AuthProvidersApi -from isilon_sdk.v9_11_0.api.auth_roles_api import AuthRolesApi -from isilon_sdk.v9_11_0.api.auth_users_api import AuthUsersApi -from isilon_sdk.v9_11_0.api.avscan_api import AvscanApi -from isilon_sdk.v9_11_0.api.avscan_nodes_api import AvscanNodesApi -from isilon_sdk.v9_11_0.api.catalog_api import CatalogApi -from isilon_sdk.v9_11_0.api.certificate_api import CertificateApi -from isilon_sdk.v9_11_0.api.cloud_api import CloudApi -from isilon_sdk.v9_11_0.api.cluster_api import ClusterApi -from isilon_sdk.v9_11_0.api.cluster_mode_api import ClusterModeApi -from isilon_sdk.v9_11_0.api.cluster_nodes_api import ClusterNodesApi -from isilon_sdk.v9_11_0.api.config_api import ConfigApi -from isilon_sdk.v9_11_0.api.config_catalog_api import ConfigCatalogApi -from isilon_sdk.v9_11_0.api.connectivity_api import ConnectivityApi -from isilon_sdk.v9_11_0.api.datamover_api import DatamoverApi -from isilon_sdk.v9_11_0.api.datamover_policies_api import DatamoverPoliciesApi -from isilon_sdk.v9_11_0.api.debug_api import DebugApi -from isilon_sdk.v9_11_0.api.dedupe_api import DedupeApi -from isilon_sdk.v9_11_0.api.event_api import EventApi -from isilon_sdk.v9_11_0.api.file_filter_api import FileFilterApi -from isilon_sdk.v9_11_0.api.filepool_api import FilepoolApi -from isilon_sdk.v9_11_0.api.filesystem_api import FilesystemApi -from isilon_sdk.v9_11_0.api.fsa_api import FsaApi -from isilon_sdk.v9_11_0.api.fsa_index_api import FsaIndexApi -from isilon_sdk.v9_11_0.api.fsa_results_api import FsaResultsApi -from isilon_sdk.v9_11_0.api.groupnets_summary_api import GroupnetsSummaryApi -from isilon_sdk.v9_11_0.api.hardening_api import HardeningApi -from isilon_sdk.v9_11_0.api.hardware_api import HardwareApi -from isilon_sdk.v9_11_0.api.healthcheck_api import HealthcheckApi -from isilon_sdk.v9_11_0.api.id_resolution_api import IdResolutionApi -from isilon_sdk.v9_11_0.api.id_resolution_zones_api import IdResolutionZonesApi -from isilon_sdk.v9_11_0.api.ipmi_api import IpmiApi -from isilon_sdk.v9_11_0.api.job_api import JobApi -from isilon_sdk.v9_11_0.api.keymanager_api import KeymanagerApi -from isilon_sdk.v9_11_0.api.lfn_api import LfnApi -from isilon_sdk.v9_11_0.api.license_api import LicenseApi -from isilon_sdk.v9_11_0.api.local_api import LocalApi -from isilon_sdk.v9_11_0.api.local_cluster_api import LocalClusterApi -from isilon_sdk.v9_11_0.api.metadataiq_api import MetadataiqApi -from isilon_sdk.v9_11_0.api.namespace_api import NamespaceApi -from isilon_sdk.v9_11_0.api.network_api import NetworkApi -from isilon_sdk.v9_11_0.api.network_firewall_api import NetworkFirewallApi -from isilon_sdk.v9_11_0.api.network_groupnets_api import NetworkGroupnetsApi -from isilon_sdk.v9_11_0.api.network_groupnets_subnets_api import NetworkGroupnetsSubnetsApi -from isilon_sdk.v9_11_0.api.os_api import OsApi -from isilon_sdk.v9_11_0.api.papi_api import PapiApi -from isilon_sdk.v9_11_0.api.performance_api import PerformanceApi -from isilon_sdk.v9_11_0.api.performance_datasets_api import PerformanceDatasetsApi -from isilon_sdk.v9_11_0.api.protocols_api import ProtocolsApi -from isilon_sdk.v9_11_0.api.protocols_hdfs_api import ProtocolsHdfsApi -from isilon_sdk.v9_11_0.api.quota_api import QuotaApi -from isilon_sdk.v9_11_0.api.quota_quotas_api import QuotaQuotasApi -from isilon_sdk.v9_11_0.api.quota_reports_api import QuotaReportsApi -from isilon_sdk.v9_11_0.api.security_api import SecurityApi -from isilon_sdk.v9_11_0.api.snapshot_api import SnapshotApi -from isilon_sdk.v9_11_0.api.snapshot_changelists_api import SnapshotChangelistsApi -from isilon_sdk.v9_11_0.api.snapshot_snapshots_api import SnapshotSnapshotsApi -from isilon_sdk.v9_11_0.api.statistics_api import StatisticsApi -from isilon_sdk.v9_11_0.api.storagepool_api import StoragepoolApi -from isilon_sdk.v9_11_0.api.storagepool_nodetypes_api import StoragepoolNodetypesApi -from isilon_sdk.v9_11_0.api.supportassist_api import SupportassistApi -from isilon_sdk.v9_11_0.api.sync_api import SyncApi -from isilon_sdk.v9_11_0.api.sync_policies_api import SyncPoliciesApi -from isilon_sdk.v9_11_0.api.sync_reports_api import SyncReportsApi -from isilon_sdk.v9_11_0.api.sync_service_api import SyncServiceApi -from isilon_sdk.v9_11_0.api.sync_service_target_api import SyncServiceTargetApi -from isilon_sdk.v9_11_0.api.sync_target_api import SyncTargetApi -from isilon_sdk.v9_11_0.api.upgrade_api import UpgradeApi -from isilon_sdk.v9_11_0.api.upgrade_cluster_api import UpgradeClusterApi -from isilon_sdk.v9_11_0.api.worm_api import WormApi -from isilon_sdk.v9_11_0.api.zones_api import ZonesApi -from isilon_sdk.v9_11_0.api.zones_summary_api import ZonesSummaryApi - -# import ApiClient -from isilon_sdk.v9_11_0.api_client import ApiClient -from isilon_sdk.v9_11_0.configuration import Configuration -# import models into sdk package -from isilon_sdk.v9_11_0.models.access_point_create_params import AccessPointCreateParams -from isilon_sdk.v9_11_0.models.acl_object import AclObject -from isilon_sdk.v9_11_0.models.ads_provider_controllers import AdsProviderControllers -from isilon_sdk.v9_11_0.models.ads_provider_controllers_controller import AdsProviderControllersController -from isilon_sdk.v9_11_0.models.ads_provider_domains import AdsProviderDomains -from isilon_sdk.v9_11_0.models.ads_provider_domains_domain import AdsProviderDomainsDomain -from isilon_sdk.v9_11_0.models.ads_provider_search_item import AdsProviderSearchItem -from isilon_sdk.v9_11_0.models.antivirus_policies import AntivirusPolicies -from isilon_sdk.v9_11_0.models.antivirus_policy import AntivirusPolicy -from isilon_sdk.v9_11_0.models.antivirus_quarantine import AntivirusQuarantine -from isilon_sdk.v9_11_0.models.antivirus_quarantine_path_params import AntivirusQuarantinePathParams -from isilon_sdk.v9_11_0.models.antivirus_scan_item import AntivirusScanItem -from isilon_sdk.v9_11_0.models.antivirus_server import AntivirusServer -from isilon_sdk.v9_11_0.models.antivirus_servers import AntivirusServers -from isilon_sdk.v9_11_0.models.antivirus_settings import AntivirusSettings -from isilon_sdk.v9_11_0.models.antivirus_settings_extended import AntivirusSettingsExtended -from isilon_sdk.v9_11_0.models.antivirus_settings_settings import AntivirusSettingsSettings -from isilon_sdk.v9_11_0.models.audit_logs import AuditLogs -from isilon_sdk.v9_11_0.models.audit_logs_blocker_item import AuditLogsBlockerItem -from isilon_sdk.v9_11_0.models.audit_logs_deletion_item import AuditLogsDeletionItem -from isilon_sdk.v9_11_0.models.audit_progress import AuditProgress -from isilon_sdk.v9_11_0.models.audit_progress_progress import AuditProgressProgress -from isilon_sdk.v9_11_0.models.audit_settings import AuditSettings -from isilon_sdk.v9_11_0.models.audit_settings_settings import AuditSettingsSettings -from isilon_sdk.v9_11_0.models.audit_topic import AuditTopic -from isilon_sdk.v9_11_0.models.audit_topic_create_params import AuditTopicCreateParams -from isilon_sdk.v9_11_0.models.audit_topics import AuditTopics -from isilon_sdk.v9_11_0.models.auth_access import AuthAccess -from isilon_sdk.v9_11_0.models.auth_access_access_item import AuthAccessAccessItem -from isilon_sdk.v9_11_0.models.auth_access_access_item_file import AuthAccessAccessItemFile -from isilon_sdk.v9_11_0.models.auth_access_access_item_file_file_permissions import AuthAccessAccessItemFileFilePermissions -from isilon_sdk.v9_11_0.models.auth_access_access_item_file_group import AuthAccessAccessItemFileGroup -from isilon_sdk.v9_11_0.models.auth_access_access_item_share import AuthAccessAccessItemShare -from isilon_sdk.v9_11_0.models.auth_access_access_item_share_effective_user import AuthAccessAccessItemShareEffectiveUser -from isilon_sdk.v9_11_0.models.auth_access_access_item_share_share_permissions import AuthAccessAccessItemShareSharePermissions -from isilon_sdk.v9_11_0.models.auth_cache_item import AuthCacheItem -from isilon_sdk.v9_11_0.models.auth_error import AuthError -from isilon_sdk.v9_11_0.models.auth_group import AuthGroup -from isilon_sdk.v9_11_0.models.auth_group_extended import AuthGroupExtended -from isilon_sdk.v9_11_0.models.auth_group_object_history_item import AuthGroupObjectHistoryItem -from isilon_sdk.v9_11_0.models.auth_groups import AuthGroups -from isilon_sdk.v9_11_0.models.auth_groups_extended import AuthGroupsExtended -from isilon_sdk.v9_11_0.models.auth_id import AuthId -from isilon_sdk.v9_11_0.models.auth_id_ntoken import AuthIdNtoken -from isilon_sdk.v9_11_0.models.auth_id_ntoken_privilege_item import AuthIdNtokenPrivilegeItem -from isilon_sdk.v9_11_0.models.auth_ldap_templates import AuthLdapTemplates -from isilon_sdk.v9_11_0.models.auth_ldap_templates_extended import AuthLdapTemplatesExtended -from isilon_sdk.v9_11_0.models.auth_ldap_templates_ldap_configuration_template import AuthLdapTemplatesLdapConfigurationTemplate -from isilon_sdk.v9_11_0.models.auth_ldap_templates_ldap_configuration_template_extended import AuthLdapTemplatesLdapConfigurationTemplateExtended -from isilon_sdk.v9_11_0.models.auth_log_level import AuthLogLevel -from isilon_sdk.v9_11_0.models.auth_log_level_extended import AuthLogLevelExtended -from isilon_sdk.v9_11_0.models.auth_log_level_level import AuthLogLevelLevel -from isilon_sdk.v9_11_0.models.auth_netgroup import AuthNetgroup -from isilon_sdk.v9_11_0.models.auth_netgroups import AuthNetgroups -from isilon_sdk.v9_11_0.models.auth_privilege import AuthPrivilege -from isilon_sdk.v9_11_0.models.auth_privileges import AuthPrivileges -from isilon_sdk.v9_11_0.models.auth_role import AuthRole -from isilon_sdk.v9_11_0.models.auth_roles import AuthRoles -from isilon_sdk.v9_11_0.models.auth_shells import AuthShells -from isilon_sdk.v9_11_0.models.auth_user import AuthUser -from isilon_sdk.v9_11_0.models.auth_user_extended import AuthUserExtended -from isilon_sdk.v9_11_0.models.auth_users import AuthUsers -from isilon_sdk.v9_11_0.models.auth_users_extended import AuthUsersExtended -from isilon_sdk.v9_11_0.models.auth_wellknowns import AuthWellknowns -from isilon_sdk.v9_11_0.models.avscan_filter import AvscanFilter -from isilon_sdk.v9_11_0.models.avscan_filter_extended import AvscanFilterExtended -from isilon_sdk.v9_11_0.models.avscan_filter_extended_extended import AvscanFilterExtendedExtended -from isilon_sdk.v9_11_0.models.avscan_filters import AvscanFilters -from isilon_sdk.v9_11_0.models.avscan_filters_extended import AvscanFiltersExtended -from isilon_sdk.v9_11_0.models.avscan_job import AvscanJob -from isilon_sdk.v9_11_0.models.avscan_job_create_params import AvscanJobCreateParams -from isilon_sdk.v9_11_0.models.avscan_job_extended import AvscanJobExtended -from isilon_sdk.v9_11_0.models.avscan_jobs import AvscanJobs -from isilon_sdk.v9_11_0.models.avscan_server import AvscanServer -from isilon_sdk.v9_11_0.models.avscan_server_create_params import AvscanServerCreateParams -from isilon_sdk.v9_11_0.models.avscan_server_extended import AvscanServerExtended -from isilon_sdk.v9_11_0.models.avscan_servers import AvscanServers -from isilon_sdk.v9_11_0.models.avscan_settings import AvscanSettings -from isilon_sdk.v9_11_0.models.avscan_settings_settings import AvscanSettingsSettings -from isilon_sdk.v9_11_0.models.catalog_export import CatalogExport -from isilon_sdk.v9_11_0.models.catalog_import import CatalogImport -from isilon_sdk.v9_11_0.models.catalog_list import CatalogList -from isilon_sdk.v9_11_0.models.catalog_list_artifact import CatalogListArtifact -from isilon_sdk.v9_11_0.models.catalog_readme import CatalogReadme -from isilon_sdk.v9_11_0.models.catalog_remove import CatalogRemove -from isilon_sdk.v9_11_0.models.catalog_verify import CatalogVerify -from isilon_sdk.v9_11_0.models.catalog_verify_artifact import CatalogVerifyArtifact -from isilon_sdk.v9_11_0.models.certificate_authority_item import CertificateAuthorityItem -from isilon_sdk.v9_11_0.models.certificate_settings import CertificateSettings -from isilon_sdk.v9_11_0.models.certificate_settings_extended import CertificateSettingsExtended -from isilon_sdk.v9_11_0.models.certificate_settings_settings import CertificateSettingsSettings -from isilon_sdk.v9_11_0.models.certificates_ca_id_params import CertificatesCaIdParams -from isilon_sdk.v9_11_0.models.certificates_ca_item import CertificatesCaItem -from isilon_sdk.v9_11_0.models.certificates_identity import CertificatesIdentity -from isilon_sdk.v9_11_0.models.certificates_identity_certificate import CertificatesIdentityCertificate -from isilon_sdk.v9_11_0.models.certificates_identity_item import CertificatesIdentityItem -from isilon_sdk.v9_11_0.models.certificates_peer import CertificatesPeer -from isilon_sdk.v9_11_0.models.certificates_server import CertificatesServer -from isilon_sdk.v9_11_0.models.certificates_settings import CertificatesSettings -from isilon_sdk.v9_11_0.models.certificates_settings_settings import CertificatesSettingsSettings -from isilon_sdk.v9_11_0.models.certificates_syslog import CertificatesSyslog -from isilon_sdk.v9_11_0.models.certificates_syslog_certificate import CertificatesSyslogCertificate -from isilon_sdk.v9_11_0.models.certificates_syslog_certificate_fingerprint import CertificatesSyslogCertificateFingerprint -from isilon_sdk.v9_11_0.models.certificates_syslog_id_params import CertificatesSyslogIdParams -from isilon_sdk.v9_11_0.models.certificates_syslog_item import CertificatesSyslogItem -from isilon_sdk.v9_11_0.models.changelist_entries import ChangelistEntries -from isilon_sdk.v9_11_0.models.changelist_entries_extended import ChangelistEntriesExtended -from isilon_sdk.v9_11_0.models.changelist_entry import ChangelistEntry -from isilon_sdk.v9_11_0.models.changelist_entry_atime import ChangelistEntryAtime -from isilon_sdk.v9_11_0.models.changelist_lins import ChangelistLins -from isilon_sdk.v9_11_0.models.changelist_lins_atime import ChangelistLinsAtime -from isilon_sdk.v9_11_0.models.changelist_lins_extended import ChangelistLinsExtended -from isilon_sdk.v9_11_0.models.changelists_changelist_diff_regions import ChangelistsChangelistDiffRegions -from isilon_sdk.v9_11_0.models.changelists_changelist_diff_regions_diff_region import ChangelistsChangelistDiffRegionsDiffRegion -from isilon_sdk.v9_11_0.models.check_report import CheckReport -from isilon_sdk.v9_11_0.models.check_report_report_item import CheckReportReportItem -from isilon_sdk.v9_11_0.models.check_settings import CheckSettings -from isilon_sdk.v9_11_0.models.check_settings_extended import CheckSettingsExtended -from isilon_sdk.v9_11_0.models.check_settings_settings import CheckSettingsSettings -from isilon_sdk.v9_11_0.models.cloud_access import CloudAccess -from isilon_sdk.v9_11_0.models.cloud_access_cluster import CloudAccessCluster -from isilon_sdk.v9_11_0.models.cloud_access_item import CloudAccessItem -from isilon_sdk.v9_11_0.models.cloud_account import CloudAccount -from isilon_sdk.v9_11_0.models.cloud_account_create_params import CloudAccountCreateParams -from isilon_sdk.v9_11_0.models.cloud_account_credential_provider import CloudAccountCredentialProvider -from isilon_sdk.v9_11_0.models.cloud_accounts import CloudAccounts -from isilon_sdk.v9_11_0.models.cloud_accounts_extended import CloudAccountsExtended -from isilon_sdk.v9_11_0.models.cloud_certificates import CloudCertificates -from isilon_sdk.v9_11_0.models.cloud_job import CloudJob -from isilon_sdk.v9_11_0.models.cloud_job_create_params import CloudJobCreateParams -from isilon_sdk.v9_11_0.models.cloud_job_extended import CloudJobExtended -from isilon_sdk.v9_11_0.models.cloud_job_files import CloudJobFiles -from isilon_sdk.v9_11_0.models.cloud_job_files_name import CloudJobFilesName -from isilon_sdk.v9_11_0.models.cloud_job_job_engine_job import CloudJobJobEngineJob -from isilon_sdk.v9_11_0.models.cloud_jobs import CloudJobs -from isilon_sdk.v9_11_0.models.cloud_jobs_files import CloudJobsFiles -from isilon_sdk.v9_11_0.models.cloud_jobs_files_file import CloudJobsFilesFile -from isilon_sdk.v9_11_0.models.cloud_pool import CloudPool -from isilon_sdk.v9_11_0.models.cloud_pools import CloudPools -from isilon_sdk.v9_11_0.models.cloud_pools_extended import CloudPoolsExtended -from isilon_sdk.v9_11_0.models.cloud_proxies import CloudProxies -from isilon_sdk.v9_11_0.models.cloud_proxies_extended import CloudProxiesExtended -from isilon_sdk.v9_11_0.models.cloud_proxy import CloudProxy -from isilon_sdk.v9_11_0.models.cloud_settings import CloudSettings -from isilon_sdk.v9_11_0.models.cloud_settings_settings import CloudSettingsSettings -from isilon_sdk.v9_11_0.models.cloud_settings_settings_cloud_policy_defaults import CloudSettingsSettingsCloudPolicyDefaults -from isilon_sdk.v9_11_0.models.cloud_settings_settings_cloud_policy_defaults_cache import CloudSettingsSettingsCloudPolicyDefaultsCache -from isilon_sdk.v9_11_0.models.cloud_settings_settings_sleep_timeout_archive import CloudSettingsSettingsSleepTimeoutArchive -from isilon_sdk.v9_11_0.models.cluster_ac import ClusterAc -from isilon_sdk.v9_11_0.models.cluster_acs import ClusterAcs -from isilon_sdk.v9_11_0.models.cluster_add_node_item import ClusterAddNodeItem -from isilon_sdk.v9_11_0.models.cluster_archive_item import ClusterArchiveItem -from isilon_sdk.v9_11_0.models.cluster_assess_item import ClusterAssessItem -from isilon_sdk.v9_11_0.models.cluster_config import ClusterConfig -from isilon_sdk.v9_11_0.models.cluster_config_device import ClusterConfigDevice -from isilon_sdk.v9_11_0.models.cluster_config_onefs_version import ClusterConfigOnefsVersion -from isilon_sdk.v9_11_0.models.cluster_config_timezone import ClusterConfigTimezone -from isilon_sdk.v9_11_0.models.cluster_drain import ClusterDrain -from isilon_sdk.v9_11_0.models.cluster_drain_list import ClusterDrainList -from isilon_sdk.v9_11_0.models.cluster_drain_timeout import ClusterDrainTimeout -from isilon_sdk.v9_11_0.models.cluster_drain_timeout_extended import ClusterDrainTimeoutExtended -from isilon_sdk.v9_11_0.models.cluster_email import ClusterEmail -from isilon_sdk.v9_11_0.models.cluster_email_extended import ClusterEmailExtended -from isilon_sdk.v9_11_0.models.cluster_email_settings import ClusterEmailSettings -from isilon_sdk.v9_11_0.models.cluster_firmware_assess_item import ClusterFirmwareAssessItem -from isilon_sdk.v9_11_0.models.cluster_firmware_device import ClusterFirmwareDevice -from isilon_sdk.v9_11_0.models.cluster_firmware_device_node import ClusterFirmwareDeviceNode -from isilon_sdk.v9_11_0.models.cluster_firmware_progress import ClusterFirmwareProgress -from isilon_sdk.v9_11_0.models.cluster_firmware_status import ClusterFirmwareStatus -from isilon_sdk.v9_11_0.models.cluster_firmware_status_node import ClusterFirmwareStatusNode -from isilon_sdk.v9_11_0.models.cluster_firmware_upgrade_item import ClusterFirmwareUpgradeItem -from isilon_sdk.v9_11_0.models.cluster_identity import ClusterIdentity -from isilon_sdk.v9_11_0.models.cluster_identity_extended import ClusterIdentityExtended -from isilon_sdk.v9_11_0.models.cluster_identity_logon import ClusterIdentityLogon -from isilon_sdk.v9_11_0.models.cluster_identity_logon_extended import ClusterIdentityLogonExtended -from isilon_sdk.v9_11_0.models.cluster_internal_networks import ClusterInternalNetworks -from isilon_sdk.v9_11_0.models.cluster_internal_networks_extended import ClusterInternalNetworksExtended -from isilon_sdk.v9_11_0.models.cluster_mixed_mode import ClusterMixedMode -from isilon_sdk.v9_11_0.models.cluster_mode_settings import ClusterModeSettings -from isilon_sdk.v9_11_0.models.cluster_mode_settings_extended import ClusterModeSettingsExtended -from isilon_sdk.v9_11_0.models.cluster_node import ClusterNode -from isilon_sdk.v9_11_0.models.cluster_node_drive_d_config import ClusterNodeDriveDConfig -from isilon_sdk.v9_11_0.models.cluster_node_extended import ClusterNodeExtended -from isilon_sdk.v9_11_0.models.cluster_node_hardware import ClusterNodeHardware -from isilon_sdk.v9_11_0.models.cluster_node_partition import ClusterNodePartition -from isilon_sdk.v9_11_0.models.cluster_node_partition_statfs import ClusterNodePartitionStatfs -from isilon_sdk.v9_11_0.models.cluster_node_partitions import ClusterNodePartitions -from isilon_sdk.v9_11_0.models.cluster_node_sensor import ClusterNodeSensor -from isilon_sdk.v9_11_0.models.cluster_node_sensor_value import ClusterNodeSensorValue -from isilon_sdk.v9_11_0.models.cluster_node_sensors import ClusterNodeSensors -from isilon_sdk.v9_11_0.models.cluster_node_sled import ClusterNodeSled -from isilon_sdk.v9_11_0.models.cluster_node_state import ClusterNodeState -from isilon_sdk.v9_11_0.models.cluster_node_state_extended import ClusterNodeStateExtended -from isilon_sdk.v9_11_0.models.cluster_node_status import ClusterNodeStatus -from isilon_sdk.v9_11_0.models.cluster_nodes import ClusterNodes -from isilon_sdk.v9_11_0.models.cluster_nodes_available import ClusterNodesAvailable -from isilon_sdk.v9_11_0.models.cluster_nodes_available_node import ClusterNodesAvailableNode -from isilon_sdk.v9_11_0.models.cluster_nodes_error import ClusterNodesError -from isilon_sdk.v9_11_0.models.cluster_nodes_extended import ClusterNodesExtended -from isilon_sdk.v9_11_0.models.cluster_nodes_extended_extended import ClusterNodesExtendedExtended -from isilon_sdk.v9_11_0.models.cluster_nodes_extended_extended_extended import ClusterNodesExtendedExtendedExtended -from isilon_sdk.v9_11_0.models.cluster_nodes_onefs_version import ClusterNodesOnefsVersion -from isilon_sdk.v9_11_0.models.cluster_owner import ClusterOwner -from isilon_sdk.v9_11_0.models.cluster_patch_patch import ClusterPatchPatch -from isilon_sdk.v9_11_0.models.cluster_patch_patches import ClusterPatchPatches -from isilon_sdk.v9_11_0.models.cluster_patch_patches_patch import ClusterPatchPatchesPatch -from isilon_sdk.v9_11_0.models.cluster_rekey import ClusterRekey -from isilon_sdk.v9_11_0.models.cluster_rekey_extended import ClusterRekeyExtended -from isilon_sdk.v9_11_0.models.cluster_rekey_item import ClusterRekeyItem -from isilon_sdk.v9_11_0.models.cluster_retry_last_action_item import ClusterRetryLastActionItem -from isilon_sdk.v9_11_0.models.cluster_services import ClusterServices -from isilon_sdk.v9_11_0.models.cluster_services_node import ClusterServicesNode -from isilon_sdk.v9_11_0.models.cluster_services_node_service import ClusterServicesNodeService -from isilon_sdk.v9_11_0.models.cluster_skip_optional import ClusterSkipOptional -from isilon_sdk.v9_11_0.models.cluster_statfs import ClusterStatfs -from isilon_sdk.v9_11_0.models.cluster_status import ClusterStatus -from isilon_sdk.v9_11_0.models.cluster_status_domain import ClusterStatusDomain -from isilon_sdk.v9_11_0.models.cluster_time import ClusterTime -from isilon_sdk.v9_11_0.models.cluster_time_extended import ClusterTimeExtended -from isilon_sdk.v9_11_0.models.cluster_time_extended_extended import ClusterTimeExtendedExtended -from isilon_sdk.v9_11_0.models.cluster_time_node import ClusterTimeNode -from isilon_sdk.v9_11_0.models.cluster_timezone import ClusterTimezone -from isilon_sdk.v9_11_0.models.cluster_timezone_extended import ClusterTimezoneExtended -from isilon_sdk.v9_11_0.models.cluster_timezone_settings import ClusterTimezoneSettings -from isilon_sdk.v9_11_0.models.cluster_timezone_settings_extended import ClusterTimezoneSettingsExtended -from isilon_sdk.v9_11_0.models.cluster_unblock import ClusterUnblock -from isilon_sdk.v9_11_0.models.cluster_update_lnns import ClusterUpdateLnns -from isilon_sdk.v9_11_0.models.cluster_update_lnns_lnn import ClusterUpdateLnnsLnn -from isilon_sdk.v9_11_0.models.cluster_upgrade import ClusterUpgrade -from isilon_sdk.v9_11_0.models.cluster_upgrade_item import ClusterUpgradeItem -from isilon_sdk.v9_11_0.models.cluster_version import ClusterVersion -from isilon_sdk.v9_11_0.models.cluster_version_node import ClusterVersionNode -from isilon_sdk.v9_11_0.models.config_catalog_status import ConfigCatalogStatus -from isilon_sdk.v9_11_0.models.config_catalog_status_extended import ConfigCatalogStatusExtended -from isilon_sdk.v9_11_0.models.config_catalog_status_last_failed_package import ConfigCatalogStatusLastFailedPackage -from isilon_sdk.v9_11_0.models.config_config_lock import ConfigConfigLock -from isilon_sdk.v9_11_0.models.config_export import ConfigExport -from isilon_sdk.v9_11_0.models.config_export_create_params import ConfigExportCreateParams -from isilon_sdk.v9_11_0.models.config_exports import ConfigExports -from isilon_sdk.v9_11_0.models.config_feature import ConfigFeature -from isilon_sdk.v9_11_0.models.config_features import ConfigFeatures -from isilon_sdk.v9_11_0.models.config_features_extended import ConfigFeaturesExtended -from isilon_sdk.v9_11_0.models.config_import import ConfigImport -from isilon_sdk.v9_11_0.models.config_import_create_params import ConfigImportCreateParams -from isilon_sdk.v9_11_0.models.config_import_rules import ConfigImportRules -from isilon_sdk.v9_11_0.models.config_import_rules_network import ConfigImportRulesNetwork -from isilon_sdk.v9_11_0.models.config_import_rules_network_restore import ConfigImportRulesNetworkRestore -from isilon_sdk.v9_11_0.models.config_imports import ConfigImports -from isilon_sdk.v9_11_0.models.config_namespace import ConfigNamespace -from isilon_sdk.v9_11_0.models.config_namespace_entry import ConfigNamespaceEntry -from isilon_sdk.v9_11_0.models.config_namespace_id_params import ConfigNamespaceIdParams -from isilon_sdk.v9_11_0.models.config_network import ConfigNetwork -from isilon_sdk.v9_11_0.models.config_network_network import ConfigNetworkNetwork -from isilon_sdk.v9_11_0.models.config_network_network_range import ConfigNetworkNetworkRange -from isilon_sdk.v9_11_0.models.config_node import ConfigNode -from isilon_sdk.v9_11_0.models.config_nodes import ConfigNodes -from isilon_sdk.v9_11_0.models.config_nodes_extended import ConfigNodesExtended -from isilon_sdk.v9_11_0.models.config_settings import ConfigSettings -from isilon_sdk.v9_11_0.models.config_settings_settings import ConfigSettingsSettings -from isilon_sdk.v9_11_0.models.config_user import ConfigUser -from isilon_sdk.v9_11_0.models.config_user_extended import ConfigUserExtended -from isilon_sdk.v9_11_0.models.config_user_user import ConfigUserUser -from isilon_sdk.v9_11_0.models.connectivity_settings import ConnectivitySettings -from isilon_sdk.v9_11_0.models.connectivity_status import ConnectivityStatus -from isilon_sdk.v9_11_0.models.connectivity_status_extended import ConnectivityStatusExtended -from isilon_sdk.v9_11_0.models.connectivity_status_status import ConnectivityStatusStatus -from isilon_sdk.v9_11_0.models.copy_errors import CopyErrors -from isilon_sdk.v9_11_0.models.copy_errors_copy_errors import CopyErrorsCopyErrors -from isilon_sdk.v9_11_0.models.create_ads_provider_search_item_response import CreateAdsProviderSearchItemResponse -from isilon_sdk.v9_11_0.models.create_ads_provider_search_item_response_object import CreateAdsProviderSearchItemResponseObject -from isilon_sdk.v9_11_0.models.create_antivirus_scan_item_response import CreateAntivirusScanItemResponse -from isilon_sdk.v9_11_0.models.create_cloud_account_response import CreateCloudAccountResponse -from isilon_sdk.v9_11_0.models.create_cloud_job_response import CreateCloudJobResponse -from isilon_sdk.v9_11_0.models.create_cloud_pool_response import CreateCloudPoolResponse -from isilon_sdk.v9_11_0.models.create_cloud_proxy_response import CreateCloudProxyResponse -from isilon_sdk.v9_11_0.models.create_cluster_rekey_item_response import CreateClusterRekeyItemResponse -from isilon_sdk.v9_11_0.models.create_config_export_response import CreateConfigExportResponse -from isilon_sdk.v9_11_0.models.create_config_import_response import CreateConfigImportResponse -from isilon_sdk.v9_11_0.models.create_datamover_account_response import CreateDatamoverAccountResponse -from isilon_sdk.v9_11_0.models.create_datamover_base_policy_response import CreateDatamoverBasePolicyResponse -from isilon_sdk.v9_11_0.models.create_datamover_policy_response import CreateDatamoverPolicyResponse -from isilon_sdk.v9_11_0.models.create_dataset_filter_response import CreateDatasetFilterResponse -from isilon_sdk.v9_11_0.models.create_dataset_workload_response import CreateDatasetWorkloadResponse -from isilon_sdk.v9_11_0.models.create_filepool_policy_response import CreateFilepoolPolicyResponse -from isilon_sdk.v9_11_0.models.create_hardening_apply_item_response import CreateHardeningApplyItemResponse -from isilon_sdk.v9_11_0.models.create_hardware_tape_name_response import CreateHardwareTapeNameResponse -from isilon_sdk.v9_11_0.models.create_hardware_tape_name_response_node import CreateHardwareTapeNameResponseNode -from isilon_sdk.v9_11_0.models.create_hardware_tape_name_response_node_rescan_report_item import CreateHardwareTapeNameResponseNodeRescanReportItem -from isilon_sdk.v9_11_0.models.create_job_job_response import CreateJobJobResponse -from isilon_sdk.v9_11_0.models.create_kmip_server_verify_item_response import CreateKmipServerVerifyItemResponse -from isilon_sdk.v9_11_0.models.create_kmip_server_verify_item_response_node import CreateKmipServerVerifyItemResponseNode -from isilon_sdk.v9_11_0.models.create_nfs_alias_response import CreateNfsAliasResponse -from isilon_sdk.v9_11_0.models.create_nfs_nlm_sessions_check_item_response import CreateNfsNlmSessionsCheckItemResponse -from isilon_sdk.v9_11_0.models.create_oauth_certificate_response import CreateOauthCertificateResponse -from isilon_sdk.v9_11_0.models.create_oauth_oauth2_client_response import CreateOauthOauth2ClientResponse -from isilon_sdk.v9_11_0.models.create_oauth_oauth2_token_exchange_response import CreateOauthOauth2TokenExchangeResponse -from isilon_sdk.v9_11_0.models.create_performance_dataset_response import CreatePerformanceDatasetResponse -from isilon_sdk.v9_11_0.models.create_providers_saml_services_cert_extract_item_response import CreateProvidersSamlServicesCertExtractItemResponse -from isilon_sdk.v9_11_0.models.create_providers_saml_services_cert_extract_item_response_certificate_info import CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo -from isilon_sdk.v9_11_0.models.create_providers_saml_services_cert_extract_item_response_certificate_info_value import CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue -from isilon_sdk.v9_11_0.models.create_providers_saml_services_idp_response import CreateProvidersSamlServicesIdpResponse -from isilon_sdk.v9_11_0.models.create_providers_saml_services_metadata_extract_item_response import CreateProvidersSamlServicesMetadataExtractItemResponse -from isilon_sdk.v9_11_0.models.create_providers_saml_services_metadata_extract_item_response_login_endpoint import CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint -from isilon_sdk.v9_11_0.models.create_providers_saml_services_metadata_extract_item_response_logout_endpoint import CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint -from isilon_sdk.v9_11_0.models.create_providers_saml_services_metadata_extract_item_response_signing_certificate import CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate -from isilon_sdk.v9_11_0.models.create_quota_report_response import CreateQuotaReportResponse -from isilon_sdk.v9_11_0.models.create_response import CreateResponse -from isilon_sdk.v9_11_0.models.create_s3_key_response import CreateS3KeyResponse -from isilon_sdk.v9_11_0.models.create_s3_key_response_keys import CreateS3KeyResponseKeys -from isilon_sdk.v9_11_0.models.create_sed_migrate_item_response import CreateSedMigrateItemResponse -from isilon_sdk.v9_11_0.models.create_smb_log_level_filter_response import CreateSmbLogLevelFilterResponse -from isilon_sdk.v9_11_0.models.create_smb_share_response import CreateSmbShareResponse -from isilon_sdk.v9_11_0.models.create_snapshot_alias_response import CreateSnapshotAliasResponse -from isilon_sdk.v9_11_0.models.create_snapshot_lock_response import CreateSnapshotLockResponse -from isilon_sdk.v9_11_0.models.create_snapshot_schedule_response import CreateSnapshotScheduleResponse -from isilon_sdk.v9_11_0.models.create_snapshot_snapshot_response import CreateSnapshotSnapshotResponse -from isilon_sdk.v9_11_0.models.create_storagepool_tier_response import CreateStoragepoolTierResponse -from isilon_sdk.v9_11_0.models.create_supportassist_task_item_response import CreateSupportassistTaskItemResponse -from isilon_sdk.v9_11_0.models.create_sync_reports_rotate_item_response import CreateSyncReportsRotateItemResponse -from isilon_sdk.v9_11_0.models.create_throttling_bw_rule_response import CreateThrottlingBwRuleResponse -from isilon_sdk.v9_11_0.models.create_user_reset_password_item_response import CreateUserResetPasswordItemResponse -from isilon_sdk.v9_11_0.models.datamover_account import DatamoverAccount -from isilon_sdk.v9_11_0.models.datamover_account_create_params import DatamoverAccountCreateParams -from isilon_sdk.v9_11_0.models.datamover_account_credentials import DatamoverAccountCredentials -from isilon_sdk.v9_11_0.models.datamover_account_credentials_certificate import DatamoverAccountCredentialsCertificate -from isilon_sdk.v9_11_0.models.datamover_account_credentials_certificate_extended import DatamoverAccountCredentialsCertificateExtended -from isilon_sdk.v9_11_0.models.datamover_account_credentials_cloud import DatamoverAccountCredentialsCloud -from isilon_sdk.v9_11_0.models.datamover_account_credentials_cloud_extended import DatamoverAccountCredentialsCloudExtended -from isilon_sdk.v9_11_0.models.datamover_account_credentials_cloud_proxy import DatamoverAccountCredentialsCloudProxy -from isilon_sdk.v9_11_0.models.datamover_account_credentials_cloud_proxy_extended import DatamoverAccountCredentialsCloudProxyExtended -from isilon_sdk.v9_11_0.models.datamover_account_credentials_extended import DatamoverAccountCredentialsExtended -from isilon_sdk.v9_11_0.models.datamover_account_extended import DatamoverAccountExtended -from isilon_sdk.v9_11_0.models.datamover_accounts import DatamoverAccounts -from isilon_sdk.v9_11_0.models.datamover_base_policies import DatamoverBasePolicies -from isilon_sdk.v9_11_0.models.datamover_base_policies_policy import DatamoverBasePoliciesPolicy -from isilon_sdk.v9_11_0.models.datamover_base_policies_policy_schedule import DatamoverBasePoliciesPolicySchedule -from isilon_sdk.v9_11_0.models.datamover_base_policy import DatamoverBasePolicy -from isilon_sdk.v9_11_0.models.datamover_base_policy_schedule import DatamoverBasePolicySchedule -from isilon_sdk.v9_11_0.models.datamover_base_policy_src_dataset_retention import DatamoverBasePolicySrcDatasetRetention -from isilon_sdk.v9_11_0.models.datamover_config import DatamoverConfig -from isilon_sdk.v9_11_0.models.datamover_config_extended import DatamoverConfigExtended -from isilon_sdk.v9_11_0.models.datamover_config_namespace import DatamoverConfigNamespace -from isilon_sdk.v9_11_0.models.datamover_dataset import DatamoverDataset -from isilon_sdk.v9_11_0.models.datamover_dataset_dataset_global_id import DatamoverDatasetDatasetGlobalId -from isilon_sdk.v9_11_0.models.datamover_dataset_dataset_global_id_dataset_revision import DatamoverDatasetDatasetGlobalIdDatasetRevision -from isilon_sdk.v9_11_0.models.datamover_dataset_extended import DatamoverDatasetExtended -from isilon_sdk.v9_11_0.models.datamover_datasets import DatamoverDatasets -from isilon_sdk.v9_11_0.models.datamover_datasets_extended import DatamoverDatasetsExtended -from isilon_sdk.v9_11_0.models.datamover_historical_jobs import DatamoverHistoricalJobs -from isilon_sdk.v9_11_0.models.datamover_historical_jobs_job import DatamoverHistoricalJobsJob -from isilon_sdk.v9_11_0.models.datamover_historical_jobs_job_job_failed_task import DatamoverHistoricalJobsJobJobFailedTask -from isilon_sdk.v9_11_0.models.datamover_historical_jobs_job_job_type_specific_attrs import DatamoverHistoricalJobsJobJobTypeSpecificAttrs -from isilon_sdk.v9_11_0.models.datamover_historical_jobs_job_job_type_specific_attrs_dataset_baseline_copy_job import DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJob -from isilon_sdk.v9_11_0.models.datamover_historical_jobs_job_job_type_specific_attrs_dataset_baseline_copy_job_statistics import DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics -from isilon_sdk.v9_11_0.models.datamover_historical_jobs_job_job_type_specific_attrs_dataset_creation_job import DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJob -from isilon_sdk.v9_11_0.models.datamover_historical_jobs_job_job_type_specific_attrs_dataset_creation_job_statistics import DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJobStatistics -from isilon_sdk.v9_11_0.models.datamover_historical_jobs_job_job_type_specific_attrs_dataset_expiration_job import DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJob -from isilon_sdk.v9_11_0.models.datamover_historical_jobs_job_job_type_specific_attrs_dataset_expiration_job_statistics import DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics -from isilon_sdk.v9_11_0.models.datamover_historical_jobs_job_job_type_specific_attrs_dataset_incremental_copy_job import DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJob -from isilon_sdk.v9_11_0.models.datamover_historical_jobs_job_job_type_specific_attrs_dataset_incremental_copy_job_statistics import DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics -from isilon_sdk.v9_11_0.models.datamover_job import DatamoverJob -from isilon_sdk.v9_11_0.models.datamover_job_job_type_specific_attrs import DatamoverJobJobTypeSpecificAttrs -from isilon_sdk.v9_11_0.models.datamover_job_job_type_specific_attrs_dataset_baseline_copy_job import DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob -from isilon_sdk.v9_11_0.models.datamover_job_job_type_specific_attrs_dataset_creation_job import DatamoverJobJobTypeSpecificAttrsDatasetCreationJob -from isilon_sdk.v9_11_0.models.datamover_job_job_type_specific_attrs_dataset_expiration_job import DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob -from isilon_sdk.v9_11_0.models.datamover_job_job_type_specific_attrs_dataset_incremental_copy_job import DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob -from isilon_sdk.v9_11_0.models.datamover_jobs import DatamoverJobs -from isilon_sdk.v9_11_0.models.datamover_policies import DatamoverPolicies -from isilon_sdk.v9_11_0.models.datamover_policy import DatamoverPolicy -from isilon_sdk.v9_11_0.models.datamover_policy_create_params import DatamoverPolicyCreateParams -from isilon_sdk.v9_11_0.models.datamover_policy_extended import DatamoverPolicyExtended -from isilon_sdk.v9_11_0.models.datamover_policy_policy_specific_attr import DatamoverPolicyPolicySpecificAttr -from isilon_sdk.v9_11_0.models.datamover_policy_policy_specific_attr_copy_policy import DatamoverPolicyPolicySpecificAttrCopyPolicy -from isilon_sdk.v9_11_0.models.datamover_policy_policy_specific_attr_copy_policy_dataset_copy_policy_base import DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBase -from isilon_sdk.v9_11_0.models.datamover_policy_policy_specific_attr_copy_policy_extended import DatamoverPolicyPolicySpecificAttrCopyPolicyExtended -from isilon_sdk.v9_11_0.models.datamover_policy_policy_specific_attr_creation_policy import DatamoverPolicyPolicySpecificAttrCreationPolicy -from isilon_sdk.v9_11_0.models.datamover_policy_policy_specific_attr_expiration_policy import DatamoverPolicyPolicySpecificAttrExpirationPolicy -from isilon_sdk.v9_11_0.models.datamover_policy_policy_specific_attr_extended import DatamoverPolicyPolicySpecificAttrExtended -from isilon_sdk.v9_11_0.models.datamover_policy_policy_specific_attr_repeat_copy_policy import DatamoverPolicyPolicySpecificAttrRepeatCopyPolicy -from isilon_sdk.v9_11_0.models.datamover_policy_policy_specific_attr_repeat_copy_policy_extended import DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended -from isilon_sdk.v9_11_0.models.datamover_policy_schedule import DatamoverPolicySchedule -from isilon_sdk.v9_11_0.models.dataset_filter import DatasetFilter -from isilon_sdk.v9_11_0.models.dataset_filter_metric_values import DatasetFilterMetricValues -from isilon_sdk.v9_11_0.models.dataset_filter_metric_values_create_params import DatasetFilterMetricValuesCreateParams -from isilon_sdk.v9_11_0.models.dataset_filters import DatasetFilters -from isilon_sdk.v9_11_0.models.dataset_filters_extended import DatasetFiltersExtended -from isilon_sdk.v9_11_0.models.dataset_workload import DatasetWorkload -from isilon_sdk.v9_11_0.models.dataset_workload_limits import DatasetWorkloadLimits -from isilon_sdk.v9_11_0.models.dataset_workloads import DatasetWorkloads -from isilon_sdk.v9_11_0.models.dataset_workloads_extended import DatasetWorkloadsExtended -from isilon_sdk.v9_11_0.models.debug_stats import DebugStats -from isilon_sdk.v9_11_0.models.debug_stats_describe import DebugStatsDescribe -from isilon_sdk.v9_11_0.models.debug_stats_handler import DebugStatsHandler -from isilon_sdk.v9_11_0.models.dedupe_dedupe_summary import DedupeDedupeSummary -from isilon_sdk.v9_11_0.models.dedupe_dedupe_summary_summary import DedupeDedupeSummarySummary -from isilon_sdk.v9_11_0.models.dedupe_report import DedupeReport -from isilon_sdk.v9_11_0.models.dedupe_report_extended import DedupeReportExtended -from isilon_sdk.v9_11_0.models.dedupe_reports import DedupeReports -from isilon_sdk.v9_11_0.models.dedupe_settings import DedupeSettings -from isilon_sdk.v9_11_0.models.dedupe_settings_extended import DedupeSettingsExtended -from isilon_sdk.v9_11_0.models.dedupe_settings_settings import DedupeSettingsSettings -from isilon_sdk.v9_11_0.models.diagnostics_gather import DiagnosticsGather -from isilon_sdk.v9_11_0.models.diagnostics_gather_gather import DiagnosticsGatherGather -from isilon_sdk.v9_11_0.models.diagnostics_gather_groups import DiagnosticsGatherGroups -from isilon_sdk.v9_11_0.models.diagnostics_gather_settings import DiagnosticsGatherSettings -from isilon_sdk.v9_11_0.models.diagnostics_gather_settings_extended import DiagnosticsGatherSettingsExtended -from isilon_sdk.v9_11_0.models.diagnostics_gather_settings_settings import DiagnosticsGatherSettingsSettings -from isilon_sdk.v9_11_0.models.diagnostics_gather_start_item import DiagnosticsGatherStartItem -from isilon_sdk.v9_11_0.models.diagnostics_gather_status import DiagnosticsGatherStatus -from isilon_sdk.v9_11_0.models.diagnostics_gather_status_gather import DiagnosticsGatherStatusGather -from isilon_sdk.v9_11_0.models.diagnostics_gather_status_gather_extended import DiagnosticsGatherStatusGatherExtended -from isilon_sdk.v9_11_0.models.diagnostics_gather_status_gather_status import DiagnosticsGatherStatusGatherStatus -from isilon_sdk.v9_11_0.models.diagnostics_netlogger_settings import DiagnosticsNetloggerSettings -from isilon_sdk.v9_11_0.models.diagnostics_netlogger_settings_settings import DiagnosticsNetloggerSettingsSettings -from isilon_sdk.v9_11_0.models.diagnostics_netlogger_status import DiagnosticsNetloggerStatus -from isilon_sdk.v9_11_0.models.directory_query import DirectoryQuery -from isilon_sdk.v9_11_0.models.directory_query_scope import DirectoryQueryScope -from isilon_sdk.v9_11_0.models.directory_query_scope_conditions import DirectoryQueryScopeConditions -from isilon_sdk.v9_11_0.models.drives_drive_firmware import DrivesDriveFirmware -from isilon_sdk.v9_11_0.models.drives_drive_firmware_node import DrivesDriveFirmwareNode -from isilon_sdk.v9_11_0.models.drives_drive_firmware_node_drive import DrivesDriveFirmwareNodeDrive -from isilon_sdk.v9_11_0.models.drives_drive_firmware_update import DrivesDriveFirmwareUpdate -from isilon_sdk.v9_11_0.models.drives_drive_firmware_update_item import DrivesDriveFirmwareUpdateItem -from isilon_sdk.v9_11_0.models.drives_drive_firmware_update_node import DrivesDriveFirmwareUpdateNode -from isilon_sdk.v9_11_0.models.drives_drive_firmware_update_node_status import DrivesDriveFirmwareUpdateNodeStatus -from isilon_sdk.v9_11_0.models.drives_drive_format_item import DrivesDriveFormatItem -from isilon_sdk.v9_11_0.models.drives_drive_purpose_item import DrivesDrivePurposeItem -from isilon_sdk.v9_11_0.models.empty import Empty -from isilon_sdk.v9_11_0.models.error import Error -from isilon_sdk.v9_11_0.models.event_alert_condition import EventAlertCondition -from isilon_sdk.v9_11_0.models.event_alert_conditions import EventAlertConditions -from isilon_sdk.v9_11_0.models.event_alert_conditions_alert_condition import EventAlertConditionsAlertCondition -from isilon_sdk.v9_11_0.models.event_categories import EventCategories -from isilon_sdk.v9_11_0.models.event_category import EventCategory -from isilon_sdk.v9_11_0.models.event_channel import EventChannel -from isilon_sdk.v9_11_0.models.event_channel_parameters import EventChannelParameters -from isilon_sdk.v9_11_0.models.event_channels import EventChannels -from isilon_sdk.v9_11_0.models.event_event import EventEvent -from isilon_sdk.v9_11_0.models.event_eventgroup_definitions import EventEventgroupDefinitions -from isilon_sdk.v9_11_0.models.event_eventgroup_definitions_eventgroup_definition import EventEventgroupDefinitionsEventgroupDefinition -from isilon_sdk.v9_11_0.models.event_eventgroup_occurrence import EventEventgroupOccurrence -from isilon_sdk.v9_11_0.models.event_eventgroup_occurrences import EventEventgroupOccurrences -from isilon_sdk.v9_11_0.models.event_eventgroup_occurrences_eventgroup import EventEventgroupOccurrencesEventgroup -from isilon_sdk.v9_11_0.models.event_eventlist import EventEventlist -from isilon_sdk.v9_11_0.models.event_eventlist_event import EventEventlistEvent -from isilon_sdk.v9_11_0.models.event_eventlists import EventEventlists -from isilon_sdk.v9_11_0.models.event_maintenance import EventMaintenance -from isilon_sdk.v9_11_0.models.event_maintenance_extended import EventMaintenanceExtended -from isilon_sdk.v9_11_0.models.event_maintenance_history_item import EventMaintenanceHistoryItem -from isilon_sdk.v9_11_0.models.event_settings import EventSettings -from isilon_sdk.v9_11_0.models.event_settings_settings import EventSettingsSettings -from isilon_sdk.v9_11_0.models.event_suppress import EventSuppress -from isilon_sdk.v9_11_0.models.event_suppress_id_params import EventSuppressIdParams -from isilon_sdk.v9_11_0.models.event_suppress_suppression import EventSuppressSuppression -from isilon_sdk.v9_11_0.models.event_threshold import EventThreshold -from isilon_sdk.v9_11_0.models.event_threshold_defaults import EventThresholdDefaults -from isilon_sdk.v9_11_0.models.event_threshold_defaults_crit import EventThresholdDefaultsCrit -from isilon_sdk.v9_11_0.models.event_thresholds import EventThresholds -from isilon_sdk.v9_11_0.models.file_filter_settings import FileFilterSettings -from isilon_sdk.v9_11_0.models.file_filter_settings_extended import FileFilterSettingsExtended -from isilon_sdk.v9_11_0.models.file_filter_settings_settings import FileFilterSettingsSettings -from isilon_sdk.v9_11_0.models.filepool_default_policy import FilepoolDefaultPolicy -from isilon_sdk.v9_11_0.models.filepool_default_policy_default_policy import FilepoolDefaultPolicyDefaultPolicy -from isilon_sdk.v9_11_0.models.filepool_default_policy_default_policy_action import FilepoolDefaultPolicyDefaultPolicyAction -from isilon_sdk.v9_11_0.models.filepool_default_policy_extended import FilepoolDefaultPolicyExtended -from isilon_sdk.v9_11_0.models.filepool_policies import FilepoolPolicies -from isilon_sdk.v9_11_0.models.filepool_policies_extended import FilepoolPoliciesExtended -from isilon_sdk.v9_11_0.models.filepool_policy import FilepoolPolicy -from isilon_sdk.v9_11_0.models.filepool_policy_action import FilepoolPolicyAction -from isilon_sdk.v9_11_0.models.filepool_policy_action_extended import FilepoolPolicyActionExtended -from isilon_sdk.v9_11_0.models.filepool_policy_action_extended_extended import FilepoolPolicyActionExtendedExtended -from isilon_sdk.v9_11_0.models.filepool_policy_extended import FilepoolPolicyExtended -from isilon_sdk.v9_11_0.models.filepool_policy_extended_extended import FilepoolPolicyExtendedExtended -from isilon_sdk.v9_11_0.models.filepool_policy_file_matching_pattern import FilepoolPolicyFileMatchingPattern -from isilon_sdk.v9_11_0.models.filepool_policy_file_matching_pattern_or_criteria_item import FilepoolPolicyFileMatchingPatternOrCriteriaItem -from isilon_sdk.v9_11_0.models.filepool_policy_file_matching_pattern_or_criteria_item_and_criteria_item import FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem -from isilon_sdk.v9_11_0.models.filepool_template import FilepoolTemplate -from isilon_sdk.v9_11_0.models.filepool_template_action import FilepoolTemplateAction -from isilon_sdk.v9_11_0.models.filepool_template_action_extended import FilepoolTemplateActionExtended -from isilon_sdk.v9_11_0.models.filepool_template_extended import FilepoolTemplateExtended -from isilon_sdk.v9_11_0.models.filepool_templates import FilepoolTemplates -from isilon_sdk.v9_11_0.models.filepool_templates_extended import FilepoolTemplatesExtended -from isilon_sdk.v9_11_0.models.firewall_dscp import FirewallDscp -from isilon_sdk.v9_11_0.models.firewall_dscp_extended import FirewallDscpExtended -from isilon_sdk.v9_11_0.models.firewall_dscp_rule import FirewallDscpRule -from isilon_sdk.v9_11_0.models.firewall_dscp_rule_params import FirewallDscpRuleParams -from isilon_sdk.v9_11_0.models.firewall_dscp_rule_params_dst_ports import FirewallDscpRuleParamsDstPorts -from isilon_sdk.v9_11_0.models.firewall_policies import FirewallPolicies -from isilon_sdk.v9_11_0.models.firewall_policies_extended import FirewallPoliciesExtended -from isilon_sdk.v9_11_0.models.firewall_policy import FirewallPolicy -from isilon_sdk.v9_11_0.models.firewall_policy_create_params import FirewallPolicyCreateParams -from isilon_sdk.v9_11_0.models.firewall_rules import FirewallRules -from isilon_sdk.v9_11_0.models.firewall_service import FirewallService -from isilon_sdk.v9_11_0.models.firewall_services import FirewallServices -from isilon_sdk.v9_11_0.models.firewall_settings import FirewallSettings -from isilon_sdk.v9_11_0.models.firewall_settings_extended import FirewallSettingsExtended -from isilon_sdk.v9_11_0.models.firewall_settings_settings import FirewallSettingsSettings -from isilon_sdk.v9_11_0.models.fsa_index import FsaIndex -from isilon_sdk.v9_11_0.models.fsa_result import FsaResult -from isilon_sdk.v9_11_0.models.fsa_results import FsaResults -from isilon_sdk.v9_11_0.models.fsa_settings import FsaSettings -from isilon_sdk.v9_11_0.models.fsa_settings_settings import FsaSettingsSettings -from isilon_sdk.v9_11_0.models.ftp_settings import FtpSettings -from isilon_sdk.v9_11_0.models.ftp_settings_extended import FtpSettingsExtended -from isilon_sdk.v9_11_0.models.ftp_settings_settings import FtpSettingsSettings -from isilon_sdk.v9_11_0.models.group_members import GroupMembers -from isilon_sdk.v9_11_0.models.groupnet_subnet import GroupnetSubnet -from isilon_sdk.v9_11_0.models.groupnet_subnets import GroupnetSubnets -from isilon_sdk.v9_11_0.models.groupnets_summary import GroupnetsSummary -from isilon_sdk.v9_11_0.models.groupnets_summary_summary import GroupnetsSummarySummary -from isilon_sdk.v9_11_0.models.groupnets_summary_summary_list_item import GroupnetsSummarySummaryListItem -from isilon_sdk.v9_11_0.models.hardening_apply_item import HardeningApplyItem -from isilon_sdk.v9_11_0.models.hardening_list import HardeningList -from isilon_sdk.v9_11_0.models.hardening_list_profile import HardeningListProfile -from isilon_sdk.v9_11_0.models.hardening_reports import HardeningReports -from isilon_sdk.v9_11_0.models.hardening_reports_report import HardeningReportsReport -from isilon_sdk.v9_11_0.models.hardening_reports_report_profile import HardeningReportsReportProfile -from isilon_sdk.v9_11_0.models.hardening_reports_report_profile_cluster_wide import HardeningReportsReportProfileClusterWide -from isilon_sdk.v9_11_0.models.hardening_reports_report_profile_cluster_wide_rule import HardeningReportsReportProfileClusterWideRule -from isilon_sdk.v9_11_0.models.hardening_reports_report_profile_cluster_wide_rule_settings_comparisons_list_item import HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItem -from isilon_sdk.v9_11_0.models.hardening_reports_report_profile_cluster_wide_rule_settings_comparisons_list_item_comparison import HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison -from isilon_sdk.v9_11_0.models.hardening_reports_report_profile_node import HardeningReportsReportProfileNode -from isilon_sdk.v9_11_0.models.hardening_state import HardeningState -from isilon_sdk.v9_11_0.models.hardening_state_state import HardeningStateState -from isilon_sdk.v9_11_0.models.hardware_fcport import HardwareFcport -from isilon_sdk.v9_11_0.models.hardware_fcports import HardwareFcports -from isilon_sdk.v9_11_0.models.hardware_fcports_node import HardwareFcportsNode -from isilon_sdk.v9_11_0.models.hardware_fcports_node_fcport import HardwareFcportsNodeFcport -from isilon_sdk.v9_11_0.models.hardware_tape_name_params import HardwareTapeNameParams -from isilon_sdk.v9_11_0.models.hardware_tapes import HardwareTapes -from isilon_sdk.v9_11_0.models.hardware_tapes_devices import HardwareTapesDevices -from isilon_sdk.v9_11_0.models.hardware_tapes_devices_media_changer import HardwareTapesDevicesMediaChanger -from isilon_sdk.v9_11_0.models.hardware_tapes_devices_media_changer_path import HardwareTapesDevicesMediaChangerPath -from isilon_sdk.v9_11_0.models.hdfs_crypto_encryption_zone import HdfsCryptoEncryptionZone -from isilon_sdk.v9_11_0.models.hdfs_crypto_encryption_zones import HdfsCryptoEncryptionZones -from isilon_sdk.v9_11_0.models.hdfs_crypto_encryption_zones_encryption_zone import HdfsCryptoEncryptionZonesEncryptionZone -from isilon_sdk.v9_11_0.models.hdfs_crypto_settings import HdfsCryptoSettings -from isilon_sdk.v9_11_0.models.hdfs_crypto_settings_settings import HdfsCryptoSettingsSettings -from isilon_sdk.v9_11_0.models.hdfs_fsimage_job import HdfsFsimageJob -from isilon_sdk.v9_11_0.models.hdfs_fsimage_job_job import HdfsFsimageJobJob -from isilon_sdk.v9_11_0.models.hdfs_fsimage_job_settings import HdfsFsimageJobSettings -from isilon_sdk.v9_11_0.models.hdfs_fsimage_job_settings_settings import HdfsFsimageJobSettingsSettings -from isilon_sdk.v9_11_0.models.hdfs_fsimage_latest import HdfsFsimageLatest -from isilon_sdk.v9_11_0.models.hdfs_fsimage_latest_latest import HdfsFsimageLatestLatest -from isilon_sdk.v9_11_0.models.hdfs_fsimage_settings import HdfsFsimageSettings -from isilon_sdk.v9_11_0.models.hdfs_fsimage_settings_settings import HdfsFsimageSettingsSettings -from isilon_sdk.v9_11_0.models.hdfs_inotify_settings import HdfsInotifySettings -from isilon_sdk.v9_11_0.models.hdfs_inotify_settings_settings import HdfsInotifySettingsSettings -from isilon_sdk.v9_11_0.models.hdfs_inotify_stream import HdfsInotifyStream -from isilon_sdk.v9_11_0.models.hdfs_inotify_stream_stream import HdfsInotifyStreamStream -from isilon_sdk.v9_11_0.models.hdfs_log_level import HdfsLogLevel -from isilon_sdk.v9_11_0.models.hdfs_proxyuser import HdfsProxyuser -from isilon_sdk.v9_11_0.models.hdfs_proxyuser_create_params import HdfsProxyuserCreateParams -from isilon_sdk.v9_11_0.models.hdfs_proxyusers import HdfsProxyusers -from isilon_sdk.v9_11_0.models.hdfs_proxyusers_extended import HdfsProxyusersExtended -from isilon_sdk.v9_11_0.models.hdfs_rack import HdfsRack -from isilon_sdk.v9_11_0.models.hdfs_racks import HdfsRacks -from isilon_sdk.v9_11_0.models.hdfs_racks_extended import HdfsRacksExtended -from isilon_sdk.v9_11_0.models.hdfs_ranger_plugin_settings import HdfsRangerPluginSettings -from isilon_sdk.v9_11_0.models.hdfs_ranger_plugin_settings_settings import HdfsRangerPluginSettingsSettings -from isilon_sdk.v9_11_0.models.hdfs_settings import HdfsSettings -from isilon_sdk.v9_11_0.models.hdfs_settings_global import HdfsSettingsGlobal -from isilon_sdk.v9_11_0.models.hdfs_settings_global_global_settings import HdfsSettingsGlobalGlobalSettings -from isilon_sdk.v9_11_0.models.hdfs_settings_settings import HdfsSettingsSettings -from isilon_sdk.v9_11_0.models.healthcheck_autoupdate import HealthcheckAutoupdate -from isilon_sdk.v9_11_0.models.healthcheck_autoupdate_autoupdate import HealthcheckAutoupdateAutoupdate -from isilon_sdk.v9_11_0.models.healthcheck_checklist import HealthcheckChecklist -from isilon_sdk.v9_11_0.models.healthcheck_checklist_delivery_item import HealthcheckChecklistDeliveryItem -from isilon_sdk.v9_11_0.models.healthcheck_checklist_item import HealthcheckChecklistItem -from isilon_sdk.v9_11_0.models.healthcheck_checklist_item_thresholds import HealthcheckChecklistItemThresholds -from isilon_sdk.v9_11_0.models.healthcheck_checklists import HealthcheckChecklists -from isilon_sdk.v9_11_0.models.healthcheck_definition import HealthcheckDefinition -from isilon_sdk.v9_11_0.models.healthcheck_definition_create_params import HealthcheckDefinitionCreateParams -from isilon_sdk.v9_11_0.models.healthcheck_definition_file import HealthcheckDefinitionFile -from isilon_sdk.v9_11_0.models.healthcheck_definition_service import HealthcheckDefinitionService -from isilon_sdk.v9_11_0.models.healthcheck_definitions import HealthcheckDefinitions -from isilon_sdk.v9_11_0.models.healthcheck_evaluation import HealthcheckEvaluation -from isilon_sdk.v9_11_0.models.healthcheck_evaluation_create_params import HealthcheckEvaluationCreateParams -from isilon_sdk.v9_11_0.models.healthcheck_evaluation_detail import HealthcheckEvaluationDetail -from isilon_sdk.v9_11_0.models.healthcheck_evaluation_extended import HealthcheckEvaluationExtended -from isilon_sdk.v9_11_0.models.healthcheck_evaluation_override import HealthcheckEvaluationOverride -from isilon_sdk.v9_11_0.models.healthcheck_evaluation_smartlog import HealthcheckEvaluationSmartlog -from isilon_sdk.v9_11_0.models.healthcheck_evaluations import HealthcheckEvaluations -from isilon_sdk.v9_11_0.models.healthcheck_item import HealthcheckItem -from isilon_sdk.v9_11_0.models.healthcheck_item_parameter import HealthcheckItemParameter -from isilon_sdk.v9_11_0.models.healthcheck_items import HealthcheckItems -from isilon_sdk.v9_11_0.models.healthcheck_parameter import HealthcheckParameter -from isilon_sdk.v9_11_0.models.healthcheck_parameters import HealthcheckParameters -from isilon_sdk.v9_11_0.models.healthcheck_schedule import HealthcheckSchedule -from isilon_sdk.v9_11_0.models.healthcheck_schedule_create_params import HealthcheckScheduleCreateParams -from isilon_sdk.v9_11_0.models.healthcheck_schedule_extended import HealthcheckScheduleExtended -from isilon_sdk.v9_11_0.models.healthcheck_schedules import HealthcheckSchedules -from isilon_sdk.v9_11_0.models.healthcheck_version import HealthcheckVersion -from isilon_sdk.v9_11_0.models.histogram_stat_by import HistogramStatBy -from isilon_sdk.v9_11_0.models.histogram_stat_by_breakout import HistogramStatByBreakout -from isilon_sdk.v9_11_0.models.history_file import HistoryFile -from isilon_sdk.v9_11_0.models.history_file_statistic import HistoryFileStatistic -from isilon_sdk.v9_11_0.models.http_service import HttpService -from isilon_sdk.v9_11_0.models.http_services import HttpServices -from isilon_sdk.v9_11_0.models.http_services_extended import HttpServicesExtended -from isilon_sdk.v9_11_0.models.http_settings import HttpSettings -from isilon_sdk.v9_11_0.models.http_settings_extended import HttpSettingsExtended -from isilon_sdk.v9_11_0.models.http_settings_settings import HttpSettingsSettings -from isilon_sdk.v9_11_0.models.iceage_settings import IceageSettings -from isilon_sdk.v9_11_0.models.iceage_settings_settings import IceageSettingsSettings -from isilon_sdk.v9_11_0.models.id_resolution_domains import IdResolutionDomains -from isilon_sdk.v9_11_0.models.id_resolution_domains_error import IdResolutionDomainsError -from isilon_sdk.v9_11_0.models.id_resolution_domains_path import IdResolutionDomainsPath -from isilon_sdk.v9_11_0.models.id_resolution_lins import IdResolutionLins -from isilon_sdk.v9_11_0.models.id_resolution_lins_path import IdResolutionLinsPath -from isilon_sdk.v9_11_0.models.id_resolution_zone import IdResolutionZone -from isilon_sdk.v9_11_0.models.id_resolution_zones import IdResolutionZones -from isilon_sdk.v9_11_0.models.inline_settings import InlineSettings -from isilon_sdk.v9_11_0.models.inline_settings_settings import InlineSettingsSettings -from isilon_sdk.v9_11_0.models.internal_networks_preferred_network import InternalNetworksPreferredNetwork -from isilon_sdk.v9_11_0.models.internal_networks_settings import InternalNetworksSettings -from isilon_sdk.v9_11_0.models.internal_networks_settings_extended import InternalNetworksSettingsExtended -from isilon_sdk.v9_11_0.models.internal_networks_settings_internal_networks_settings import InternalNetworksSettingsInternalNetworksSettings -from isilon_sdk.v9_11_0.models.internal_networks_settings_internal_networks_settings_network_item import InternalNetworksSettingsInternalNetworksSettingsNetworkItem -from isilon_sdk.v9_11_0.models.internal_networks_settings_internal_networks_settings_network_item_backend_config import InternalNetworksSettingsInternalNetworksSettingsNetworkItemBackendConfig -from isilon_sdk.v9_11_0.models.internal_networks_settings_network import InternalNetworksSettingsNetwork -from isilon_sdk.v9_11_0.models.internal_networks_settings_network_backend_config import InternalNetworksSettingsNetworkBackendConfig -from isilon_sdk.v9_11_0.models.job_event import JobEvent -from isilon_sdk.v9_11_0.models.job_events import JobEvents -from isilon_sdk.v9_11_0.models.job_job import JobJob -from isilon_sdk.v9_11_0.models.job_job_avscan_params import JobJobAvscanParams -from isilon_sdk.v9_11_0.models.job_job_changelistcreate_params import JobJobChangelistcreateParams -from isilon_sdk.v9_11_0.models.job_job_create_params import JobJobCreateParams -from isilon_sdk.v9_11_0.models.job_job_domainmark_params import JobJobDomainmarkParams -from isilon_sdk.v9_11_0.models.job_job_esrsmftdownload_params import JobJobEsrsmftdownloadParams -from isilon_sdk.v9_11_0.models.job_job_extended import JobJobExtended -from isilon_sdk.v9_11_0.models.job_job_filepolicy_params import JobJobFilepolicyParams -from isilon_sdk.v9_11_0.models.job_job_prepair_params import JobJobPrepairParams -from isilon_sdk.v9_11_0.models.job_job_smartpoolstree_params import JobJobSmartpoolstreeParams -from isilon_sdk.v9_11_0.models.job_job_snaprevert_params import JobJobSnaprevertParams -from isilon_sdk.v9_11_0.models.job_job_summary import JobJobSummary -from isilon_sdk.v9_11_0.models.job_job_summary_summary import JobJobSummarySummary -from isilon_sdk.v9_11_0.models.job_job_treedelete_params import JobJobTreedeleteParams -from isilon_sdk.v9_11_0.models.job_jobs import JobJobs -from isilon_sdk.v9_11_0.models.job_policies import JobPolicies -from isilon_sdk.v9_11_0.models.job_policy import JobPolicy -from isilon_sdk.v9_11_0.models.job_policy_interval import JobPolicyInterval -from isilon_sdk.v9_11_0.models.job_recent import JobRecent -from isilon_sdk.v9_11_0.models.job_recent_recent_job import JobRecentRecentJob -from isilon_sdk.v9_11_0.models.job_report import JobReport -from isilon_sdk.v9_11_0.models.job_reports import JobReports -from isilon_sdk.v9_11_0.models.job_settings import JobSettings -from isilon_sdk.v9_11_0.models.job_settings_settings import JobSettingsSettings -from isilon_sdk.v9_11_0.models.job_statistics import JobStatistics -from isilon_sdk.v9_11_0.models.job_statistics_job import JobStatisticsJob -from isilon_sdk.v9_11_0.models.job_statistics_job_node import JobStatisticsJobNode -from isilon_sdk.v9_11_0.models.job_statistics_job_node_cpu import JobStatisticsJobNodeCpu -from isilon_sdk.v9_11_0.models.job_statistics_job_node_io import JobStatisticsJobNodeIo -from isilon_sdk.v9_11_0.models.job_statistics_job_node_io_read import JobStatisticsJobNodeIoRead -from isilon_sdk.v9_11_0.models.job_statistics_job_node_io_write import JobStatisticsJobNodeIoWrite -from isilon_sdk.v9_11_0.models.job_statistics_job_node_memory import JobStatisticsJobNodeMemory -from isilon_sdk.v9_11_0.models.job_statistics_job_node_memory_physical import JobStatisticsJobNodeMemoryPhysical -from isilon_sdk.v9_11_0.models.job_statistics_job_node_memory_virtual import JobStatisticsJobNodeMemoryVirtual -from isilon_sdk.v9_11_0.models.job_statistics_job_node_worker import JobStatisticsJobNodeWorker -from isilon_sdk.v9_11_0.models.job_type import JobType -from isilon_sdk.v9_11_0.models.job_types import JobTypes -from isilon_sdk.v9_11_0.models.keymanager_cluster import KeymanagerCluster -from isilon_sdk.v9_11_0.models.keymanager_cluster_domain import KeymanagerClusterDomain -from isilon_sdk.v9_11_0.models.kmip_server import KmipServer -from isilon_sdk.v9_11_0.models.kmip_server_ca_chain_item import KmipServerCaChainItem -from isilon_sdk.v9_11_0.models.kmip_server_client_cert import KmipServerClientCert -from isilon_sdk.v9_11_0.models.kmip_server_extended import KmipServerExtended -from isilon_sdk.v9_11_0.models.kmip_server_verify_item import KmipServerVerifyItem -from isilon_sdk.v9_11_0.models.kmip_servers import KmipServers -from isilon_sdk.v9_11_0.models.kmip_servers_extended import KmipServersExtended -from isilon_sdk.v9_11_0.models.lfn import Lfn -from isilon_sdk.v9_11_0.models.lfn_domain import LfnDomain -from isilon_sdk.v9_11_0.models.lfn_path_params import LfnPathParams -from isilon_sdk.v9_11_0.models.license_activation import LicenseActivation -from isilon_sdk.v9_11_0.models.license_activation_elms_error import LicenseActivationElmsError -from isilon_sdk.v9_11_0.models.license_activation_item import LicenseActivationItem -from isilon_sdk.v9_11_0.models.license_generate import LicenseGenerate -from isilon_sdk.v9_11_0.models.license_generate_hardware_item import LicenseGenerateHardwareItem -from isilon_sdk.v9_11_0.models.license_license import LicenseLicense -from isilon_sdk.v9_11_0.models.license_license_create_params import LicenseLicenseCreateParams -from isilon_sdk.v9_11_0.models.license_license_tier import LicenseLicenseTier -from isilon_sdk.v9_11_0.models.license_license_tier_entitlements_exceeded_alert import LicenseLicenseTierEntitlementsExceededAlert -from isilon_sdk.v9_11_0.models.license_licenses import LicenseLicenses -from isilon_sdk.v9_11_0.models.maintenance_settings import MaintenanceSettings -from isilon_sdk.v9_11_0.models.maintenance_settings_component import MaintenanceSettingsComponent -from isilon_sdk.v9_11_0.models.maintenance_settings_extended import MaintenanceSettingsExtended -from isilon_sdk.v9_11_0.models.maintenance_settings_history_item import MaintenanceSettingsHistoryItem -from isilon_sdk.v9_11_0.models.mapping_dump import MappingDump -from isilon_sdk.v9_11_0.models.mapping_identities import MappingIdentities -from isilon_sdk.v9_11_0.models.mapping_identities_create_params import MappingIdentitiesCreateParams -from isilon_sdk.v9_11_0.models.mapping_identities_target import MappingIdentitiesTarget -from isilon_sdk.v9_11_0.models.mapping_identity import MappingIdentity -from isilon_sdk.v9_11_0.models.mapping_identity_target import MappingIdentityTarget -from isilon_sdk.v9_11_0.models.mapping_users_lookup import MappingUsersLookup -from isilon_sdk.v9_11_0.models.mapping_users_lookup_mapping_item import MappingUsersLookupMappingItem -from isilon_sdk.v9_11_0.models.mapping_users_lookup_mapping_item_group import MappingUsersLookupMappingItemGroup -from isilon_sdk.v9_11_0.models.mapping_users_rules import MappingUsersRules -from isilon_sdk.v9_11_0.models.mapping_users_rules_extended import MappingUsersRulesExtended -from isilon_sdk.v9_11_0.models.mapping_users_rules_parameters import MappingUsersRulesParameters -from isilon_sdk.v9_11_0.models.mapping_users_rules_rule import MappingUsersRulesRule -from isilon_sdk.v9_11_0.models.mapping_users_rules_rule_extended import MappingUsersRulesRuleExtended -from isilon_sdk.v9_11_0.models.mapping_users_rules_rule_options import MappingUsersRulesRuleOptions -from isilon_sdk.v9_11_0.models.mapping_users_rules_rule_options_extended import MappingUsersRulesRuleOptionsExtended -from isilon_sdk.v9_11_0.models.mapping_users_rules_rules import MappingUsersRulesRules -from isilon_sdk.v9_11_0.models.mapping_users_rules_rules_parameters import MappingUsersRulesRulesParameters -from isilon_sdk.v9_11_0.models.mapping_users_rules_rules_parameters_default_unix_user import MappingUsersRulesRulesParametersDefaultUnixUser -from isilon_sdk.v9_11_0.models.member_object import MemberObject -from isilon_sdk.v9_11_0.models.metadataiq_certificate import MetadataiqCertificate -from isilon_sdk.v9_11_0.models.metadataiq_settings import MetadataiqSettings -from isilon_sdk.v9_11_0.models.metadataiq_settings_settings import MetadataiqSettingsSettings -from isilon_sdk.v9_11_0.models.metadataiq_settings_settings_consumer import MetadataiqSettingsSettingsConsumer -from isilon_sdk.v9_11_0.models.metadataiq_settings_settings_consumer_database_info import MetadataiqSettingsSettingsConsumerDatabaseInfo -from isilon_sdk.v9_11_0.models.metadataiq_settings_settings_producer import MetadataiqSettingsSettingsProducer -from isilon_sdk.v9_11_0.models.metadataiq_status import MetadataiqStatus -from isilon_sdk.v9_11_0.models.metadataiq_status_status import MetadataiqStatusStatus -from isilon_sdk.v9_11_0.models.metadataiq_status_status_consumer import MetadataiqStatusStatusConsumer -from isilon_sdk.v9_11_0.models.metadataiq_status_status_producer import MetadataiqStatusStatusProducer -from isilon_sdk.v9_11_0.models.name_lin import NameLin -from isilon_sdk.v9_11_0.models.name_lins import NameLins -from isilon_sdk.v9_11_0.models.name_lins_extended import NameLinsExtended -from isilon_sdk.v9_11_0.models.namespace_access_points import NamespaceAccessPoints -from isilon_sdk.v9_11_0.models.namespace_access_points_namespaces import NamespaceAccessPointsNamespaces -from isilon_sdk.v9_11_0.models.namespace_acl import NamespaceAcl -from isilon_sdk.v9_11_0.models.namespace_metadata import NamespaceMetadata -from isilon_sdk.v9_11_0.models.namespace_metadata_attrs import NamespaceMetadataAttrs -from isilon_sdk.v9_11_0.models.namespace_metadata_list import NamespaceMetadataList -from isilon_sdk.v9_11_0.models.namespace_metadata_list_attrs import NamespaceMetadataListAttrs -from isilon_sdk.v9_11_0.models.namespace_object import NamespaceObject -from isilon_sdk.v9_11_0.models.namespace_objects import NamespaceObjects -from isilon_sdk.v9_11_0.models.ndmp_contexts_backup import NdmpContextsBackup -from isilon_sdk.v9_11_0.models.ndmp_contexts_backup_context import NdmpContextsBackupContext -from isilon_sdk.v9_11_0.models.ndmp_contexts_backup_context_extended import NdmpContextsBackupContextExtended -from isilon_sdk.v9_11_0.models.ndmp_contexts_backup_context_session import NdmpContextsBackupContextSession -from isilon_sdk.v9_11_0.models.ndmp_contexts_backup_extended import NdmpContextsBackupExtended -from isilon_sdk.v9_11_0.models.ndmp_contexts_bre import NdmpContextsBre -from isilon_sdk.v9_11_0.models.ndmp_contexts_bre_context import NdmpContextsBreContext -from isilon_sdk.v9_11_0.models.ndmp_contexts_bre_context_env_variable import NdmpContextsBreContextEnvVariable -from isilon_sdk.v9_11_0.models.ndmp_contexts_bre_context_extended import NdmpContextsBreContextExtended -from isilon_sdk.v9_11_0.models.ndmp_contexts_bre_extended import NdmpContextsBreExtended -from isilon_sdk.v9_11_0.models.ndmp_diagnostics import NdmpDiagnostics -from isilon_sdk.v9_11_0.models.ndmp_diagnostics_diagnostics import NdmpDiagnosticsDiagnostics -from isilon_sdk.v9_11_0.models.ndmp_dumpdate import NdmpDumpdate -from isilon_sdk.v9_11_0.models.ndmp_dumpdates import NdmpDumpdates -from isilon_sdk.v9_11_0.models.ndmp_logs import NdmpLogs -from isilon_sdk.v9_11_0.models.ndmp_logs_node import NdmpLogsNode -from isilon_sdk.v9_11_0.models.ndmp_session import NdmpSession -from isilon_sdk.v9_11_0.models.ndmp_sessions import NdmpSessions -from isilon_sdk.v9_11_0.models.ndmp_sessions_extended import NdmpSessionsExtended -from isilon_sdk.v9_11_0.models.ndmp_sessions_node import NdmpSessionsNode -from isilon_sdk.v9_11_0.models.ndmp_sessions_node_session import NdmpSessionsNodeSession -from isilon_sdk.v9_11_0.models.ndmp_settings_dmas import NdmpSettingsDmas -from isilon_sdk.v9_11_0.models.ndmp_settings_dmas_dmavendor import NdmpSettingsDmasDmavendor -from isilon_sdk.v9_11_0.models.ndmp_settings_global import NdmpSettingsGlobal -from isilon_sdk.v9_11_0.models.ndmp_settings_global_global import NdmpSettingsGlobalGlobal -from isilon_sdk.v9_11_0.models.ndmp_settings_preferred_ip import NdmpSettingsPreferredIp -from isilon_sdk.v9_11_0.models.ndmp_settings_preferred_ip_data_subnet import NdmpSettingsPreferredIpDataSubnet -from isilon_sdk.v9_11_0.models.ndmp_settings_preferred_ips import NdmpSettingsPreferredIps -from isilon_sdk.v9_11_0.models.ndmp_settings_preferred_ips_preference import NdmpSettingsPreferredIpsPreference -from isilon_sdk.v9_11_0.models.ndmp_settings_variable import NdmpSettingsVariable -from isilon_sdk.v9_11_0.models.ndmp_settings_variables import NdmpSettingsVariables -from isilon_sdk.v9_11_0.models.ndmp_settings_variables_variable import NdmpSettingsVariablesVariable -from isilon_sdk.v9_11_0.models.ndmp_settings_variables_variable_path_variable import NdmpSettingsVariablesVariablePathVariable -from isilon_sdk.v9_11_0.models.ndmp_user import NdmpUser -from isilon_sdk.v9_11_0.models.ndmp_user_extended import NdmpUserExtended -from isilon_sdk.v9_11_0.models.ndmp_users import NdmpUsers -from isilon_sdk.v9_11_0.models.network_discover import NetworkDiscover -from isilon_sdk.v9_11_0.models.network_discover_discover import NetworkDiscoverDiscover -from isilon_sdk.v9_11_0.models.network_dnscache import NetworkDnscache -from isilon_sdk.v9_11_0.models.network_dnscache_extended import NetworkDnscacheExtended -from isilon_sdk.v9_11_0.models.network_dnscache_settings import NetworkDnscacheSettings -from isilon_sdk.v9_11_0.models.network_external import NetworkExternal -from isilon_sdk.v9_11_0.models.network_external_extended import NetworkExternalExtended -from isilon_sdk.v9_11_0.models.network_external_settings import NetworkExternalSettings -from isilon_sdk.v9_11_0.models.network_groupnet import NetworkGroupnet -from isilon_sdk.v9_11_0.models.network_groupnets import NetworkGroupnets -from isilon_sdk.v9_11_0.models.network_interface import NetworkInterface -from isilon_sdk.v9_11_0.models.network_interface_name import NetworkInterfaceName -from isilon_sdk.v9_11_0.models.network_interface_names import NetworkInterfaceNames -from isilon_sdk.v9_11_0.models.network_interface_owner import NetworkInterfaceOwner -from isilon_sdk.v9_11_0.models.network_interface_vlan import NetworkInterfaceVlan -from isilon_sdk.v9_11_0.models.network_interfaces import NetworkInterfaces -from isilon_sdk.v9_11_0.models.network_ping import NetworkPing -from isilon_sdk.v9_11_0.models.network_ping_ping import NetworkPingPing -from isilon_sdk.v9_11_0.models.network_pool import NetworkPool -from isilon_sdk.v9_11_0.models.network_pools import NetworkPools -from isilon_sdk.v9_11_0.models.nfs_alias import NfsAlias -from isilon_sdk.v9_11_0.models.nfs_alias_create_params import NfsAliasCreateParams -from isilon_sdk.v9_11_0.models.nfs_aliases import NfsAliases -from isilon_sdk.v9_11_0.models.nfs_aliases_extended import NfsAliasesExtended -from isilon_sdk.v9_11_0.models.nfs_check import NfsCheck -from isilon_sdk.v9_11_0.models.nfs_check_extended import NfsCheckExtended -from isilon_sdk.v9_11_0.models.nfs_export import NfsExport -from isilon_sdk.v9_11_0.models.nfs_export_extended import NfsExportExtended -from isilon_sdk.v9_11_0.models.nfs_export_map_all import NfsExportMapAll -from isilon_sdk.v9_11_0.models.nfs_export_map_all_secondary_groups import NfsExportMapAllSecondaryGroups -from isilon_sdk.v9_11_0.models.nfs_exports import NfsExports -from isilon_sdk.v9_11_0.models.nfs_exports_extended import NfsExportsExtended -from isilon_sdk.v9_11_0.models.nfs_exports_summary import NfsExportsSummary -from isilon_sdk.v9_11_0.models.nfs_exports_summary_summary import NfsExportsSummarySummary -from isilon_sdk.v9_11_0.models.nfs_lock import NfsLock -from isilon_sdk.v9_11_0.models.nfs_locks import NfsLocks -from isilon_sdk.v9_11_0.models.nfs_log_level import NfsLogLevel -from isilon_sdk.v9_11_0.models.nfs_netgroup import NfsNetgroup -from isilon_sdk.v9_11_0.models.nfs_netgroup_settings import NfsNetgroupSettings -from isilon_sdk.v9_11_0.models.nfs_nlm_locks import NfsNlmLocks -from isilon_sdk.v9_11_0.models.nfs_nlm_locks_lock import NfsNlmLocksLock -from isilon_sdk.v9_11_0.models.nfs_nlm_sessions import NfsNlmSessions -from isilon_sdk.v9_11_0.models.nfs_nlm_sessions_extended import NfsNlmSessionsExtended -from isilon_sdk.v9_11_0.models.nfs_nlm_sessions_session import NfsNlmSessionsSession -from isilon_sdk.v9_11_0.models.nfs_nlm_waiters import NfsNlmWaiters -from isilon_sdk.v9_11_0.models.nfs_settings_export import NfsSettingsExport -from isilon_sdk.v9_11_0.models.nfs_settings_export_settings import NfsSettingsExportSettings -from isilon_sdk.v9_11_0.models.nfs_settings_export_settings_map_all import NfsSettingsExportSettingsMapAll -from isilon_sdk.v9_11_0.models.nfs_settings_global import NfsSettingsGlobal -from isilon_sdk.v9_11_0.models.nfs_settings_global_settings import NfsSettingsGlobalSettings -from isilon_sdk.v9_11_0.models.nfs_settings_zone import NfsSettingsZone -from isilon_sdk.v9_11_0.models.nfs_settings_zone_settings import NfsSettingsZoneSettings -from isilon_sdk.v9_11_0.models.nfs_waiters import NfsWaiters -from isilon_sdk.v9_11_0.models.node_driveconfig import NodeDriveconfig -from isilon_sdk.v9_11_0.models.node_driveconfig_extended import NodeDriveconfigExtended -from isilon_sdk.v9_11_0.models.node_driveconfig_node import NodeDriveconfigNode -from isilon_sdk.v9_11_0.models.node_driveconfig_node_alert import NodeDriveconfigNodeAlert -from isilon_sdk.v9_11_0.models.node_driveconfig_node_allow import NodeDriveconfigNodeAllow -from isilon_sdk.v9_11_0.models.node_driveconfig_node_automatic_replacement_recognition import NodeDriveconfigNodeAutomaticReplacementRecognition -from isilon_sdk.v9_11_0.models.node_driveconfig_node_instant_secure_erase import NodeDriveconfigNodeInstantSecureErase -from isilon_sdk.v9_11_0.models.node_driveconfig_node_log import NodeDriveconfigNodeLog -from isilon_sdk.v9_11_0.models.node_driveconfig_node_reboot import NodeDriveconfigNodeReboot -from isilon_sdk.v9_11_0.models.node_driveconfig_node_spin_wait import NodeDriveconfigNodeSpinWait -from isilon_sdk.v9_11_0.models.node_driveconfig_node_stall import NodeDriveconfigNodeStall -from isilon_sdk.v9_11_0.models.node_driveconfig_stall import NodeDriveconfigStall -from isilon_sdk.v9_11_0.models.node_drives import NodeDrives -from isilon_sdk.v9_11_0.models.node_drives_node import NodeDrivesNode -from isilon_sdk.v9_11_0.models.node_drives_node_drive import NodeDrivesNodeDrive -from isilon_sdk.v9_11_0.models.node_drives_node_drive_firmware import NodeDrivesNodeDriveFirmware -from isilon_sdk.v9_11_0.models.node_drives_purposelist import NodeDrivesPurposelist -from isilon_sdk.v9_11_0.models.node_drives_purposelist_node import NodeDrivesPurposelistNode -from isilon_sdk.v9_11_0.models.node_drives_purposelist_node_purpose import NodeDrivesPurposelistNodePurpose -from isilon_sdk.v9_11_0.models.node_hardware import NodeHardware -from isilon_sdk.v9_11_0.models.node_hardware_fast import NodeHardwareFast -from isilon_sdk.v9_11_0.models.node_hardware_fast_node import NodeHardwareFastNode -from isilon_sdk.v9_11_0.models.node_hardware_node import NodeHardwareNode -from isilon_sdk.v9_11_0.models.node_internal_ip_address import NodeInternalIpAddress -from isilon_sdk.v9_11_0.models.node_internal_ip_address_node import NodeInternalIpAddressNode -from isilon_sdk.v9_11_0.models.node_partitions import NodePartitions -from isilon_sdk.v9_11_0.models.node_partitions_node import NodePartitionsNode -from isilon_sdk.v9_11_0.models.node_sensors import NodeSensors -from isilon_sdk.v9_11_0.models.node_sensors_node import NodeSensorsNode -from isilon_sdk.v9_11_0.models.node_sleds import NodeSleds -from isilon_sdk.v9_11_0.models.node_sleds_node import NodeSledsNode -from isilon_sdk.v9_11_0.models.node_state import NodeState -from isilon_sdk.v9_11_0.models.node_state_node import NodeStateNode -from isilon_sdk.v9_11_0.models.node_state_node_readonly import NodeStateNodeReadonly -from isilon_sdk.v9_11_0.models.node_state_node_smartfail import NodeStateNodeSmartfail -from isilon_sdk.v9_11_0.models.node_state_readonly import NodeStateReadonly -from isilon_sdk.v9_11_0.models.node_state_readonly_node import NodeStateReadonlyNode -from isilon_sdk.v9_11_0.models.node_state_servicelight import NodeStateServicelight -from isilon_sdk.v9_11_0.models.node_state_servicelight_extended import NodeStateServicelightExtended -from isilon_sdk.v9_11_0.models.node_state_servicelight_node import NodeStateServicelightNode -from isilon_sdk.v9_11_0.models.node_state_smartfail import NodeStateSmartfail -from isilon_sdk.v9_11_0.models.node_state_smartfail_node import NodeStateSmartfailNode -from isilon_sdk.v9_11_0.models.node_status import NodeStatus -from isilon_sdk.v9_11_0.models.node_status_batterystatus import NodeStatusBatterystatus -from isilon_sdk.v9_11_0.models.node_status_batterystatus_node import NodeStatusBatterystatusNode -from isilon_sdk.v9_11_0.models.node_status_cpu import NodeStatusCpu -from isilon_sdk.v9_11_0.models.node_status_cpu_error import NodeStatusCpuError -from isilon_sdk.v9_11_0.models.node_status_cpu_node import NodeStatusCpuNode -from isilon_sdk.v9_11_0.models.node_status_drive_security_level import NodeStatusDriveSecurityLevel -from isilon_sdk.v9_11_0.models.node_status_drive_security_level_node import NodeStatusDriveSecurityLevelNode -from isilon_sdk.v9_11_0.models.node_status_extended import NodeStatusExtended -from isilon_sdk.v9_11_0.models.node_status_node import NodeStatusNode -from isilon_sdk.v9_11_0.models.node_status_node_batterystatus import NodeStatusNodeBatterystatus -from isilon_sdk.v9_11_0.models.node_status_node_capacity_item import NodeStatusNodeCapacityItem -from isilon_sdk.v9_11_0.models.node_status_node_cpu import NodeStatusNodeCpu -from isilon_sdk.v9_11_0.models.node_status_node_drive_security_level import NodeStatusNodeDriveSecurityLevel -from isilon_sdk.v9_11_0.models.node_status_node_extended import NodeStatusNodeExtended -from isilon_sdk.v9_11_0.models.node_status_node_nvram import NodeStatusNodeNvram -from isilon_sdk.v9_11_0.models.node_status_node_powersupplies import NodeStatusNodePowersupplies -from isilon_sdk.v9_11_0.models.node_status_node_status import NodeStatusNodeStatus -from isilon_sdk.v9_11_0.models.node_status_node_status_server_status_item import NodeStatusNodeStatusServerStatusItem -from isilon_sdk.v9_11_0.models.node_status_node_status_system_stats import NodeStatusNodeStatusSystemStats -from isilon_sdk.v9_11_0.models.node_status_nvram import NodeStatusNvram -from isilon_sdk.v9_11_0.models.node_status_nvram_node import NodeStatusNvramNode -from isilon_sdk.v9_11_0.models.node_status_nvram_node_battery import NodeStatusNvramNodeBattery -from isilon_sdk.v9_11_0.models.node_status_powersupplies import NodeStatusPowersupplies -from isilon_sdk.v9_11_0.models.node_status_powersupplies_node import NodeStatusPowersuppliesNode -from isilon_sdk.v9_11_0.models.node_status_powersupplies_node_supply import NodeStatusPowersuppliesNodeSupply -from isilon_sdk.v9_11_0.models.nodes_node_firmware_device import NodesNodeFirmwareDevice -from isilon_sdk.v9_11_0.models.nodes_node_internal_ip_address import NodesNodeInternalIpAddress -from isilon_sdk.v9_11_0.models.nodetype_assess import NodetypeAssess -from isilon_sdk.v9_11_0.models.nodetype_assess_from_nodepool import NodetypeAssessFromNodepool -from isilon_sdk.v9_11_0.models.ntp_server import NtpServer -from isilon_sdk.v9_11_0.models.ntp_server_create_params import NtpServerCreateParams -from isilon_sdk.v9_11_0.models.ntp_server_extended import NtpServerExtended -from isilon_sdk.v9_11_0.models.ntp_servers import NtpServers -from isilon_sdk.v9_11_0.models.ntp_settings import NtpSettings -from isilon_sdk.v9_11_0.models.ntp_settings_settings import NtpSettingsSettings -from isilon_sdk.v9_11_0.models.oauth_certificate import OauthCertificate -from isilon_sdk.v9_11_0.models.oauth_certificate_create_params import OauthCertificateCreateParams -from isilon_sdk.v9_11_0.models.oauth_certificates import OauthCertificates -from isilon_sdk.v9_11_0.models.oauth_certificates_extended import OauthCertificatesExtended -from isilon_sdk.v9_11_0.models.oauth_oauth2_client import OauthOauth2Client -from isilon_sdk.v9_11_0.models.oauth_oauth2_clients import OauthOauth2Clients -from isilon_sdk.v9_11_0.models.oauth_oauth2_clients_extended import OauthOauth2ClientsExtended -from isilon_sdk.v9_11_0.models.oauth_oauth2_token_exchange import OauthOauth2TokenExchange -from isilon_sdk.v9_11_0.models.oauth_oauth2_token_exchanges import OauthOauth2TokenExchanges -from isilon_sdk.v9_11_0.models.oauth_oauth2_token_exchanges_extended import OauthOauth2TokenExchangesExtended -from isilon_sdk.v9_11_0.models.oauth_settings import OauthSettings -from isilon_sdk.v9_11_0.models.oauth_settings_settings import OauthSettingsSettings -from isilon_sdk.v9_11_0.models.os_security import OsSecurity -from isilon_sdk.v9_11_0.models.os_security_node import OsSecurityNode -from isilon_sdk.v9_11_0.models.papi_settings import PapiSettings -from isilon_sdk.v9_11_0.models.papi_settings_child_settings import PapiSettingsChildSettings -from isilon_sdk.v9_11_0.models.papi_settings_extended import PapiSettingsExtended -from isilon_sdk.v9_11_0.models.papi_settings_papi_settings import PapiSettingsPapiSettings -from isilon_sdk.v9_11_0.models.papi_settings_papi_settings_child_settings import PapiSettingsPapiSettingsChildSettings -from isilon_sdk.v9_11_0.models.performance_dataset import PerformanceDataset -from isilon_sdk.v9_11_0.models.performance_datasets import PerformanceDatasets -from isilon_sdk.v9_11_0.models.performance_datasets_extended import PerformanceDatasetsExtended -from isilon_sdk.v9_11_0.models.performance_metric import PerformanceMetric -from isilon_sdk.v9_11_0.models.performance_metrics import PerformanceMetrics -from isilon_sdk.v9_11_0.models.performance_metrics_extended import PerformanceMetricsExtended -from isilon_sdk.v9_11_0.models.performance_settings import PerformanceSettings -from isilon_sdk.v9_11_0.models.performance_settings_extended import PerformanceSettingsExtended -from isilon_sdk.v9_11_0.models.performance_settings_settings import PerformanceSettingsSettings -from isilon_sdk.v9_11_0.models.performance_settings_settings_client_impact import PerformanceSettingsSettingsClientImpact -from isilon_sdk.v9_11_0.models.performance_settings_settings_cpu_limit_us import PerformanceSettingsSettingsCpuLimitUs -from isilon_sdk.v9_11_0.models.performance_settings_settings_cpu_limit_us_health_modifier import PerformanceSettingsSettingsCpuLimitUsHealthModifier -from isilon_sdk.v9_11_0.models.performance_settings_settings_cpu_limit_us_health_modifier_impact_high import PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh -from isilon_sdk.v9_11_0.models.performance_settings_settings_cpu_limit_us_impact_multiplier import PerformanceSettingsSettingsCpuLimitUsImpactMultiplier -from isilon_sdk.v9_11_0.models.policies_policy_rule import PoliciesPolicyRule -from isilon_sdk.v9_11_0.models.policies_policy_rule_dst_ports import PoliciesPolicyRuleDstPorts -from isilon_sdk.v9_11_0.models.policies_policy_rules import PoliciesPolicyRules -from isilon_sdk.v9_11_0.models.policies_policy_rules_rule import PoliciesPolicyRulesRule -from isilon_sdk.v9_11_0.models.policy_last_job import PolicyLastJob -from isilon_sdk.v9_11_0.models.policy_last_job_policy_job_details import PolicyLastJobPolicyJobDetails -from isilon_sdk.v9_11_0.models.pools_pool_interfaces import PoolsPoolInterfaces -from isilon_sdk.v9_11_0.models.pools_pool_interfaces_interface import PoolsPoolInterfacesInterface -from isilon_sdk.v9_11_0.models.pools_pool_interfaces_interface_owner import PoolsPoolInterfacesInterfaceOwner -from isilon_sdk.v9_11_0.models.pools_pool_rule import PoolsPoolRule -from isilon_sdk.v9_11_0.models.pools_pool_rule_create_params import PoolsPoolRuleCreateParams -from isilon_sdk.v9_11_0.models.pools_pool_rules import PoolsPoolRules -from isilon_sdk.v9_11_0.models.pools_pool_rules_rule import PoolsPoolRulesRule -from isilon_sdk.v9_11_0.models.pools_pool_sc_resume_node import PoolsPoolScResumeNode -from isilon_sdk.v9_11_0.models.pools_pool_status import PoolsPoolStatus -from isilon_sdk.v9_11_0.models.pools_pool_status_status import PoolsPoolStatusStatus -from isilon_sdk.v9_11_0.models.pools_pool_status_status_node import PoolsPoolStatusStatusNode -from isilon_sdk.v9_11_0.models.pools_pool_status_status_node_interface_status import PoolsPoolStatusStatusNodeInterfaceStatus -from isilon_sdk.v9_11_0.models.pools_pool_status_status_sc_dns_overview import PoolsPoolStatusStatusScDnsOverview -from isilon_sdk.v9_11_0.models.progress_global import ProgressGlobal -from isilon_sdk.v9_11_0.models.progress_global_progress import ProgressGlobalProgress -from isilon_sdk.v9_11_0.models.protocols_smb_sessions import ProtocolsSmbSessions -from isilon_sdk.v9_11_0.models.protocols_smb_sessions_session import ProtocolsSmbSessionsSession -from isilon_sdk.v9_11_0.models.providers_ads import ProvidersAds -from isilon_sdk.v9_11_0.models.providers_ads_ads_item import ProvidersAdsAdsItem -from isilon_sdk.v9_11_0.models.providers_ads_ads_item_extended import ProvidersAdsAdsItemExtended -from isilon_sdk.v9_11_0.models.providers_ads_extended import ProvidersAdsExtended -from isilon_sdk.v9_11_0.models.providers_ads_id_params import ProvidersAdsIdParams -from isilon_sdk.v9_11_0.models.providers_ads_item import ProvidersAdsItem -from isilon_sdk.v9_11_0.models.providers_duo import ProvidersDuo -from isilon_sdk.v9_11_0.models.providers_duo_extended import ProvidersDuoExtended -from isilon_sdk.v9_11_0.models.providers_duo_settings import ProvidersDuoSettings -from isilon_sdk.v9_11_0.models.providers_file import ProvidersFile -from isilon_sdk.v9_11_0.models.providers_file_file_item import ProvidersFileFileItem -from isilon_sdk.v9_11_0.models.providers_file_id_params import ProvidersFileIdParams -from isilon_sdk.v9_11_0.models.providers_file_item import ProvidersFileItem -from isilon_sdk.v9_11_0.models.providers_krb5 import ProvidersKrb5 -from isilon_sdk.v9_11_0.models.providers_krb5_extended import ProvidersKrb5Extended -from isilon_sdk.v9_11_0.models.providers_krb5_id_params import ProvidersKrb5IdParams -from isilon_sdk.v9_11_0.models.providers_krb5_id_params_keytab_entry import ProvidersKrb5IdParamsKeytabEntry -from isilon_sdk.v9_11_0.models.providers_krb5_item import ProvidersKrb5Item -from isilon_sdk.v9_11_0.models.providers_krb5_krb5_item import ProvidersKrb5Krb5Item -from isilon_sdk.v9_11_0.models.providers_ldap import ProvidersLdap -from isilon_sdk.v9_11_0.models.providers_ldap_id_params import ProvidersLdapIdParams -from isilon_sdk.v9_11_0.models.providers_ldap_item import ProvidersLdapItem -from isilon_sdk.v9_11_0.models.providers_ldap_ldap_item import ProvidersLdapLdapItem -from isilon_sdk.v9_11_0.models.providers_local import ProvidersLocal -from isilon_sdk.v9_11_0.models.providers_local_id_params import ProvidersLocalIdParams -from isilon_sdk.v9_11_0.models.providers_local_local_item import ProvidersLocalLocalItem -from isilon_sdk.v9_11_0.models.providers_nis import ProvidersNis -from isilon_sdk.v9_11_0.models.providers_nis_id_params import ProvidersNisIdParams -from isilon_sdk.v9_11_0.models.providers_nis_item import ProvidersNisItem -from isilon_sdk.v9_11_0.models.providers_nis_nis_item import ProvidersNisNisItem -from isilon_sdk.v9_11_0.models.providers_saml_services_cert_extract_item import ProvidersSamlServicesCertExtractItem -from isilon_sdk.v9_11_0.models.providers_saml_services_idp import ProvidersSamlServicesIdp -from isilon_sdk.v9_11_0.models.providers_saml_services_idp_login import ProvidersSamlServicesIdpLogin -from isilon_sdk.v9_11_0.models.providers_saml_services_idp_logout import ProvidersSamlServicesIdpLogout -from isilon_sdk.v9_11_0.models.providers_saml_services_idps import ProvidersSamlServicesIdps -from isilon_sdk.v9_11_0.models.providers_saml_services_idps_extended import ProvidersSamlServicesIdpsExtended -from isilon_sdk.v9_11_0.models.providers_saml_services_idps_idp import ProvidersSamlServicesIdpsIdp -from isilon_sdk.v9_11_0.models.providers_saml_services_idps_idp_extended import ProvidersSamlServicesIdpsIdpExtended -from isilon_sdk.v9_11_0.models.providers_saml_services_metadata_extract_item import ProvidersSamlServicesMetadataExtractItem -from isilon_sdk.v9_11_0.models.providers_saml_services_settings import ProvidersSamlServicesSettings -from isilon_sdk.v9_11_0.models.providers_saml_services_settings_settings import ProvidersSamlServicesSettingsSettings -from isilon_sdk.v9_11_0.models.providers_saml_services_sp import ProvidersSamlServicesSp -from isilon_sdk.v9_11_0.models.providers_saml_services_sp_extended import ProvidersSamlServicesSpExtended -from isilon_sdk.v9_11_0.models.providers_saml_services_sp_signing_key_settings import ProvidersSamlServicesSpSigningKeySettings -from isilon_sdk.v9_11_0.models.providers_saml_services_sp_signing_key_settings_settings import ProvidersSamlServicesSpSigningKeySettingsSettings -from isilon_sdk.v9_11_0.models.providers_saml_services_sp_signing_key_settings_settings_certificate import ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate -from isilon_sdk.v9_11_0.models.providers_saml_services_sp_signing_key_settings_settings_certificate_key import ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateKey -from isilon_sdk.v9_11_0.models.providers_saml_services_sp_signing_key_settings_settings_certificate_subject import ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject -from isilon_sdk.v9_11_0.models.providers_saml_services_sp_signing_key_status import ProvidersSamlServicesSpSigningKeyStatus -from isilon_sdk.v9_11_0.models.providers_saml_services_sp_signing_key_status_status import ProvidersSamlServicesSpSigningKeyStatusStatus -from isilon_sdk.v9_11_0.models.providers_saml_services_sp_sp import ProvidersSamlServicesSpSp -from isilon_sdk.v9_11_0.models.providers_summary import ProvidersSummary -from isilon_sdk.v9_11_0.models.providers_summary_provider_instance import ProvidersSummaryProviderInstance -from isilon_sdk.v9_11_0.models.providers_summary_provider_instance_connection import ProvidersSummaryProviderInstanceConnection -from isilon_sdk.v9_11_0.models.proxyusers_name_members import ProxyusersNameMembers -from isilon_sdk.v9_11_0.models.quota_license import QuotaLicense -from isilon_sdk.v9_11_0.models.quota_license_tier import QuotaLicenseTier -from isilon_sdk.v9_11_0.models.quota_notification import QuotaNotification -from isilon_sdk.v9_11_0.models.quota_notifications import QuotaNotifications -from isilon_sdk.v9_11_0.models.quota_quota import QuotaQuota -from isilon_sdk.v9_11_0.models.quota_quota_create_params import QuotaQuotaCreateParams -from isilon_sdk.v9_11_0.models.quota_quota_extended import QuotaQuotaExtended -from isilon_sdk.v9_11_0.models.quota_quota_thresholds import QuotaQuotaThresholds -from isilon_sdk.v9_11_0.models.quota_quota_thresholds_extended import QuotaQuotaThresholdsExtended -from isilon_sdk.v9_11_0.models.quota_quota_usage import QuotaQuotaUsage -from isilon_sdk.v9_11_0.models.quota_quotas import QuotaQuotas -from isilon_sdk.v9_11_0.models.quota_quotas_extended import QuotaQuotasExtended -from isilon_sdk.v9_11_0.models.quota_quotas_summary import QuotaQuotasSummary -from isilon_sdk.v9_11_0.models.quota_quotas_summary_summary import QuotaQuotasSummarySummary -from isilon_sdk.v9_11_0.models.quota_reports import QuotaReports -from isilon_sdk.v9_11_0.models.report_about import ReportAbout -from isilon_sdk.v9_11_0.models.report_about_report import ReportAboutReport -from isilon_sdk.v9_11_0.models.report_subreport import ReportSubreport -from isilon_sdk.v9_11_0.models.report_subreports import ReportSubreports -from isilon_sdk.v9_11_0.models.reports_report_subreports import ReportsReportSubreports -from isilon_sdk.v9_11_0.models.reports_report_subreports_subreport import ReportsReportSubreportsSubreport -from isilon_sdk.v9_11_0.models.reports_scans import ReportsScans -from isilon_sdk.v9_11_0.models.reports_scans_report import ReportsScansReport -from isilon_sdk.v9_11_0.models.reports_threats import ReportsThreats -from isilon_sdk.v9_11_0.models.reports_threats_report import ReportsThreatsReport -from isilon_sdk.v9_11_0.models.result_dir_pools_usage import ResultDirPoolsUsage -from isilon_sdk.v9_11_0.models.result_dir_pools_usage_usage_data import ResultDirPoolsUsageUsageData -from isilon_sdk.v9_11_0.models.result_directories import ResultDirectories -from isilon_sdk.v9_11_0.models.result_directories_dir_usage import ResultDirectoriesDirUsage -from isilon_sdk.v9_11_0.models.result_directories_extended import ResultDirectoriesExtended -from isilon_sdk.v9_11_0.models.result_directories_usage_data_item import ResultDirectoriesUsageDataItem -from isilon_sdk.v9_11_0.models.result_histogram import ResultHistogram -from isilon_sdk.v9_11_0.models.result_histogram_histogram_item import ResultHistogramHistogramItem -from isilon_sdk.v9_11_0.models.result_top_dirs import ResultTopDirs -from isilon_sdk.v9_11_0.models.result_top_dirs_dir import ResultTopDirsDir -from isilon_sdk.v9_11_0.models.result_top_files import ResultTopFiles -from isilon_sdk.v9_11_0.models.result_top_files_file import ResultTopFilesFile -from isilon_sdk.v9_11_0.models.role_members import RoleMembers -from isilon_sdk.v9_11_0.models.role_privileges import RolePrivileges -from isilon_sdk.v9_11_0.models.s3_bucket import S3Bucket -from isilon_sdk.v9_11_0.models.s3_bucket_acl_item import S3BucketAclItem -from isilon_sdk.v9_11_0.models.s3_buckets import S3Buckets -from isilon_sdk.v9_11_0.models.s3_buckets_extended import S3BucketsExtended -from isilon_sdk.v9_11_0.models.s3_key import S3Key -from isilon_sdk.v9_11_0.models.s3_keys import S3Keys -from isilon_sdk.v9_11_0.models.s3_keys_keys import S3KeysKeys -from isilon_sdk.v9_11_0.models.s3_log_level import S3LogLevel -from isilon_sdk.v9_11_0.models.s3_settings_global import S3SettingsGlobal -from isilon_sdk.v9_11_0.models.s3_settings_global_settings import S3SettingsGlobalSettings -from isilon_sdk.v9_11_0.models.s3_settings_zone import S3SettingsZone -from isilon_sdk.v9_11_0.models.s3_settings_zone_settings import S3SettingsZoneSettings -from isilon_sdk.v9_11_0.models.security_check import SecurityCheck -from isilon_sdk.v9_11_0.models.security_check_item import SecurityCheckItem -from isilon_sdk.v9_11_0.models.security_check_settings import SecurityCheckSettings -from isilon_sdk.v9_11_0.models.security_settings import SecuritySettings -from isilon_sdk.v9_11_0.models.security_settings_settings import SecuritySettingsSettings -from isilon_sdk.v9_11_0.models.sed_migrate_item import SedMigrateItem -from isilon_sdk.v9_11_0.models.sed_settings import SedSettings -from isilon_sdk.v9_11_0.models.sed_settings_extended import SedSettingsExtended -from isilon_sdk.v9_11_0.models.sed_settings_settings import SedSettingsSettings -from isilon_sdk.v9_11_0.models.sed_status import SedStatus -from isilon_sdk.v9_11_0.models.sed_status_extended import SedStatusExtended -from isilon_sdk.v9_11_0.models.sed_status_node import SedStatusNode -from isilon_sdk.v9_11_0.models.service_policies import ServicePolicies -from isilon_sdk.v9_11_0.models.service_policies_extended import ServicePoliciesExtended -from isilon_sdk.v9_11_0.models.service_policy import ServicePolicy -from isilon_sdk.v9_11_0.models.service_policy_create_params import ServicePolicyCreateParams -from isilon_sdk.v9_11_0.models.service_policy_extended import ServicePolicyExtended -from isilon_sdk.v9_11_0.models.service_target_policies import ServiceTargetPolicies -from isilon_sdk.v9_11_0.models.service_target_policies_policy import ServiceTargetPoliciesPolicy -from isilon_sdk.v9_11_0.models.sessions_invalidation import SessionsInvalidation -from isilon_sdk.v9_11_0.models.sessions_invalidation_extended import SessionsInvalidationExtended -from isilon_sdk.v9_11_0.models.sessions_invalidations import SessionsInvalidations -from isilon_sdk.v9_11_0.models.settings_access_time import SettingsAccessTime -from isilon_sdk.v9_11_0.models.settings_access_time_extended import SettingsAccessTimeExtended -from isilon_sdk.v9_11_0.models.settings_access_time_settings import SettingsAccessTimeSettings -from isilon_sdk.v9_11_0.models.settings_acls import SettingsAcls -from isilon_sdk.v9_11_0.models.settings_acls_acl_policy_settings import SettingsAclsAclPolicySettings -from isilon_sdk.v9_11_0.models.settings_acls_extended import SettingsAclsExtended -from isilon_sdk.v9_11_0.models.settings_character_encodings import SettingsCharacterEncodings -from isilon_sdk.v9_11_0.models.settings_character_encodings_extended import SettingsCharacterEncodingsExtended -from isilon_sdk.v9_11_0.models.settings_character_encodings_settings import SettingsCharacterEncodingsSettings -from isilon_sdk.v9_11_0.models.settings_compression import SettingsCompression -from isilon_sdk.v9_11_0.models.settings_compression_extended import SettingsCompressionExtended -from isilon_sdk.v9_11_0.models.settings_compression_settings import SettingsCompressionSettings -from isilon_sdk.v9_11_0.models.settings_global import SettingsGlobal -from isilon_sdk.v9_11_0.models.settings_global_extended import SettingsGlobalExtended -from isilon_sdk.v9_11_0.models.settings_global_global_settings import SettingsGlobalGlobalSettings -from isilon_sdk.v9_11_0.models.settings_global_settings import SettingsGlobalSettings -from isilon_sdk.v9_11_0.models.settings_krb5_defaults import SettingsKrb5Defaults -from isilon_sdk.v9_11_0.models.settings_krb5_defaults_krb5_settings import SettingsKrb5DefaultsKrb5Settings -from isilon_sdk.v9_11_0.models.settings_krb5_domain import SettingsKrb5Domain -from isilon_sdk.v9_11_0.models.settings_krb5_domains import SettingsKrb5Domains -from isilon_sdk.v9_11_0.models.settings_krb5_domains_domain_item import SettingsKrb5DomainsDomainItem -from isilon_sdk.v9_11_0.models.settings_krb5_realm import SettingsKrb5Realm -from isilon_sdk.v9_11_0.models.settings_krb5_realms import SettingsKrb5Realms -from isilon_sdk.v9_11_0.models.settings_krb5_realms_realm_item import SettingsKrb5RealmsRealmItem -from isilon_sdk.v9_11_0.models.settings_mapping import SettingsMapping -from isilon_sdk.v9_11_0.models.settings_mapping_create_params import SettingsMappingCreateParams -from isilon_sdk.v9_11_0.models.settings_mapping_extended import SettingsMappingExtended -from isilon_sdk.v9_11_0.models.settings_mapping_extended_extended import SettingsMappingExtendedExtended -from isilon_sdk.v9_11_0.models.settings_mapping_mapping_settings import SettingsMappingMappingSettings -from isilon_sdk.v9_11_0.models.settings_mappings import SettingsMappings -from isilon_sdk.v9_11_0.models.settings_mappings_extended import SettingsMappingsExtended -from isilon_sdk.v9_11_0.models.settings_notifications import SettingsNotifications -from isilon_sdk.v9_11_0.models.settings_reporting_eula import SettingsReportingEula -from isilon_sdk.v9_11_0.models.settings_reporting_eula_eula import SettingsReportingEulaEula -from isilon_sdk.v9_11_0.models.settings_reports import SettingsReports -from isilon_sdk.v9_11_0.models.settings_reports_extended import SettingsReportsExtended -from isilon_sdk.v9_11_0.models.settings_reports_extended_extended import SettingsReportsExtendedExtended -from isilon_sdk.v9_11_0.models.settings_reports_settings import SettingsReportsSettings -from isilon_sdk.v9_11_0.models.settings_reports_settings_extended import SettingsReportsSettingsExtended -from isilon_sdk.v9_11_0.models.settings_sessions import SettingsSessions -from isilon_sdk.v9_11_0.models.settings_sessions_extended import SettingsSessionsExtended -from isilon_sdk.v9_11_0.models.settings_sessions_settings import SettingsSessionsSettings -from isilon_sdk.v9_11_0.models.smb_log_level import SmbLogLevel -from isilon_sdk.v9_11_0.models.smb_log_level_filter import SmbLogLevelFilter -from isilon_sdk.v9_11_0.models.smb_log_level_filters import SmbLogLevelFilters -from isilon_sdk.v9_11_0.models.smb_log_level_filters_filter import SmbLogLevelFiltersFilter -from isilon_sdk.v9_11_0.models.smb_openfile import SmbOpenfile -from isilon_sdk.v9_11_0.models.smb_openfiles import SmbOpenfiles -from isilon_sdk.v9_11_0.models.smb_sessions import SmbSessions -from isilon_sdk.v9_11_0.models.smb_sessions_node import SmbSessionsNode -from isilon_sdk.v9_11_0.models.smb_settings_global import SmbSettingsGlobal -from isilon_sdk.v9_11_0.models.smb_settings_global_extended import SmbSettingsGlobalExtended -from isilon_sdk.v9_11_0.models.smb_settings_global_settings import SmbSettingsGlobalSettings -from isilon_sdk.v9_11_0.models.smb_settings_share import SmbSettingsShare -from isilon_sdk.v9_11_0.models.smb_settings_share_extended import SmbSettingsShareExtended -from isilon_sdk.v9_11_0.models.smb_settings_share_settings import SmbSettingsShareSettings -from isilon_sdk.v9_11_0.models.smb_settings_zone import SmbSettingsZone -from isilon_sdk.v9_11_0.models.smb_settings_zone_settings import SmbSettingsZoneSettings -from isilon_sdk.v9_11_0.models.smb_share import SmbShare -from isilon_sdk.v9_11_0.models.smb_share_create_params import SmbShareCreateParams -from isilon_sdk.v9_11_0.models.smb_share_extended import SmbShareExtended -from isilon_sdk.v9_11_0.models.smb_share_permission import SmbSharePermission -from isilon_sdk.v9_11_0.models.smb_shares import SmbShares -from isilon_sdk.v9_11_0.models.smb_shares_summary import SmbSharesSummary -from isilon_sdk.v9_11_0.models.smb_shares_summary_summary import SmbSharesSummarySummary -from isilon_sdk.v9_11_0.models.snapshot_alias import SnapshotAlias -from isilon_sdk.v9_11_0.models.snapshot_alias_create_params import SnapshotAliasCreateParams -from isilon_sdk.v9_11_0.models.snapshot_alias_extended import SnapshotAliasExtended -from isilon_sdk.v9_11_0.models.snapshot_aliases import SnapshotAliases -from isilon_sdk.v9_11_0.models.snapshot_aliases_extended import SnapshotAliasesExtended -from isilon_sdk.v9_11_0.models.snapshot_changelists import SnapshotChangelists -from isilon_sdk.v9_11_0.models.snapshot_changelists_extended import SnapshotChangelistsExtended -from isilon_sdk.v9_11_0.models.snapshot_lock import SnapshotLock -from isilon_sdk.v9_11_0.models.snapshot_lock_extended import SnapshotLockExtended -from isilon_sdk.v9_11_0.models.snapshot_locks import SnapshotLocks -from isilon_sdk.v9_11_0.models.snapshot_locks_extended import SnapshotLocksExtended -from isilon_sdk.v9_11_0.models.snapshot_pending import SnapshotPending -from isilon_sdk.v9_11_0.models.snapshot_pending_pending_item import SnapshotPendingPendingItem -from isilon_sdk.v9_11_0.models.snapshot_repstates import SnapshotRepstates -from isilon_sdk.v9_11_0.models.snapshot_repstates_extended import SnapshotRepstatesExtended -from isilon_sdk.v9_11_0.models.snapshot_schedule import SnapshotSchedule -from isilon_sdk.v9_11_0.models.snapshot_schedule_extended import SnapshotScheduleExtended -from isilon_sdk.v9_11_0.models.snapshot_schedule_extended_extended import SnapshotScheduleExtendedExtended -from isilon_sdk.v9_11_0.models.snapshot_schedules import SnapshotSchedules -from isilon_sdk.v9_11_0.models.snapshot_schedules_extended import SnapshotSchedulesExtended -from isilon_sdk.v9_11_0.models.snapshot_settings import SnapshotSettings -from isilon_sdk.v9_11_0.models.snapshot_settings_extended import SnapshotSettingsExtended -from isilon_sdk.v9_11_0.models.snapshot_settings_settings import SnapshotSettingsSettings -from isilon_sdk.v9_11_0.models.snapshot_snapshot import SnapshotSnapshot -from isilon_sdk.v9_11_0.models.snapshot_snapshots import SnapshotSnapshots -from isilon_sdk.v9_11_0.models.snapshot_snapshots_extended import SnapshotSnapshotsExtended -from isilon_sdk.v9_11_0.models.snapshot_snapshots_summary import SnapshotSnapshotsSummary -from isilon_sdk.v9_11_0.models.snapshot_snapshots_summary_summary import SnapshotSnapshotsSummarySummary -from isilon_sdk.v9_11_0.models.snapshot_writable import SnapshotWritable -from isilon_sdk.v9_11_0.models.snapshot_writable_item import SnapshotWritableItem -from isilon_sdk.v9_11_0.models.snapshot_writable_snapshot_summary import SnapshotWritableSnapshotSummary -from isilon_sdk.v9_11_0.models.snapshot_writable_snapshot_summary_summary import SnapshotWritableSnapshotSummarySummary -from isilon_sdk.v9_11_0.models.snapshot_writable_writable_item import SnapshotWritableWritableItem -from isilon_sdk.v9_11_0.models.snmp_settings import SnmpSettings -from isilon_sdk.v9_11_0.models.snmp_settings_extended import SnmpSettingsExtended -from isilon_sdk.v9_11_0.models.snmp_settings_settings import SnmpSettingsSettings -from isilon_sdk.v9_11_0.models.ssh_settings import SshSettings -from isilon_sdk.v9_11_0.models.ssh_settings_settings import SshSettingsSettings -from isilon_sdk.v9_11_0.models.statistics_current import StatisticsCurrent -from isilon_sdk.v9_11_0.models.statistics_current_stat import StatisticsCurrentStat -from isilon_sdk.v9_11_0.models.statistics_history import StatisticsHistory -from isilon_sdk.v9_11_0.models.statistics_history_stat import StatisticsHistoryStat -from isilon_sdk.v9_11_0.models.statistics_history_stat_value import StatisticsHistoryStatValue -from isilon_sdk.v9_11_0.models.statistics_key import StatisticsKey -from isilon_sdk.v9_11_0.models.statistics_key_policy import StatisticsKeyPolicy -from isilon_sdk.v9_11_0.models.statistics_keys import StatisticsKeys -from isilon_sdk.v9_11_0.models.statistics_operation import StatisticsOperation -from isilon_sdk.v9_11_0.models.statistics_operations import StatisticsOperations -from isilon_sdk.v9_11_0.models.statistics_protocol import StatisticsProtocol -from isilon_sdk.v9_11_0.models.statistics_protocols import StatisticsProtocols -from isilon_sdk.v9_11_0.models.storagepool_nodepool import StoragepoolNodepool -from isilon_sdk.v9_11_0.models.storagepool_nodepool_create_params import StoragepoolNodepoolCreateParams -from isilon_sdk.v9_11_0.models.storagepool_nodepool_extended import StoragepoolNodepoolExtended -from isilon_sdk.v9_11_0.models.storagepool_nodepools import StoragepoolNodepools -from isilon_sdk.v9_11_0.models.storagepool_nodepools_extended import StoragepoolNodepoolsExtended -from isilon_sdk.v9_11_0.models.storagepool_nodetype import StoragepoolNodetype -from isilon_sdk.v9_11_0.models.storagepool_nodetypes import StoragepoolNodetypes -from isilon_sdk.v9_11_0.models.storagepool_nodetypes_extended import StoragepoolNodetypesExtended -from isilon_sdk.v9_11_0.models.storagepool_settings import StoragepoolSettings -from isilon_sdk.v9_11_0.models.storagepool_settings_extended import StoragepoolSettingsExtended -from isilon_sdk.v9_11_0.models.storagepool_settings_settings import StoragepoolSettingsSettings -from isilon_sdk.v9_11_0.models.storagepool_settings_settings_spillover_target import StoragepoolSettingsSettingsSpilloverTarget -from isilon_sdk.v9_11_0.models.storagepool_settings_spillover_target import StoragepoolSettingsSpilloverTarget -from isilon_sdk.v9_11_0.models.storagepool_status import StoragepoolStatus -from isilon_sdk.v9_11_0.models.storagepool_status_unhealthy_item import StoragepoolStatusUnhealthyItem -from isilon_sdk.v9_11_0.models.storagepool_status_unhealthy_item_affected_item import StoragepoolStatusUnhealthyItemAffectedItem -from isilon_sdk.v9_11_0.models.storagepool_status_unhealthy_item_affected_item_device import StoragepoolStatusUnhealthyItemAffectedItemDevice -from isilon_sdk.v9_11_0.models.storagepool_status_unhealthy_item_diskpool import StoragepoolStatusUnhealthyItemDiskpool -from isilon_sdk.v9_11_0.models.storagepool_storagepool import StoragepoolStoragepool -from isilon_sdk.v9_11_0.models.storagepool_storagepool_usage import StoragepoolStoragepoolUsage -from isilon_sdk.v9_11_0.models.storagepool_storagepools import StoragepoolStoragepools -from isilon_sdk.v9_11_0.models.storagepool_suggested_protection import StoragepoolSuggestedProtection -from isilon_sdk.v9_11_0.models.storagepool_tier import StoragepoolTier -from isilon_sdk.v9_11_0.models.storagepool_tier_extended import StoragepoolTierExtended -from isilon_sdk.v9_11_0.models.storagepool_tiers import StoragepoolTiers -from isilon_sdk.v9_11_0.models.storagepool_tiers_extended import StoragepoolTiersExtended -from isilon_sdk.v9_11_0.models.storagepool_unprovisioned import StoragepoolUnprovisioned -from isilon_sdk.v9_11_0.models.storagepool_unprovisioned_unprovisioned import StoragepoolUnprovisionedUnprovisioned -from isilon_sdk.v9_11_0.models.subnets_subnet_pool import SubnetsSubnetPool -from isilon_sdk.v9_11_0.models.subnets_subnet_pool_create_params import SubnetsSubnetPoolCreateParams -from isilon_sdk.v9_11_0.models.subnets_subnet_pool_iface import SubnetsSubnetPoolIface -from isilon_sdk.v9_11_0.models.subnets_subnet_pool_range import SubnetsSubnetPoolRange -from isilon_sdk.v9_11_0.models.subnets_subnet_pool_static_route import SubnetsSubnetPoolStaticRoute -from isilon_sdk.v9_11_0.models.subnets_subnet_pools import SubnetsSubnetPools -from isilon_sdk.v9_11_0.models.subnets_subnet_pools_extended import SubnetsSubnetPoolsExtended -from isilon_sdk.v9_11_0.models.subnets_subnet_pools_pool import SubnetsSubnetPoolsPool -from isilon_sdk.v9_11_0.models.subnets_subnet_pools_pool_extended import SubnetsSubnetPoolsPoolExtended -from isilon_sdk.v9_11_0.models.summary_client import SummaryClient -from isilon_sdk.v9_11_0.models.summary_client_client_item import SummaryClientClientItem -from isilon_sdk.v9_11_0.models.summary_cloud import SummaryCloud -from isilon_sdk.v9_11_0.models.summary_cloud_cloud_item import SummaryCloudCloudItem -from isilon_sdk.v9_11_0.models.summary_drive import SummaryDrive -from isilon_sdk.v9_11_0.models.summary_drive_drive_item import SummaryDriveDriveItem -from isilon_sdk.v9_11_0.models.summary_heat import SummaryHeat -from isilon_sdk.v9_11_0.models.summary_heat_heat_item import SummaryHeatHeatItem -from isilon_sdk.v9_11_0.models.summary_protocol import SummaryProtocol -from isilon_sdk.v9_11_0.models.summary_protocol_protocol_item import SummaryProtocolProtocolItem -from isilon_sdk.v9_11_0.models.summary_protocol_stats import SummaryProtocolStats -from isilon_sdk.v9_11_0.models.summary_protocol_stats_protocol_stats import SummaryProtocolStatsProtocolStats -from isilon_sdk.v9_11_0.models.summary_protocol_stats_protocol_stats_cpu import SummaryProtocolStatsProtocolStatsCpu -from isilon_sdk.v9_11_0.models.summary_protocol_stats_protocol_stats_disk import SummaryProtocolStatsProtocolStatsDisk -from isilon_sdk.v9_11_0.models.summary_protocol_stats_protocol_stats_network import SummaryProtocolStatsProtocolStatsNetwork -from isilon_sdk.v9_11_0.models.summary_protocol_stats_protocol_stats_network_in import SummaryProtocolStatsProtocolStatsNetworkIn -from isilon_sdk.v9_11_0.models.summary_protocol_stats_protocol_stats_network_out import SummaryProtocolStatsProtocolStatsNetworkOut -from isilon_sdk.v9_11_0.models.summary_protocol_stats_protocol_stats_onefs import SummaryProtocolStatsProtocolStatsOnefs -from isilon_sdk.v9_11_0.models.summary_protocol_stats_protocol_stats_protocol import SummaryProtocolStatsProtocolStatsProtocol -from isilon_sdk.v9_11_0.models.summary_protocol_stats_protocol_stats_protocol_data_item import SummaryProtocolStatsProtocolStatsProtocolDataItem -from isilon_sdk.v9_11_0.models.summary_system import SummarySystem -from isilon_sdk.v9_11_0.models.summary_system_system_item import SummarySystemSystemItem -from isilon_sdk.v9_11_0.models.summary_workload import SummaryWorkload -from isilon_sdk.v9_11_0.models.summary_workload_workload_item import SummaryWorkloadWorkloadItem -from isilon_sdk.v9_11_0.models.supportassist_data_item import SupportassistDataItem -from isilon_sdk.v9_11_0.models.supportassist_data_item_data import SupportassistDataItemData -from isilon_sdk.v9_11_0.models.supportassist_license import SupportassistLicense -from isilon_sdk.v9_11_0.models.supportassist_license_task import SupportassistLicenseTask -from isilon_sdk.v9_11_0.models.supportassist_license_task_audit import SupportassistLicenseTaskAudit -from isilon_sdk.v9_11_0.models.supportassist_license_task_audit_state import SupportassistLicenseTaskAuditState -from isilon_sdk.v9_11_0.models.supportassist_license_task_audit_sub_state_item import SupportassistLicenseTaskAuditSubStateItem -from isilon_sdk.v9_11_0.models.supportassist_payload_item import SupportassistPayloadItem -from isilon_sdk.v9_11_0.models.supportassist_settings import SupportassistSettings -from isilon_sdk.v9_11_0.models.supportassist_settings_connection import SupportassistSettingsConnection -from isilon_sdk.v9_11_0.models.supportassist_settings_connection_extended import SupportassistSettingsConnectionExtended -from isilon_sdk.v9_11_0.models.supportassist_settings_connection_gateway_endpoint import SupportassistSettingsConnectionGatewayEndpoint -from isilon_sdk.v9_11_0.models.supportassist_settings_connection_network_pool import SupportassistSettingsConnectionNetworkPool -from isilon_sdk.v9_11_0.models.supportassist_settings_contact import SupportassistSettingsContact -from isilon_sdk.v9_11_0.models.supportassist_settings_contact_extended import SupportassistSettingsContactExtended -from isilon_sdk.v9_11_0.models.supportassist_settings_contact_primary import SupportassistSettingsContactPrimary -from isilon_sdk.v9_11_0.models.supportassist_settings_contact_primary_extended import SupportassistSettingsContactPrimaryExtended -from isilon_sdk.v9_11_0.models.supportassist_settings_extended import SupportassistSettingsExtended -from isilon_sdk.v9_11_0.models.supportassist_settings_telemetry import SupportassistSettingsTelemetry -from isilon_sdk.v9_11_0.models.supportassist_settings_telemetry_extended import SupportassistSettingsTelemetryExtended -from isilon_sdk.v9_11_0.models.supportassist_status import SupportassistStatus -from isilon_sdk.v9_11_0.models.supportassist_status_extended import SupportassistStatusExtended -from isilon_sdk.v9_11_0.models.supportassist_status_status import SupportassistStatusStatus -from isilon_sdk.v9_11_0.models.supportassist_task import SupportassistTask -from isilon_sdk.v9_11_0.models.supportassist_task_item import SupportassistTaskItem -from isilon_sdk.v9_11_0.models.supportassist_task_item_task_params import SupportassistTaskItemTaskParams -from isilon_sdk.v9_11_0.models.supportassist_terms import SupportassistTerms -from isilon_sdk.v9_11_0.models.supportassist_terms_extended import SupportassistTermsExtended -from isilon_sdk.v9_11_0.models.supportassist_terms_terms import SupportassistTermsTerms -from isilon_sdk.v9_11_0.models.sync_job import SyncJob -from isilon_sdk.v9_11_0.models.sync_job_create_params import SyncJobCreateParams -from isilon_sdk.v9_11_0.models.sync_job_extended import SyncJobExtended -from isilon_sdk.v9_11_0.models.sync_job_phase import SyncJobPhase -from isilon_sdk.v9_11_0.models.sync_job_phase_statistics import SyncJobPhaseStatistics -from isilon_sdk.v9_11_0.models.sync_job_policy import SyncJobPolicy -from isilon_sdk.v9_11_0.models.sync_job_service_report_item import SyncJobServiceReportItem -from isilon_sdk.v9_11_0.models.sync_job_worker import SyncJobWorker -from isilon_sdk.v9_11_0.models.sync_jobs import SyncJobs -from isilon_sdk.v9_11_0.models.sync_jobs_extended import SyncJobsExtended -from isilon_sdk.v9_11_0.models.sync_policies import SyncPolicies -from isilon_sdk.v9_11_0.models.sync_policy import SyncPolicy -from isilon_sdk.v9_11_0.models.sync_policy_create_params import SyncPolicyCreateParams -from isilon_sdk.v9_11_0.models.sync_policy_extended import SyncPolicyExtended -from isilon_sdk.v9_11_0.models.sync_policy_file_matching_pattern import SyncPolicyFileMatchingPattern -from isilon_sdk.v9_11_0.models.sync_policy_file_matching_pattern_or_criteria_item import SyncPolicyFileMatchingPatternOrCriteriaItem -from isilon_sdk.v9_11_0.models.sync_policy_file_matching_pattern_or_criteria_item_and_criteria_item import SyncPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem -from isilon_sdk.v9_11_0.models.sync_policy_source_network import SyncPolicySourceNetwork -from isilon_sdk.v9_11_0.models.sync_report import SyncReport -from isilon_sdk.v9_11_0.models.sync_reports import SyncReports -from isilon_sdk.v9_11_0.models.sync_reports_extended import SyncReportsExtended -from isilon_sdk.v9_11_0.models.sync_reports_rotate import SyncReportsRotate -from isilon_sdk.v9_11_0.models.sync_rule import SyncRule -from isilon_sdk.v9_11_0.models.sync_rule_extended_extended import SyncRuleExtendedExtended -from isilon_sdk.v9_11_0.models.sync_rule_schedule import SyncRuleSchedule -from isilon_sdk.v9_11_0.models.sync_rules import SyncRules -from isilon_sdk.v9_11_0.models.sync_rules_extended import SyncRulesExtended -from isilon_sdk.v9_11_0.models.sync_settings import SyncSettings -from isilon_sdk.v9_11_0.models.sync_settings_extended import SyncSettingsExtended -from isilon_sdk.v9_11_0.models.sync_settings_settings import SyncSettingsSettings -from isilon_sdk.v9_11_0.models.target_policies import TargetPolicies -from isilon_sdk.v9_11_0.models.target_policies_extended import TargetPoliciesExtended -from isilon_sdk.v9_11_0.models.target_policy import TargetPolicy -from isilon_sdk.v9_11_0.models.target_report import TargetReport -from isilon_sdk.v9_11_0.models.target_reports import TargetReports -from isilon_sdk.v9_11_0.models.target_reports_extended import TargetReportsExtended -from isilon_sdk.v9_11_0.models.throttling_bw_rule import ThrottlingBwRule -from isilon_sdk.v9_11_0.models.throttling_bw_rules import ThrottlingBwRules -from isilon_sdk.v9_11_0.models.throttling_bw_rules_bandwidth_rule import ThrottlingBwRulesBandwidthRule -from isilon_sdk.v9_11_0.models.throttling_settings import ThrottlingSettings -from isilon_sdk.v9_11_0.models.throttling_settings_settings import ThrottlingSettingsSettings -from isilon_sdk.v9_11_0.models.timezone_region import TimezoneRegion -from isilon_sdk.v9_11_0.models.timezone_region_timezone import TimezoneRegionTimezone -from isilon_sdk.v9_11_0.models.timezone_regions import TimezoneRegions -from isilon_sdk.v9_11_0.models.timezone_settings import TimezoneSettings -from isilon_sdk.v9_11_0.models.upgrade_cluster import UpgradeCluster -from isilon_sdk.v9_11_0.models.upgrade_cluster_cluster_overview import UpgradeClusterClusterOverview -from isilon_sdk.v9_11_0.models.upgrade_cluster_committed_features import UpgradeClusterCommittedFeatures -from isilon_sdk.v9_11_0.models.upgrade_cluster_committed_features_gen_bit import UpgradeClusterCommittedFeaturesGenBit -from isilon_sdk.v9_11_0.models.upgrade_cluster_firmware_device import UpgradeClusterFirmwareDevice -from isilon_sdk.v9_11_0.models.upgrade_cluster_firmware_device_node import UpgradeClusterFirmwareDeviceNode -from isilon_sdk.v9_11_0.models.upgrade_cluster_firmware_device_node_device import UpgradeClusterFirmwareDeviceNodeDevice -from isilon_sdk.v9_11_0.models.upgrade_cluster_firmware_device_node_package_item import UpgradeClusterFirmwareDeviceNodePackageItem -from isilon_sdk.v9_11_0.models.upgrade_cluster_upgrade_settings import UpgradeClusterUpgradeSettings -from isilon_sdk.v9_11_0.models.user_change_password import UserChangePassword -from isilon_sdk.v9_11_0.models.user_member_of import UserMemberOf -from isilon_sdk.v9_11_0.models.worm_create_params import WormCreateParams -from isilon_sdk.v9_11_0.models.worm_domain import WormDomain -from isilon_sdk.v9_11_0.models.worm_domain_exclusion import WormDomainExclusion -from isilon_sdk.v9_11_0.models.worm_domains import WormDomains -from isilon_sdk.v9_11_0.models.worm_properties import WormProperties -from isilon_sdk.v9_11_0.models.worm_settings import WormSettings -from isilon_sdk.v9_11_0.models.worm_settings_extended import WormSettingsExtended -from isilon_sdk.v9_11_0.models.worm_settings_settings import WormSettingsSettings -from isilon_sdk.v9_11_0.models.zone import Zone -from isilon_sdk.v9_11_0.models.zone_extended_extended import ZoneExtendedExtended -from isilon_sdk.v9_11_0.models.zone_group import ZoneGroup -from isilon_sdk.v9_11_0.models.zone_groups import ZoneGroups -from isilon_sdk.v9_11_0.models.zone_user import ZoneUser -from isilon_sdk.v9_11_0.models.zone_users import ZoneUsers -from isilon_sdk.v9_11_0.models.zones import Zones -from isilon_sdk.v9_11_0.models.zones_extended import ZonesExtended -from isilon_sdk.v9_11_0.models.zones_summary import ZonesSummary -from isilon_sdk.v9_11_0.models.zones_summary_extended import ZonesSummaryExtended -from isilon_sdk.v9_11_0.models.zones_summary_summary import ZonesSummarySummary -from isilon_sdk.v9_11_0.models.zones_summary_summary_extended import ZonesSummarySummaryExtended -from isilon_sdk.v9_11_0.models.antivirus_policies_extended import AntivirusPoliciesExtended -from isilon_sdk.v9_11_0.models.antivirus_policy_create_params import AntivirusPolicyCreateParams -from isilon_sdk.v9_11_0.models.antivirus_policy_extended import AntivirusPolicyExtended -from isilon_sdk.v9_11_0.models.antivirus_server_create_params import AntivirusServerCreateParams -from isilon_sdk.v9_11_0.models.antivirus_server_extended import AntivirusServerExtended -from isilon_sdk.v9_11_0.models.antivirus_servers_extended import AntivirusServersExtended -from isilon_sdk.v9_11_0.models.audit_topic_extended import AuditTopicExtended -from isilon_sdk.v9_11_0.models.auth_group_create_params import AuthGroupCreateParams -from isilon_sdk.v9_11_0.models.auth_role_create_params import AuthRoleCreateParams -from isilon_sdk.v9_11_0.models.auth_role_extended import AuthRoleExtended -from isilon_sdk.v9_11_0.models.auth_roles_extended import AuthRolesExtended -from isilon_sdk.v9_11_0.models.auth_user_create_params import AuthUserCreateParams -from isilon_sdk.v9_11_0.models.avscan_jobs_extended import AvscanJobsExtended -from isilon_sdk.v9_11_0.models.avscan_servers_extended import AvscanServersExtended -from isilon_sdk.v9_11_0.models.certificates_identity_extended import CertificatesIdentityExtended -from isilon_sdk.v9_11_0.models.certificates_syslog_extended import CertificatesSyslogExtended -from isilon_sdk.v9_11_0.models.cloud_access_extended import CloudAccessExtended -from isilon_sdk.v9_11_0.models.cloud_account_extended import CloudAccountExtended -from isilon_sdk.v9_11_0.models.cloud_jobs_extended import CloudJobsExtended -from isilon_sdk.v9_11_0.models.cloud_pool_create_params import CloudPoolCreateParams -from isilon_sdk.v9_11_0.models.cloud_pool_extended import CloudPoolExtended -from isilon_sdk.v9_11_0.models.cloud_proxy_create_params import CloudProxyCreateParams -from isilon_sdk.v9_11_0.models.cloud_proxy_extended import CloudProxyExtended -from isilon_sdk.v9_11_0.models.cluster_internal_networks_failover_ip_addresse import ClusterInternalNetworksFailoverIpAddresse -from isilon_sdk.v9_11_0.models.cluster_internal_networks_failover_ip_addresse_extended import ClusterInternalNetworksFailoverIpAddresseExtended -from isilon_sdk.v9_11_0.models.cluster_internal_networks_int_a_ip_addresse import ClusterInternalNetworksIntAIpAddresse -from isilon_sdk.v9_11_0.models.cluster_internal_networks_int_a_ip_addresse_extended import ClusterInternalNetworksIntAIpAddresseExtended -from isilon_sdk.v9_11_0.models.cluster_internal_networks_int_b_ip_addresse import ClusterInternalNetworksIntBIpAddresse -from isilon_sdk.v9_11_0.models.cluster_internal_networks_int_b_ip_addresse_extended import ClusterInternalNetworksIntBIpAddresseExtended -from isilon_sdk.v9_11_0.models.cluster_node_state_servicelight import ClusterNodeStateServicelight -from isilon_sdk.v9_11_0.models.cluster_node_state_servicelight_extended import ClusterNodeStateServicelightExtended -from isilon_sdk.v9_11_0.models.cluster_patch_patches_extended import ClusterPatchPatchesExtended -from isilon_sdk.v9_11_0.models.config_feature_extended import ConfigFeatureExtended -from isilon_sdk.v9_11_0.models.datamover_accounts_extended import DatamoverAccountsExtended -from isilon_sdk.v9_11_0.models.datamover_base_policies_extended import DatamoverBasePoliciesExtended -from isilon_sdk.v9_11_0.models.datamover_base_policy_create_params import DatamoverBasePolicyCreateParams -from isilon_sdk.v9_11_0.models.datamover_jobs_extended import DatamoverJobsExtended -from isilon_sdk.v9_11_0.models.datamover_policies_extended import DatamoverPoliciesExtended -from isilon_sdk.v9_11_0.models.datamover_policy_policy_specific_attr_copy_policy_dataset_copy_policy_base_extended import DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended -from isilon_sdk.v9_11_0.models.datamover_policy_policy_specific_attr_create_params import DatamoverPolicyPolicySpecificAttrCreateParams -from isilon_sdk.v9_11_0.models.datamover_policy_policy_specific_attr_creation_policy_extended import DatamoverPolicyPolicySpecificAttrCreationPolicyExtended -from isilon_sdk.v9_11_0.models.datamover_policy_policy_specific_attr_expiration_policy_extended import DatamoverPolicyPolicySpecificAttrExpirationPolicyExtended -from isilon_sdk.v9_11_0.models.dataset_filter_create_params import DatasetFilterCreateParams -from isilon_sdk.v9_11_0.models.dataset_filter_extended import DatasetFilterExtended -from isilon_sdk.v9_11_0.models.dataset_workload_create_params import DatasetWorkloadCreateParams -from isilon_sdk.v9_11_0.models.dataset_workload_extended import DatasetWorkloadExtended -from isilon_sdk.v9_11_0.models.dedupe_reports_extended import DedupeReportsExtended -from isilon_sdk.v9_11_0.models.event_alert_condition_create_params import EventAlertConditionCreateParams -from isilon_sdk.v9_11_0.models.event_alert_conditions_extended import EventAlertConditionsExtended -from isilon_sdk.v9_11_0.models.event_categories_extended import EventCategoriesExtended -from isilon_sdk.v9_11_0.models.event_channel_extended import EventChannelExtended -from isilon_sdk.v9_11_0.models.event_channels_extended import EventChannelsExtended -from isilon_sdk.v9_11_0.models.event_eventgroup_definitions_extended import EventEventgroupDefinitionsExtended -from isilon_sdk.v9_11_0.models.event_eventgroup_occurrences_extended import EventEventgroupOccurrencesExtended -from isilon_sdk.v9_11_0.models.event_eventlists_extended import EventEventlistsExtended -from isilon_sdk.v9_11_0.models.event_threshold_extended import EventThresholdExtended -from isilon_sdk.v9_11_0.models.filepool_policy_create_params import FilepoolPolicyCreateParams -from isilon_sdk.v9_11_0.models.firewall_dscp_rule_extended import FirewallDscpRuleExtended -from isilon_sdk.v9_11_0.models.firewall_policy_extended import FirewallPolicyExtended -from isilon_sdk.v9_11_0.models.firewall_rule import FirewallRule -from isilon_sdk.v9_11_0.models.fsa_result_extended import FsaResultExtended -from isilon_sdk.v9_11_0.models.fsa_results_extended import FsaResultsExtended -from isilon_sdk.v9_11_0.models.groupnet_subnet_create_params import GroupnetSubnetCreateParams -from isilon_sdk.v9_11_0.models.groupnet_subnet_extended import GroupnetSubnetExtended -from isilon_sdk.v9_11_0.models.groupnet_subnets_extended import GroupnetSubnetsExtended -from isilon_sdk.v9_11_0.models.hdfs_rack_create_params import HdfsRackCreateParams -from isilon_sdk.v9_11_0.models.hdfs_rack_extended import HdfsRackExtended -from isilon_sdk.v9_11_0.models.healthcheck_checklist_extended import HealthcheckChecklistExtended -from isilon_sdk.v9_11_0.models.healthcheck_checklists_extended import HealthcheckChecklistsExtended -from isilon_sdk.v9_11_0.models.healthcheck_evaluations_extended import HealthcheckEvaluationsExtended -from isilon_sdk.v9_11_0.models.healthcheck_items_extended import HealthcheckItemsExtended -from isilon_sdk.v9_11_0.models.healthcheck_parameter_create_params import HealthcheckParameterCreateParams -from isilon_sdk.v9_11_0.models.healthcheck_parameters_extended import HealthcheckParametersExtended -from isilon_sdk.v9_11_0.models.healthcheck_schedules_extended import HealthcheckSchedulesExtended -from isilon_sdk.v9_11_0.models.http_service_extended import HttpServiceExtended -from isilon_sdk.v9_11_0.models.id_resolution_domains_extended import IdResolutionDomainsExtended -from isilon_sdk.v9_11_0.models.id_resolution_lins_extended import IdResolutionLinsExtended -from isilon_sdk.v9_11_0.models.id_resolution_zones_extended import IdResolutionZonesExtended -from isilon_sdk.v9_11_0.models.job_jobs_extended import JobJobsExtended -from isilon_sdk.v9_11_0.models.job_policies_extended import JobPoliciesExtended -from isilon_sdk.v9_11_0.models.job_policy_create_params import JobPolicyCreateParams -from isilon_sdk.v9_11_0.models.job_policy_extended import JobPolicyExtended -from isilon_sdk.v9_11_0.models.job_type_extended import JobTypeExtended -from isilon_sdk.v9_11_0.models.job_types_extended import JobTypesExtended -from isilon_sdk.v9_11_0.models.kmip_server_create_params import KmipServerCreateParams -from isilon_sdk.v9_11_0.models.kmip_server_extended_extended import KmipServerExtendedExtended -from isilon_sdk.v9_11_0.models.lfn_extended import LfnExtended -from isilon_sdk.v9_11_0.models.lfn_item import LfnItem -from isilon_sdk.v9_11_0.models.license_licenses_extended import LicenseLicensesExtended -from isilon_sdk.v9_11_0.models.mapping_users_rules_parameters_default_unix_user import MappingUsersRulesParametersDefaultUnixUser -from isilon_sdk.v9_11_0.models.mapping_users_rules_rule_options_default_user import MappingUsersRulesRuleOptionsDefaultUser -from isilon_sdk.v9_11_0.models.mapping_users_rules_rule_user1 import MappingUsersRulesRuleUser1 -from isilon_sdk.v9_11_0.models.mapping_users_rules_rule_user2 import MappingUsersRulesRuleUser2 -from isilon_sdk.v9_11_0.models.ndmp_settings_preferred_ip_create_params import NdmpSettingsPreferredIpCreateParams -from isilon_sdk.v9_11_0.models.ndmp_settings_preferred_ips_extended import NdmpSettingsPreferredIpsExtended -from isilon_sdk.v9_11_0.models.ndmp_settings_variable_create_params import NdmpSettingsVariableCreateParams -from isilon_sdk.v9_11_0.models.ndmp_user_create_params import NdmpUserCreateParams -from isilon_sdk.v9_11_0.models.ndmp_users_extended import NdmpUsersExtended -from isilon_sdk.v9_11_0.models.network_groupnet_create_params import NetworkGroupnetCreateParams -from isilon_sdk.v9_11_0.models.network_groupnet_extended import NetworkGroupnetExtended -from isilon_sdk.v9_11_0.models.network_groupnets_extended import NetworkGroupnetsExtended -from isilon_sdk.v9_11_0.models.nfs_alias_extended import NfsAliasExtended -from isilon_sdk.v9_11_0.models.nfs_export_create_params import NfsExportCreateParams -from isilon_sdk.v9_11_0.models.node_state_node_servicelight import NodeStateNodeServicelight -from isilon_sdk.v9_11_0.models.ntp_servers_extended import NtpServersExtended -from isilon_sdk.v9_11_0.models.oauth_oauth2_client_create_params import OauthOauth2ClientCreateParams -from isilon_sdk.v9_11_0.models.oauth_oauth2_token_exchange_create_params import OauthOauth2TokenExchangeCreateParams -from isilon_sdk.v9_11_0.models.performance_dataset_create_params import PerformanceDatasetCreateParams -from isilon_sdk.v9_11_0.models.performance_dataset_extended import PerformanceDatasetExtended -from isilon_sdk.v9_11_0.models.policies_policy_rule_create_params import PoliciesPolicyRuleCreateParams -from isilon_sdk.v9_11_0.models.policies_policy_rules_extended import PoliciesPolicyRulesExtended -from isilon_sdk.v9_11_0.models.pools_pool_rules_extended import PoolsPoolRulesExtended -from isilon_sdk.v9_11_0.models.providers_krb5_krb5_item_extended import ProvidersKrb5Krb5ItemExtended -from isilon_sdk.v9_11_0.models.providers_saml_services_idp_create_params import ProvidersSamlServicesIdpCreateParams -from isilon_sdk.v9_11_0.models.quota_notification_create_params import QuotaNotificationCreateParams -from isilon_sdk.v9_11_0.models.quota_notification_extended import QuotaNotificationExtended -from isilon_sdk.v9_11_0.models.quota_notifications_extended import QuotaNotificationsExtended -from isilon_sdk.v9_11_0.models.report_subreports_extended import ReportSubreportsExtended -from isilon_sdk.v9_11_0.models.reports_report_subreports_extended import ReportsReportSubreportsExtended -from isilon_sdk.v9_11_0.models.reports_scans_extended import ReportsScansExtended -from isilon_sdk.v9_11_0.models.reports_threats_extended import ReportsThreatsExtended -from isilon_sdk.v9_11_0.models.result_directories_total_usage import ResultDirectoriesTotalUsage -from isilon_sdk.v9_11_0.models.result_directories_total_usage_extended import ResultDirectoriesTotalUsageExtended -from isilon_sdk.v9_11_0.models.s3_bucket_create_params import S3BucketCreateParams -from isilon_sdk.v9_11_0.models.s3_bucket_extended import S3BucketExtended -from isilon_sdk.v9_11_0.models.sed_status_node_extended import SedStatusNodeExtended -from isilon_sdk.v9_11_0.models.service_policy_extended_extended import ServicePolicyExtendedExtended -from isilon_sdk.v9_11_0.models.service_target_policies_extended import ServiceTargetPoliciesExtended -from isilon_sdk.v9_11_0.models.sessions_invalidation_create_params import SessionsInvalidationCreateParams -from isilon_sdk.v9_11_0.models.settings_krb5_domain_create_params import SettingsKrb5DomainCreateParams -from isilon_sdk.v9_11_0.models.settings_krb5_realm_create_params import SettingsKrb5RealmCreateParams -from isilon_sdk.v9_11_0.models.smb_shares_extended import SmbSharesExtended -from isilon_sdk.v9_11_0.models.snapshot_lock_create_params import SnapshotLockCreateParams -from isilon_sdk.v9_11_0.models.snapshot_schedule_create_params import SnapshotScheduleCreateParams -from isilon_sdk.v9_11_0.models.snapshot_snapshot_create_params import SnapshotSnapshotCreateParams -from isilon_sdk.v9_11_0.models.snapshot_writable_extended import SnapshotWritableExtended -from isilon_sdk.v9_11_0.models.statistics_keys_extended import StatisticsKeysExtended -from isilon_sdk.v9_11_0.models.storagepool_tier_create_params import StoragepoolTierCreateParams -from isilon_sdk.v9_11_0.models.sync_policies_extended import SyncPoliciesExtended -from isilon_sdk.v9_11_0.models.sync_rule_create_params import SyncRuleCreateParams -from isilon_sdk.v9_11_0.models.sync_rule_extended import SyncRuleExtended -from isilon_sdk.v9_11_0.models.throttling_bw_rule_create_params import ThrottlingBwRuleCreateParams -from isilon_sdk.v9_11_0.models.throttling_bw_rules_extended import ThrottlingBwRulesExtended -from isilon_sdk.v9_11_0.models.worm_domain_create_params import WormDomainCreateParams -from isilon_sdk.v9_11_0.models.worm_domain_extended import WormDomainExtended -from isilon_sdk.v9_11_0.models.worm_domains_extended import WormDomainsExtended -from isilon_sdk.v9_11_0.models.zone_create_params import ZoneCreateParams -from isilon_sdk.v9_11_0.models.zone_extended import ZoneExtended -from isilon_sdk.v9_11_0.models.zone_groups_extended import ZoneGroupsExtended -from isilon_sdk.v9_11_0.models.zone_users_extended import ZoneUsersExtended -from isilon_sdk.v9_11_0.models.event_channel_create_params import EventChannelCreateParams -from isilon_sdk.v9_11_0.models.firewall_policy_extended_extended import FirewallPolicyExtendedExtended diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/__init__.py b/isilon_sdk/isilon_sdk/v9_11_0/api/__init__.py deleted file mode 100644 index 2d0fc1f85..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/__init__.py +++ /dev/null @@ -1,82 +0,0 @@ -from __future__ import absolute_import - -# flake8: noqa - -# import apis into api package -from isilon_sdk.v9_11_0.api.antivirus_api import AntivirusApi -from isilon_sdk.v9_11_0.api.api_api import ApiApi -from isilon_sdk.v9_11_0.api.audit_api import AuditApi -from isilon_sdk.v9_11_0.api.auth_api import AuthApi -from isilon_sdk.v9_11_0.api.auth_groups_api import AuthGroupsApi -from isilon_sdk.v9_11_0.api.auth_providers_api import AuthProvidersApi -from isilon_sdk.v9_11_0.api.auth_roles_api import AuthRolesApi -from isilon_sdk.v9_11_0.api.auth_users_api import AuthUsersApi -from isilon_sdk.v9_11_0.api.avscan_api import AvscanApi -from isilon_sdk.v9_11_0.api.avscan_nodes_api import AvscanNodesApi -from isilon_sdk.v9_11_0.api.catalog_api import CatalogApi -from isilon_sdk.v9_11_0.api.certificate_api import CertificateApi -from isilon_sdk.v9_11_0.api.cloud_api import CloudApi -from isilon_sdk.v9_11_0.api.cluster_api import ClusterApi -from isilon_sdk.v9_11_0.api.cluster_mode_api import ClusterModeApi -from isilon_sdk.v9_11_0.api.cluster_nodes_api import ClusterNodesApi -from isilon_sdk.v9_11_0.api.config_api import ConfigApi -from isilon_sdk.v9_11_0.api.config_catalog_api import ConfigCatalogApi -from isilon_sdk.v9_11_0.api.connectivity_api import ConnectivityApi -from isilon_sdk.v9_11_0.api.datamover_api import DatamoverApi -from isilon_sdk.v9_11_0.api.datamover_policies_api import DatamoverPoliciesApi -from isilon_sdk.v9_11_0.api.debug_api import DebugApi -from isilon_sdk.v9_11_0.api.dedupe_api import DedupeApi -from isilon_sdk.v9_11_0.api.event_api import EventApi -from isilon_sdk.v9_11_0.api.file_filter_api import FileFilterApi -from isilon_sdk.v9_11_0.api.filepool_api import FilepoolApi -from isilon_sdk.v9_11_0.api.filesystem_api import FilesystemApi -from isilon_sdk.v9_11_0.api.fsa_api import FsaApi -from isilon_sdk.v9_11_0.api.fsa_index_api import FsaIndexApi -from isilon_sdk.v9_11_0.api.fsa_results_api import FsaResultsApi -from isilon_sdk.v9_11_0.api.groupnets_summary_api import GroupnetsSummaryApi -from isilon_sdk.v9_11_0.api.hardening_api import HardeningApi -from isilon_sdk.v9_11_0.api.hardware_api import HardwareApi -from isilon_sdk.v9_11_0.api.healthcheck_api import HealthcheckApi -from isilon_sdk.v9_11_0.api.id_resolution_api import IdResolutionApi -from isilon_sdk.v9_11_0.api.id_resolution_zones_api import IdResolutionZonesApi -from isilon_sdk.v9_11_0.api.ipmi_api import IpmiApi -from isilon_sdk.v9_11_0.api.job_api import JobApi -from isilon_sdk.v9_11_0.api.keymanager_api import KeymanagerApi -from isilon_sdk.v9_11_0.api.lfn_api import LfnApi -from isilon_sdk.v9_11_0.api.license_api import LicenseApi -from isilon_sdk.v9_11_0.api.local_api import LocalApi -from isilon_sdk.v9_11_0.api.local_cluster_api import LocalClusterApi -from isilon_sdk.v9_11_0.api.metadataiq_api import MetadataiqApi -from isilon_sdk.v9_11_0.api.namespace_api import NamespaceApi -from isilon_sdk.v9_11_0.api.network_api import NetworkApi -from isilon_sdk.v9_11_0.api.network_firewall_api import NetworkFirewallApi -from isilon_sdk.v9_11_0.api.network_groupnets_api import NetworkGroupnetsApi -from isilon_sdk.v9_11_0.api.network_groupnets_subnets_api import NetworkGroupnetsSubnetsApi -from isilon_sdk.v9_11_0.api.os_api import OsApi -from isilon_sdk.v9_11_0.api.papi_api import PapiApi -from isilon_sdk.v9_11_0.api.performance_api import PerformanceApi -from isilon_sdk.v9_11_0.api.performance_datasets_api import PerformanceDatasetsApi -from isilon_sdk.v9_11_0.api.protocols_api import ProtocolsApi -from isilon_sdk.v9_11_0.api.protocols_hdfs_api import ProtocolsHdfsApi -from isilon_sdk.v9_11_0.api.quota_api import QuotaApi -from isilon_sdk.v9_11_0.api.quota_quotas_api import QuotaQuotasApi -from isilon_sdk.v9_11_0.api.quota_reports_api import QuotaReportsApi -from isilon_sdk.v9_11_0.api.security_api import SecurityApi -from isilon_sdk.v9_11_0.api.snapshot_api import SnapshotApi -from isilon_sdk.v9_11_0.api.snapshot_changelists_api import SnapshotChangelistsApi -from isilon_sdk.v9_11_0.api.snapshot_snapshots_api import SnapshotSnapshotsApi -from isilon_sdk.v9_11_0.api.statistics_api import StatisticsApi -from isilon_sdk.v9_11_0.api.storagepool_api import StoragepoolApi -from isilon_sdk.v9_11_0.api.storagepool_nodetypes_api import StoragepoolNodetypesApi -from isilon_sdk.v9_11_0.api.supportassist_api import SupportassistApi -from isilon_sdk.v9_11_0.api.sync_api import SyncApi -from isilon_sdk.v9_11_0.api.sync_policies_api import SyncPoliciesApi -from isilon_sdk.v9_11_0.api.sync_reports_api import SyncReportsApi -from isilon_sdk.v9_11_0.api.sync_service_api import SyncServiceApi -from isilon_sdk.v9_11_0.api.sync_service_target_api import SyncServiceTargetApi -from isilon_sdk.v9_11_0.api.sync_target_api import SyncTargetApi -from isilon_sdk.v9_11_0.api.upgrade_api import UpgradeApi -from isilon_sdk.v9_11_0.api.upgrade_cluster_api import UpgradeClusterApi -from isilon_sdk.v9_11_0.api.worm_api import WormApi -from isilon_sdk.v9_11_0.api.zones_api import ZonesApi -from isilon_sdk.v9_11_0.api.zones_summary_api import ZonesSummaryApi diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/config_catalog_api.py b/isilon_sdk/isilon_sdk/v9_11_0/api/config_catalog_api.py deleted file mode 100644 index d83ebb5c4..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/config_catalog_api.py +++ /dev/null @@ -1,224 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -from __future__ import absolute_import - -import re # noqa: F401 - -# python 2 and python 3 compatibility library -import six - -from isilon_sdk.v9_11_0.api_client import ApiClient - - -class ConfigCatalogApi(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - Ref: https://github.com/swagger-api/swagger-codegen - """ - - def __init__(self, api_client=None): - if api_client is None: - api_client = ApiClient() - self.api_client = api_client - - def get_config_catalog_status(self, **kwargs): # noqa: E501 - """get_config_catalog_status # noqa: E501 - - The config catalog status. # 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_config_catalog_status(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: ConfigCatalogStatus - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_config_catalog_status_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_config_catalog_status_with_http_info(**kwargs) # noqa: E501 - return data - - def get_config_catalog_status_with_http_info(self, **kwargs): # noqa: E501 - """get_config_catalog_status # noqa: E501 - - The config catalog status. # 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_config_catalog_status_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: ConfigCatalogStatus - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_config_catalog_status" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/19/config-catalog/status', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='ConfigCatalogStatus', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def update_config_catalog_status(self, config_catalog_status, **kwargs): # noqa: E501 - """update_config_catalog_status # noqa: E501 - - The config catalog status. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_config_catalog_status(config_catalog_status, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param ConfigCatalogStatusExtended config_catalog_status: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.update_config_catalog_status_with_http_info(config_catalog_status, **kwargs) # noqa: E501 - else: - (data) = self.update_config_catalog_status_with_http_info(config_catalog_status, **kwargs) # noqa: E501 - return data - - def update_config_catalog_status_with_http_info(self, config_catalog_status, **kwargs): # noqa: E501 - """update_config_catalog_status # noqa: E501 - - The config catalog status. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_config_catalog_status_with_http_info(config_catalog_status, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param ConfigCatalogStatusExtended config_catalog_status: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['config_catalog_status'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method update_config_catalog_status" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'config_catalog_status' is set - if ('config_catalog_status' not in params or - params['config_catalog_status'] is None): - raise ValueError("Missing the required parameter `config_catalog_status` when calling `update_config_catalog_status`") # noqa: E501 - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'config_catalog_status' in params: - body_params = params['config_catalog_status'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/19/config-catalog/status', 'PUT', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/connectivity_api.py b/isilon_sdk/isilon_sdk/v9_11_0/api/connectivity_api.py deleted file mode 100644 index c7b2a22a9..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/connectivity_api.py +++ /dev/null @@ -1,1281 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -from __future__ import absolute_import - -import re # noqa: F401 - -# python 2 and python 3 compatibility library -import six - -from isilon_sdk.v9_11_0.api_client import ApiClient - - -class ConnectivityApi(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - Ref: https://github.com/swagger-api/swagger-codegen - """ - - def __init__(self, api_client=None): - if api_client is None: - api_client = ApiClient() - self.api_client = api_client - - def create_connectivity_data_item(self, connectivity_data_item, **kwargs): # noqa: E501 - """create_connectivity_data_item # noqa: E501 - - Connectivity task response from Dell Technologies connectivity services # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_connectivity_data_item(connectivity_data_item, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param SupportassistDataItem connectivity_data_item: (required) - :return: CreateResponse - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.create_connectivity_data_item_with_http_info(connectivity_data_item, **kwargs) # noqa: E501 - else: - (data) = self.create_connectivity_data_item_with_http_info(connectivity_data_item, **kwargs) # noqa: E501 - return data - - def create_connectivity_data_item_with_http_info(self, connectivity_data_item, **kwargs): # noqa: E501 - """create_connectivity_data_item # noqa: E501 - - Connectivity task response from Dell Technologies connectivity services # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_connectivity_data_item_with_http_info(connectivity_data_item, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param SupportassistDataItem connectivity_data_item: (required) - :return: CreateResponse - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['connectivity_data_item'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method create_connectivity_data_item" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'connectivity_data_item' is set - if ('connectivity_data_item' not in params or - params['connectivity_data_item'] is None): - raise ValueError("Missing the required parameter `connectivity_data_item` when calling `create_connectivity_data_item`") # noqa: E501 - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'connectivity_data_item' in params: - body_params = params['connectivity_data_item'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/21/connectivity/data', 'POST', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='CreateResponse', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def create_connectivity_payload_item(self, connectivity_payload_item, **kwargs): # noqa: E501 - """create_connectivity_payload_item # noqa: E501 - - Start a payload request task. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_connectivity_payload_item(connectivity_payload_item, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param SupportassistPayloadItem connectivity_payload_item: (required) - :return: CreateResponse - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.create_connectivity_payload_item_with_http_info(connectivity_payload_item, **kwargs) # noqa: E501 - else: - (data) = self.create_connectivity_payload_item_with_http_info(connectivity_payload_item, **kwargs) # noqa: E501 - return data - - def create_connectivity_payload_item_with_http_info(self, connectivity_payload_item, **kwargs): # noqa: E501 - """create_connectivity_payload_item # noqa: E501 - - Start a payload request task. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_connectivity_payload_item_with_http_info(connectivity_payload_item, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param SupportassistPayloadItem connectivity_payload_item: (required) - :return: CreateResponse - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['connectivity_payload_item'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method create_connectivity_payload_item" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'connectivity_payload_item' is set - if ('connectivity_payload_item' not in params or - params['connectivity_payload_item'] is None): - raise ValueError("Missing the required parameter `connectivity_payload_item` when calling `create_connectivity_payload_item`") # noqa: E501 - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'connectivity_payload_item' in params: - body_params = params['connectivity_payload_item'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/21/connectivity/payload', 'POST', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='CreateResponse', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def create_connectivity_task_item(self, connectivity_task_item, **kwargs): # noqa: E501 - """create_connectivity_task_item # noqa: E501 - - Create a Connectivity task. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_connectivity_task_item(connectivity_task_item, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param SupportassistTaskItem connectivity_task_item: (required) - :return: CreateResponse - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.create_connectivity_task_item_with_http_info(connectivity_task_item, **kwargs) # noqa: E501 - else: - (data) = self.create_connectivity_task_item_with_http_info(connectivity_task_item, **kwargs) # noqa: E501 - return data - - def create_connectivity_task_item_with_http_info(self, connectivity_task_item, **kwargs): # noqa: E501 - """create_connectivity_task_item # noqa: E501 - - Create a Connectivity task. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_connectivity_task_item_with_http_info(connectivity_task_item, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param SupportassistTaskItem connectivity_task_item: (required) - :return: CreateResponse - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['connectivity_task_item'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method create_connectivity_task_item" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'connectivity_task_item' is set - if ('connectivity_task_item' not in params or - params['connectivity_task_item'] is None): - raise ValueError("Missing the required parameter `connectivity_task_item` when calling `create_connectivity_task_item`") # noqa: E501 - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'connectivity_task_item' in params: - body_params = params['connectivity_task_item'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/21/connectivity/task', 'POST', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='CreateResponse', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def delete_connectivity_task_by_id(self, connectivity_task_id, **kwargs): # noqa: E501 - """delete_connectivity_task_by_id # noqa: E501 - - Delete a Connectivity task by ID. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_connectivity_task_by_id(connectivity_task_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str connectivity_task_id: Delete a Connectivity task by ID. (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.delete_connectivity_task_by_id_with_http_info(connectivity_task_id, **kwargs) # noqa: E501 - else: - (data) = self.delete_connectivity_task_by_id_with_http_info(connectivity_task_id, **kwargs) # noqa: E501 - return data - - def delete_connectivity_task_by_id_with_http_info(self, connectivity_task_id, **kwargs): # noqa: E501 - """delete_connectivity_task_by_id # noqa: E501 - - Delete a Connectivity task by ID. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_connectivity_task_by_id_with_http_info(connectivity_task_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str connectivity_task_id: Delete a Connectivity task by ID. (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['connectivity_task_id'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method delete_connectivity_task_by_id" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'connectivity_task_id' is set - if ('connectivity_task_id' not in params or - params['connectivity_task_id'] is None): - raise ValueError("Missing the required parameter `connectivity_task_id` when calling `delete_connectivity_task_by_id`") # noqa: E501 - - collection_formats = {} - - path_params = {} - if 'connectivity_task_id' in params: - path_params['ConnectivityTaskId'] = params['connectivity_task_id'] # noqa: E501 - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/21/connectivity/task/{ConnectivityTaskId}', 'DELETE', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_connectivity_license(self, **kwargs): # noqa: E501 - """get_connectivity_license # noqa: E501 - - License activation status. # 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_connectivity_license(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: SupportassistLicense - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_connectivity_license_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_connectivity_license_with_http_info(**kwargs) # noqa: E501 - return data - - def get_connectivity_license_with_http_info(self, **kwargs): # noqa: E501 - """get_connectivity_license # noqa: E501 - - License activation status. # 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_connectivity_license_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: SupportassistLicense - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_connectivity_license" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/21/connectivity/license', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='SupportassistLicense', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_connectivity_settings(self, **kwargs): # noqa: E501 - """get_connectivity_settings # noqa: E501 - - List settings. # 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_connectivity_settings(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: ConnectivitySettings - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_connectivity_settings_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_connectivity_settings_with_http_info(**kwargs) # noqa: E501 - return data - - def get_connectivity_settings_with_http_info(self, **kwargs): # noqa: E501 - """get_connectivity_settings # noqa: E501 - - List settings. # 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_connectivity_settings_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: ConnectivitySettings - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_connectivity_settings" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/21/connectivity/settings', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='ConnectivitySettings', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_connectivity_status(self, **kwargs): # noqa: E501 - """get_connectivity_status # noqa: E501 - - Get status arguments. # 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_connectivity_status(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: ConnectivityStatus - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_connectivity_status_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_connectivity_status_with_http_info(**kwargs) # noqa: E501 - return data - - def get_connectivity_status_with_http_info(self, **kwargs): # noqa: E501 - """get_connectivity_status # noqa: E501 - - Get status arguments. # 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_connectivity_status_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: ConnectivityStatus - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_connectivity_status" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/22/connectivity/status', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='ConnectivityStatus', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_connectivity_task_by_id(self, connectivity_task_id, **kwargs): # noqa: E501 - """get_connectivity_task_by_id # noqa: E501 - - Get the status of a Connectivity task by ID or all tasks from the specified source. # 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_connectivity_task_by_id(connectivity_task_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str connectivity_task_id: Get the status of a Connectivity task by ID or all tasks from the specified source. (required) - :return: SupportassistTask - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_connectivity_task_by_id_with_http_info(connectivity_task_id, **kwargs) # noqa: E501 - else: - (data) = self.get_connectivity_task_by_id_with_http_info(connectivity_task_id, **kwargs) # noqa: E501 - return data - - def get_connectivity_task_by_id_with_http_info(self, connectivity_task_id, **kwargs): # noqa: E501 - """get_connectivity_task_by_id # noqa: E501 - - Get the status of a Connectivity task by ID or all tasks from the specified source. # 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_connectivity_task_by_id_with_http_info(connectivity_task_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str connectivity_task_id: Get the status of a Connectivity task by ID or all tasks from the specified source. (required) - :return: SupportassistTask - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['connectivity_task_id'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_connectivity_task_by_id" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'connectivity_task_id' is set - if ('connectivity_task_id' not in params or - params['connectivity_task_id'] is None): - raise ValueError("Missing the required parameter `connectivity_task_id` when calling `get_connectivity_task_by_id`") # noqa: E501 - - collection_formats = {} - - path_params = {} - if 'connectivity_task_id' in params: - path_params['ConnectivityTaskId'] = params['connectivity_task_id'] # noqa: E501 - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/21/connectivity/task/{ConnectivityTaskId}', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='SupportassistTask', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_connectivity_terms(self, **kwargs): # noqa: E501 - """get_connectivity_terms # noqa: E501 - - The Telemetry Notice text for Dell Technologies connectivity services. # 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_connectivity_terms(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: SupportassistTerms - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_connectivity_terms_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_connectivity_terms_with_http_info(**kwargs) # noqa: E501 - return data - - def get_connectivity_terms_with_http_info(self, **kwargs): # noqa: E501 - """get_connectivity_terms # noqa: E501 - - The Telemetry Notice text for Dell Technologies connectivity services. # 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_connectivity_terms_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: SupportassistTerms - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_connectivity_terms" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/21/connectivity/terms', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='SupportassistTerms', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def list_connectivity_task(self, **kwargs): # noqa: E501 - """list_connectivity_task # noqa: E501 - - Get all Connectivity tasks. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_connectivity_task(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: SupportassistTask - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.list_connectivity_task_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.list_connectivity_task_with_http_info(**kwargs) # noqa: E501 - return data - - def list_connectivity_task_with_http_info(self, **kwargs): # noqa: E501 - """list_connectivity_task # noqa: E501 - - Get all Connectivity tasks. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_connectivity_task_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: SupportassistTask - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method list_connectivity_task" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/21/connectivity/task', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='SupportassistTask', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def update_connectivity_settings(self, connectivity_settings, **kwargs): # noqa: E501 - """update_connectivity_settings # noqa: E501 - - Modify one or more settings. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_connectivity_settings(connectivity_settings, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param SupportassistSettingsExtended connectivity_settings: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.update_connectivity_settings_with_http_info(connectivity_settings, **kwargs) # noqa: E501 - else: - (data) = self.update_connectivity_settings_with_http_info(connectivity_settings, **kwargs) # noqa: E501 - return data - - def update_connectivity_settings_with_http_info(self, connectivity_settings, **kwargs): # noqa: E501 - """update_connectivity_settings # noqa: E501 - - Modify one or more settings. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_connectivity_settings_with_http_info(connectivity_settings, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param SupportassistSettingsExtended connectivity_settings: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['connectivity_settings'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method update_connectivity_settings" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'connectivity_settings' is set - if ('connectivity_settings' not in params or - params['connectivity_settings'] is None): - raise ValueError("Missing the required parameter `connectivity_settings` when calling `update_connectivity_settings`") # noqa: E501 - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'connectivity_settings' in params: - body_params = params['connectivity_settings'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/21/connectivity/settings', 'PUT', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def update_connectivity_status(self, connectivity_status, **kwargs): # noqa: E501 - """update_connectivity_status # noqa: E501 - - Modify status arguments. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_connectivity_status(connectivity_status, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param ConnectivityStatusExtended connectivity_status: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.update_connectivity_status_with_http_info(connectivity_status, **kwargs) # noqa: E501 - else: - (data) = self.update_connectivity_status_with_http_info(connectivity_status, **kwargs) # noqa: E501 - return data - - def update_connectivity_status_with_http_info(self, connectivity_status, **kwargs): # noqa: E501 - """update_connectivity_status # noqa: E501 - - Modify status arguments. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_connectivity_status_with_http_info(connectivity_status, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param ConnectivityStatusExtended connectivity_status: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['connectivity_status'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method update_connectivity_status" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'connectivity_status' is set - if ('connectivity_status' not in params or - params['connectivity_status'] is None): - raise ValueError("Missing the required parameter `connectivity_status` when calling `update_connectivity_status`") # noqa: E501 - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'connectivity_status' in params: - body_params = params['connectivity_status'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/22/connectivity/status', 'PUT', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def update_connectivity_terms(self, connectivity_terms, **kwargs): # noqa: E501 - """update_connectivity_terms # noqa: E501 - - Setting Telemetry Notice accepted or rejected. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_connectivity_terms(connectivity_terms, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param SupportassistTermsExtended connectivity_terms: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.update_connectivity_terms_with_http_info(connectivity_terms, **kwargs) # noqa: E501 - else: - (data) = self.update_connectivity_terms_with_http_info(connectivity_terms, **kwargs) # noqa: E501 - return data - - def update_connectivity_terms_with_http_info(self, connectivity_terms, **kwargs): # noqa: E501 - """update_connectivity_terms # noqa: E501 - - Setting Telemetry Notice accepted or rejected. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_connectivity_terms_with_http_info(connectivity_terms, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param SupportassistTermsExtended connectivity_terms: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['connectivity_terms'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method update_connectivity_terms" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'connectivity_terms' is set - if ('connectivity_terms' not in params or - params['connectivity_terms'] is None): - raise ValueError("Missing the required parameter `connectivity_terms` when calling `update_connectivity_terms`") # noqa: E501 - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'connectivity_terms' in params: - body_params = params['connectivity_terms'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/21/connectivity/terms', 'PUT', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/datamover_policies_api.py b/isilon_sdk/isilon_sdk/v9_11_0/api/datamover_policies_api.py deleted file mode 100644 index 6a10eda85..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/datamover_policies_api.py +++ /dev/null @@ -1,133 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -from __future__ import absolute_import - -import re # noqa: F401 - -# python 2 and python 3 compatibility library -import six - -from isilon_sdk.v9_11_0.api_client import ApiClient - - -class DatamoverPoliciesApi(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - Ref: https://github.com/swagger-api/swagger-codegen - """ - - def __init__(self, api_client=None): - if api_client is None: - api_client = ApiClient() - self.api_client = api_client - - def get_policy_last_job(self, policyid, **kwargs): # noqa: E501 - """get_policy_last_job # noqa: E501 - - Retrieve job ID and last execution time using policy ID. # 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_policy_last_job(policyid, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str policyid: (required) - :return: PolicyLastJob - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_policy_last_job_with_http_info(policyid, **kwargs) # noqa: E501 - else: - (data) = self.get_policy_last_job_with_http_info(policyid, **kwargs) # noqa: E501 - return data - - def get_policy_last_job_with_http_info(self, policyid, **kwargs): # noqa: E501 - """get_policy_last_job # noqa: E501 - - Retrieve job ID and last execution time using policy ID. # 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_policy_last_job_with_http_info(policyid, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str policyid: (required) - :return: PolicyLastJob - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['policyid'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_policy_last_job" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'policyid' is set - if ('policyid' not in params or - params['policyid'] is None): - raise ValueError("Missing the required parameter `policyid` when calling `get_policy_last_job`") # noqa: E501 - - collection_formats = {} - - path_params = {} - if 'policyid' in params: - path_params['Policyid'] = params['policyid'] # noqa: E501 - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/19/datamover/policies/{Policyid}/last-job', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='PolicyLastJob', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/metadataiq_api.py b/isilon_sdk/isilon_sdk/v9_11_0/api/metadataiq_api.py deleted file mode 100644 index b1e772d8d..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/metadataiq_api.py +++ /dev/null @@ -1,596 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -from __future__ import absolute_import - -import re # noqa: F401 - -# python 2 and python 3 compatibility library -import six - -from isilon_sdk.v9_11_0.api_client import ApiClient - - -class MetadataiqApi(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - Ref: https://github.com/swagger-api/swagger-codegen - """ - - def __init__(self, api_client=None): - if api_client is None: - api_client = ApiClient() - self.api_client = api_client - - def create_metadataiq_reset_item(self, metadataiq_reset_item, **kwargs): # noqa: E501 - """create_metadataiq_reset_item # noqa: E501 - - Resend all metadata under the configured path to the database from a new snapshot. While this operation is in progress, it will block incremental updates to the database. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_metadataiq_reset_item(metadataiq_reset_item, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param Empty metadataiq_reset_item: (required) - :return: Empty - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.create_metadataiq_reset_item_with_http_info(metadataiq_reset_item, **kwargs) # noqa: E501 - else: - (data) = self.create_metadataiq_reset_item_with_http_info(metadataiq_reset_item, **kwargs) # noqa: E501 - return data - - def create_metadataiq_reset_item_with_http_info(self, metadataiq_reset_item, **kwargs): # noqa: E501 - """create_metadataiq_reset_item # noqa: E501 - - Resend all metadata under the configured path to the database from a new snapshot. While this operation is in progress, it will block incremental updates to the database. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_metadataiq_reset_item_with_http_info(metadataiq_reset_item, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param Empty metadataiq_reset_item: (required) - :return: Empty - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['metadataiq_reset_item'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method create_metadataiq_reset_item" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'metadataiq_reset_item' is set - if ('metadataiq_reset_item' not in params or - params['metadataiq_reset_item'] is None): - raise ValueError("Missing the required parameter `metadataiq_reset_item` when calling `create_metadataiq_reset_item`") # noqa: E501 - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'metadataiq_reset_item' in params: - body_params = params['metadataiq_reset_item'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/21/metadataiq/reset', 'POST', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='Empty', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def delete_metadataiq_reset(self, **kwargs): # noqa: E501 - """delete_metadataiq_reset # noqa: E501 - - Reset MetadataIQ to factory defaults. This means the daemons are disabled, the settings are reset, and any artifacts on cluster are cleared. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_metadataiq_reset(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.delete_metadataiq_reset_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.delete_metadataiq_reset_with_http_info(**kwargs) # noqa: E501 - return data - - def delete_metadataiq_reset_with_http_info(self, **kwargs): # noqa: E501 - """delete_metadataiq_reset # noqa: E501 - - Reset MetadataIQ to factory defaults. This means the daemons are disabled, the settings are reset, and any artifacts on cluster are cleared. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_metadataiq_reset_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: None - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method delete_metadataiq_reset" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/21/metadataiq/reset', 'DELETE', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_metadataiq_certificate(self, **kwargs): # noqa: E501 - """get_metadataiq_certificate # noqa: E501 - - Retrieve a Metadataiq CA certificate. # 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_metadataiq_certificate(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: MetadataiqCertificate - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_metadataiq_certificate_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_metadataiq_certificate_with_http_info(**kwargs) # noqa: E501 - return data - - def get_metadataiq_certificate_with_http_info(self, **kwargs): # noqa: E501 - """get_metadataiq_certificate # noqa: E501 - - Retrieve a Metadataiq CA certificate. # 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_metadataiq_certificate_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: MetadataiqCertificate - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_metadataiq_certificate" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/22/metadataiq/certificate', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='MetadataiqCertificate', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_metadataiq_settings(self, **kwargs): # noqa: E501 - """get_metadataiq_settings # noqa: E501 - - View MetadataIQ settings. # 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_metadataiq_settings(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: MetadataiqSettings - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_metadataiq_settings_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_metadataiq_settings_with_http_info(**kwargs) # noqa: E501 - return data - - def get_metadataiq_settings_with_http_info(self, **kwargs): # noqa: E501 - """get_metadataiq_settings # noqa: E501 - - View MetadataIQ settings. # 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_metadataiq_settings_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: MetadataiqSettings - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_metadataiq_settings" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/21/metadataiq/settings', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='MetadataiqSettings', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_metadataiq_status(self, **kwargs): # noqa: E501 - """get_metadataiq_status # noqa: E501 - - View MetadataIQ current Cycle Status. # 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_metadataiq_status(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: MetadataiqStatus - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_metadataiq_status_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_metadataiq_status_with_http_info(**kwargs) # noqa: E501 - return data - - def get_metadataiq_status_with_http_info(self, **kwargs): # noqa: E501 - """get_metadataiq_status # noqa: E501 - - View MetadataIQ current Cycle Status. # 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_metadataiq_status_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: MetadataiqStatus - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_metadataiq_status" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/22/metadataiq/status', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='MetadataiqStatus', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def update_metadataiq_settings(self, metadataiq_settings, **kwargs): # noqa: E501 - """update_metadataiq_settings # noqa: E501 - - Modify a subset of MetadataIQ settings. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_metadataiq_settings(metadataiq_settings, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param MetadataiqSettingsSettings metadataiq_settings: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.update_metadataiq_settings_with_http_info(metadataiq_settings, **kwargs) # noqa: E501 - else: - (data) = self.update_metadataiq_settings_with_http_info(metadataiq_settings, **kwargs) # noqa: E501 - return data - - def update_metadataiq_settings_with_http_info(self, metadataiq_settings, **kwargs): # noqa: E501 - """update_metadataiq_settings # noqa: E501 - - Modify a subset of MetadataIQ settings. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_metadataiq_settings_with_http_info(metadataiq_settings, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param MetadataiqSettingsSettings metadataiq_settings: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['metadataiq_settings'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method update_metadataiq_settings" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'metadataiq_settings' is set - if ('metadataiq_settings' not in params or - params['metadataiq_settings'] is None): - raise ValueError("Missing the required parameter `metadataiq_settings` when calling `update_metadataiq_settings`") # noqa: E501 - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'metadataiq_settings' in params: - body_params = params['metadataiq_settings'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/21/metadataiq/settings', 'PUT', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/network_firewall_api.py b/isilon_sdk/isilon_sdk/v9_11_0/api/network_firewall_api.py deleted file mode 100644 index 4c7b8c494..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/network_firewall_api.py +++ /dev/null @@ -1,624 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -from __future__ import absolute_import - -import re # noqa: F401 - -# python 2 and python 3 compatibility library -import six - -from isilon_sdk.v9_11_0.api_client import ApiClient - - -class NetworkFirewallApi(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - Ref: https://github.com/swagger-api/swagger-codegen - """ - - def __init__(self, api_client=None): - if api_client is None: - api_client = ApiClient() - self.api_client = api_client - - def create_policies_policy_rule(self, policies_policy_rule, policy, **kwargs): # noqa: E501 - """create_policies_policy_rule # noqa: E501 - - Create a new network firewall rule. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_policies_policy_rule(policies_policy_rule, policy, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param PoliciesPolicyRuleCreateParams policies_policy_rule: (required) - :param str policy: (required) - :param bool allow_renumbering: Indicates whether to allow renumbering of other rules when an index already exists - :param bool live: Live flag can only be used with active rules. Update will take effect immediately on all related network pools. - :return: CreateResponse - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.create_policies_policy_rule_with_http_info(policies_policy_rule, policy, **kwargs) # noqa: E501 - else: - (data) = self.create_policies_policy_rule_with_http_info(policies_policy_rule, policy, **kwargs) # noqa: E501 - return data - - def create_policies_policy_rule_with_http_info(self, policies_policy_rule, policy, **kwargs): # noqa: E501 - """create_policies_policy_rule # noqa: E501 - - Create a new network firewall rule. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_policies_policy_rule_with_http_info(policies_policy_rule, policy, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param PoliciesPolicyRuleCreateParams policies_policy_rule: (required) - :param str policy: (required) - :param bool allow_renumbering: Indicates whether to allow renumbering of other rules when an index already exists - :param bool live: Live flag can only be used with active rules. Update will take effect immediately on all related network pools. - :return: CreateResponse - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['policies_policy_rule', 'policy', 'allow_renumbering', 'live'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method create_policies_policy_rule" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'policies_policy_rule' is set - if ('policies_policy_rule' not in params or - params['policies_policy_rule'] is None): - raise ValueError("Missing the required parameter `policies_policy_rule` when calling `create_policies_policy_rule`") # noqa: E501 - # verify the required parameter 'policy' is set - if ('policy' not in params or - params['policy'] is None): - raise ValueError("Missing the required parameter `policy` when calling `create_policies_policy_rule`") # noqa: E501 - - collection_formats = {} - - path_params = {} - if 'policy' in params: - path_params['Policy'] = params['policy'] # noqa: E501 - - query_params = [] - if 'allow_renumbering' in params: - query_params.append(('allow_renumbering', params['allow_renumbering'])) # noqa: E501 - if 'live' in params: - query_params.append(('live', params['live'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'policies_policy_rule' in params: - body_params = params['policies_policy_rule'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/network/firewall/policies/{Policy}/rules', 'POST', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='CreateResponse', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def delete_policies_policy_rule(self, policies_policy_rule_id, policy, **kwargs): # noqa: E501 - """delete_policies_policy_rule # noqa: E501 - - Delete a network firewall rule. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_policies_policy_rule(policies_policy_rule_id, policy, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str policies_policy_rule_id: Delete a network firewall rule. (required) - :param str policy: (required) - :param bool live: Live flag can only be used with active rules. Update will take effect immediately on all related network pools. - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.delete_policies_policy_rule_with_http_info(policies_policy_rule_id, policy, **kwargs) # noqa: E501 - else: - (data) = self.delete_policies_policy_rule_with_http_info(policies_policy_rule_id, policy, **kwargs) # noqa: E501 - return data - - def delete_policies_policy_rule_with_http_info(self, policies_policy_rule_id, policy, **kwargs): # noqa: E501 - """delete_policies_policy_rule # noqa: E501 - - Delete a network firewall rule. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_policies_policy_rule_with_http_info(policies_policy_rule_id, policy, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str policies_policy_rule_id: Delete a network firewall rule. (required) - :param str policy: (required) - :param bool live: Live flag can only be used with active rules. Update will take effect immediately on all related network pools. - :return: None - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['policies_policy_rule_id', 'policy', 'live'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method delete_policies_policy_rule" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'policies_policy_rule_id' is set - if ('policies_policy_rule_id' not in params or - params['policies_policy_rule_id'] is None): - raise ValueError("Missing the required parameter `policies_policy_rule_id` when calling `delete_policies_policy_rule`") # noqa: E501 - # verify the required parameter 'policy' is set - if ('policy' not in params or - params['policy'] is None): - raise ValueError("Missing the required parameter `policy` when calling `delete_policies_policy_rule`") # noqa: E501 - - collection_formats = {} - - path_params = {} - if 'policies_policy_rule_id' in params: - path_params['PoliciesPolicyRuleId'] = params['policies_policy_rule_id'] # noqa: E501 - if 'policy' in params: - path_params['Policy'] = params['policy'] # noqa: E501 - - query_params = [] - if 'live' in params: - query_params.append(('live', params['live'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/network/firewall/policies/{Policy}/rules/{PoliciesPolicyRuleId}', 'DELETE', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_policies_policy_rule(self, policies_policy_rule_id, policy, **kwargs): # noqa: E501 - """get_policies_policy_rule # noqa: E501 - - View a network firewall rule. # 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_policies_policy_rule(policies_policy_rule_id, policy, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str policies_policy_rule_id: View a network firewall rule. (required) - :param str policy: (required) - :return: PoliciesPolicyRules - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_policies_policy_rule_with_http_info(policies_policy_rule_id, policy, **kwargs) # noqa: E501 - else: - (data) = self.get_policies_policy_rule_with_http_info(policies_policy_rule_id, policy, **kwargs) # noqa: E501 - return data - - def get_policies_policy_rule_with_http_info(self, policies_policy_rule_id, policy, **kwargs): # noqa: E501 - """get_policies_policy_rule # noqa: E501 - - View a network firewall rule. # 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_policies_policy_rule_with_http_info(policies_policy_rule_id, policy, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str policies_policy_rule_id: View a network firewall rule. (required) - :param str policy: (required) - :return: PoliciesPolicyRules - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['policies_policy_rule_id', 'policy'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_policies_policy_rule" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'policies_policy_rule_id' is set - if ('policies_policy_rule_id' not in params or - params['policies_policy_rule_id'] is None): - raise ValueError("Missing the required parameter `policies_policy_rule_id` when calling `get_policies_policy_rule`") # noqa: E501 - # verify the required parameter 'policy' is set - if ('policy' not in params or - params['policy'] is None): - raise ValueError("Missing the required parameter `policy` when calling `get_policies_policy_rule`") # noqa: E501 - - collection_formats = {} - - path_params = {} - if 'policies_policy_rule_id' in params: - path_params['PoliciesPolicyRuleId'] = params['policies_policy_rule_id'] # noqa: E501 - if 'policy' in params: - path_params['Policy'] = params['policy'] # noqa: E501 - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/network/firewall/policies/{Policy}/rules/{PoliciesPolicyRuleId}', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='PoliciesPolicyRules', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def list_policies_policy_rules(self, policy, **kwargs): # noqa: E501 - """list_policies_policy_rules # noqa: E501 - - Get a list of network firewall rules. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_policies_policy_rules(policy, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str policy: (required) - :param str dir: The direction of the sort. - :param int limit: Return no more than this many results at once (see resume). - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param str sort: The field that will be used for sorting. - :return: PoliciesPolicyRulesExtended - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.list_policies_policy_rules_with_http_info(policy, **kwargs) # noqa: E501 - else: - (data) = self.list_policies_policy_rules_with_http_info(policy, **kwargs) # noqa: E501 - return data - - def list_policies_policy_rules_with_http_info(self, policy, **kwargs): # noqa: E501 - """list_policies_policy_rules # noqa: E501 - - Get a list of network firewall rules. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_policies_policy_rules_with_http_info(policy, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str policy: (required) - :param str dir: The direction of the sort. - :param int limit: Return no more than this many results at once (see resume). - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param str sort: The field that will be used for sorting. - :return: PoliciesPolicyRulesExtended - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['policy', 'dir', 'limit', 'resume', 'sort'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method list_policies_policy_rules" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'policy' is set - if ('policy' not in params or - params['policy'] is None): - raise ValueError("Missing the required parameter `policy` when calling `list_policies_policy_rules`") # noqa: E501 - - if ('dir' in params and - len(params['dir']) < 0): - raise ValueError("Invalid value for parameter `dir` when calling `list_policies_policy_rules`, length must be greater than or equal to `0`") # noqa: E501 - if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `list_policies_policy_rules`, must be a value less than or equal to `4294967295`") # noqa: E501 - if 'limit' in params and params['limit'] < 1: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `list_policies_policy_rules`, must be a value greater than or equal to `1`") # noqa: E501 - if ('resume' in params and - len(params['resume']) > 8192): - raise ValueError("Invalid value for parameter `resume` when calling `list_policies_policy_rules`, length must be less than or equal to `8192`") # noqa: E501 - if ('resume' in params and - len(params['resume']) < 0): - raise ValueError("Invalid value for parameter `resume` when calling `list_policies_policy_rules`, length must be greater than or equal to `0`") # noqa: E501 - if ('sort' in params and - len(params['sort']) > 255): - raise ValueError("Invalid value for parameter `sort` when calling `list_policies_policy_rules`, length must be less than or equal to `255`") # noqa: E501 - if ('sort' in params and - len(params['sort']) < 0): - raise ValueError("Invalid value for parameter `sort` when calling `list_policies_policy_rules`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - if 'policy' in params: - path_params['Policy'] = params['policy'] # noqa: E501 - - query_params = [] - if 'dir' in params: - query_params.append(('dir', params['dir'])) # noqa: E501 - if 'limit' in params: - query_params.append(('limit', params['limit'])) # noqa: E501 - if 'resume' in params: - query_params.append(('resume', params['resume'])) # noqa: E501 - if 'sort' in params: - query_params.append(('sort', params['sort'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/network/firewall/policies/{Policy}/rules', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='PoliciesPolicyRulesExtended', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def update_policies_policy_rule(self, policies_policy_rule, policies_policy_rule_id, policy, **kwargs): # noqa: E501 - """update_policies_policy_rule # noqa: E501 - - Modify a network firewall rule. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_policies_policy_rule(policies_policy_rule, policies_policy_rule_id, policy, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param PoliciesPolicyRule policies_policy_rule: (required) - :param str policies_policy_rule_id: Modify a network firewall rule. (required) - :param str policy: (required) - :param bool allow_renumbering: Indicates whether to allow renumbering of other rules when an index already exists - :param bool live: Live flag can only be used with active rules. Update will take effect immediately on all related network pools. - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.update_policies_policy_rule_with_http_info(policies_policy_rule, policies_policy_rule_id, policy, **kwargs) # noqa: E501 - else: - (data) = self.update_policies_policy_rule_with_http_info(policies_policy_rule, policies_policy_rule_id, policy, **kwargs) # noqa: E501 - return data - - def update_policies_policy_rule_with_http_info(self, policies_policy_rule, policies_policy_rule_id, policy, **kwargs): # noqa: E501 - """update_policies_policy_rule # noqa: E501 - - Modify a network firewall rule. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_policies_policy_rule_with_http_info(policies_policy_rule, policies_policy_rule_id, policy, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param PoliciesPolicyRule policies_policy_rule: (required) - :param str policies_policy_rule_id: Modify a network firewall rule. (required) - :param str policy: (required) - :param bool allow_renumbering: Indicates whether to allow renumbering of other rules when an index already exists - :param bool live: Live flag can only be used with active rules. Update will take effect immediately on all related network pools. - :return: None - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['policies_policy_rule', 'policies_policy_rule_id', 'policy', 'allow_renumbering', 'live'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method update_policies_policy_rule" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'policies_policy_rule' is set - if ('policies_policy_rule' not in params or - params['policies_policy_rule'] is None): - raise ValueError("Missing the required parameter `policies_policy_rule` when calling `update_policies_policy_rule`") # noqa: E501 - # verify the required parameter 'policies_policy_rule_id' is set - if ('policies_policy_rule_id' not in params or - params['policies_policy_rule_id'] is None): - raise ValueError("Missing the required parameter `policies_policy_rule_id` when calling `update_policies_policy_rule`") # noqa: E501 - # verify the required parameter 'policy' is set - if ('policy' not in params or - params['policy'] is None): - raise ValueError("Missing the required parameter `policy` when calling `update_policies_policy_rule`") # noqa: E501 - - collection_formats = {} - - path_params = {} - if 'policies_policy_rule_id' in params: - path_params['PoliciesPolicyRuleId'] = params['policies_policy_rule_id'] # noqa: E501 - if 'policy' in params: - path_params['Policy'] = params['policy'] # noqa: E501 - - query_params = [] - if 'allow_renumbering' in params: - query_params.append(('allow_renumbering', params['allow_renumbering'])) # noqa: E501 - if 'live' in params: - query_params.append(('live', params['live'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'policies_policy_rule' in params: - body_params = params['policies_policy_rule'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/network/firewall/policies/{Policy}/rules/{PoliciesPolicyRuleId}', 'PUT', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/os_api.py b/isilon_sdk/isilon_sdk/v9_11_0/api/os_api.py deleted file mode 100644 index 96afaa505..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/os_api.py +++ /dev/null @@ -1,125 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -from __future__ import absolute_import - -import re # noqa: F401 - -# python 2 and python 3 compatibility library -import six - -from isilon_sdk.v9_11_0.api_client import ApiClient - - -class OsApi(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - Ref: https://github.com/swagger-api/swagger-codegen - """ - - def __init__(self, api_client=None): - if api_client is None: - api_client = ApiClient() - self.api_client = api_client - - def get_os_security(self, **kwargs): # noqa: E501 - """get_os_security # noqa: E501 - - Per Node OS Security settings status # 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_os_security(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: OsSecurity - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_os_security_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_os_security_with_http_info(**kwargs) # noqa: E501 - return data - - def get_os_security_with_http_info(self, **kwargs): # noqa: E501 - """get_os_security # noqa: E501 - - Per Node OS Security settings status # 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_os_security_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: OsSecurity - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_os_security" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/os/security', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='OsSecurity', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/supportassist_api.py b/isilon_sdk/isilon_sdk/v9_11_0/api/supportassist_api.py deleted file mode 100644 index fb1038b3c..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/supportassist_api.py +++ /dev/null @@ -1,1281 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -from __future__ import absolute_import - -import re # noqa: F401 - -# python 2 and python 3 compatibility library -import six - -from isilon_sdk.v9_11_0.api_client import ApiClient - - -class SupportassistApi(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - Ref: https://github.com/swagger-api/swagger-codegen - """ - - def __init__(self, api_client=None): - if api_client is None: - api_client = ApiClient() - self.api_client = api_client - - def create_supportassist_data_item(self, supportassist_data_item, **kwargs): # noqa: E501 - """create_supportassist_data_item # noqa: E501 - - SupportAssist task response from ESE to product # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_supportassist_data_item(supportassist_data_item, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param SupportassistDataItem supportassist_data_item: (required) - :return: CreateResponse - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.create_supportassist_data_item_with_http_info(supportassist_data_item, **kwargs) # noqa: E501 - else: - (data) = self.create_supportassist_data_item_with_http_info(supportassist_data_item, **kwargs) # noqa: E501 - return data - - def create_supportassist_data_item_with_http_info(self, supportassist_data_item, **kwargs): # noqa: E501 - """create_supportassist_data_item # noqa: E501 - - SupportAssist task response from ESE to product # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_supportassist_data_item_with_http_info(supportassist_data_item, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param SupportassistDataItem supportassist_data_item: (required) - :return: CreateResponse - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['supportassist_data_item'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method create_supportassist_data_item" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'supportassist_data_item' is set - if ('supportassist_data_item' not in params or - params['supportassist_data_item'] is None): - raise ValueError("Missing the required parameter `supportassist_data_item` when calling `create_supportassist_data_item`") # noqa: E501 - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'supportassist_data_item' in params: - body_params = params['supportassist_data_item'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/supportassist/data', 'POST', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='CreateResponse', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def create_supportassist_payload_item(self, supportassist_payload_item, **kwargs): # noqa: E501 - """create_supportassist_payload_item # noqa: E501 - - Start a payload request task. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_supportassist_payload_item(supportassist_payload_item, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param SupportassistPayloadItem supportassist_payload_item: (required) - :return: CreateResponse - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.create_supportassist_payload_item_with_http_info(supportassist_payload_item, **kwargs) # noqa: E501 - else: - (data) = self.create_supportassist_payload_item_with_http_info(supportassist_payload_item, **kwargs) # noqa: E501 - return data - - def create_supportassist_payload_item_with_http_info(self, supportassist_payload_item, **kwargs): # noqa: E501 - """create_supportassist_payload_item # noqa: E501 - - Start a payload request task. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_supportassist_payload_item_with_http_info(supportassist_payload_item, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param SupportassistPayloadItem supportassist_payload_item: (required) - :return: CreateResponse - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['supportassist_payload_item'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method create_supportassist_payload_item" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'supportassist_payload_item' is set - if ('supportassist_payload_item' not in params or - params['supportassist_payload_item'] is None): - raise ValueError("Missing the required parameter `supportassist_payload_item` when calling `create_supportassist_payload_item`") # noqa: E501 - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'supportassist_payload_item' in params: - body_params = params['supportassist_payload_item'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/supportassist/payload', 'POST', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='CreateResponse', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def create_supportassist_task_item(self, supportassist_task_item, **kwargs): # noqa: E501 - """create_supportassist_task_item # noqa: E501 - - Create a SupportAssist task. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_supportassist_task_item(supportassist_task_item, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param SupportassistTaskItem supportassist_task_item: (required) - :return: CreateSupportassistTaskItemResponse - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.create_supportassist_task_item_with_http_info(supportassist_task_item, **kwargs) # noqa: E501 - else: - (data) = self.create_supportassist_task_item_with_http_info(supportassist_task_item, **kwargs) # noqa: E501 - return data - - def create_supportassist_task_item_with_http_info(self, supportassist_task_item, **kwargs): # noqa: E501 - """create_supportassist_task_item # noqa: E501 - - Create a SupportAssist task. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_supportassist_task_item_with_http_info(supportassist_task_item, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param SupportassistTaskItem supportassist_task_item: (required) - :return: CreateSupportassistTaskItemResponse - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['supportassist_task_item'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method create_supportassist_task_item" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'supportassist_task_item' is set - if ('supportassist_task_item' not in params or - params['supportassist_task_item'] is None): - raise ValueError("Missing the required parameter `supportassist_task_item` when calling `create_supportassist_task_item`") # noqa: E501 - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'supportassist_task_item' in params: - body_params = params['supportassist_task_item'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/17/supportassist/task', 'POST', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='CreateSupportassistTaskItemResponse', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def delete_supportassist_task_by_id(self, supportassist_task_id, **kwargs): # noqa: E501 - """delete_supportassist_task_by_id # noqa: E501 - - Delete a SupportAssist task by ID. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_supportassist_task_by_id(supportassist_task_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str supportassist_task_id: Delete a SupportAssist task by ID. (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.delete_supportassist_task_by_id_with_http_info(supportassist_task_id, **kwargs) # noqa: E501 - else: - (data) = self.delete_supportassist_task_by_id_with_http_info(supportassist_task_id, **kwargs) # noqa: E501 - return data - - def delete_supportassist_task_by_id_with_http_info(self, supportassist_task_id, **kwargs): # noqa: E501 - """delete_supportassist_task_by_id # noqa: E501 - - Delete a SupportAssist task by ID. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_supportassist_task_by_id_with_http_info(supportassist_task_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str supportassist_task_id: Delete a SupportAssist task by ID. (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['supportassist_task_id'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method delete_supportassist_task_by_id" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'supportassist_task_id' is set - if ('supportassist_task_id' not in params or - params['supportassist_task_id'] is None): - raise ValueError("Missing the required parameter `supportassist_task_id` when calling `delete_supportassist_task_by_id`") # noqa: E501 - - collection_formats = {} - - path_params = {} - if 'supportassist_task_id' in params: - path_params['SupportassistTaskId'] = params['supportassist_task_id'] # noqa: E501 - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/17/supportassist/task/{SupportassistTaskId}', 'DELETE', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_supportassist_license(self, **kwargs): # noqa: E501 - """get_supportassist_license # noqa: E501 - - License activation status. # 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_supportassist_license(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: SupportassistLicense - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_supportassist_license_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_supportassist_license_with_http_info(**kwargs) # noqa: E501 - return data - - def get_supportassist_license_with_http_info(self, **kwargs): # noqa: E501 - """get_supportassist_license # noqa: E501 - - License activation status. # 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_supportassist_license_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: SupportassistLicense - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_supportassist_license" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/supportassist/license', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='SupportassistLicense', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_supportassist_settings(self, **kwargs): # noqa: E501 - """get_supportassist_settings # noqa: E501 - - List settings. # 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_supportassist_settings(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: SupportassistSettings - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_supportassist_settings_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_supportassist_settings_with_http_info(**kwargs) # noqa: E501 - return data - - def get_supportassist_settings_with_http_info(self, **kwargs): # noqa: E501 - """get_supportassist_settings # noqa: E501 - - List settings. # 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_supportassist_settings_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: SupportassistSettings - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_supportassist_settings" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/20/supportassist/settings', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='SupportassistSettings', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_supportassist_status(self, **kwargs): # noqa: E501 - """get_supportassist_status # noqa: E501 - - Get status arguments. # 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_supportassist_status(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: SupportassistStatus - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_supportassist_status_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_supportassist_status_with_http_info(**kwargs) # noqa: E501 - return data - - def get_supportassist_status_with_http_info(self, **kwargs): # noqa: E501 - """get_supportassist_status # noqa: E501 - - Get status arguments. # 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_supportassist_status_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: SupportassistStatus - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_supportassist_status" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/20/supportassist/status', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='SupportassistStatus', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_supportassist_task_by_id(self, supportassist_task_id, **kwargs): # noqa: E501 - """get_supportassist_task_by_id # noqa: E501 - - Get the status of a SupportAssist task by ID or all tasks from the specified source. # 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_supportassist_task_by_id(supportassist_task_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str supportassist_task_id: Get the status of a SupportAssist task by ID or all tasks from the specified source. (required) - :return: SupportassistTask - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_supportassist_task_by_id_with_http_info(supportassist_task_id, **kwargs) # noqa: E501 - else: - (data) = self.get_supportassist_task_by_id_with_http_info(supportassist_task_id, **kwargs) # noqa: E501 - return data - - def get_supportassist_task_by_id_with_http_info(self, supportassist_task_id, **kwargs): # noqa: E501 - """get_supportassist_task_by_id # noqa: E501 - - Get the status of a SupportAssist task by ID or all tasks from the specified source. # 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_supportassist_task_by_id_with_http_info(supportassist_task_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str supportassist_task_id: Get the status of a SupportAssist task by ID or all tasks from the specified source. (required) - :return: SupportassistTask - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['supportassist_task_id'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_supportassist_task_by_id" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'supportassist_task_id' is set - if ('supportassist_task_id' not in params or - params['supportassist_task_id'] is None): - raise ValueError("Missing the required parameter `supportassist_task_id` when calling `get_supportassist_task_by_id`") # noqa: E501 - - collection_formats = {} - - path_params = {} - if 'supportassist_task_id' in params: - path_params['SupportassistTaskId'] = params['supportassist_task_id'] # noqa: E501 - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/17/supportassist/task/{SupportassistTaskId}', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='SupportassistTask', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_supportassist_terms(self, **kwargs): # noqa: E501 - """get_supportassist_terms # noqa: E501 - - The T&C text for SupportAssist. # 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_supportassist_terms(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: SupportassistTerms - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_supportassist_terms_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_supportassist_terms_with_http_info(**kwargs) # noqa: E501 - return data - - def get_supportassist_terms_with_http_info(self, **kwargs): # noqa: E501 - """get_supportassist_terms # noqa: E501 - - The T&C text for SupportAssist. # 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_supportassist_terms_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: SupportassistTerms - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_supportassist_terms" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/supportassist/terms', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='SupportassistTerms', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def list_supportassist_task(self, **kwargs): # noqa: E501 - """list_supportassist_task # noqa: E501 - - Get all SupportAssist tasks. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_supportassist_task(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: SupportassistTask - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.list_supportassist_task_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.list_supportassist_task_with_http_info(**kwargs) # noqa: E501 - return data - - def list_supportassist_task_with_http_info(self, **kwargs): # noqa: E501 - """list_supportassist_task # noqa: E501 - - Get all SupportAssist tasks. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_supportassist_task_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: SupportassistTask - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method list_supportassist_task" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/17/supportassist/task', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='SupportassistTask', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def update_supportassist_settings(self, supportassist_settings, **kwargs): # noqa: E501 - """update_supportassist_settings # noqa: E501 - - Modify one or more settings. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_supportassist_settings(supportassist_settings, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param SupportassistSettingsExtended supportassist_settings: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.update_supportassist_settings_with_http_info(supportassist_settings, **kwargs) # noqa: E501 - else: - (data) = self.update_supportassist_settings_with_http_info(supportassist_settings, **kwargs) # noqa: E501 - return data - - def update_supportassist_settings_with_http_info(self, supportassist_settings, **kwargs): # noqa: E501 - """update_supportassist_settings # noqa: E501 - - Modify one or more settings. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_supportassist_settings_with_http_info(supportassist_settings, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param SupportassistSettingsExtended supportassist_settings: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['supportassist_settings'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method update_supportassist_settings" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'supportassist_settings' is set - if ('supportassist_settings' not in params or - params['supportassist_settings'] is None): - raise ValueError("Missing the required parameter `supportassist_settings` when calling `update_supportassist_settings`") # noqa: E501 - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'supportassist_settings' in params: - body_params = params['supportassist_settings'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/20/supportassist/settings', 'PUT', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def update_supportassist_status(self, supportassist_status, **kwargs): # noqa: E501 - """update_supportassist_status # noqa: E501 - - Modify status arguments. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_supportassist_status(supportassist_status, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param SupportassistStatusExtended supportassist_status: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.update_supportassist_status_with_http_info(supportassist_status, **kwargs) # noqa: E501 - else: - (data) = self.update_supportassist_status_with_http_info(supportassist_status, **kwargs) # noqa: E501 - return data - - def update_supportassist_status_with_http_info(self, supportassist_status, **kwargs): # noqa: E501 - """update_supportassist_status # noqa: E501 - - Modify status arguments. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_supportassist_status_with_http_info(supportassist_status, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param SupportassistStatusExtended supportassist_status: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['supportassist_status'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method update_supportassist_status" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'supportassist_status' is set - if ('supportassist_status' not in params or - params['supportassist_status'] is None): - raise ValueError("Missing the required parameter `supportassist_status` when calling `update_supportassist_status`") # noqa: E501 - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'supportassist_status' in params: - body_params = params['supportassist_status'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/20/supportassist/status', 'PUT', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def update_supportassist_terms(self, supportassist_terms, **kwargs): # noqa: E501 - """update_supportassist_terms # noqa: E501 - - Setting T&C accepted/rejected status. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_supportassist_terms(supportassist_terms, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param SupportassistTermsExtended supportassist_terms: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.update_supportassist_terms_with_http_info(supportassist_terms, **kwargs) # noqa: E501 - else: - (data) = self.update_supportassist_terms_with_http_info(supportassist_terms, **kwargs) # noqa: E501 - return data - - def update_supportassist_terms_with_http_info(self, supportassist_terms, **kwargs): # noqa: E501 - """update_supportassist_terms # noqa: E501 - - Setting T&C accepted/rejected status. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_supportassist_terms_with_http_info(supportassist_terms, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param SupportassistTermsExtended supportassist_terms: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['supportassist_terms'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method update_supportassist_terms" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'supportassist_terms' is set - if ('supportassist_terms' not in params or - params['supportassist_terms'] is None): - raise ValueError("Missing the required parameter `supportassist_terms` when calling `update_supportassist_terms`") # noqa: E501 - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'supportassist_terms' in params: - body_params = params['supportassist_terms'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/supportassist/terms', 'PUT', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesSettingsSettings.md deleted file mode 100644 index c1cdad8ba..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesSettingsSettings.md +++ /dev/null @@ -1,13 +0,0 @@ -# CertificatesSettingsSettings - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**enable_encryption** | **bool** | Enables encryption. If disabled, TLS handshakes still must succeed, but once successful, traffic is left unencrypted. | [optional] -**ocsp_uri** | **str** | The URI of the server to check revocation status against if the received certificate does not contain an AIA extension. | [optional] -**revocation_setting** | **str** | The strictness of revocation checking to use.NONE: Don't check for revoked certificates.STRICT: Check for revoked certificates and fail the handshake if any certificate in the chain is revoked, or if revocation status data cannot be obtained.ALLOW_NO_REVOKE_SRC: Allow handshakes to proceed if a certificate does not contain information on where to check for revocation (e.g. no OCSP responder field).ALLOW_REVOKE_DATA_UNAVAILABLE: Attempt to check each certificate for revocation status, but proceed if revocation status information is unavailable. | [optional] -**strict_hostname_check** | **bool** | If enabled, the CN in the certificate presented by the remote host must match the CN used to connect to that host for the handshake to succeed. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterRekey.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterRekey.md deleted file mode 100644 index 069697da8..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterRekey.md +++ /dev/null @@ -1,11 +0,0 @@ -# ClusterRekey - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**key_rotation** | **int** | The amount of time in seconds between changing the provider master passphrase. | -**rekey_time** | **int** | Last rekey date of the provider master passphrase. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterSkipOptional.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterSkipOptional.md deleted file mode 100644 index 82ae77b20..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterSkipOptional.md +++ /dev/null @@ -1,10 +0,0 @@ -# ClusterSkipOptional - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**skip_optional** | **bool** | Used to indicate that the optional pre-upgrade checks should notbe skipped. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterStatusDomain.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterStatusDomain.md deleted file mode 100644 index dd8815113..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterStatusDomain.md +++ /dev/null @@ -1,13 +0,0 @@ -# ClusterStatusDomain - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**error_msg** | **str** | information of the error if there is an error status. Empty if no error occurred. | [optional] -**id** | **str** | The name of a keymanager cluster domain. | [optional] -**key_timestamp** | **int** | Creation time of the key | [optional] -**status** | **str** | Current key domain status. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigCatalogApi.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigCatalogApi.md deleted file mode 100644 index 87b52a43f..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigCatalogApi.md +++ /dev/null @@ -1,109 +0,0 @@ -# isilon_sdk.v9_11_0.ConfigCatalogApi - -All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**get_config_catalog_status**](ConfigCatalogApi.md#get_config_catalog_status) | **GET** /platform/19/config-catalog/status | -[**update_config_catalog_status**](ConfigCatalogApi.md#update_config_catalog_status) | **PUT** /platform/19/config-catalog/status | - - -# **get_config_catalog_status** -> ConfigCatalogStatus get_config_catalog_status() - - - -The config catalog status. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ConfigCatalogApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_config_catalog_status() - pprint(api_response) -except ApiException as e: - print("Exception when calling ConfigCatalogApi->get_config_catalog_status: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**ConfigCatalogStatus**](ConfigCatalogStatus.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **update_config_catalog_status** -> update_config_catalog_status(config_catalog_status) - - - -The config catalog status. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ConfigCatalogApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -config_catalog_status = isilon_sdk.v9_11_0.ConfigCatalogStatusExtended() # ConfigCatalogStatusExtended | - -try: - api_instance.update_config_catalog_status(config_catalog_status) -except ApiException as e: - print("Exception when calling ConfigCatalogApi->update_config_catalog_status: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **config_catalog_status** | [**ConfigCatalogStatusExtended**](ConfigCatalogStatusExtended.md)| | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigCatalogStatus.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigCatalogStatus.md deleted file mode 100644 index 9dfbd5708..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigCatalogStatus.md +++ /dev/null @@ -1,13 +0,0 @@ -# ConfigCatalogStatus - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**compliance_update** | **bool** | Enable flag for compliance mode. | [optional] -**enabled** | **bool** | Autoupdate enable flag. | [optional] -**last_failed_package** | [**ConfigCatalogStatusLastFailedPackage**](ConfigCatalogStatusLastFailedPackage.md) | The last failed package information. | [optional] -**version** | **str** | The version number. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigCatalogStatusLastFailedPackage.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigCatalogStatusLastFailedPackage.md deleted file mode 100644 index cfe51e964..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigCatalogStatusLastFailedPackage.md +++ /dev/null @@ -1,12 +0,0 @@ -# ConfigCatalogStatusLastFailedPackage - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**attempts** | **int** | The number of attempts to install the last failed package | [optional] -**message** | **str** | The last failed package error message | [optional] -**version** | **str** | The last failed package version. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigImportRulesNetwork.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigImportRulesNetwork.md deleted file mode 100644 index 91f7a9da4..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigImportRulesNetwork.md +++ /dev/null @@ -1,10 +0,0 @@ -# ConfigImportRulesNetwork - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**restore** | [**ConfigImportRulesNetworkRestore**](ConfigImportRulesNetworkRestore.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigImportRulesNetworkRestore.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigImportRulesNetworkRestore.md deleted file mode 100644 index 208a5e548..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigImportRulesNetworkRestore.md +++ /dev/null @@ -1,10 +0,0 @@ -# ConfigImportRulesNetworkRestore - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**subnets** | [**Empty**](Empty.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigNamespaceEntry.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigNamespaceEntry.md deleted file mode 100644 index 33b77e348..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigNamespaceEntry.md +++ /dev/null @@ -1,14 +0,0 @@ -# ConfigNamespaceEntry - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **str** | Configuration identifier | -**namespace** | **str** | Configuration namespace | -**value** | **str** | Configuration value (binary types base64 encoded) | -**value_size** | **int** | Length of configuration value, including null termination | -**value_type** | **str** | Value type | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigNamespaceIdParams.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigNamespaceIdParams.md deleted file mode 100644 index 40261b279..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigNamespaceIdParams.md +++ /dev/null @@ -1,12 +0,0 @@ -# ConfigNamespaceIdParams - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**value** | **str** | Configuration value (binary types base64 encoded) | [optional] -**value_size** | **int** | Length of configuration value, including null termination | [optional] -**value_type** | **str** | Value type | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigUserExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigUserExtended.md deleted file mode 100644 index 9217c9c4b..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigUserExtended.md +++ /dev/null @@ -1,12 +0,0 @@ -# ConfigUserExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **int** | The numeric User ID associated with the username. | [optional] -**password** | **str** | Represents the password that customers will use with the IPMI username when authenticating remote IPMI requests. | [optional] -**username** | **str** | Represents the username that customers will use when authenticating remote IPMI requests. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConnectivityApi.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ConnectivityApi.md deleted file mode 100644 index b85028a8c..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConnectivityApi.md +++ /dev/null @@ -1,673 +0,0 @@ -# isilon_sdk.v9_11_0.ConnectivityApi - -All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**create_connectivity_data_item**](ConnectivityApi.md#create_connectivity_data_item) | **POST** /platform/21/connectivity/data | -[**create_connectivity_payload_item**](ConnectivityApi.md#create_connectivity_payload_item) | **POST** /platform/21/connectivity/payload | -[**create_connectivity_task_item**](ConnectivityApi.md#create_connectivity_task_item) | **POST** /platform/21/connectivity/task | -[**delete_connectivity_task_by_id**](ConnectivityApi.md#delete_connectivity_task_by_id) | **DELETE** /platform/21/connectivity/task/{ConnectivityTaskId} | -[**get_connectivity_license**](ConnectivityApi.md#get_connectivity_license) | **GET** /platform/21/connectivity/license | -[**get_connectivity_settings**](ConnectivityApi.md#get_connectivity_settings) | **GET** /platform/21/connectivity/settings | -[**get_connectivity_status**](ConnectivityApi.md#get_connectivity_status) | **GET** /platform/22/connectivity/status | -[**get_connectivity_task_by_id**](ConnectivityApi.md#get_connectivity_task_by_id) | **GET** /platform/21/connectivity/task/{ConnectivityTaskId} | -[**get_connectivity_terms**](ConnectivityApi.md#get_connectivity_terms) | **GET** /platform/21/connectivity/terms | -[**list_connectivity_task**](ConnectivityApi.md#list_connectivity_task) | **GET** /platform/21/connectivity/task | -[**update_connectivity_settings**](ConnectivityApi.md#update_connectivity_settings) | **PUT** /platform/21/connectivity/settings | -[**update_connectivity_status**](ConnectivityApi.md#update_connectivity_status) | **PUT** /platform/22/connectivity/status | -[**update_connectivity_terms**](ConnectivityApi.md#update_connectivity_terms) | **PUT** /platform/21/connectivity/terms | - - -# **create_connectivity_data_item** -> CreateResponse create_connectivity_data_item(connectivity_data_item) - - - -Connectivity task response from Dell Technologies connectivity services - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ConnectivityApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -connectivity_data_item = isilon_sdk.v9_11_0.SupportassistDataItem() # SupportassistDataItem | - -try: - api_response = api_instance.create_connectivity_data_item(connectivity_data_item) - pprint(api_response) -except ApiException as e: - print("Exception when calling ConnectivityApi->create_connectivity_data_item: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **connectivity_data_item** | [**SupportassistDataItem**](SupportassistDataItem.md)| | - -### Return type - -[**CreateResponse**](CreateResponse.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **create_connectivity_payload_item** -> CreateResponse create_connectivity_payload_item(connectivity_payload_item) - - - -Start a payload request task. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ConnectivityApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -connectivity_payload_item = isilon_sdk.v9_11_0.SupportassistPayloadItem() # SupportassistPayloadItem | - -try: - api_response = api_instance.create_connectivity_payload_item(connectivity_payload_item) - pprint(api_response) -except ApiException as e: - print("Exception when calling ConnectivityApi->create_connectivity_payload_item: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **connectivity_payload_item** | [**SupportassistPayloadItem**](SupportassistPayloadItem.md)| | - -### Return type - -[**CreateResponse**](CreateResponse.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **create_connectivity_task_item** -> CreateResponse create_connectivity_task_item(connectivity_task_item) - - - -Create a Connectivity task. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ConnectivityApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -connectivity_task_item = isilon_sdk.v9_11_0.SupportassistTaskItem() # SupportassistTaskItem | - -try: - api_response = api_instance.create_connectivity_task_item(connectivity_task_item) - pprint(api_response) -except ApiException as e: - print("Exception when calling ConnectivityApi->create_connectivity_task_item: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **connectivity_task_item** | [**SupportassistTaskItem**](SupportassistTaskItem.md)| | - -### Return type - -[**CreateResponse**](CreateResponse.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **delete_connectivity_task_by_id** -> delete_connectivity_task_by_id(connectivity_task_id) - - - -Delete a Connectivity task by ID. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ConnectivityApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -connectivity_task_id = 'connectivity_task_id_example' # str | Delete a Connectivity task by ID. - -try: - api_instance.delete_connectivity_task_by_id(connectivity_task_id) -except ApiException as e: - print("Exception when calling ConnectivityApi->delete_connectivity_task_by_id: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **connectivity_task_id** | **str**| Delete a Connectivity task by ID. | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_connectivity_license** -> SupportassistLicense get_connectivity_license() - - - -License activation status. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ConnectivityApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_connectivity_license() - pprint(api_response) -except ApiException as e: - print("Exception when calling ConnectivityApi->get_connectivity_license: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**SupportassistLicense**](SupportassistLicense.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_connectivity_settings** -> ConnectivitySettings get_connectivity_settings() - - - -List settings. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ConnectivityApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_connectivity_settings() - pprint(api_response) -except ApiException as e: - print("Exception when calling ConnectivityApi->get_connectivity_settings: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**ConnectivitySettings**](ConnectivitySettings.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_connectivity_status** -> ConnectivityStatus get_connectivity_status() - - - -Get status arguments. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ConnectivityApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_connectivity_status() - pprint(api_response) -except ApiException as e: - print("Exception when calling ConnectivityApi->get_connectivity_status: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**ConnectivityStatus**](ConnectivityStatus.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_connectivity_task_by_id** -> SupportassistTask get_connectivity_task_by_id(connectivity_task_id) - - - -Get the status of a Connectivity task by ID or all tasks from the specified source. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ConnectivityApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -connectivity_task_id = 'connectivity_task_id_example' # str | Get the status of a Connectivity task by ID or all tasks from the specified source. - -try: - api_response = api_instance.get_connectivity_task_by_id(connectivity_task_id) - pprint(api_response) -except ApiException as e: - print("Exception when calling ConnectivityApi->get_connectivity_task_by_id: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **connectivity_task_id** | **str**| Get the status of a Connectivity task by ID or all tasks from the specified source. | - -### Return type - -[**SupportassistTask**](SupportassistTask.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_connectivity_terms** -> SupportassistTerms get_connectivity_terms() - - - -The Telemetry Notice text for Dell Technologies connectivity services. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ConnectivityApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_connectivity_terms() - pprint(api_response) -except ApiException as e: - print("Exception when calling ConnectivityApi->get_connectivity_terms: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**SupportassistTerms**](SupportassistTerms.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **list_connectivity_task** -> SupportassistTask list_connectivity_task() - - - -Get all Connectivity tasks. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ConnectivityApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.list_connectivity_task() - pprint(api_response) -except ApiException as e: - print("Exception when calling ConnectivityApi->list_connectivity_task: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**SupportassistTask**](SupportassistTask.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **update_connectivity_settings** -> update_connectivity_settings(connectivity_settings) - - - -Modify one or more settings. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ConnectivityApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -connectivity_settings = isilon_sdk.v9_11_0.SupportassistSettingsExtended() # SupportassistSettingsExtended | - -try: - api_instance.update_connectivity_settings(connectivity_settings) -except ApiException as e: - print("Exception when calling ConnectivityApi->update_connectivity_settings: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **connectivity_settings** | [**SupportassistSettingsExtended**](SupportassistSettingsExtended.md)| | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **update_connectivity_status** -> update_connectivity_status(connectivity_status) - - - -Modify status arguments. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ConnectivityApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -connectivity_status = isilon_sdk.v9_11_0.ConnectivityStatusExtended() # ConnectivityStatusExtended | - -try: - api_instance.update_connectivity_status(connectivity_status) -except ApiException as e: - print("Exception when calling ConnectivityApi->update_connectivity_status: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **connectivity_status** | [**ConnectivityStatusExtended**](ConnectivityStatusExtended.md)| | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **update_connectivity_terms** -> update_connectivity_terms(connectivity_terms) - - - -Setting Telemetry Notice accepted or rejected. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ConnectivityApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -connectivity_terms = isilon_sdk.v9_11_0.SupportassistTermsExtended() # SupportassistTermsExtended | - -try: - api_instance.update_connectivity_terms(connectivity_terms) -except ApiException as e: - print("Exception when calling ConnectivityApi->update_connectivity_terms: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **connectivity_terms** | [**SupportassistTermsExtended**](SupportassistTermsExtended.md)| | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConnectivitySettings.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ConnectivitySettings.md deleted file mode 100644 index 42a366517..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConnectivitySettings.md +++ /dev/null @@ -1,18 +0,0 @@ -# ConnectivitySettings - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**automatic_case_creation** | **bool** | True indicates automatic case creation is enabled | [optional] [default to True] -**connection** | [**SupportassistSettingsConnection**](SupportassistSettingsConnection.md) | | [optional] -**connection_state** | **str** | connection state. | [optional] -**connectivity_enabled** | **bool** | Whether Dell Technologies connectivity services is enabled | -**contact** | [**SupportassistSettingsContact**](SupportassistSettingsContact.md) | | [optional] -**enable_download** | **bool** | True indicates downloads are enabled | [optional] [default to True] -**enable_remote_support** | **bool** | Whether remoteAccessEnabled is enabled | [optional] [default to False] -**onefs_software_id** | **str** | The software ID used by Dell Technologies connectivity services | [optional] -**telemetry** | [**SupportassistSettingsTelemetry**](SupportassistSettingsTelemetry.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConnectivityStatus.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ConnectivityStatus.md deleted file mode 100644 index a23c1fa31..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConnectivityStatus.md +++ /dev/null @@ -1,10 +0,0 @@ -# ConnectivityStatus - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**status** | [**ConnectivityStatusStatus**](ConnectivityStatusStatus.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConnectivityStatusExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ConnectivityStatusExtended.md deleted file mode 100644 index 736fcec2c..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConnectivityStatusExtended.md +++ /dev/null @@ -1,12 +0,0 @@ -# ConnectivityStatusExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**connectivity_dismissed** | **bool** | Whether Dell Technologies connectivity services prompt should be dismissed | [optional] -**enabled** | **bool** | Setting to true or yes will enable Dell Technologies connectivity services. Setting to false or no will disable Dell Technologies connectivity services. | [optional] -**show_migrated** | **bool** | Whether to show if connectivity had been migrated. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConnectivityStatusStatus.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ConnectivityStatusStatus.md deleted file mode 100644 index 47b7f537f..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConnectivityStatusStatus.md +++ /dev/null @@ -1,19 +0,0 @@ -# ConnectivityStatusStatus - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**connection_status** | **str** | The current connection status of Dell Technologies connectivity services. | -**connectivity_connected** | **bool** | Whether Dell Technologies connectivity services is connected. | -**connectivity_dismissed** | **bool** | Whether Dell Technologies connectivity services prompt should be dismissed. | -**connectivity_enabled** | **bool** | Whether Dell Technologies connectivity services is enabled. | -**hardware_key_present** | **bool** | Whether Hardware key is present. | -**provisioned** | **bool** | True indicates Dell Technologies connectivity services provisioning is done. | -**show_migrated** | **bool** | Whether to show if connectivity had been migrated. | -**srs_disabled** | **bool** | False indicates Remote Support is disabled. | -**swid** | **str** | The software ID used by Dell Technologies connectivity services. | -**ui_state** | **str** | Connectivity system state. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateClusterRekeyItemResponse.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateClusterRekeyItemResponse.md deleted file mode 100644 index 39ecd6282..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateClusterRekeyItemResponse.md +++ /dev/null @@ -1,10 +0,0 @@ -# CreateClusterRekeyItemResponse - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**rekey_msg** | **str** | Non-error message reported to user about the rekey process. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateOauthCertificateResponse.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateOauthCertificateResponse.md deleted file mode 100644 index 7b7049d6b..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateOauthCertificateResponse.md +++ /dev/null @@ -1,10 +0,0 @@ -# CreateOauthCertificateResponse - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **str** | Unique identifier of the certificate. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateOauthOauth2TokenExchangeResponse.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateOauthOauth2TokenExchangeResponse.md deleted file mode 100644 index c4b709e3e..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateOauthOauth2TokenExchangeResponse.md +++ /dev/null @@ -1,10 +0,0 @@ -# CreateOauthOauth2TokenExchangeResponse - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **str** | Unique identifier of the OAuth2 Token Exchange resource. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateProvidersSamlServicesCertExtractItemResponse.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateProvidersSamlServicesCertExtractItemResponse.md deleted file mode 100644 index 923499067..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateProvidersSamlServicesCertExtractItemResponse.md +++ /dev/null @@ -1,10 +0,0 @@ -# CreateProvidersSamlServicesCertExtractItemResponse - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**certificate_info** | [**CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo**](CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo.md) | Certificate with information about it. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo.md deleted file mode 100644 index e9a8d16ba..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo.md +++ /dev/null @@ -1,17 +0,0 @@ -# CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**fingerprints** | [**list[CertificatesSyslogCertificateFingerprint]**](CertificatesSyslogCertificateFingerprint.md) | A list of zero or more certificate fingerprints which can be used for certificate identification. | [optional] -**issuer** | **str** | Certificate issuer field extracted from the certificate. | [optional] -**not_after** | **int** | Certificate notAfter field extracted from the certificate encoded as a UNIX epoch timestamp. The certificate is not valid after this timestamp. | [optional] -**not_before** | **int** | Certificate notBefore field extracted from the certificate encoded as a UNIX epoch timestamp. The certificate is not valid before this timestamp. | [optional] -**path** | **str** | The path the certificate was imported from. | [optional] -**status** | **str** | Certificate validity status | [optional] -**subject** | **str** | Certificate subject field extracted from the certificate. | [optional] -**value** | [**CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue**](CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue.md) | Certificate data. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue.md deleted file mode 100644 index 84120364d..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue.md +++ /dev/null @@ -1,11 +0,0 @@ -# CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**type** | **str** | The format of the certificate in the data property. | [optional] -**value** | **str** | Certificate in the encoding of the type property. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateProvidersSamlServicesIdpResponse.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateProvidersSamlServicesIdpResponse.md deleted file mode 100644 index b1797213d..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateProvidersSamlServicesIdpResponse.md +++ /dev/null @@ -1,10 +0,0 @@ -# CreateProvidersSamlServicesIdpResponse - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **str** | Unique identifier of a SAML service resource. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateProvidersSamlServicesMetadataExtractItemResponse.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateProvidersSamlServicesMetadataExtractItemResponse.md deleted file mode 100644 index d9c449371..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateProvidersSamlServicesMetadataExtractItemResponse.md +++ /dev/null @@ -1,13 +0,0 @@ -# CreateProvidersSamlServicesMetadataExtractItemResponse - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**entity_id** | **str** | The SAML entity ID the rest of this object's properties are within. | [optional] -**login_endpoints** | [**list[CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint]**](CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint.md) | A list of endpoints from the metadata that can be used as the login URL when creating an IDP on PowerScale. | [optional] -**logout_endpoints** | [**list[CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint]**](CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint.md) | A list of endpoints from the metadata that can be used as the logout URL when creating an IDP on PowerScale. | [optional] -**signing_certificates** | [**list[CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate]**](CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate.md) | A list of signing certificates from the metadata's IDP. Only signing certificates with a status property of valid can be used to create an IDP on PowerScale. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint.md deleted file mode 100644 index feace321a..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint.md +++ /dev/null @@ -1,12 +0,0 @@ -# CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**binding** | **str** | SAML binding that PowerScale can use. | [optional] -**is_default** | **bool** | When true this is the endpoint that PowerScale will use if this same metadata is used to create an IDP on PowerScale. There will be at most one item in the list set to true. | [optional] -**url** | **str** | URL specifying the location of the endpoint. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint.md deleted file mode 100644 index cc0b5c054..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint.md +++ /dev/null @@ -1,13 +0,0 @@ -# CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**binding** | **str** | SAML binding that PowerScale can use. | [optional] -**is_default** | **bool** | When true this is the endpoint that PowerScale will use if this same metadata is used to create an IDP on PowerScale. There will be at most one item in the list set to true. | [optional] -**response_url** | **str** | URL specifying the location of where to send responses to. | [optional] -**url** | **str** | URL specifying the location of the endpoint. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate.md deleted file mode 100644 index 523b481d8..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate.md +++ /dev/null @@ -1,16 +0,0 @@ -# CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**fingerprints** | [**list[CertificatesSyslogCertificateFingerprint]**](CertificatesSyslogCertificateFingerprint.md) | A list of zero or more certificate fingerprints which can be used for certificate identification. | [optional] -**issuer** | **str** | Certificate issuer field extracted from the certificate. | [optional] -**not_after** | **int** | Certificate notAfter field extracted from the certificate encoded as a UNIX epoch timestamp. The certificate is not valid after this timestamp. | [optional] -**not_before** | **int** | Certificate notBefore field extracted from the certificate encoded as a UNIX epoch timestamp. The certificate is not valid before this timestamp. | [optional] -**status** | **str** | Certificate validity status | [optional] -**subject** | **str** | Certificate subject field extracted from the certificate. | [optional] -**value** | [**CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue**](CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue.md) | Certificate data. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateSupportassistTaskItemResponse.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateSupportassistTaskItemResponse.md deleted file mode 100644 index 1521e2c2d..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateSupportassistTaskItemResponse.md +++ /dev/null @@ -1,10 +0,0 @@ -# CreateSupportassistTaskItemResponse - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**task_id** | **str** | ID of created item that can be used to refer to item in the collection-item resource path. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateUserResetPasswordItemResponse.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateUserResetPasswordItemResponse.md deleted file mode 100644 index 4c7f8e1c0..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateUserResetPasswordItemResponse.md +++ /dev/null @@ -1,10 +0,0 @@ -# CreateUserResetPasswordItemResponse - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**new_password** | **str** | the newly generated password | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverConfig.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverConfig.md deleted file mode 100644 index f58166ebd..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverConfig.md +++ /dev/null @@ -1,11 +0,0 @@ -# DatamoverConfig - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**entries** | [**list[ConfigNamespaceEntry]**](ConfigNamespaceEntry.md) | | [optional] -**resume** | **str** | Provide this token as the 'resume' query argument to continue listing results. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverConfigExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverConfigExtended.md deleted file mode 100644 index f67dac384..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverConfigExtended.md +++ /dev/null @@ -1,11 +0,0 @@ -# DatamoverConfigExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**namespaces** | [**list[DatamoverConfigNamespace]**](DatamoverConfigNamespace.md) | | [optional] -**resume** | **str** | Provide this token as the 'resume' query argument to continue listing results. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverConfigNamespace.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverConfigNamespace.md deleted file mode 100644 index f7fe62041..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverConfigNamespace.md +++ /dev/null @@ -1,11 +0,0 @@ -# DatamoverConfigNamespace - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**entries** | [**list[ConfigNamespaceEntry]**](ConfigNamespaceEntry.md) | Configuration entries | [optional] -**id** | **str** | Configuration namespace identifier | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJobJobFailedTask.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJobJobFailedTask.md deleted file mode 100644 index fa6ad4180..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJobJobFailedTask.md +++ /dev/null @@ -1,13 +0,0 @@ -# DatamoverHistoricalJobsJobJobFailedTask - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**error_msg** | **str** | Error message | -**id** | **int** | Task identifier | -**task_state** | **str** | Task state | -**task_type** | **str** | Task type | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJob.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJob.md deleted file mode 100644 index 0833b3494..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJob.md +++ /dev/null @@ -1,11 +0,0 @@ -# DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJob - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**account_id** | **str** | The account where this dataset expiration job is to be run. | [optional] -**statistics** | [**DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics**](DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics.md) | Statistics for this job | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverJobJobTypeSpecificAttrsDatasetCreationJob.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverJobJobTypeSpecificAttrsDatasetCreationJob.md deleted file mode 100644 index 142e30bf7..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverJobJobTypeSpecificAttrsDatasetCreationJob.md +++ /dev/null @@ -1,16 +0,0 @@ -# DatamoverJobJobTypeSpecificAttrsDatasetCreationJob - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**account_id** | **str** | Account ID of the source storage system, where the dataset is to be created. | [optional] -**account_name** | **str** | Account name of the source storage system, where the dataset is to be created. | [optional] -**base_path** | **str** | Filesystem path for dataset creation. The subpath is relative to this path. | [optional] -**dataset_version** | **str** | The version of dataset. | [optional] -**retention** | [**DatamoverBasePolicySrcDatasetRetention**](DatamoverBasePolicySrcDatasetRetention.md) | | [optional] -**statistics** | [**DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJobStatistics**](DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJobStatistics.md) | Statistics for this job | [optional] -**subpaths** | **list[str]** | Set of filesystem paths relative to base path. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob.md deleted file mode 100644 index d129cf65f..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob.md +++ /dev/null @@ -1,12 +0,0 @@ -# DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**account_id** | **str** | The account where this dataset expiration job is to be run. | [optional] -**account_name** | **str** | The account name of the system on which this dataset expiration job is to be run. | [optional] -**statistics** | [**DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics**](DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics.md) | Statistics for this job | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPoliciesApi.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPoliciesApi.md deleted file mode 100644 index b896a7c25..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPoliciesApi.md +++ /dev/null @@ -1,61 +0,0 @@ -# isilon_sdk.v9_11_0.DatamoverPoliciesApi - -All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**get_policy_last_job**](DatamoverPoliciesApi.md#get_policy_last_job) | **GET** /platform/19/datamover/policies/{Policyid}/last-job | - - -# **get_policy_last_job** -> PolicyLastJob get_policy_last_job(policyid) - - - -Retrieve job ID and last execution time using policy ID. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverPoliciesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -policyid = 'policyid_example' # str | - -try: - api_response = api_instance.get_policy_last_job(policyid) - pprint(api_response) -except ApiException as e: - print("Exception when calling DatamoverPoliciesApi->get_policy_last_job: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **policyid** | **str**| | - -### Return type - -[**PolicyLastJob**](PolicyLastJob.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended.md deleted file mode 100644 index 8e038e1dc..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended.md +++ /dev/null @@ -1,20 +0,0 @@ -# DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**base_account_id** | **str** | Account ID (local or remote DM system) where the policy should be created. This is an optional field, if not specified it will be set to the local account ID. | [optional] -**copy_retention** | [**DatamoverBasePolicySrcDatasetRetention**](DatamoverBasePolicySrcDatasetRetention.md) | | [optional] -**new_tasks_account** | **str** | Account ID where to create all the tasks. This is an optional field, if not specified will be set to the local account ID. | [optional] -**source_account_id** | **str** | Account ID of the source data storage. | [optional] -**target_account_id** | **str** | Account ID of the target data storage. | [optional] -**target_base_path** | **str** | Base path on the target storage system. | [optional] -**target_dataset_type** | **str** | Dataset type from one of these: A file system on object store in a copy format, a file system on object store in a backup format or file on file dataset. | [optional] -**base_account_name** | **str** | Account name of the system on which the policy will be created. | [optional] -**new_tasks_account_name** | **str** | Account name of the system on which to create tasks. | [optional] -**source_account_name** | **str** | Account name of the source data storage system. | [optional] -**target_account_name** | **str** | Account name of the target data storage system. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrCreationPolicyExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrCreationPolicyExtended.md deleted file mode 100644 index 3aa5c71e9..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrCreationPolicyExtended.md +++ /dev/null @@ -1,14 +0,0 @@ -# DatamoverPolicyPolicySpecificAttrCreationPolicyExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**account_id** | **str** | Account ID of the source storage system, where the dataset is to be created. | [optional] -**base_path** | **str** | Filesystem base path which has the directories/files for which dataset has to be created. | [optional] -**retention** | [**DatamoverBasePolicySrcDatasetRetention**](DatamoverBasePolicySrcDatasetRetention.md) | | [optional] -**account_name** | **str** | Account name of the source storage system, where the dataset is to be created. | [optional] -**dataset_version** | **str** | The version of dataset. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrExpirationPolicyExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrExpirationPolicyExtended.md deleted file mode 100644 index fd63426c6..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrExpirationPolicyExtended.md +++ /dev/null @@ -1,11 +0,0 @@ -# DatamoverPolicyPolicySpecificAttrExpirationPolicyExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**account_id** | **str** | The account where this expiration policy is to be run. | [optional] -**account_name** | **str** | The account name of the system on which this expiration policy is to be run. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended.md deleted file mode 100644 index 78ac99091..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended.md +++ /dev/null @@ -1,13 +0,0 @@ -# DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**dataset_copy_policy_base** | [**DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended**](DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended.md) | | [optional] -**reconnect** | **bool** | This boolean allows starting with incremental syncs and skipping the initial baseline sync if the target base path contains a leaf dataset which is an ancestor of a source base path dataset. | [optional] -**rpo_alert** | **int** | RPO alert duration in seconds | [optional] -**source_base_path** | **str** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicySchedule.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicySchedule.md deleted file mode 100644 index c03e1708a..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicySchedule.md +++ /dev/null @@ -1,12 +0,0 @@ -# DatamoverPolicySchedule - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**date_times** | **list[str]** | The specific date/times at which this policy should run regardless of the start_time and recurrence. | [optional] -**recurrence** | **list[str]** | The cron expression to represent a repetitive schedule for the policy w.r.t. start_time. | [optional] -**start_time** | **str** | The date/time of the first run of the policy. It should be in 'yyyy-mm-dd hh:mn:ss' format, where year range is 2001-2099. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetWorkload.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetWorkload.md deleted file mode 100644 index f9c071d82..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetWorkload.md +++ /dev/null @@ -1,16 +0,0 @@ -# DatasetWorkload - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**client_impact** | **int** | The desired workload's impact on the system. Specified by the Job Engine. | [optional] -**cluster_resource_impact** | **int** | The desired workload's impact on the system. Specified by the Job Engine. | [optional] -**limits** | [**DatasetWorkloadLimits**](DatasetWorkloadLimits.md) | Performance limits for a workload | [optional] -**max_cpu_us** | **int** | The CPU usage limit for a workload in microseconds. | [optional] -**max_disk_reads** | **int** | The disk read operation limit for a workload. | [optional] -**max_disk_writes** | **int** | The disk write operation limit for a workload. | [optional] -**name** | **str** | The name of the workload. User specified. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetWorkloadCreateParams.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetWorkloadCreateParams.md deleted file mode 100644 index c018df2ff..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetWorkloadCreateParams.md +++ /dev/null @@ -1,17 +0,0 @@ -# DatasetWorkloadCreateParams - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**client_impact** | **int** | The desired workload's impact on the system. Specified by the Job Engine. | [optional] -**cluster_resource_impact** | **int** | The desired workload's impact on the system. Specified by the Job Engine. | [optional] -**limits** | [**DatasetWorkloadLimits**](DatasetWorkloadLimits.md) | Performance limits for a workload | [optional] -**max_cpu_us** | **int** | The CPU usage limit for a workload in microseconds. | [optional] -**max_disk_reads** | **int** | The disk read operation limit for a workload. | [optional] -**max_disk_writes** | **int** | The disk write operation limit for a workload. | [optional] -**name** | **str** | The name of the workload. User specified. | [optional] -**metric_values** | [**DatasetFilterMetricValuesCreateParams**](DatasetFilterMetricValuesCreateParams.md) | Configurable metrics. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetWorkloadLimits.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetWorkloadLimits.md deleted file mode 100644 index e0e728eac..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetWorkloadLimits.md +++ /dev/null @@ -1,10 +0,0 @@ -# DatasetWorkloadLimits - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**protocol_ops** | **int** | The protocol ops limit for a workload. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGather.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGather.md deleted file mode 100644 index f1b3829f0..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGather.md +++ /dev/null @@ -1,10 +0,0 @@ -# DiagnosticsGather - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**gather** | [**DiagnosticsGatherGather**](DiagnosticsGatherGather.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGatherGroups.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGatherGroups.md deleted file mode 100644 index df406e896..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGatherGroups.md +++ /dev/null @@ -1,10 +0,0 @@ -# DiagnosticsGatherGroups - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**groups** | **list[str]** | The list of valid component group arguments. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGatherSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGatherSettingsSettings.md deleted file mode 100644 index faf88c423..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGatherSettingsSettings.md +++ /dev/null @@ -1,32 +0,0 @@ -# DiagnosticsGatherSettingsSettings - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**connectivity** | **bool** | Use Dell Technologies connectivity services for upload of gather. | [optional] -**esrs** | **bool** | Use ESRS for upload of gather. | [optional] -**ftp_upload** | **bool** | Use FTP to upload logs from the isi gather command | [optional] -**ftp_upload_host** | **str** | Alternate FTP host to use for FTP upload. | [optional] -**ftp_upload_insecure** | **bool** | Whether to attempt a plain text FTP upload. | [optional] -**ftp_upload_mode** | **str** | FTP upload mode. | [optional] -**ftp_upload_path** | **str** | Alternate FTP path to use for FTP upload. | [optional] -**ftp_upload_proxy** | **str** | Proxy server to use for FTP upload. | [optional] -**ftp_upload_proxy_port** | **int** | Proxy server port to use for FTP upload. | [optional] -**ftp_upload_ssl_cert** | **str** | Path to certificate. Leave it blank to use root signed-CA | [optional] -**ftp_upload_user** | **str** | FTP user to use for FTP upload. | [optional] -**ftp_upload_webui_default** | **bool** | Hidden key to save default checkbox in WebUI | [optional] -**gather_begin** | **str** | Sets the starting time of files to be gathered using datetime format. The accepted datetime format should be in the form 'YYYY-MM-DD HH:MM' where time is optional. This will gather all files modified past that date. | [optional] -**gather_mode** | **str** | Set gather to full, incremental, or partial. | [optional] -**gather_past** | **str** | Gather logs modified within this time frame. Enter a number followed by a letter for the starting range of files to be gathered, eg. 1h for files last modified in the past hour. Other supported times include d and w for days and weeks respectively. | [optional] -**group** | **str** | Only gathers component groups specified by the group field. | [optional] -**http_insecure_upload** | **bool** | Use insecure HTTP to upload logs from the isi gather command | [optional] -**http_upload** | **bool** | This option is deprecated. Use the option http_insecure_upload to upload logs via insecure HTTP from the isi gather command | [optional] -**http_upload_host** | **str** | Address of an alternate HTTP host used to upload logs | [optional] -**http_upload_path** | **str** | Alternate path on HTTP server to use for HTTP upload. | [optional] -**http_upload_proxy** | **str** | Proxy server to use for HTTP upload. | [optional] -**http_upload_proxy_port** | **int** | Proxy server port to use for HTTP upload. | [optional] -**upload** | **bool** | Upload gather to Dell EMC. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGatherStartItem.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGatherStartItem.md deleted file mode 100644 index 6dd082eb1..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGatherStartItem.md +++ /dev/null @@ -1,34 +0,0 @@ -# DiagnosticsGatherStartItem - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**connectivity** | **bool** | Use Dell Technologies connectivity services for upload of gather. | [optional] -**esrs** | **bool** | Use ESRS for upload of gather. | [optional] -**ftp_upload** | **bool** | Use FTP to upload logs from the isi gather command | [optional] -**ftp_upload_host** | **str** | Alternate FTP host to use for FTP upload. | [optional] -**ftp_upload_insecure** | **bool** | Whether to attempt a plain text FTP upload. | [optional] -**ftp_upload_mode** | **str** | FTP upload mode. | [optional] -**ftp_upload_pass** | **str** | FTP password to use for FTP upload. | [optional] -**ftp_upload_path** | **str** | Alternate FTP path to use for FTP upload. | [optional] -**ftp_upload_proxy** | **str** | Proxy server to use for FTP upload. | [optional] -**ftp_upload_proxy_port** | **int** | Proxy server port to use for FTP upload. | [optional] -**ftp_upload_ssl_cert** | **str** | Path to certificate. Leave it blank to use root signed-CA | [optional] -**ftp_upload_user** | **str** | FTP user to use for FTP upload. | [optional] -**ftp_upload_webui_default** | **bool** | Hidden key to save default checkbox in WebUI | [optional] -**gather_begin** | **str** | Sets the starting time of files to be gathered using datetime format. The accepted datetime format should be in the form 'YYYY-MM-DD HH:MM' where time is optional. This will gather all files modified past that date. | [optional] -**gather_mode** | **str** | Set gather to full, incremental, or partial. | [optional] -**gather_past** | **str** | Gather logs modified within this time frame. Enter a number followed by a letter for the starting range of files to be gathered, eg. 1h for files last modified in the past hour. Other supported times include d and w for days and weeks respectively. | [optional] -**group** | **str** | Only gathers component groups specified by the group field. | [optional] -**http_insecure_upload** | **bool** | Use insecure HTTP to upload logs from the isi gather command | [optional] -**http_upload** | **bool** | This option is deprecated. Use the option http_insecure_upload to upload logs via insecure HTTP from the isi gather command | [optional] -**http_upload_host** | **str** | Address of an alternate HTTP host used to upload logs | [optional] -**http_upload_path** | **str** | Alternate path on HTTP server to use for HTTP upload. | [optional] -**http_upload_proxy** | **str** | Proxy server to use for HTTP upload. | [optional] -**http_upload_proxy_port** | **int** | Proxy server port to use for HTTP upload. | [optional] -**reference** | **str** | Save reference file and run. | [optional] -**upload** | **bool** | Upload gather to Dell EMC. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGatherStatusGather.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGatherStatusGather.md deleted file mode 100644 index b8764b80d..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGatherStatusGather.md +++ /dev/null @@ -1,12 +0,0 @@ -# DiagnosticsGatherStatusGather - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**path** | **str** | Gather file path. | [optional] -**reference_id** | **str** | Reference ID for this gather. | [optional] -**status** | **str** | Status of this gather. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGatherStatusGatherExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGatherStatusGatherExtended.md deleted file mode 100644 index 1fb8c060c..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGatherStatusGatherExtended.md +++ /dev/null @@ -1,13 +0,0 @@ -# DiagnosticsGatherStatusGatherExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**gathers** | [**list[DiagnosticsGatherStatusGather]**](DiagnosticsGatherStatusGather.md) | | [optional] -**item** | **str** | The item currently being gathered, if any. | [optional] -**path** | **str** | | [optional] -**status** | [**DiagnosticsGatherStatusGatherStatus**](DiagnosticsGatherStatusGatherStatus.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventMaintenanceHistoryItem.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/EventMaintenanceHistoryItem.md deleted file mode 100644 index 5cfbe7ff9..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventMaintenanceHistoryItem.md +++ /dev/null @@ -1,11 +0,0 @@ -# EventMaintenanceHistoryItem - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**end** | **int** | End time of CELOG maintenance mode, as a UNIX timestamp in seconds. 0 indicates that maintenance mode is still enabled. | [optional] -**start** | **int** | Start time of CELOG maintenance mode, as a UNIX timestamp in seconds. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventSuppressSuppression.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/EventSuppressSuppression.md deleted file mode 100644 index 7386aef35..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventSuppressSuppression.md +++ /dev/null @@ -1,15 +0,0 @@ -# EventSuppressSuppression - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**category** | **str** | ID of eventgroup category. | [optional] -**description** | **str** | Human readable description - may contain value placeholders. | [optional] -**id** | **str** | Unique event identifier. | [optional] -**name** | **str** | Name for event. | [optional] -**node** | **bool** | Indicates whether this event is node-specific or cluster-wide. | [optional] -**suppressed** | **bool** | Indicates if the event is suppressed. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolDefaultPolicyDefaultPolicyAction.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolDefaultPolicyDefaultPolicyAction.md deleted file mode 100644 index 13d323e70..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolDefaultPolicyDefaultPolicyAction.md +++ /dev/null @@ -1,11 +0,0 @@ -# FilepoolDefaultPolicyDefaultPolicyAction - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**action_param** | **str** | Varies according to action_type: - set_requested_protection: (default | +1 | +1n | +2:1 | +2d:1n | +2 | +2n | +3:1 | +3d:1n | +3d:1n1d | +3 | +3n | +4 | +4n | +4:1 | +4d:1n | +4:2 | +4d:2n | 2x | 3x | 4x | 5x | 6x | 7x | 8x). - set_data_access_pattern: (random | concurrency | streaming). - enable_coalescer <boolean> - apply_data_storage_policy or apply_snapshot_storage_policy <object(dictionary)>: -- storagepool <string> Name of a storage pool or 'anywhere'. -- ssd_strategy (metadata | metadata-write | data | avoid). SSD strategy of diskpool policy action. 'metadata' stores a single metadata mirror on SSD; 'metadata-write' stores all metadata on SSD; 'data' stores all metadata and data on SSD and 'avoid' stores no data or metadata on SSD. - set_cloudpool_policy <object (dictionary)>: -- archive_parameters <object (dictionary)>: --- pool <string> Move to the cloud pool with the given ID. --- compression <boolean> Compress data moved to the cloud. --- encryption <boolean> Encrypt data moved to the cloud. --- data_retention <duration> The minimum number of seconds archived data will be retained in the cloud after deletion. --- incremental_backup_retention <duration> (Used with SyncIQ and NDMP backups.) The minimum number of seconds cloud files will be retained after the creation of a SyncIQ backup or an incremental NDMP backup. --- full_backup_retention <duration> (Used with NDMP backups only. Not applicable to SyncIQ.) The minimum number of seconds cloud files will be retained after the creation of a full NDMP backup. --- writeback_frequency <duration> The minimum number of seconds to wait before updating cloud data with local changes. --- archive_snapshot_files <boolean> Also include snapshots file when uploading to the cloud. --- cache <object dictionary>: ---- type <string> Accessibility of archived files (one of \"cached\" or \"no-cache\"). ---- read_ahead <string> Cache read ahead strategy for cloud files (one of partial, full). ---- expiration <duration> Duration of time in seconds until the cache expires. - enable_packing <boolean> (only supported in version 4 and above) - null parameter for action_param is use to clear the policy (POST). <duration> Duration expressed as <integer>[YMWDHms]. | [optional] -**action_type** | **str** | | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicyAction.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicyAction.md deleted file mode 100644 index 60c2692b9..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicyAction.md +++ /dev/null @@ -1,11 +0,0 @@ -# FilepoolPolicyAction - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**action_param** | **str** | Varies according to action_type: - set_requested_protection: (default | +1 | +1n | +2:1 | +2d:1n | +2 | +2n | +3:1 | +3d:1n | +3d:1n1d | +3 | +3n | +4 | +4n | +4:1 | +4d:1n | +4:2 | +4d:2n | 2x | 3x | 4x | 5x | 6x | 7x | 8x). - set_data_access_pattern: (random | concurrency | streaming). - enable_coalescer <boolean> - apply_data_storage_policy or apply_snapshot_storage_policy <object(dictionary)>: -- storagepool <string> Name of a storage pool or 'anywhere'. -- ssd_strategy (metadata | metadata-write | data | avoid). SSD strategy of diskpool policy action. 'metadata' stores a single metadata mirror on SSD; 'metadata-write' stores all metadata on SSD; 'data' stores all metadata and data on SSD and 'avoid' stores no data or metadata on SSD. - set_cloudpool_policy <object (dictionary)>: -- archive_parameters <object (dictionary)>: --- pool <string> Move to the cloud pool with the given ID. --- compression <boolean> Compress data moved to the cloud. --- encryption <boolean> Encrypt data moved to the cloud. --- data_retention <duration> The minimum number of seconds archived data will be retained in the cloud after deletion. --- incremental_backup_retention <duration> (Used with SyncIQ and NDMP backups.) The minimum number of seconds cloud files will be retained after the creation of a SyncIQ backup or an incremental NDMP backup. --- full_backup_retention <duration> (Used with NDMP backups only. Not applicable to SyncIQ.) The minimum number of seconds cloud files will be retained after the creation of a full NDMP backup. --- writeback_frequency <duration> The minimum number of seconds to wait before updating cloud data with local changes. --- archive_snapshot_files <boolean> Also include snapshots file when uploading to the cloud. --- cache <object dictionary>: ---- type <string> Accessibility of archived files (one of \"cached\" or \"no-cache\"). ---- read_ahead <string> Cache read ahead strategy for cloud files (one of partial, full). ---- expiration <duration> Duration of time in seconds until the cache expires. - enable_packing <boolean> (only supported in version 4 and above) - null parameter for action_param is use to clear the policy (POST). <duration> Duration expressed as <integer>[YMWDHms]. | -**action_type** | **str** | | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicyActionExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicyActionExtended.md deleted file mode 100644 index b8ec334b5..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicyActionExtended.md +++ /dev/null @@ -1,11 +0,0 @@ -# FilepoolPolicyActionExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**action_param** | **str** | Varies according to action_type: - set_requested_protection: (default | +1 | +1n | +2:1 | +2d:1n | +2 | +2n | +3:1 | +3d:1n | +3d:1n1d | +3 | +3n | +4 | +4n | +4:1 | +4d:1n | +4:2 | +4d:2n | 2x | 3x | 4x | 5x | 6x | 7x | 8x). - set_data_access_pattern: (random | concurrency | streaming). - enable_coalescer <boolean> - apply_data_storage_policy or apply_snapshot_storage_policy <object(dictionary)>: -- storagepool <string> Name of a storage pool or 'anywhere'. -- ssd_strategy (metadata | metadata-write | data | avoid). SSD strategy of diskpool policy action. 'metadata' stores a single metadata mirror on SSD; 'metadata-write' stores all metadata on SSD; 'data' stores all metadata and data on SSD and 'avoid' stores no data or metadata on SSD. - set_cloudpool_policy <object (dictionary)>: -- archive_parameters <object (dictionary)>: --- pool <string> Move to the cloud pool with the given ID. --- compression <boolean> Compress data moved to the cloud. --- encryption <boolean> Encrypt data moved to the cloud. --- data_retention <duration> The minimum number of seconds archived data will be retained in the cloud after deletion. --- incremental_backup_retention <duration> (Used with SyncIQ and NDMP backups.) The minimum number of seconds cloud files will be retained after the creation of a SyncIQ backup or an incremental NDMP backup. --- full_backup_retention <duration> (Used with NDMP backups only. Not applicable to SyncIQ.) The minimum number of seconds cloud files will be retained after the creation of a full NDMP backup. --- writeback_frequency <duration> The minimum number of seconds to wait before updating cloud data with local changes. --- archive_snapshot_files <boolean> Also include snapshots file when uploading to the cloud. --- cache <object dictionary>: ---- type <string> Accessibility of archived files (one of \"cached\" or \"no-cache\"). ---- read_ahead <string> Cache read ahead strategy for cloud files (one of partial, full). ---- expiration <duration> Duration of time in seconds until the cache expires. - enable_packing <boolean> (only supported in version 4 and above) - null parameter for action_param is use to clear the policy (POST). <duration> Duration expressed as <integer>[YMWDHms]. | [optional] -**action_type** | **str** | | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicyActionExtendedExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicyActionExtendedExtended.md deleted file mode 100644 index cc9938755..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicyActionExtendedExtended.md +++ /dev/null @@ -1,11 +0,0 @@ -# FilepoolPolicyActionExtendedExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**action_param** | **str** | Varies according to action_type: - set_requested_protection: (default | +1 | +1n | +2:1 | +2d:1n | +2 | +2n | +3:1 | +3d:1n | +3d:1n1d | +3 | +3n | +4 | +4n | +4:1 | +4d:1n | +4:2 | +4d:2n | 2x | 3x | 4x | 5x | 6x | 7x | 8x). - set_data_access_pattern: (random | concurrency | streaming). - enable_coalescer <boolean> - apply_data_storage_policy or apply_snapshot_storage_policy <object(dictionary)>: -- storagepool <string> Name of a storage pool or 'anywhere'. -- ssd_strategy (metadata | metadata-write | data | avoid). SSD strategy of diskpool policy action. 'metadata' stores a single metadata mirror on SSD; 'metadata-write' stores all metadata on SSD; 'data' stores all metadata and data on SSD and 'avoid' stores no data or metadata on SSD. - set_cloudpool_policy <object (dictionary)>: -- archive_parameters <object (dictionary)>: --- pool <string> Move to the cloud pool with the given ID. --- compression <boolean> Compress data moved to the cloud. --- encryption <boolean> Encrypt data moved to the cloud. --- data_retention <duration> The minimum number of seconds archived data will be retained in the cloud after deletion. --- incremental_backup_retention <duration> (Used with SyncIQ and NDMP backups.) The minimum number of seconds cloud files will be retained after the creation of a SyncIQ backup or an incremental NDMP backup. --- full_backup_retention <duration> (Used with NDMP backups only. Not applicable to SyncIQ.) The minimum number of seconds cloud files will be retained after the creation of a full NDMP backup. --- writeback_frequency <duration> The minimum number of seconds to wait before updating cloud data with local changes. --- archive_snapshot_files <boolean> Also include snapshots file when uploading to the cloud. --- cache <object dictionary>: ---- type <string> Accessibility of archived files (one of \"cached\" or \"no-cache\"). ---- read_ahead <string> Cache read ahead strategy for cloud files (one of partial, full). ---- expiration <duration> Duration of time in seconds until the cache expires. - enable_packing <boolean> (only supported in version 4 and above) - null parameter for action_param is use to clear the policy (POST). <duration> Duration expressed as <integer>[YMWDHms]. | [optional] -**action_type** | **str** | | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolTemplateAction.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolTemplateAction.md deleted file mode 100644 index 64b89d5f7..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolTemplateAction.md +++ /dev/null @@ -1,11 +0,0 @@ -# FilepoolTemplateAction - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**action_param** | **str** | Varies according to action_type: - set_requested_protection: (default | +1 | +1n | +2:1 | +2d:1n | +2 | +2n | +3:1 | +3d:1n | +3d:1n1d | +3 | +3n | +4 | +4n | +4:1 | +4d:1n | +4:2 | +4d:2n | 2x | 3x | 4x | 5x | 6x | 7x | 8x). - set_data_access_pattern: (random | concurrency | streaming). - enable_coalescer <boolean> - apply_data_storage_policy or apply_snapshot_storage_policy <object(dictionary)>: -- storagepool <string> Name of a storage pool or 'anywhere'. -- ssd_strategy (metadata | metadata-write | data | avoid). SSD strategy of diskpool policy action. 'metadata' stores a single metadata mirror on SSD; 'metadata-write' stores all metadata on SSD; 'data' stores all metadata and data on SSD and 'avoid' stores no data or metadata on SSD. - set_cloudpool_policy <object (dictionary)>: -- archive_parameters <object (dictionary)>: --- pool <string> Move to the cloud pool with the given ID. --- compression <boolean> Compress data moved to the cloud. --- encryption <boolean> Encrypt data moved to the cloud. --- data_retention <duration> The minimum number of seconds archived data will be retained in the cloud after deletion. --- incremental_backup_retention <duration> (Used with SyncIQ and NDMP backups.) The minimum number of seconds cloud files will be retained after the creation of a SyncIQ backup or an incremental NDMP backup. --- full_backup_retention <duration> (Used with NDMP backups only. Not applicable to SyncIQ.) The minimum number of seconds cloud files will be retained after the creation of a full NDMP backup. --- writeback_frequency <duration> The minimum number of seconds to wait before updating cloud data with local changes. --- archive_snapshot_files <boolean> Also include snapshots file when uploading to the cloud. --- cache <object dictionary>: ---- type <string> Accessibility of archived files (one of \"cached\" or \"no-cache\"). ---- read_ahead <string> Cache read ahead strategy for cloud files (one of partial, full). ---- expiration <duration> Duration of time in seconds until the cache expires. - enable_packing <boolean> (only supported in version 4 and above) - null parameter for action_param is use to clear the policy (POST). <duration> Duration expressed as <integer>[YMWDHms]. | [optional] -**action_type** | **str** | | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolTemplateActionExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolTemplateActionExtended.md deleted file mode 100644 index dd33943c2..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolTemplateActionExtended.md +++ /dev/null @@ -1,11 +0,0 @@ -# FilepoolTemplateActionExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**action_param** | **str** | Varies according to action_type: - set_requested_protection: (default | +1 | +1n | +2:1 | +2d:1n | +2 | +2n | +3:1 | +3d:1n | +3d:1n1d | +3 | +3n | +4 | +4n | +4:1 | +4d:1n | +4:2 | +4d:2n | 2x | 3x | 4x | 5x | 6x | 7x | 8x). - set_data_access_pattern: (random | concurrency | streaming). - enable_coalescer <boolean> - apply_data_storage_policy or apply_snapshot_storage_policy <object(dictionary)>: -- storagepool <string> Name of a storage pool or 'anywhere'. -- ssd_strategy (metadata | metadata-write | data | avoid). SSD strategy of diskpool policy action. 'metadata' stores a single metadata mirror on SSD; 'metadata-write' stores all metadata on SSD; 'data' stores all metadata and data on SSD and 'avoid' stores no data or metadata on SSD. - set_cloudpool_policy <object (dictionary)>: -- archive_parameters <object (dictionary)>: --- pool <string> Move to the cloud pool with the given ID. --- compression <boolean> Compress data moved to the cloud. --- encryption <boolean> Encrypt data moved to the cloud. --- data_retention <duration> The minimum number of seconds archived data will be retained in the cloud after deletion. --- incremental_backup_retention <duration> (Used with SyncIQ and NDMP backups.) The minimum number of seconds cloud files will be retained after the creation of a SyncIQ backup or an incremental NDMP backup. --- full_backup_retention <duration> (Used with NDMP backups only. Not applicable to SyncIQ.) The minimum number of seconds cloud files will be retained after the creation of a full NDMP backup. --- writeback_frequency <duration> The minimum number of seconds to wait before updating cloud data with local changes. --- archive_snapshot_files <boolean> Also include snapshots file when uploading to the cloud. --- cache <object dictionary>: ---- type <string> Accessibility of archived files (one of \"cached\" or \"no-cache\"). ---- read_ahead <string> Cache read ahead strategy for cloud files (one of partial, full). ---- expiration <duration> Duration of time in seconds until the cache expires. - enable_packing <boolean> (only supported in version 4 and above) - null parameter for action_param is use to clear the policy (POST). <duration> Duration expressed as <integer>[YMWDHms]. | [optional] -**action_type** | **str** | | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallDscpExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallDscpExtended.md deleted file mode 100644 index f73c0f814..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallDscpExtended.md +++ /dev/null @@ -1,11 +0,0 @@ -# FirewallDscpExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**rules** | [**list[FirewallDscpRuleExtended]**](FirewallDscpRuleExtended.md) | | [optional] -**total** | **int** | Total number of items available. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallDscpRule.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallDscpRule.md deleted file mode 100644 index a2908e32f..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallDscpRule.md +++ /dev/null @@ -1,15 +0,0 @@ -# FirewallDscpRule - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**description** | **str** | A description of the DSCP rule. | [optional] -**dscp_value** | **int** | The DSCP value of the DSCP rule | [optional] -**dst_ports** | [**FirewallDscpRuleParamsDstPorts**](FirewallDscpRuleParamsDstPorts.md) | Specified port number for destination control. | [optional] -**id** | **str** | Unique DSCP rule ID | [optional] -**name** | **str** | The name of the DSCP rule. | [optional] -**src_ports** | [**FirewallDscpRuleParamsDstPorts**](FirewallDscpRuleParamsDstPorts.md) | Specified port number for source control. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallDscpRuleExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallDscpRuleExtended.md deleted file mode 100644 index 00feb3174..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallDscpRuleExtended.md +++ /dev/null @@ -1,15 +0,0 @@ -# FirewallDscpRuleExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**description** | **str** | A description of the DSCP rule. | -**dscp_value** | **int** | The DSCP value of the DSCP rule | -**dst_ports** | [**FirewallDscpRuleParamsDstPorts**](FirewallDscpRuleParamsDstPorts.md) | Specified port number for destination control. | -**id** | **str** | Unique DSCP rule ID | -**name** | **str** | The name of the DSCP rule. | -**src_ports** | [**FirewallDscpRuleParamsDstPorts**](FirewallDscpRuleParamsDstPorts.md) | Specified port number for source control. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallDscpRuleParams.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallDscpRuleParams.md deleted file mode 100644 index ed6454ce9..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallDscpRuleParams.md +++ /dev/null @@ -1,12 +0,0 @@ -# FirewallDscpRuleParams - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**dscp_value** | **int** | The DSCP value of the DSCP rule | [optional] -**dst_ports** | [**FirewallDscpRuleParamsDstPorts**](FirewallDscpRuleParamsDstPorts.md) | Specified port number for destination control. | [optional] -**src_ports** | [**FirewallDscpRuleParamsDstPorts**](FirewallDscpRuleParamsDstPorts.md) | Specified port number for source control. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallDscpRuleParamsDstPorts.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallDscpRuleParamsDstPorts.md deleted file mode 100644 index 0b9971ee1..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallDscpRuleParamsDstPorts.md +++ /dev/null @@ -1,11 +0,0 @@ -# FirewallDscpRuleParamsDstPorts - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**all_ports** | **bool** | Indicates whether this rule applies to all ports | [optional] -**port_numbers** | **list[int]** | List of ports to which DSCP rule is applied. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallPolicies.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallPolicies.md deleted file mode 100644 index cfc33e4ca..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallPolicies.md +++ /dev/null @@ -1,10 +0,0 @@ -# FirewallPolicies - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**policies** | [**list[FirewallPolicyExtended]**](FirewallPolicyExtended.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallPoliciesExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallPoliciesExtended.md deleted file mode 100644 index 742c04e82..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallPoliciesExtended.md +++ /dev/null @@ -1,12 +0,0 @@ -# FirewallPoliciesExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**policies** | [**list[FirewallPolicyExtendedExtended]**](FirewallPolicyExtendedExtended.md) | | [optional] -**resume** | **str** | Provide this token as the 'resume' query argument to continue listing results. | [optional] -**total** | **int** | Total number of items available. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallPolicy.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallPolicy.md deleted file mode 100644 index 6c6067219..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallPolicy.md +++ /dev/null @@ -1,15 +0,0 @@ -# FirewallPolicy - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**default_action** | **str** | Policy default action | [optional] -**description** | **str** | A description of the firewall policy. | [optional] -**max_rules** | **int** | Maximum rule counts in one policy | [optional] -**name** | **str** | The name of the firewall policy. | [optional] -**pools** | **list[str]** | List of Network Pools this policy is currently applied to. | [optional] -**subnets** | **list[str]** | List of Network Subnets this policy is currently applied for SSIP service. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallPolicyCreateParams.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallPolicyCreateParams.md deleted file mode 100644 index 4415f1fa9..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallPolicyCreateParams.md +++ /dev/null @@ -1,14 +0,0 @@ -# FirewallPolicyCreateParams - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**default_action** | **str** | Policy default action | [optional] -**description** | **str** | A description of the firewall policy. | [optional] -**id** | **str** | Unique firewall policy ID. | [optional] -**max_rules** | **int** | Maximum rule counts in one policy | [optional] -**name** | **str** | The name of the firewall policy. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallPolicyExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallPolicyExtended.md deleted file mode 100644 index e77ae0aa7..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallPolicyExtended.md +++ /dev/null @@ -1,17 +0,0 @@ -# FirewallPolicyExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**default_action** | **str** | Policy default action | [optional] -**description** | **str** | A description of the firewall policy. | [optional] -**max_rules** | **int** | Maximum rule counts in one policy | [optional] -**name** | **str** | The name of the firewall policy. | [optional] -**pools** | **list[str]** | List of Network Pools this policy is currently applied to. | [optional] -**subnets** | **list[str]** | List of Network Subnets this policy is currently applied for SSIP service. | [optional] -**id** | **str** | Unique firewall policy ID. | [optional] -**rules** | **list[str]** | Name of the rules inside policy. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallPolicyExtendedExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallPolicyExtendedExtended.md deleted file mode 100644 index 50597efa3..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallPolicyExtendedExtended.md +++ /dev/null @@ -1,17 +0,0 @@ -# FirewallPolicyExtendedExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**default_action** | **str** | Policy default action | -**description** | **str** | A description of the firewall policy. | -**max_rules** | **int** | Maximum rule counts in one policy | -**name** | **str** | The name of the firewall policy. | -**pools** | **list[str]** | List of Network Pools this policy is currently applied to. | -**subnets** | **list[str]** | List of Network Subnets this policy is currently applied for SSIP service. | -**id** | **str** | Unique firewall policy ID. | -**rules** | **list[str]** | Name of the rules inside policy. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallRule.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallRule.md deleted file mode 100644 index 8ad1379cd..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallRule.md +++ /dev/null @@ -1,18 +0,0 @@ -# FirewallRule - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**action** | **str** | Rule action | -**description** | **str** | A description of the firewall rule. | -**dst_ports** | [**PoliciesPolicyRuleDstPorts**](PoliciesPolicyRuleDstPorts.md) | Customer specified protocols or OneFS default services's protocols for destination control | -**id** | **str** | Unique firewall rule ID | -**index** | **int** | Firewall rule index in policy | -**name** | **str** | The name of the firewall rule. | -**protocol** | **str** | Firewall rule set on protocol | -**src_networks** | **list[str]** | Source Networks | -**src_ports** | [**PoliciesPolicyRuleDstPorts**](PoliciesPolicyRuleDstPorts.md) | Customer specified protocols or OneFS default services's protocols for source control | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallService.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallService.md deleted file mode 100644 index e3a180d66..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallService.md +++ /dev/null @@ -1,13 +0,0 @@ -# FirewallService - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**aliases** | **list[str]** | Aliases of the service name | -**port** | **int** | Port number of the service | -**protocol** | **list[str]** | Protocol associated with the service | -**service_name** | **str** | The name of the firewall service. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallServices.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallServices.md deleted file mode 100644 index 081a55243..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallServices.md +++ /dev/null @@ -1,12 +0,0 @@ -# FirewallServices - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**resume** | **str** | Provide this token as the 'resume' query argument to continue listing results. | [optional] -**services** | [**list[FirewallService]**](FirewallService.md) | | [optional] -**total** | **int** | Total number of items available. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallSettings.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallSettings.md deleted file mode 100644 index 6a3367c66..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallSettings.md +++ /dev/null @@ -1,10 +0,0 @@ -# FirewallSettings - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**settings** | [**FirewallSettingsSettings**](FirewallSettingsSettings.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallSettingsExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallSettingsExtended.md deleted file mode 100644 index 3fa6d5801..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallSettingsExtended.md +++ /dev/null @@ -1,11 +0,0 @@ -# FirewallSettingsExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**dscp_enabled** | **bool** | Indicates whether DSCP rules are enabled. | [optional] -**enabled** | **bool** | View the network firewall status, Enabled or Disabled | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallSettingsSettings.md deleted file mode 100644 index 56704a7ba..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallSettingsSettings.md +++ /dev/null @@ -1,11 +0,0 @@ -# FirewallSettingsSettings - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**dscp_enabled** | **bool** | Indicates whether DSCP rules are enabled. | -**enabled** | **bool** | View the network firewall status, Enabled or Disabled | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningList.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningList.md deleted file mode 100644 index f7e1686fb..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningList.md +++ /dev/null @@ -1,10 +0,0 @@ -# HardeningList - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**profiles** | [**list[HardeningListProfile]**](HardeningListProfile.md) | List of hardening engine profile entries | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningListProfile.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningListProfile.md deleted file mode 100644 index 2a0c5836d..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningListProfile.md +++ /dev/null @@ -1,12 +0,0 @@ -# HardeningListProfile - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**applied** | **bool** | Indicates whether the profile has been applied | [optional] -**description** | **str** | Description of the profile | [optional] -**name** | **str** | Profile name | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningReports.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningReports.md deleted file mode 100644 index 26d1ad769..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningReports.md +++ /dev/null @@ -1,10 +0,0 @@ -# HardeningReports - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**report** | [**HardeningReportsReport**](HardeningReportsReport.md) | A report for all profiles. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningReportsReportProfile.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningReportsReportProfile.md deleted file mode 100644 index 6e6b4b92f..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningReportsReportProfile.md +++ /dev/null @@ -1,14 +0,0 @@ -# HardeningReportsReportProfile - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**applied** | **bool** | | [optional] -**cluster_wide** | [**HardeningReportsReportProfileClusterWide**](HardeningReportsReportProfileClusterWide.md) | Report for cluster wide rules. | [optional] -**name** | **str** | | [optional] -**nodes** | [**list[HardeningReportsReportProfileNode]**](HardeningReportsReportProfileNode.md) | List of reports for each node. | [optional] -**status** | **str** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningReportsReportProfileClusterWide.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningReportsReportProfileClusterWide.md deleted file mode 100644 index ab273d8ac..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningReportsReportProfileClusterWide.md +++ /dev/null @@ -1,12 +0,0 @@ -# HardeningReportsReportProfileClusterWide - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**rules** | [**list[HardeningReportsReportProfileClusterWideRule]**](HardeningReportsReportProfileClusterWideRule.md) | List of rules in the report. | [optional] -**status** | **str** | | [optional] -**time** | **int** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningReportsReportProfileClusterWideRule.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningReportsReportProfileClusterWideRule.md deleted file mode 100644 index 7575b18a6..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningReportsReportProfileClusterWideRule.md +++ /dev/null @@ -1,14 +0,0 @@ -# HardeningReportsReportProfileClusterWideRule - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**description** | **str** | | [optional] -**error_message** | **str** | | [optional] -**name** | **str** | | [optional] -**settings_comparisons_list** | [**list[HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItem]**](HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItem.md) | Comparison values for settings. | [optional] -**status** | **str** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItem.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItem.md deleted file mode 100644 index 6c69a0eca..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItem.md +++ /dev/null @@ -1,11 +0,0 @@ -# HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItem - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**comparison** | [**HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison**](HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison.md) | Comparison values. | [optional] -**setting** | **str** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison.md deleted file mode 100644 index e923de9bc..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison.md +++ /dev/null @@ -1,12 +0,0 @@ -# HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**current** | **list[str]** | | [optional] -**operator** | **str** | | [optional] -**prescribed** | **list[str]** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningReportsReportProfileNode.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningReportsReportProfileNode.md deleted file mode 100644 index 03311b344..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningReportsReportProfileNode.md +++ /dev/null @@ -1,14 +0,0 @@ -# HardeningReportsReportProfileNode - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**lnn** | **int** | | [optional] -**name** | **str** | | [optional] -**rules** | [**list[HardeningReportsReportProfileClusterWideRule]**](HardeningReportsReportProfileClusterWideRule.md) | List of rules in the report. | [optional] -**status** | **str** | | [optional] -**time** | **int** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningStateState.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningStateState.md deleted file mode 100644 index c485d2039..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningStateState.md +++ /dev/null @@ -1,10 +0,0 @@ -# HardeningStateState - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**state** | **str** | The state of the hardening service. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckDefinition.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckDefinition.md deleted file mode 100644 index 0b0fb169c..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckDefinition.md +++ /dev/null @@ -1,19 +0,0 @@ -# HealthcheckDefinition - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**comment** | **str** | A long comment about the definition. | [optional] -**conflicts** | **list[str]** | Other definitions that this definition conflicts with. | [optional] -**dependencies** | **list[str]** | Other definitions that this definition depends on. | [optional] -**description** | **str** | A short description of the definition. | [optional] -**files** | [**list[HealthcheckDefinitionFile]**](HealthcheckDefinitionFile.md) | The files contained in this definition. | [optional] -**id** | **str** | A unique identifier for the definition. | [optional] -**name** | **str** | The name of the definition. | [optional] -**nodes** | **list[int]** | The nodes that this definition is installed on. | [optional] -**services** | [**list[HealthcheckDefinitionService]**](HealthcheckDefinitionService.md) | The services affected during the definition deployment | [optional] -**status** | **str** | The installation status of this definition on the cluster. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckDefinitionCreateParams.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckDefinitionCreateParams.md deleted file mode 100644 index 74615c311..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckDefinitionCreateParams.md +++ /dev/null @@ -1,11 +0,0 @@ -# HealthcheckDefinitionCreateParams - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**definition** | **str** | The path of the definition file. | -**process_type** | **str** | Process type can be 'simultaneous', 'rolling', or 'parallel' | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckDefinitions.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckDefinitions.md deleted file mode 100644 index b6c07cc66..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckDefinitions.md +++ /dev/null @@ -1,12 +0,0 @@ -# HealthcheckDefinitions - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**definitions** | [**list[HealthcheckDefinition]**](HealthcheckDefinition.md) | | [optional] -**resume** | **str** | Provide this token as the 'resume' query argument to continue listing results. | [optional] -**total** | **int** | Total number of items available. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckEvaluationSmartlog.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckEvaluationSmartlog.md deleted file mode 100644 index ef8ef012e..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckEvaluationSmartlog.md +++ /dev/null @@ -1,11 +0,0 @@ -# HealthcheckEvaluationSmartlog - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**failure_begin_time** | **str** | An ISO 8601 point in time immediately before the relevant failures, in the cluster timezone. Format is YYYY-MM-DD HH:MM. If no such point in time can be found, will be null. | [optional] -**ref_groups** | **str** | Comma separated list of relevant log gather groups. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HttpSettingsExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/HttpSettingsExtended.md deleted file mode 100644 index 13c8dd47d..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HttpSettingsExtended.md +++ /dev/null @@ -1,22 +0,0 @@ -# HttpSettingsExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**access_control** | **bool** | Enable Access Control Authentication for HTTP service. | [optional] -**basic_authentication** | **bool** | Enable Basic Authentication for HTTP service. | [optional] -**dav** | **bool** | Enable DAV specification for HTTP service. | [optional] -**enable_access_log** | **bool** | Enable HTTP access logging for HTTP service. | [optional] -**httpd_controlpath_redirect** | **bool** | Enable or disable WebUI redirect to HTTP service. | [optional] -**https** | **bool** | Use HTTPS transport for HTTP service. | [optional] -**inactive_timeout** | **int** | Get the HTTP Session inactivity timeout (in seconds). | [optional] -**integrated_authentication** | **bool** | Enable Integrated Authentication for HTTP service. | [optional] -**server_root** | **str** | Document root directory for HTTP service. Must be within /ifs. | [optional] -**service** | **str** | Enable/disable the HTTP service or redirect to WebUI or disabled BasicFileAccess. | [optional] -**service_timeout** | **int** | Get the HTTP Timeout directive from Apache. Value 0 means service timeout is disabled. | [optional] -**session_max_age** | **int** | Get the HTTP Session absolute timeout (in seconds). | [optional] -**webhdfs_ran_https_port** | **int** | Configure Data Services Port for HTTP service. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HttpSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/HttpSettingsSettings.md deleted file mode 100644 index 6a3a140af..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HttpSettingsSettings.md +++ /dev/null @@ -1,22 +0,0 @@ -# HttpSettingsSettings - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**access_control** | **bool** | Enable Access Control Authentication for HTTP service. | [optional] -**basic_authentication** | **bool** | Enable Basic Authentication for HTTP service. | [optional] -**dav** | **bool** | Enable DAV specification for HTTP service. | [optional] -**enable_access_log** | **bool** | Enable HTTP access logging for HTTP service. | [optional] -**httpd_controlpath_redirect** | **bool** | Enable or disable WebUI redirect to HTTP service. | [optional] -**https** | **bool** | Use HTTPS transport for HTTP service. | [optional] -**inactive_timeout** | **int** | Get the HTTP Session inactivity timeout (in seconds). | -**integrated_authentication** | **bool** | Enable Integrated Authentication for HTTP service. | [optional] -**server_root** | **str** | Document root directory for HTTP service. Must be within /ifs. | [optional] -**service** | **str** | Enable/disable the HTTP service or redirect to WebUI or disabled BasicFileAccess. | [optional] -**service_timeout** | **int** | Get the HTTP Timeout directive from Apache. Value 0 means service timeout is disabled. | -**session_max_age** | **int** | Get the HTTP Session absolute timeout (in seconds). | -**webhdfs_ran_https_port** | **int** | Configure Data Services Port for HTTP service. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/IceageSettings.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/IceageSettings.md deleted file mode 100644 index e9d8e98d3..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/IceageSettings.md +++ /dev/null @@ -1,10 +0,0 @@ -# IceageSettings - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**settings** | [**IceageSettingsSettings**](IceageSettingsSettings.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/IceageSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/IceageSettingsSettings.md deleted file mode 100644 index 6806e2309..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/IceageSettingsSettings.md +++ /dev/null @@ -1,11 +0,0 @@ -# IceageSettingsSettings - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**core_queue_size** | **int** | Max total size of the core files in GBs which can be copied into the queue directory to be processed. Default is 20G. | [optional] -**retention** | **int** | Retention period of IceAge reports and headers in DAYS. Defaults to 1 month. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobSettings.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/JobSettings.md deleted file mode 100644 index 48903cdb9..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobSettings.md +++ /dev/null @@ -1,10 +0,0 @@ -# JobSettings - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**settings** | [**JobSettingsSettings**](JobSettingsSettings.md) | Job Engine general settings modifiable from REST API. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/JobSettingsSettings.md deleted file mode 100644 index 779ecd64e..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobSettingsSettings.md +++ /dev/null @@ -1,11 +0,0 @@ -# JobSettingsSettings - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**parallel_restriper_mode** | **str** | Specify how restriper exclusion in the job engine is relaxed. Off means not relaxed. Partial keeps FlexProtect family jobs running alone from other restriper jobs. All relaxes all exclusions between restriper jobs. | [optional] -**smartthrottling** | **bool** | Use SmartThrottling to control Job Engine job resources and maintain front end Quality of Service. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/KeymanagerApi.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/KeymanagerApi.md deleted file mode 100644 index 7c9c306b3..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/KeymanagerApi.md +++ /dev/null @@ -1,998 +0,0 @@ -# isilon_sdk.v9_11_0.KeymanagerApi - -All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**create_cluster_rekey_item**](KeymanagerApi.md#create_cluster_rekey_item) | **POST** /platform/16/keymanager/cluster/rekey | -[**create_kmip_server**](KeymanagerApi.md#create_kmip_server) | **POST** /platform/19/keymanager/kmip/servers | -[**create_kmip_server_verify_item**](KeymanagerApi.md#create_kmip_server_verify_item) | **POST** /platform/12/keymanager/kmip/server/verify | -[**create_sed_migrate_item**](KeymanagerApi.md#create_sed_migrate_item) | **POST** /platform/12/keymanager/sed/migrate | -[**create_sed_rekey_item**](KeymanagerApi.md#create_sed_rekey_item) | **POST** /platform/16/keymanager/sed/rekey | -[**delete_kmip_server**](KeymanagerApi.md#delete_kmip_server) | **DELETE** /platform/19/keymanager/kmip/servers/{KmipServerId} | -[**get_cluster_status**](KeymanagerApi.md#get_cluster_status) | **GET** /platform/16/keymanager/cluster/status | -[**get_keymanager_cluster**](KeymanagerApi.md#get_keymanager_cluster) | **GET** /platform/16/keymanager/cluster | -[**get_kmip_server**](KeymanagerApi.md#get_kmip_server) | **GET** /platform/19/keymanager/kmip/servers/{KmipServerId} | -[**get_sed_settings**](KeymanagerApi.md#get_sed_settings) | **GET** /platform/12/keymanager/sed/settings | -[**get_sed_status**](KeymanagerApi.md#get_sed_status) | **GET** /platform/16/keymanager/sed/status | -[**get_sed_status_lnn**](KeymanagerApi.md#get_sed_status_lnn) | **GET** /platform/16/keymanager/sed/status/{SedStatusLnn} | -[**list_cluster_rekey**](KeymanagerApi.md#list_cluster_rekey) | **GET** /platform/16/keymanager/cluster/rekey | -[**list_kmip_servers**](KeymanagerApi.md#list_kmip_servers) | **GET** /platform/19/keymanager/kmip/servers | -[**list_sed_rekey**](KeymanagerApi.md#list_sed_rekey) | **GET** /platform/16/keymanager/sed/rekey | -[**update_cluster_rekey**](KeymanagerApi.md#update_cluster_rekey) | **PUT** /platform/16/keymanager/cluster/rekey | -[**update_kmip_server**](KeymanagerApi.md#update_kmip_server) | **PUT** /platform/19/keymanager/kmip/servers/{KmipServerId} | -[**update_sed_rekey**](KeymanagerApi.md#update_sed_rekey) | **PUT** /platform/16/keymanager/sed/rekey | -[**update_sed_settings**](KeymanagerApi.md#update_sed_settings) | **PUT** /platform/12/keymanager/sed/settings | - - -# **create_cluster_rekey_item** -> CreateClusterRekeyItemResponse create_cluster_rekey_item(cluster_rekey_item) - - - -Starts a rekey operation for the provider. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.KeymanagerApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_rekey_item = isilon_sdk.v9_11_0.ClusterRekeyItem() # ClusterRekeyItem | - -try: - api_response = api_instance.create_cluster_rekey_item(cluster_rekey_item) - pprint(api_response) -except ApiException as e: - print("Exception when calling KeymanagerApi->create_cluster_rekey_item: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **cluster_rekey_item** | [**ClusterRekeyItem**](ClusterRekeyItem.md)| | - -### Return type - -[**CreateClusterRekeyItemResponse**](CreateClusterRekeyItemResponse.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **create_kmip_server** -> CreateResponse create_kmip_server(kmip_server) - - - -Create a new KMIP server entry. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.KeymanagerApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -kmip_server = isilon_sdk.v9_11_0.KmipServerCreateParams() # KmipServerCreateParams | - -try: - api_response = api_instance.create_kmip_server(kmip_server) - pprint(api_response) -except ApiException as e: - print("Exception when calling KeymanagerApi->create_kmip_server: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **kmip_server** | [**KmipServerCreateParams**](KmipServerCreateParams.md)| | - -### Return type - -[**CreateResponse**](CreateResponse.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **create_kmip_server_verify_item** -> CreateKmipServerVerifyItemResponse create_kmip_server_verify_item(kmip_server_verify_item) - - - -Verify KMIP configuration. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.KeymanagerApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -kmip_server_verify_item = isilon_sdk.v9_11_0.KmipServerVerifyItem() # KmipServerVerifyItem | - -try: - api_response = api_instance.create_kmip_server_verify_item(kmip_server_verify_item) - pprint(api_response) -except ApiException as e: - print("Exception when calling KeymanagerApi->create_kmip_server_verify_item: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **kmip_server_verify_item** | [**KmipServerVerifyItem**](KmipServerVerifyItem.md)| | - -### Return type - -[**CreateKmipServerVerifyItemResponse**](CreateKmipServerVerifyItemResponse.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **create_sed_migrate_item** -> CreateSedMigrateItemResponse create_sed_migrate_item(sed_migrate_item) - - - -Indicates the direction of the migration. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.KeymanagerApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -sed_migrate_item = isilon_sdk.v9_11_0.SedMigrateItem() # SedMigrateItem | - -try: - api_response = api_instance.create_sed_migrate_item(sed_migrate_item) - pprint(api_response) -except ApiException as e: - print("Exception when calling KeymanagerApi->create_sed_migrate_item: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **sed_migrate_item** | [**SedMigrateItem**](SedMigrateItem.md)| | - -### Return type - -[**CreateSedMigrateItemResponse**](CreateSedMigrateItemResponse.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **create_sed_rekey_item** -> CreateClusterRekeyItemResponse create_sed_rekey_item(sed_rekey_item) - - - -Starts a rekey operation for the seds master key. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.KeymanagerApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -sed_rekey_item = isilon_sdk.v9_11_0.ClusterRekeyItem() # ClusterRekeyItem | - -try: - api_response = api_instance.create_sed_rekey_item(sed_rekey_item) - pprint(api_response) -except ApiException as e: - print("Exception when calling KeymanagerApi->create_sed_rekey_item: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **sed_rekey_item** | [**ClusterRekeyItem**](ClusterRekeyItem.md)| | - -### Return type - -[**CreateClusterRekeyItemResponse**](CreateClusterRekeyItemResponse.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **delete_kmip_server** -> delete_kmip_server(kmip_server_id) - - - -Delete a KMIP server entry. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.KeymanagerApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -kmip_server_id = 'kmip_server_id_example' # str | Delete a KMIP server entry. - -try: - api_instance.delete_kmip_server(kmip_server_id) -except ApiException as e: - print("Exception when calling KeymanagerApi->delete_kmip_server: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **kmip_server_id** | **str**| Delete a KMIP server entry. | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_cluster_status** -> ClusterStatus get_cluster_status(limit=limit) - - - -Retrieve all cluster provider domain status. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.KeymanagerApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -limit = 56 # int | Return no more than this many results at once (see resume). (optional) - -try: - api_response = api_instance.get_cluster_status(limit=limit) - pprint(api_response) -except ApiException as e: - print("Exception when calling KeymanagerApi->get_cluster_status: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **limit** | **int**| Return no more than this many results at once (see resume). | [optional] - -### Return type - -[**ClusterStatus**](ClusterStatus.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_keymanager_cluster** -> KeymanagerCluster get_keymanager_cluster() - - - -List Key Manager cluster domains. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.KeymanagerApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_keymanager_cluster() - pprint(api_response) -except ApiException as e: - print("Exception when calling KeymanagerApi->get_keymanager_cluster: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**KeymanagerCluster**](KeymanagerCluster.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_kmip_server** -> KmipServers get_kmip_server(kmip_server_id) - - - -Retrieve a specific KMIP server entry. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.KeymanagerApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -kmip_server_id = 'kmip_server_id_example' # str | Retrieve a specific KMIP server entry. - -try: - api_response = api_instance.get_kmip_server(kmip_server_id) - pprint(api_response) -except ApiException as e: - print("Exception when calling KeymanagerApi->get_kmip_server: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **kmip_server_id** | **str**| Retrieve a specific KMIP server entry. | - -### Return type - -[**KmipServers**](KmipServers.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_sed_settings** -> SedSettings get_sed_settings() - - - -Retrieve Current SED settings. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.KeymanagerApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_sed_settings() - pprint(api_response) -except ApiException as e: - print("Exception when calling KeymanagerApi->get_sed_settings: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**SedSettings**](SedSettings.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_sed_status** -> SedStatusExtended get_sed_status() - - - -Retrieve SED status on all nodes in this cluster. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.KeymanagerApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_sed_status() - pprint(api_response) -except ApiException as e: - print("Exception when calling KeymanagerApi->get_sed_status: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**SedStatusExtended**](SedStatusExtended.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_sed_status_lnn** -> SedStatus get_sed_status_lnn(sed_status_lnn) - - - -Retrieve SED status on a node in this cluster. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.KeymanagerApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -sed_status_lnn = 56 # int | Retrieve SED status on a node in this cluster. - -try: - api_response = api_instance.get_sed_status_lnn(sed_status_lnn) - pprint(api_response) -except ApiException as e: - print("Exception when calling KeymanagerApi->get_sed_status_lnn: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **sed_status_lnn** | **int**| Retrieve SED status on a node in this cluster. | - -### Return type - -[**SedStatus**](SedStatus.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **list_cluster_rekey** -> ClusterRekey list_cluster_rekey() - - - -Get master key rotation settings for the provider. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.KeymanagerApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.list_cluster_rekey() - pprint(api_response) -except ApiException as e: - print("Exception when calling KeymanagerApi->list_cluster_rekey: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**ClusterRekey**](ClusterRekey.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **list_kmip_servers** -> KmipServersExtended list_kmip_servers(dir=dir, limit=limit, resume=resume, sort=sort) - - - -Retrieve a list of configured KMIP server entries. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.KeymanagerApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -dir = 'dir_example' # str | The direction of the sort. (optional) -limit = 56 # int | Return no more than this many results at once (see resume). (optional) -resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) -sort = 'sort_example' # str | The field that will be used for sorting. (optional) - -try: - api_response = api_instance.list_kmip_servers(dir=dir, limit=limit, resume=resume, sort=sort) - pprint(api_response) -except ApiException as e: - print("Exception when calling KeymanagerApi->list_kmip_servers: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **dir** | **str**| The direction of the sort. | [optional] - **limit** | **int**| Return no more than this many results at once (see resume). | [optional] - **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] - **sort** | **str**| The field that will be used for sorting. | [optional] - -### Return type - -[**KmipServersExtended**](KmipServersExtended.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **list_sed_rekey** -> ClusterRekey list_sed_rekey() - - - -Get rekey rotation settings for the seds master key. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.KeymanagerApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.list_sed_rekey() - pprint(api_response) -except ApiException as e: - print("Exception when calling KeymanagerApi->list_sed_rekey: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**ClusterRekey**](ClusterRekey.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **update_cluster_rekey** -> update_cluster_rekey(cluster_rekey) - - - -Configure rekey rotation for the provider. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.KeymanagerApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_rekey = isilon_sdk.v9_11_0.ClusterRekeyExtended() # ClusterRekeyExtended | - -try: - api_instance.update_cluster_rekey(cluster_rekey) -except ApiException as e: - print("Exception when calling KeymanagerApi->update_cluster_rekey: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **cluster_rekey** | [**ClusterRekeyExtended**](ClusterRekeyExtended.md)| | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **update_kmip_server** -> update_kmip_server(kmip_server, kmip_server_id) - - - -Modify a KMIP server entry. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.KeymanagerApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -kmip_server = isilon_sdk.v9_11_0.KmipServer() # KmipServer | -kmip_server_id = 'kmip_server_id_example' # str | Modify a KMIP server entry. - -try: - api_instance.update_kmip_server(kmip_server, kmip_server_id) -except ApiException as e: - print("Exception when calling KeymanagerApi->update_kmip_server: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **kmip_server** | [**KmipServer**](KmipServer.md)| | - **kmip_server_id** | **str**| Modify a KMIP server entry. | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **update_sed_rekey** -> update_sed_rekey(sed_rekey) - - - -Configure rekey rotation for the seds master key. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.KeymanagerApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -sed_rekey = isilon_sdk.v9_11_0.ClusterRekeyExtended() # ClusterRekeyExtended | - -try: - api_instance.update_sed_rekey(sed_rekey) -except ApiException as e: - print("Exception when calling KeymanagerApi->update_sed_rekey: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **sed_rekey** | [**ClusterRekeyExtended**](ClusterRekeyExtended.md)| | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **update_sed_settings** -> update_sed_settings(sed_settings) - - - -Modify SED settings to allow migration, or forbid it and retrieve all keys. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.KeymanagerApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -sed_settings = isilon_sdk.v9_11_0.SedSettingsExtended() # SedSettingsExtended | - -try: - api_instance.update_sed_settings(sed_settings) -except ApiException as e: - print("Exception when calling KeymanagerApi->update_sed_settings: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **sed_settings** | [**SedSettingsExtended**](SedSettingsExtended.md)| | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/KeymanagerCluster.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/KeymanagerCluster.md deleted file mode 100644 index d9f424f27..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/KeymanagerCluster.md +++ /dev/null @@ -1,12 +0,0 @@ -# KeymanagerCluster - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**domains** | [**list[KeymanagerClusterDomain]**](KeymanagerClusterDomain.md) | | -**resume** | **str** | Provide this token as the 'resume' query argument to continue listing results. | [optional] -**total** | **int** | Total number of items available. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/KeymanagerClusterDomain.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/KeymanagerClusterDomain.md deleted file mode 100644 index 7ca9e05e5..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/KeymanagerClusterDomain.md +++ /dev/null @@ -1,10 +0,0 @@ -# KeymanagerClusterDomain - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **str** | The name of a keymanager cluster domain. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MaintenanceSettings.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/MaintenanceSettings.md deleted file mode 100644 index 5e23ada78..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/MaintenanceSettings.md +++ /dev/null @@ -1,16 +0,0 @@ -# MaintenanceSettings - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**active** | **bool** | Indicates whether maintenance mode is active. | -**auto_enable** | **bool** | Indicates whether auto maintenance mode is enabled. | -**components** | [**list[MaintenanceSettingsComponent]**](MaintenanceSettingsComponent.md) | Maintenance mode status of individual components. | [optional] -**history** | [**list[MaintenanceSettingsHistoryItem]**](MaintenanceSettingsHistoryItem.md) | History list of maintenance mode windows. | [optional] -**manual_window_enabled** | **bool** | Indicates whether the manual maintenance window enabled. | -**manual_window_hours** | **int** | When the manual maintenance window is enabled, the duration of the window in hours. | -**manual_window_start** | **int** | When the manual maintenance window is enabled, the time when the maintenance window will start. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MaintenanceSettingsComponent.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/MaintenanceSettingsComponent.md deleted file mode 100644 index 050a698e5..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/MaintenanceSettingsComponent.md +++ /dev/null @@ -1,12 +0,0 @@ -# MaintenanceSettingsComponent - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**active** | **bool** | Indicates whether maintenance mode is active for the component. | -**enabled** | **bool** | Indicates whether maintenance mode is enabled for the component. | -**name** | **str** | The maintenance mode component name. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MaintenanceSettingsExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/MaintenanceSettingsExtended.md deleted file mode 100644 index 89693f3c2..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/MaintenanceSettingsExtended.md +++ /dev/null @@ -1,16 +0,0 @@ -# MaintenanceSettingsExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**active** | **bool** | Indicates whether maintenance mode is active. | [optional] -**auto_enable** | **bool** | Indicates whether auto maintenance mode is enabled. | [optional] -**manual_window_enabled** | **bool** | Indicates whether the manual maintenance window enabled. | [optional] -**manual_window_hours** | **int** | When the manual maintenance window is enabled, the duration of the window in hours. | [optional] -**manual_window_start** | **int** | When the manual maintenance window is enabled, the time when the maintenance window will start. | [optional] -**mode** | **str** | Whether this maintenance window was activated manually or automatically. | [optional] -**node_level_maintenance** | **bool** | Indicates whether this enable command is only for a node. | [optional] [default to False] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MaintenanceSettingsHistoryItem.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/MaintenanceSettingsHistoryItem.md deleted file mode 100644 index e585dba77..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/MaintenanceSettingsHistoryItem.md +++ /dev/null @@ -1,12 +0,0 @@ -# MaintenanceSettingsHistoryItem - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**end** | **int** | The end time of maintenance mode, as a UNIX timestamp in seconds. Null if maintenance is ongoing. | [optional] -**mode** | **str** | Whether this maintenance window was set manually or automatically. | -**start** | **int** | Start time of maintenance mode, as a UNIX timestamp in seconds. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqApi.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqApi.md deleted file mode 100644 index 1667b8518..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqApi.md +++ /dev/null @@ -1,308 +0,0 @@ -# isilon_sdk.v9_11_0.MetadataiqApi - -All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**create_metadataiq_reset_item**](MetadataiqApi.md#create_metadataiq_reset_item) | **POST** /platform/21/metadataiq/reset | -[**delete_metadataiq_reset**](MetadataiqApi.md#delete_metadataiq_reset) | **DELETE** /platform/21/metadataiq/reset | -[**get_metadataiq_certificate**](MetadataiqApi.md#get_metadataiq_certificate) | **GET** /platform/22/metadataiq/certificate | -[**get_metadataiq_settings**](MetadataiqApi.md#get_metadataiq_settings) | **GET** /platform/21/metadataiq/settings | -[**get_metadataiq_status**](MetadataiqApi.md#get_metadataiq_status) | **GET** /platform/22/metadataiq/status | -[**update_metadataiq_settings**](MetadataiqApi.md#update_metadataiq_settings) | **PUT** /platform/21/metadataiq/settings | - - -# **create_metadataiq_reset_item** -> Empty create_metadataiq_reset_item(metadataiq_reset_item) - - - -Resend all metadata under the configured path to the database from a new snapshot. While this operation is in progress, it will block incremental updates to the database. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.MetadataiqApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -metadataiq_reset_item = isilon_sdk.v9_11_0.Empty() # Empty | - -try: - api_response = api_instance.create_metadataiq_reset_item(metadataiq_reset_item) - pprint(api_response) -except ApiException as e: - print("Exception when calling MetadataiqApi->create_metadataiq_reset_item: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **metadataiq_reset_item** | [**Empty**](Empty.md)| | - -### Return type - -[**Empty**](Empty.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **delete_metadataiq_reset** -> delete_metadataiq_reset() - - - -Reset MetadataIQ to factory defaults. This means the daemons are disabled, the settings are reset, and any artifacts on cluster are cleared. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.MetadataiqApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_instance.delete_metadataiq_reset() -except ApiException as e: - print("Exception when calling MetadataiqApi->delete_metadataiq_reset: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_metadataiq_certificate** -> MetadataiqCertificate get_metadataiq_certificate() - - - -Retrieve a Metadataiq CA certificate. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.MetadataiqApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_metadataiq_certificate() - pprint(api_response) -except ApiException as e: - print("Exception when calling MetadataiqApi->get_metadataiq_certificate: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**MetadataiqCertificate**](MetadataiqCertificate.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_metadataiq_settings** -> MetadataiqSettings get_metadataiq_settings() - - - -View MetadataIQ settings. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.MetadataiqApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_metadataiq_settings() - pprint(api_response) -except ApiException as e: - print("Exception when calling MetadataiqApi->get_metadataiq_settings: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**MetadataiqSettings**](MetadataiqSettings.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_metadataiq_status** -> MetadataiqStatus get_metadataiq_status() - - - -View MetadataIQ current Cycle Status. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.MetadataiqApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_metadataiq_status() - pprint(api_response) -except ApiException as e: - print("Exception when calling MetadataiqApi->get_metadataiq_status: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**MetadataiqStatus**](MetadataiqStatus.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **update_metadataiq_settings** -> update_metadataiq_settings(metadataiq_settings) - - - -Modify a subset of MetadataIQ settings. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.MetadataiqApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -metadataiq_settings = isilon_sdk.v9_11_0.MetadataiqSettingsSettings() # MetadataiqSettingsSettings | - -try: - api_instance.update_metadataiq_settings(metadataiq_settings) -except ApiException as e: - print("Exception when calling MetadataiqApi->update_metadataiq_settings: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **metadataiq_settings** | [**MetadataiqSettingsSettings**](MetadataiqSettingsSettings.md)| | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqCertificate.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqCertificate.md deleted file mode 100644 index a6bd84aba..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqCertificate.md +++ /dev/null @@ -1,10 +0,0 @@ -# MetadataiqCertificate - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**certificates** | [**CertificatesSyslogCertificate**](CertificatesSyslogCertificate.md) | | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqSettings.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqSettings.md deleted file mode 100644 index cd4f1bf99..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqSettings.md +++ /dev/null @@ -1,10 +0,0 @@ -# MetadataiqSettings - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**settings** | [**MetadataiqSettingsSettings**](MetadataiqSettingsSettings.md) | MetadataIQ general Consumer and Producer settings. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqSettingsSettings.md deleted file mode 100644 index 6cda651cf..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqSettingsSettings.md +++ /dev/null @@ -1,11 +0,0 @@ -# MetadataiqSettingsSettings - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**consumer** | [**MetadataiqSettingsSettingsConsumer**](MetadataiqSettingsSettingsConsumer.md) | MetadataIQ general Consumer (data uploader)settings. | [optional] -**producer** | [**MetadataiqSettingsSettingsProducer**](MetadataiqSettingsSettingsProducer.md) | MetadataIQ general Producer (metadata analyzer) settings. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqSettingsSettingsConsumer.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqSettingsSettingsConsumer.md deleted file mode 100644 index b8193638c..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqSettingsSettingsConsumer.md +++ /dev/null @@ -1,15 +0,0 @@ -# MetadataiqSettingsSettingsConsumer - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**database_info** | [**MetadataiqSettingsSettingsConsumerDatabaseInfo**](MetadataiqSettingsSettingsConsumerDatabaseInfo.md) | MetadataIQ database information settings for the script that transfers the ChangelistCreate information to the remote database. Note that this includes fake databases or even terminal output. | [optional] -**excluded_lnns** | **list[int]** | List of LNNs the system should not use to upload data to database. | [optional] -**fetch_size** | **int** | Minimum number of ChangelistCreate entries the script should fetch at a time. Default is 2048. | [optional] -**max_threads** | **int** | Maximum number of threads used to upload metadata to the database. The default is 8. | [optional] -**number_shards** | **int** | The number of primary shards that an index should have. The default is 8. | [optional] -**work_queue_size** | **int** | Transfer script's work queue size. Default is 16. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqSettingsSettingsConsumerDatabaseInfo.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqSettingsSettingsConsumerDatabaseInfo.md deleted file mode 100644 index d749941c2..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqSettingsSettingsConsumerDatabaseInfo.md +++ /dev/null @@ -1,15 +0,0 @@ -# MetadataiqSettingsSettingsConsumerDatabaseInfo - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**api_key** | **str** | API key to securely connect the database. The default is ''. | [optional] -**certificate_path** | **str** | Path to the CA certificate to use to ensure the authenticity of the remote database. The path must be under /ifs or empty. Default is ''. | [optional] -**database_type** | **str** | Type of database to write. The default is 'ELK database'. | [optional] -**host_port** | **int** | Port to the database. The default is 9200. | [optional] -**hostname** | **str** | Name of the remote ELK database host. The default is ''. | [optional] -**verify_certificate** | **bool** | Use the certificate under the certificate key from the OneFS certificate store to verify the authenticity of the database. The default is True. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqSettingsSettingsProducer.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqSettingsSettingsProducer.md deleted file mode 100644 index bebafe125..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqSettingsSettingsProducer.md +++ /dev/null @@ -1,14 +0,0 @@ -# MetadataiqSettingsSettingsProducer - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**changelist_job_retries** | **int** | Number of additional times, after the first failure, that MetadataIQ retries the ChangelistCreate job on a given pair of snapshots. Default is 2. | [optional] -**changelist_job_tolerable_pause_hours** | **int** | Amount of time the Metadataiq system tolerates a MetadataIQ-driven ChangelistCreate job being paused, in hours, before warning. Default is 24. | [optional] -**changelist_job_tolerable_state_request_failures** | **int** | Number of times the Metadataiq System can fail to get the ChangelistCreate job's status before it gives up. Default is 720. | [optional] -**path** | **str** | | [optional] -**schedule** | **str** | Schedule at which a metadata cycle of analysis and upload occurs. The syntax must be isi-date compatible. Default is ''. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqStatusStatus.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqStatusStatus.md deleted file mode 100644 index 38460e40c..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqStatusStatus.md +++ /dev/null @@ -1,11 +0,0 @@ -# MetadataiqStatusStatus - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**consumer** | [**MetadataiqStatusStatusConsumer**](MetadataiqStatusStatusConsumer.md) | MetadataIQ Current Consumer Status. | [optional] -**producer** | [**MetadataiqStatusStatusProducer**](MetadataiqStatusStatusProducer.md) | MetadataIQ current Producer Status. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqStatusStatusConsumer.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqStatusStatusConsumer.md deleted file mode 100644 index d223a0c07..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqStatusStatusConsumer.md +++ /dev/null @@ -1,20 +0,0 @@ -# MetadataiqStatusStatusConsumer - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**average_network_latency** | **int** | Average network latency (in milliseconds) with remote host during last data transfer. Default is 0. | [optional] -**average_transfer_time** | **int** | Average transfer time (in milliseconds) with remote host during last data transfer. Default is 0. | [optional] -**cpu_usage_pct** | **int** | The CPU usage percentage that the MetadataIQ current Consumer Cycle consumed while transferring data to the database. Default is 0. | [optional] -**end_time** | **int** | Time when the MetadataIQ current Consumer Cycle ended. | [optional] -**maximum_network_latency** | **int** | Maximum network latency (in milliseconds) with remote host during last data transfer. Default is 0. | [optional] -**rss** | **int** | The RSS (Resident Set Size) that the MetadataIQ current Consumer Cycle consumed while transferring data to the database in bytes. Default is 0. | [optional] -**running_lnn** | **str** | The LNN on which the MetadataIQ Producer is currently running. | [optional] -**start_time** | **int** | Time when the MetadataIQ Current Consumer Cycle started. Default is 0. | [optional] -**state** | **str** | State of the MetadataIQ current Consumer Cycle. | [optional] -**transfer_size** | **int** | The size (in bytes) that the MetadataIQ current Consumer Cycle transferred to the database. Default is 0. | [optional] -**transfer_time** | **int** | Time it took for the MetadataIQ current Consumer Cycle to transfer data to the database in milliseconds. Default is 0. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqStatusStatusProducer.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqStatusStatusProducer.md deleted file mode 100644 index 672206bc1..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqStatusStatusProducer.md +++ /dev/null @@ -1,20 +0,0 @@ -# MetadataiqStatusStatusProducer - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**changelistcreate_job_id** | **int** | The ChangelistCreate Job ID for the current snapid pair. | [optional] -**end_time** | **int** | Time when the MetadataIQ current Producer Cycle ended. | [optional] -**error_count** | **int** | Number of errors encountered during the MetadataIQ current Producer Cycle. | [optional] -**job_failures** | **int** | Consecutive failed jobs for the current snapid pair. | [optional] -**new_snapshot_id** | **int** | The new snapshot ID of the current MetadataIQ cycle. | [optional] -**new_snapshot_lock_id** | **int** | The new snapshot lock ID of the new snapshot from the current MetadataIQ cycle. | [optional] -**old_snapshot_id** | **int** | The ID of the snapshot created at the start of the previous MetadataIQ cycle. First instance will be Invalid Snapid. | [optional] -**old_snapshot_lock_id** | **int** | The lock ID of the snapshot created at the start of the previous MetadataIQ Cycle. First instance will be Invalid Lock ID. | [optional] -**running_lnn** | **str** | The LNN on which the MetadataIQ Producer is currently running. | [optional] -**start_time** | **int** | Time when the MetadataIQ current Producer Cycle started. Default is 0 (0 means never) | [optional] -**state** | **str** | State of the MetadataIQ current Producer Cycle. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkApi.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkApi.md deleted file mode 100644 index 0204fefe9..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkApi.md +++ /dev/null @@ -1,1676 +0,0 @@ -# isilon_sdk.v9_11_0.NetworkApi - -All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**create_dnscache_flush_item**](NetworkApi.md#create_dnscache_flush_item) | **POST** /platform/3/network/dnscache/flush | -[**create_firewall_policy**](NetworkApi.md#create_firewall_policy) | **POST** /platform/16/network/firewall/policies | -[**create_firewall_reset_dscp_setting_item**](NetworkApi.md#create_firewall_reset_dscp_setting_item) | **POST** /platform/20/network/firewall/reset-dscp-setting | -[**create_firewall_reset_global_policy_item**](NetworkApi.md#create_firewall_reset_global_policy_item) | **POST** /platform/16/network/firewall/reset-global-policy | -[**create_network_groupnet**](NetworkApi.md#create_network_groupnet) | **POST** /platform/10/network/groupnets | -[**create_network_sc_rebalance_all_item**](NetworkApi.md#create_network_sc_rebalance_all_item) | **POST** /platform/3/network/sc-rebalance-all | -[**delete_firewall_policy**](NetworkApi.md#delete_firewall_policy) | **DELETE** /platform/16/network/firewall/policies/{FirewallPolicyId} | -[**delete_network_groupnet**](NetworkApi.md#delete_network_groupnet) | **DELETE** /platform/10/network/groupnets/{NetworkGroupnetId} | -[**get_firewall_dscp**](NetworkApi.md#get_firewall_dscp) | **GET** /platform/20/network/firewall/dscp | -[**get_firewall_dscp_rule**](NetworkApi.md#get_firewall_dscp_rule) | **GET** /platform/20/network/firewall/dscp/{FirewallDscpRule} | -[**get_firewall_policy**](NetworkApi.md#get_firewall_policy) | **GET** /platform/16/network/firewall/policies/{FirewallPolicyId} | -[**get_firewall_rules**](NetworkApi.md#get_firewall_rules) | **GET** /platform/16/network/firewall/rules | -[**get_firewall_services**](NetworkApi.md#get_firewall_services) | **GET** /platform/16/network/firewall/services | -[**get_firewall_settings**](NetworkApi.md#get_firewall_settings) | **GET** /platform/20/network/firewall/settings | -[**get_network_dnscache**](NetworkApi.md#get_network_dnscache) | **GET** /platform/3/network/dnscache | -[**get_network_external**](NetworkApi.md#get_network_external) | **GET** /platform/16/network/external | -[**get_network_groupnet**](NetworkApi.md#get_network_groupnet) | **GET** /platform/10/network/groupnets/{NetworkGroupnetId} | -[**get_network_interface_names**](NetworkApi.md#get_network_interface_names) | **GET** /platform/21/network/interface-names | -[**get_network_interfaces**](NetworkApi.md#get_network_interfaces) | **GET** /platform/21/network/interfaces | -[**get_network_pools**](NetworkApi.md#get_network_pools) | **GET** /platform/21/network/pools | -[**get_network_rules**](NetworkApi.md#get_network_rules) | **GET** /platform/21/network/rules | -[**get_network_subnets**](NetworkApi.md#get_network_subnets) | **GET** /platform/21/network/subnets | -[**list_firewall_policies**](NetworkApi.md#list_firewall_policies) | **GET** /platform/16/network/firewall/policies | -[**list_network_groupnets**](NetworkApi.md#list_network_groupnets) | **GET** /platform/10/network/groupnets | -[**update_firewall_dscp_rule**](NetworkApi.md#update_firewall_dscp_rule) | **PUT** /platform/20/network/firewall/dscp/{FirewallDscpRule} | -[**update_firewall_policy**](NetworkApi.md#update_firewall_policy) | **PUT** /platform/16/network/firewall/policies/{FirewallPolicyId} | -[**update_firewall_settings**](NetworkApi.md#update_firewall_settings) | **PUT** /platform/20/network/firewall/settings | -[**update_network_dnscache**](NetworkApi.md#update_network_dnscache) | **PUT** /platform/3/network/dnscache | -[**update_network_external**](NetworkApi.md#update_network_external) | **PUT** /platform/16/network/external | -[**update_network_groupnet**](NetworkApi.md#update_network_groupnet) | **PUT** /platform/10/network/groupnets/{NetworkGroupnetId} | - - -# **create_dnscache_flush_item** -> Empty create_dnscache_flush_item(dnscache_flush_item) - - - -Flush the DNSCache. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -dnscache_flush_item = isilon_sdk.v9_11_0.Empty() # Empty | - -try: - api_response = api_instance.create_dnscache_flush_item(dnscache_flush_item) - pprint(api_response) -except ApiException as e: - print("Exception when calling NetworkApi->create_dnscache_flush_item: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **dnscache_flush_item** | [**Empty**](Empty.md)| | - -### Return type - -[**Empty**](Empty.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **create_firewall_policy** -> CreateResponse create_firewall_policy(firewall_policy) - - - -Create a new network policy with empty rules. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -firewall_policy = isilon_sdk.v9_11_0.FirewallPolicyCreateParams() # FirewallPolicyCreateParams | - -try: - api_response = api_instance.create_firewall_policy(firewall_policy) - pprint(api_response) -except ApiException as e: - print("Exception when calling NetworkApi->create_firewall_policy: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **firewall_policy** | [**FirewallPolicyCreateParams**](FirewallPolicyCreateParams.md)| | - -### Return type - -[**CreateResponse**](CreateResponse.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **create_firewall_reset_dscp_setting_item** -> Empty create_firewall_reset_dscp_setting_item(firewall_reset_dscp_setting_item, live=live) - - - -Reset DSCP configuration to default. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -firewall_reset_dscp_setting_item = isilon_sdk.v9_11_0.Empty() # Empty | -live = true # bool | Live option must be used when resetting DSCP configuration. If DSCP is enabled, the reset will take effect immediately. (optional) - -try: - api_response = api_instance.create_firewall_reset_dscp_setting_item(firewall_reset_dscp_setting_item, live=live) - pprint(api_response) -except ApiException as e: - print("Exception when calling NetworkApi->create_firewall_reset_dscp_setting_item: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **firewall_reset_dscp_setting_item** | [**Empty**](Empty.md)| | - **live** | **bool**| Live option must be used when resetting DSCP configuration. If DSCP is enabled, the reset will take effect immediately. | [optional] - -### Return type - -[**Empty**](Empty.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **create_firewall_reset_global_policy_item** -> Empty create_firewall_reset_global_policy_item(firewall_reset_global_policy_item, live=live) - - - -Reset global policies to default. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -firewall_reset_global_policy_item = isilon_sdk.v9_11_0.Empty() # Empty | -live = true # bool | Live option must be used with global policies. Such reset will take effect immediately. (optional) - -try: - api_response = api_instance.create_firewall_reset_global_policy_item(firewall_reset_global_policy_item, live=live) - pprint(api_response) -except ApiException as e: - print("Exception when calling NetworkApi->create_firewall_reset_global_policy_item: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **firewall_reset_global_policy_item** | [**Empty**](Empty.md)| | - **live** | **bool**| Live option must be used with global policies. Such reset will take effect immediately. | [optional] - -### Return type - -[**Empty**](Empty.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **create_network_groupnet** -> CreateResponse create_network_groupnet(network_groupnet) - - - -Create a new groupnet. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -network_groupnet = isilon_sdk.v9_11_0.NetworkGroupnetCreateParams() # NetworkGroupnetCreateParams | - -try: - api_response = api_instance.create_network_groupnet(network_groupnet) - pprint(api_response) -except ApiException as e: - print("Exception when calling NetworkApi->create_network_groupnet: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **network_groupnet** | [**NetworkGroupnetCreateParams**](NetworkGroupnetCreateParams.md)| | - -### Return type - -[**CreateResponse**](CreateResponse.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **create_network_sc_rebalance_all_item** -> Empty create_network_sc_rebalance_all_item(network_sc_rebalance_all_item) - - - -Rebalance IP addresses in all pools. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -network_sc_rebalance_all_item = isilon_sdk.v9_11_0.Empty() # Empty | - -try: - api_response = api_instance.create_network_sc_rebalance_all_item(network_sc_rebalance_all_item) - pprint(api_response) -except ApiException as e: - print("Exception when calling NetworkApi->create_network_sc_rebalance_all_item: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **network_sc_rebalance_all_item** | [**Empty**](Empty.md)| | - -### Return type - -[**Empty**](Empty.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **delete_firewall_policy** -> delete_firewall_policy(firewall_policy_id) - - - -Delete a network firewall policy. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -firewall_policy_id = 'firewall_policy_id_example' # str | Delete a network firewall policy. - -try: - api_instance.delete_firewall_policy(firewall_policy_id) -except ApiException as e: - print("Exception when calling NetworkApi->delete_firewall_policy: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **firewall_policy_id** | **str**| Delete a network firewall policy. | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **delete_network_groupnet** -> delete_network_groupnet(network_groupnet_id) - - - -Delete a network groupnet. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -network_groupnet_id = 'network_groupnet_id_example' # str | Delete a network groupnet. - -try: - api_instance.delete_network_groupnet(network_groupnet_id) -except ApiException as e: - print("Exception when calling NetworkApi->delete_network_groupnet: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **network_groupnet_id** | **str**| Delete a network groupnet. | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_firewall_dscp** -> FirewallDscpExtended get_firewall_dscp() - - - -Get a list of DSCP rules. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_firewall_dscp() - pprint(api_response) -except ApiException as e: - print("Exception when calling NetworkApi->get_firewall_dscp: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**FirewallDscpExtended**](FirewallDscpExtended.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_firewall_dscp_rule** -> FirewallDscp get_firewall_dscp_rule(firewall_dscp_rule) - - - -View a DSCP rule. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -firewall_dscp_rule = 'firewall_dscp_rule_example' # str | View a DSCP rule. - -try: - api_response = api_instance.get_firewall_dscp_rule(firewall_dscp_rule) - pprint(api_response) -except ApiException as e: - print("Exception when calling NetworkApi->get_firewall_dscp_rule: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **firewall_dscp_rule** | **str**| View a DSCP rule. | - -### Return type - -[**FirewallDscp**](FirewallDscp.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_firewall_policy** -> FirewallPolicies get_firewall_policy(firewall_policy_id) - - - -View a network firewall policy. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -firewall_policy_id = 'firewall_policy_id_example' # str | View a network firewall policy. - -try: - api_response = api_instance.get_firewall_policy(firewall_policy_id) - pprint(api_response) -except ApiException as e: - print("Exception when calling NetworkApi->get_firewall_policy: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **firewall_policy_id** | **str**| View a network firewall policy. | - -### Return type - -[**FirewallPolicies**](FirewallPolicies.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_firewall_rules** -> FirewallRules get_firewall_rules(dir=dir, limit=limit, resume=resume, sort=sort) - - - -Get a list of all firewall rules. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -dir = 'dir_example' # str | The direction of the sort. (optional) -limit = 56 # int | Return no more than this many results at once (see resume). (optional) -resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) -sort = 'sort_example' # str | The field that will be used for sorting. (optional) - -try: - api_response = api_instance.get_firewall_rules(dir=dir, limit=limit, resume=resume, sort=sort) - pprint(api_response) -except ApiException as e: - print("Exception when calling NetworkApi->get_firewall_rules: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **dir** | **str**| The direction of the sort. | [optional] - **limit** | **int**| Return no more than this many results at once (see resume). | [optional] - **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] - **sort** | **str**| The field that will be used for sorting. | [optional] - -### Return type - -[**FirewallRules**](FirewallRules.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_firewall_services** -> FirewallServices get_firewall_services(dir=dir, limit=limit, resume=resume, sort=sort) - - - -View network firewall default services. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -dir = 'dir_example' # str | The direction of the sort. (optional) -limit = 56 # int | Return no more than this many results at once (see resume). (optional) -resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) -sort = 'sort_example' # str | The field that will be used for sorting. (optional) - -try: - api_response = api_instance.get_firewall_services(dir=dir, limit=limit, resume=resume, sort=sort) - pprint(api_response) -except ApiException as e: - print("Exception when calling NetworkApi->get_firewall_services: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **dir** | **str**| The direction of the sort. | [optional] - **limit** | **int**| Return no more than this many results at once (see resume). | [optional] - **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] - **sort** | **str**| The field that will be used for sorting. | [optional] - -### Return type - -[**FirewallServices**](FirewallServices.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_firewall_settings** -> FirewallSettings get_firewall_settings() - - - -View network firewall settings. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_firewall_settings() - pprint(api_response) -except ApiException as e: - print("Exception when calling NetworkApi->get_firewall_settings: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**FirewallSettings**](FirewallSettings.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_network_dnscache** -> NetworkDnscache get_network_dnscache() - - - -View network dns cache settings. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_network_dnscache() - pprint(api_response) -except ApiException as e: - print("Exception when calling NetworkApi->get_network_dnscache: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**NetworkDnscache**](NetworkDnscache.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_network_external** -> NetworkExternal get_network_external() - - - -View external network settings. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_network_external() - pprint(api_response) -except ApiException as e: - print("Exception when calling NetworkApi->get_network_external: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**NetworkExternal**](NetworkExternal.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_network_groupnet** -> NetworkGroupnets get_network_groupnet(network_groupnet_id) - - - -View a network groupnet. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -network_groupnet_id = 'network_groupnet_id_example' # str | View a network groupnet. - -try: - api_response = api_instance.get_network_groupnet(network_groupnet_id) - pprint(api_response) -except ApiException as e: - print("Exception when calling NetworkApi->get_network_groupnet: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **network_groupnet_id** | **str**| View a network groupnet. | - -### Return type - -[**NetworkGroupnets**](NetworkGroupnets.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_network_interface_names** -> NetworkInterfaceNames get_network_interface_names(linklayer=linklayer) - - - -Get a list of supported interface names. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -linklayer = 'linklayer_example' # str | Filter the names of supported interfaces by linklayer. (optional) - -try: - api_response = api_instance.get_network_interface_names(linklayer=linklayer) - pprint(api_response) -except ApiException as e: - print("Exception when calling NetworkApi->get_network_interface_names: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **linklayer** | **str**| Filter the names of supported interfaces by linklayer. | [optional] - -### Return type - -[**NetworkInterfaceNames**](NetworkInterfaceNames.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_network_interfaces** -> NetworkInterfaces get_network_interfaces(cache=cache, dir=dir, flag=flag, include_access_zones=include_access_zones, include_vlans=include_vlans, limit=limit, linklayer=linklayer, lnn=lnn, network=network, owner=owner, resume=resume, sort=sort, type=type, vlan_id=vlan_id) - - - -Get a list of interfaces. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cache = 'cache_example' # str | Control where interface data is sourced from. no-cache only returns live data from a running node, and if a node can't be reached, no results will be returned. cache-only only returns cached data, some fields are set as null/unknown if they can't be determined, and IPs listed are the IPs that should be configured. Finally, nodes-first will try to query live nodes, and fall back to the cache for any nodes that fail. Default: nodes-first (optional) -dir = 'dir_example' # str | The direction of the sort. (optional) -flag = 'flag_example' # str | Filters results to only show interfaces with the specified flag. Only one flag can be specified. (optional) -include_access_zones = true # bool | If include_access_zones is set to false, the 'access_zone' field will be set to an empty string. (optional) -include_vlans = true # bool | If include_vlans is set to true, all vlans are returned unless further filtered by vlan_id. If include_vlans is set to false, no vlans are returned. (optional) -limit = 56 # int | Return no more than this many results at once (see resume). (optional) -linklayer = 'linklayer_example' # str | Filters results to only show interfaces with the specified linklayer. Default: all (optional) -lnn = [56] # list[int] | Get a list of interfaces for the specified lnns. (optional) -network = 'network_example' # str | Show interfaces associated with external and/or internal networks. Default is 'external' (optional) -owner = 'owner_example' # str | Filter results by owner id. Support partials matches too. Ex owner=groupnet0 or owner=groupnet0.subnet0.pool0. (optional) -resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) -sort = 'sort_example' # str | The field that will be used for sorting. (optional) -type = 'type_example' # str | Filter the returned IPs by IP type. (optional) -vlan_id = 56 # int | Only return IPs/interfaces configured in the specified VLAN ID (optional) - -try: - api_response = api_instance.get_network_interfaces(cache=cache, dir=dir, flag=flag, include_access_zones=include_access_zones, include_vlans=include_vlans, limit=limit, linklayer=linklayer, lnn=lnn, network=network, owner=owner, resume=resume, sort=sort, type=type, vlan_id=vlan_id) - pprint(api_response) -except ApiException as e: - print("Exception when calling NetworkApi->get_network_interfaces: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **cache** | **str**| Control where interface data is sourced from. no-cache only returns live data from a running node, and if a node can't be reached, no results will be returned. cache-only only returns cached data, some fields are set as null/unknown if they can't be determined, and IPs listed are the IPs that should be configured. Finally, nodes-first will try to query live nodes, and fall back to the cache for any nodes that fail. Default: nodes-first | [optional] - **dir** | **str**| The direction of the sort. | [optional] - **flag** | **str**| Filters results to only show interfaces with the specified flag. Only one flag can be specified. | [optional] - **include_access_zones** | **bool**| If include_access_zones is set to false, the 'access_zone' field will be set to an empty string. | [optional] - **include_vlans** | **bool**| If include_vlans is set to true, all vlans are returned unless further filtered by vlan_id. If include_vlans is set to false, no vlans are returned. | [optional] - **limit** | **int**| Return no more than this many results at once (see resume). | [optional] - **linklayer** | **str**| Filters results to only show interfaces with the specified linklayer. Default: all | [optional] - **lnn** | [**list[int]**](int.md)| Get a list of interfaces for the specified lnns. | [optional] - **network** | **str**| Show interfaces associated with external and/or internal networks. Default is 'external' | [optional] - **owner** | **str**| Filter results by owner id. Support partials matches too. Ex owner=groupnet0 or owner=groupnet0.subnet0.pool0. | [optional] - **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] - **sort** | **str**| The field that will be used for sorting. | [optional] - **type** | **str**| Filter the returned IPs by IP type. | [optional] - **vlan_id** | **int**| Only return IPs/interfaces configured in the specified VLAN ID | [optional] - -### Return type - -[**NetworkInterfaces**](NetworkInterfaces.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_network_pools** -> NetworkPools get_network_pools(access_zone=access_zone, alloc_method=alloc_method, dir=dir, groupnet=groupnet, limit=limit, resume=resume, sort=sort, subnet=subnet) - - - -Get a list of network pools. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -access_zone = 'access_zone_example' # str | If specified, only pools with this zone name will be returned. (optional) -alloc_method = 'alloc_method_example' # str | If specified, only pools with this allocation type will be returned. (optional) -dir = 'dir_example' # str | The direction of the sort. (optional) -groupnet = 'groupnet_example' # str | If specified, only pools for this groupnet will be returned. (optional) -limit = 56 # int | Return no more than this many results at once (see resume). (optional) -resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) -sort = 'sort_example' # str | The field that will be used for sorting. (optional) -subnet = 'subnet_example' # str | If specified, only pools for this subnet will be returned. (optional) - -try: - api_response = api_instance.get_network_pools(access_zone=access_zone, alloc_method=alloc_method, dir=dir, groupnet=groupnet, limit=limit, resume=resume, sort=sort, subnet=subnet) - pprint(api_response) -except ApiException as e: - print("Exception when calling NetworkApi->get_network_pools: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **access_zone** | **str**| If specified, only pools with this zone name will be returned. | [optional] - **alloc_method** | **str**| If specified, only pools with this allocation type will be returned. | [optional] - **dir** | **str**| The direction of the sort. | [optional] - **groupnet** | **str**| If specified, only pools for this groupnet will be returned. | [optional] - **limit** | **int**| Return no more than this many results at once (see resume). | [optional] - **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] - **sort** | **str**| The field that will be used for sorting. | [optional] - **subnet** | **str**| If specified, only pools for this subnet will be returned. | [optional] - -### Return type - -[**NetworkPools**](NetworkPools.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_network_rules** -> PoolsPoolRulesExtended get_network_rules(dir=dir, groupnet=groupnet, limit=limit, pool=pool, resume=resume, sort=sort, subnet=subnet) - - - -Get a list of network rules. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -dir = 'dir_example' # str | The direction of the sort. (optional) -groupnet = 'groupnet_example' # str | Name of the groupnet to list rules from. (optional) -limit = 56 # int | Return no more than this many results at once (see resume). (optional) -pool = 'pool_example' # str | Name of the pool to list rules from. (optional) -resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) -sort = 'sort_example' # str | The field that will be used for sorting. (optional) -subnet = 'subnet_example' # str | Name of the subnet to list rules from. (optional) - -try: - api_response = api_instance.get_network_rules(dir=dir, groupnet=groupnet, limit=limit, pool=pool, resume=resume, sort=sort, subnet=subnet) - pprint(api_response) -except ApiException as e: - print("Exception when calling NetworkApi->get_network_rules: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **dir** | **str**| The direction of the sort. | [optional] - **groupnet** | **str**| Name of the groupnet to list rules from. | [optional] - **limit** | **int**| Return no more than this many results at once (see resume). | [optional] - **pool** | **str**| Name of the pool to list rules from. | [optional] - **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] - **sort** | **str**| The field that will be used for sorting. | [optional] - **subnet** | **str**| Name of the subnet to list rules from. | [optional] - -### Return type - -[**PoolsPoolRulesExtended**](PoolsPoolRulesExtended.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_network_subnets** -> GroupnetSubnetsExtended get_network_subnets(dir=dir, groupnet=groupnet, limit=limit, resume=resume, sort=sort) - - - -Get a list of subnets. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -dir = 'dir_example' # str | The direction of the sort. (optional) -groupnet = 'groupnet_example' # str | If specified, only subnets for this groupnet will be returned. (optional) -limit = 56 # int | Return no more than this many results at once (see resume). (optional) -resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) -sort = 'sort_example' # str | The field that will be used for sorting. (optional) - -try: - api_response = api_instance.get_network_subnets(dir=dir, groupnet=groupnet, limit=limit, resume=resume, sort=sort) - pprint(api_response) -except ApiException as e: - print("Exception when calling NetworkApi->get_network_subnets: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **dir** | **str**| The direction of the sort. | [optional] - **groupnet** | **str**| If specified, only subnets for this groupnet will be returned. | [optional] - **limit** | **int**| Return no more than this many results at once (see resume). | [optional] - **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] - **sort** | **str**| The field that will be used for sorting. | [optional] - -### Return type - -[**GroupnetSubnetsExtended**](GroupnetSubnetsExtended.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **list_firewall_policies** -> FirewallPoliciesExtended list_firewall_policies(dir=dir, limit=limit, resume=resume, sort=sort) - - - -Get a list of firewall policies. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -dir = 'dir_example' # str | The direction of the sort. (optional) -limit = 56 # int | Return no more than this many results at once (see resume). (optional) -resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) -sort = 'sort_example' # str | The field that will be used for sorting. (optional) - -try: - api_response = api_instance.list_firewall_policies(dir=dir, limit=limit, resume=resume, sort=sort) - pprint(api_response) -except ApiException as e: - print("Exception when calling NetworkApi->list_firewall_policies: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **dir** | **str**| The direction of the sort. | [optional] - **limit** | **int**| Return no more than this many results at once (see resume). | [optional] - **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] - **sort** | **str**| The field that will be used for sorting. | [optional] - -### Return type - -[**FirewallPoliciesExtended**](FirewallPoliciesExtended.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **list_network_groupnets** -> NetworkGroupnetsExtended list_network_groupnets(dir=dir, limit=limit, resume=resume, sort=sort) - - - -Get a list of groupnets. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -dir = 'dir_example' # str | The direction of the sort. (optional) -limit = 56 # int | Return no more than this many results at once (see resume). (optional) -resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) -sort = 'sort_example' # str | The field that will be used for sorting. (optional) - -try: - api_response = api_instance.list_network_groupnets(dir=dir, limit=limit, resume=resume, sort=sort) - pprint(api_response) -except ApiException as e: - print("Exception when calling NetworkApi->list_network_groupnets: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **dir** | **str**| The direction of the sort. | [optional] - **limit** | **int**| Return no more than this many results at once (see resume). | [optional] - **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] - **sort** | **str**| The field that will be used for sorting. | [optional] - -### Return type - -[**NetworkGroupnetsExtended**](NetworkGroupnetsExtended.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **update_firewall_dscp_rule** -> update_firewall_dscp_rule(firewall_dscp_rule_params, firewall_dscp_rule, live=live) - - - -Modify a DSCP rule. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -firewall_dscp_rule_params = isilon_sdk.v9_11_0.FirewallDscpRuleParams() # FirewallDscpRuleParams | -firewall_dscp_rule = 'firewall_dscp_rule_example' # str | Modify a DSCP rule. -live = true # bool | Live flag can only be used with active rules. Update will take effect immediately on all related network pools. (optional) - -try: - api_instance.update_firewall_dscp_rule(firewall_dscp_rule_params, firewall_dscp_rule, live=live) -except ApiException as e: - print("Exception when calling NetworkApi->update_firewall_dscp_rule: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **firewall_dscp_rule_params** | [**FirewallDscpRuleParams**](FirewallDscpRuleParams.md)| | - **firewall_dscp_rule** | **str**| Modify a DSCP rule. | - **live** | **bool**| Live flag can only be used with active rules. Update will take effect immediately on all related network pools. | [optional] - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **update_firewall_policy** -> update_firewall_policy(firewall_policy, firewall_policy_id, clone=clone, live=live) - - - -Modify a network firewall policy. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -firewall_policy = isilon_sdk.v9_11_0.FirewallPolicy() # FirewallPolicy | -firewall_policy_id = 'firewall_policy_id_example' # str | Modify a network firewall policy. -clone = true # bool | Clone an existing policy to a new one. (optional) -live = true # bool | Live flag can only be used with active rules. Update will take effect immediately on all related network pools. (optional) - -try: - api_instance.update_firewall_policy(firewall_policy, firewall_policy_id, clone=clone, live=live) -except ApiException as e: - print("Exception when calling NetworkApi->update_firewall_policy: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **firewall_policy** | [**FirewallPolicy**](FirewallPolicy.md)| | - **firewall_policy_id** | **str**| Modify a network firewall policy. | - **clone** | **bool**| Clone an existing policy to a new one. | [optional] - **live** | **bool**| Live flag can only be used with active rules. Update will take effect immediately on all related network pools. | [optional] - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **update_firewall_settings** -> update_firewall_settings(firewall_settings, force=force) - - - -Modify network firewall settings. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -firewall_settings = isilon_sdk.v9_11_0.FirewallSettingsExtended() # FirewallSettingsExtended | -force = true # bool | Force modify firewall settings, even if it leads to FTP service being blocked (optional) - -try: - api_instance.update_firewall_settings(firewall_settings, force=force) -except ApiException as e: - print("Exception when calling NetworkApi->update_firewall_settings: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **firewall_settings** | [**FirewallSettingsExtended**](FirewallSettingsExtended.md)| | - **force** | **bool**| Force modify firewall settings, even if it leads to FTP service being blocked | [optional] - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **update_network_dnscache** -> update_network_dnscache(network_dnscache) - - - -Modify network dns cache settings. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -network_dnscache = isilon_sdk.v9_11_0.NetworkDnscacheExtended() # NetworkDnscacheExtended | - -try: - api_instance.update_network_dnscache(network_dnscache) -except ApiException as e: - print("Exception when calling NetworkApi->update_network_dnscache: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **network_dnscache** | [**NetworkDnscacheExtended**](NetworkDnscacheExtended.md)| | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **update_network_external** -> update_network_external(network_external) - - - -Modify external network settings. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -network_external = isilon_sdk.v9_11_0.NetworkExternalExtended() # NetworkExternalExtended | - -try: - api_instance.update_network_external(network_external) -except ApiException as e: - print("Exception when calling NetworkApi->update_network_external: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **network_external** | [**NetworkExternalExtended**](NetworkExternalExtended.md)| | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **update_network_groupnet** -> update_network_groupnet(network_groupnet, network_groupnet_id) - - - -Modify a network groupnet. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -network_groupnet = isilon_sdk.v9_11_0.NetworkGroupnet() # NetworkGroupnet | -network_groupnet_id = 'network_groupnet_id_example' # str | Modify a network groupnet. - -try: - api_instance.update_network_groupnet(network_groupnet, network_groupnet_id) -except ApiException as e: - print("Exception when calling NetworkApi->update_network_groupnet: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **network_groupnet** | [**NetworkGroupnet**](NetworkGroupnet.md)| | - **network_groupnet_id** | **str**| Modify a network groupnet. | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkDiscover.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkDiscover.md deleted file mode 100644 index c82eee18a..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkDiscover.md +++ /dev/null @@ -1,10 +0,0 @@ -# NetworkDiscover - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**discover** | [**NetworkDiscoverDiscover**](NetworkDiscoverDiscover.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkExternalExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkExternalExtended.md deleted file mode 100644 index a75a0dfdf..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkExternalExtended.md +++ /dev/null @@ -1,20 +0,0 @@ -# NetworkExternalExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**ipv6_accept_redirects** | **bool** | If disabled, OneFS will stop processing ICMPv6 Redirect messages. | [optional] -**ipv6_auto_config_enabled** | **bool** | True if rtsold daemon is enabled. When set to false, the rtsold service is disabled, and IPv6 auto configuration is disabled | [optional] -**ipv6_dad_enabled** | **bool** | Indicates if OneFS will perform Duplicate Address Detection on designated Network Pools and, optionally, SmartConnect Service IPs. | [optional] -**ipv6_dad_timeout** | **int** | Denotes the number of seconds it takes for IPv6 Duplicate Address Detection to occur. During this time, the IP Addresses will not be usable. | [optional] -**ipv6_enabled** | **bool** | Indicates if Front End interfaces are configured to support IPv6. | [optional] -**ipv6_generate_link_local** | **bool** | Configure if OneFS should generate IPv6 Link Local IPs on the Front End Network. | [optional] -**ipv6_ssip_perform_dad** | **bool** | Enable Duplicate Address Detection on SmartConnect Service IPs. | [optional] -**sbr** | **bool** | Enable or disable Source Based Routing (Defaults to true) | [optional] -**sc_rebalance_delay** | **int** | Delay in seconds for IP rebalance. | [optional] -**sc_server_ttl** | **int** | Sets the TTL on NS and SOA records | [optional] -**tcp_ports** | **list[int]** | List of client TCP ports. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkExternalSettings.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkExternalSettings.md deleted file mode 100644 index 84b90c727..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkExternalSettings.md +++ /dev/null @@ -1,21 +0,0 @@ -# NetworkExternalSettings - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**default_groupnet** | **str** | Default client-side DNS settings for non-multitenancy aware programs | -**ipv6_accept_redirects** | **bool** | If disabled, OneFS will stop processing ICMPv6 Redirect messages. | -**ipv6_auto_config_enabled** | **bool** | True if rtsold daemon is enabled. When set to false, the rtsold service is disabled, and IPv6 auto configuration is disabled | -**ipv6_dad_enabled** | **bool** | Indicates if OneFS will perform Duplicate Address Detection on designated Network Pools and, optionally, SmartConnect Service IPs. | -**ipv6_dad_timeout** | **int** | Denotes the number of seconds it takes for IPv6 Duplicate Address Detection to occur. During this time, the IP Addresses will not be usable. | -**ipv6_enabled** | **bool** | Indicates if Front End interfaces are configured to support IPv6. | -**ipv6_generate_link_local** | **bool** | Configure if OneFS should generate IPv6 Link Local IPs on the Front End Network. | -**ipv6_ssip_perform_dad** | **bool** | Enable Duplicate Address Detection on SmartConnect Service IPs. | -**sbr** | **bool** | Enable or disable Source Based Routing (Defaults to true) | -**sc_rebalance_delay** | **int** | Delay in seconds for IP rebalance. | -**sc_server_ttl** | **int** | Sets the TTL on NS and SOA records | -**tcp_ports** | **list[int]** | List of client TCP ports. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkFirewallApi.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkFirewallApi.md deleted file mode 100644 index c5b6c203f..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkFirewallApi.md +++ /dev/null @@ -1,299 +0,0 @@ -# isilon_sdk.v9_11_0.NetworkFirewallApi - -All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**create_policies_policy_rule**](NetworkFirewallApi.md#create_policies_policy_rule) | **POST** /platform/16/network/firewall/policies/{Policy}/rules | -[**delete_policies_policy_rule**](NetworkFirewallApi.md#delete_policies_policy_rule) | **DELETE** /platform/16/network/firewall/policies/{Policy}/rules/{PoliciesPolicyRuleId} | -[**get_policies_policy_rule**](NetworkFirewallApi.md#get_policies_policy_rule) | **GET** /platform/16/network/firewall/policies/{Policy}/rules/{PoliciesPolicyRuleId} | -[**list_policies_policy_rules**](NetworkFirewallApi.md#list_policies_policy_rules) | **GET** /platform/16/network/firewall/policies/{Policy}/rules | -[**update_policies_policy_rule**](NetworkFirewallApi.md#update_policies_policy_rule) | **PUT** /platform/16/network/firewall/policies/{Policy}/rules/{PoliciesPolicyRuleId} | - - -# **create_policies_policy_rule** -> CreateResponse create_policies_policy_rule(policies_policy_rule, policy, allow_renumbering=allow_renumbering, live=live) - - - -Create a new network firewall rule. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkFirewallApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -policies_policy_rule = isilon_sdk.v9_11_0.PoliciesPolicyRuleCreateParams() # PoliciesPolicyRuleCreateParams | -policy = 'policy_example' # str | -allow_renumbering = true # bool | Indicates whether to allow renumbering of other rules when an index already exists (optional) -live = true # bool | Live flag can only be used with active rules. Update will take effect immediately on all related network pools. (optional) - -try: - api_response = api_instance.create_policies_policy_rule(policies_policy_rule, policy, allow_renumbering=allow_renumbering, live=live) - pprint(api_response) -except ApiException as e: - print("Exception when calling NetworkFirewallApi->create_policies_policy_rule: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **policies_policy_rule** | [**PoliciesPolicyRuleCreateParams**](PoliciesPolicyRuleCreateParams.md)| | - **policy** | **str**| | - **allow_renumbering** | **bool**| Indicates whether to allow renumbering of other rules when an index already exists | [optional] - **live** | **bool**| Live flag can only be used with active rules. Update will take effect immediately on all related network pools. | [optional] - -### Return type - -[**CreateResponse**](CreateResponse.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **delete_policies_policy_rule** -> delete_policies_policy_rule(policies_policy_rule_id, policy, live=live) - - - -Delete a network firewall rule. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkFirewallApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -policies_policy_rule_id = 'policies_policy_rule_id_example' # str | Delete a network firewall rule. -policy = 'policy_example' # str | -live = true # bool | Live flag can only be used with active rules. Update will take effect immediately on all related network pools. (optional) - -try: - api_instance.delete_policies_policy_rule(policies_policy_rule_id, policy, live=live) -except ApiException as e: - print("Exception when calling NetworkFirewallApi->delete_policies_policy_rule: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **policies_policy_rule_id** | **str**| Delete a network firewall rule. | - **policy** | **str**| | - **live** | **bool**| Live flag can only be used with active rules. Update will take effect immediately on all related network pools. | [optional] - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_policies_policy_rule** -> PoliciesPolicyRules get_policies_policy_rule(policies_policy_rule_id, policy) - - - -View a network firewall rule. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkFirewallApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -policies_policy_rule_id = 'policies_policy_rule_id_example' # str | View a network firewall rule. -policy = 'policy_example' # str | - -try: - api_response = api_instance.get_policies_policy_rule(policies_policy_rule_id, policy) - pprint(api_response) -except ApiException as e: - print("Exception when calling NetworkFirewallApi->get_policies_policy_rule: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **policies_policy_rule_id** | **str**| View a network firewall rule. | - **policy** | **str**| | - -### Return type - -[**PoliciesPolicyRules**](PoliciesPolicyRules.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **list_policies_policy_rules** -> PoliciesPolicyRulesExtended list_policies_policy_rules(policy, dir=dir, limit=limit, resume=resume, sort=sort) - - - -Get a list of network firewall rules. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkFirewallApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -policy = 'policy_example' # str | -dir = 'dir_example' # str | The direction of the sort. (optional) -limit = 56 # int | Return no more than this many results at once (see resume). (optional) -resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) -sort = 'sort_example' # str | The field that will be used for sorting. (optional) - -try: - api_response = api_instance.list_policies_policy_rules(policy, dir=dir, limit=limit, resume=resume, sort=sort) - pprint(api_response) -except ApiException as e: - print("Exception when calling NetworkFirewallApi->list_policies_policy_rules: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **policy** | **str**| | - **dir** | **str**| The direction of the sort. | [optional] - **limit** | **int**| Return no more than this many results at once (see resume). | [optional] - **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] - **sort** | **str**| The field that will be used for sorting. | [optional] - -### Return type - -[**PoliciesPolicyRulesExtended**](PoliciesPolicyRulesExtended.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **update_policies_policy_rule** -> update_policies_policy_rule(policies_policy_rule, policies_policy_rule_id, policy, allow_renumbering=allow_renumbering, live=live) - - - -Modify a network firewall rule. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkFirewallApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -policies_policy_rule = isilon_sdk.v9_11_0.PoliciesPolicyRule() # PoliciesPolicyRule | -policies_policy_rule_id = 'policies_policy_rule_id_example' # str | Modify a network firewall rule. -policy = 'policy_example' # str | -allow_renumbering = true # bool | Indicates whether to allow renumbering of other rules when an index already exists (optional) -live = true # bool | Live flag can only be used with active rules. Update will take effect immediately on all related network pools. (optional) - -try: - api_instance.update_policies_policy_rule(policies_policy_rule, policies_policy_rule_id, policy, allow_renumbering=allow_renumbering, live=live) -except ApiException as e: - print("Exception when calling NetworkFirewallApi->update_policies_policy_rule: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **policies_policy_rule** | [**PoliciesPolicyRule**](PoliciesPolicyRule.md)| | - **policies_policy_rule_id** | **str**| Modify a network firewall rule. | - **policy** | **str**| | - **allow_renumbering** | **bool**| Indicates whether to allow renumbering of other rules when an index already exists | [optional] - **live** | **bool**| Live flag can only be used with active rules. Update will take effect immediately on all related network pools. | [optional] - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkInterfaceName.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkInterfaceName.md deleted file mode 100644 index ca75b3ffe..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkInterfaceName.md +++ /dev/null @@ -1,11 +0,0 @@ -# NetworkInterfaceName - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**ethernet** | **list[str]** | List of supported ethernet interface names. | [optional] -**infiniband** | **list[str]** | List of supported infiniband interface names. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkInterfaceNames.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkInterfaceNames.md deleted file mode 100644 index 342e2b46e..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkInterfaceNames.md +++ /dev/null @@ -1,11 +0,0 @@ -# NetworkInterfaceNames - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**interface_names** | [**list[NetworkInterfaceName]**](NetworkInterfaceName.md) | | [optional] -**total** | **int** | Total number of items available. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkPingPing.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkPingPing.md deleted file mode 100644 index bb71249c7..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkPingPing.md +++ /dev/null @@ -1,13 +0,0 @@ -# NetworkPingPing - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**error** | **str** | Error message from the ping action if failed | [optional] -**id** | **int** | Ping result identifier | [optional] -**pong** | **bool** | Result of the ping action | [optional] -**uri** | **str** | A valid URI pointing to the data storage | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsLock.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsLock.md deleted file mode 100644 index 6660c6f42..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsLock.md +++ /dev/null @@ -1,18 +0,0 @@ -# NfsLock - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**client** | **str** | The client host name, FQDN, or IP. | [optional] -**client_id** | **int** | The client ID. | [optional] -**created** | **int** | Specifies the UNIX Epoch time that the lock was created. | [optional] -**id** | **str** | The lock ID. | [optional] -**lin** | **int** | The logical inode number (LIN) of the locked resource. | [optional] -**lock_type** | **str** | The type of lock. | [optional] -**path** | **str** | | [optional] -**range** | **list[int]** | The byte range within the file that is locked. | [optional] -**version** | **str** | NFS major version: v3 or v4 | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsLocks.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsLocks.md deleted file mode 100644 index 5b8d91e72..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsLocks.md +++ /dev/null @@ -1,12 +0,0 @@ -# NfsLocks - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**errors** | [**list[NodeStatusCpuError]**](NodeStatusCpuError.md) | | [optional] -**locks** | [**list[NfsLock]**](NfsLock.md) | | [optional] -**total** | **int** | Total number of items available. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsWaiters.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsWaiters.md deleted file mode 100644 index 41ca570df..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsWaiters.md +++ /dev/null @@ -1,12 +0,0 @@ -# NfsWaiters - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**errors** | [**list[NodeStatusCpuError]**](NodeStatusCpuError.md) | | [optional] -**total** | **int** | Total number of items available. | [optional] -**waiters** | [**list[NfsLock]**](NfsLock.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusDriveSecurityLevel.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusDriveSecurityLevel.md deleted file mode 100644 index 94188d9a7..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusDriveSecurityLevel.md +++ /dev/null @@ -1,12 +0,0 @@ -# NodeStatusDriveSecurityLevel - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**errors** | [**list[NodeStatusCpuError]**](NodeStatusCpuError.md) | A list of errors encountered by the individual nodes involved in this request, or an empty list if there were no errors. | [optional] -**nodes** | [**list[NodeStatusDriveSecurityLevelNode]**](NodeStatusDriveSecurityLevelNode.md) | The responses from the individual nodes involved in this request. | [optional] -**total** | **int** | The total number of nodes responding. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusDriveSecurityLevelNode.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusDriveSecurityLevelNode.md deleted file mode 100644 index 427a615e2..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusDriveSecurityLevelNode.md +++ /dev/null @@ -1,14 +0,0 @@ -# NodeStatusDriveSecurityLevelNode - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**error** | **str** | Error message, if the HTTP status returned from this node was not 200. | [optional] -**id** | **int** | Node ID (Device Number) of a node. | [optional] -**lnn** | **int** | Logical Node Number (LNN) of a node. | [optional] -**sed_compliance_level** | **str** | String representation of this node's SED compliance level. | [optional] -**status** | **int** | Status of the HTTP response from this node if not 200. If 200, this field does not appear. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNodeDriveSecurityLevel.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNodeDriveSecurityLevel.md deleted file mode 100644 index 8dcc0ebea..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNodeDriveSecurityLevel.md +++ /dev/null @@ -1,10 +0,0 @@ -# NodeStatusNodeDriveSecurityLevel - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**sed_compliance_level** | **str** | String representation of this node's SED compliance level. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthCertificate.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthCertificate.md deleted file mode 100644 index 19a8287cb..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthCertificate.md +++ /dev/null @@ -1,10 +0,0 @@ -# OauthCertificate - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**is_current** | **bool** | Indicates whether this is the current certificate to be used by the service. When is_current is false for a certificate, that certificate will not be used by the service. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthCertificateCreateParams.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthCertificateCreateParams.md deleted file mode 100644 index 4793eeb0a..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthCertificateCreateParams.md +++ /dev/null @@ -1,16 +0,0 @@ -# OauthCertificateCreateParams - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**certificate** | **str** | The certificate content encoded as PEM string (including header, footer and line break). | -**certificate_format** | **str** | The encoding format of the certificate string. | -**passphrase** | **str** | Passphrase used to encrypt private key. | [optional] -**private_key** | **str** | PEM encoded (including header, footer and line break) private key following encrypted PKCS8. | [optional] -**scope** | **str** | Scope narrows the application of a certificate to a specific instance of a service. | [optional] -**service** | **str** | The kind of the service for which the certificate is used. | -**type** | **str** | Whether the certificate is used as client or server certificate, and whether it is a CA certificate. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthCertificates.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthCertificates.md deleted file mode 100644 index ecb483244..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthCertificates.md +++ /dev/null @@ -1,25 +0,0 @@ -# OauthCertificates - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**cert_fingerprint** | **str** | The hexadecimal representation of the certificate hash, using SHA-256 hash algorithm. | [optional] -**certificate** | **str** | The certificate content encoded as PEM string (including header, footer and line break). | [optional] -**common_name** | **str** | The fully qualified domain name of the certificate. | [optional] -**id** | **str** | Unique identifier of certificate. | [optional] -**is_current** | **bool** | Indicates whether this is the current certificate to be used by the service. When is_current is false for a certificate, that certificate will not be used by the service. | [optional] -**is_valid** | **bool** | Indicates whether this is a valid certificate. | [optional] -**issuer** | **str** | Distinguished name of the certificate issuer. | [optional] -**scope** | **str** | Scope narrows the application of a certificate to a specific instance of a service. | [optional] -**service** | **str** | The kind of the service for which the certificate is used. | [optional] -**signature_algorithm** | **str** | The kind of signature algorithm used for the certificate. | [optional] -**signature_hash_algorithm** | **str** | The kind of signature hash algorithm used for the certificate. | [optional] -**subject** | **str** | Certificate subject field extracted from the certificate. | [optional] -**subject_alternative_names** | **list[str]** | Array of host names of the component to secure, as defined by the RFC5280 subjectAltName attribute. | [optional] -**type** | **str** | Whether the certificate is used as client or server certificate, and whether it is a CA certificate. | [optional] -**valid_from_timestamp** | **str** | The date in '%Y-%m-%dT%H:%M:%SZ' format when the certificate becomes valid. | [optional] -**valid_to_timestamp** | **str** | The date in '%Y-%m-%dT%H:%M:%SZ' format when the certificate is no longer valid. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthCertificatesExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthCertificatesExtended.md deleted file mode 100644 index f25e59363..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthCertificatesExtended.md +++ /dev/null @@ -1,10 +0,0 @@ -# OauthCertificatesExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**certificates** | [**list[OauthCertificates]**](OauthCertificates.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthOauth2Client.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthOauth2Client.md deleted file mode 100644 index 9094b0191..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthOauth2Client.md +++ /dev/null @@ -1,14 +0,0 @@ -# OauthOauth2Client - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**authorization_code_flow** | **bool** | When true, the authorization code flow will be supported. | [optional] -**client_name** | **str** | User friendly name for OAuth2 client. | [optional] -**client_security_level** | **str** | TRUSTED if the refresh token can be returned in the client credential flow. | [optional] -**redirect_uris** | **list[str]** | Array of URIs to which the client wants to redirect. | [optional] -**token_exchange_enabled** | **bool** | When true, the token exchange flow will be supported. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthOauth2ClientCreateParams.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthOauth2ClientCreateParams.md deleted file mode 100644 index 2c4e86097..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthOauth2ClientCreateParams.md +++ /dev/null @@ -1,14 +0,0 @@ -# OauthOauth2ClientCreateParams - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**authorization_code_flow** | **bool** | When true, the authorization code flow will be supported. | -**client_name** | **str** | User friendly name for OAuth2 client. | -**client_security_level** | **str** | TRUSTED if the refresh token can be returned in the client credential flow. | [optional] -**redirect_uris** | **list[str]** | Array of URIs to which the client wants to redirect. | -**token_exchange_enabled** | **bool** | When true, the token exchange flow will be supported. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthOauth2Clients.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthOauth2Clients.md deleted file mode 100644 index 16cf935bd..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthOauth2Clients.md +++ /dev/null @@ -1,15 +0,0 @@ -# OauthOauth2Clients - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**authorization_code_flow** | **bool** | When true, the authorization code flow will be supported. | [optional] -**client_name** | **str** | User friendly name for OAuth2 client. | [optional] -**client_security_level** | **str** | TRUSTED if the refresh token can be returned in the client credential flow. | [optional] -**id** | **str** | Unique identifier of OAuth2 client. | [optional] -**redirect_uris** | **list[str]** | Array of URIs to which the client wants to redirect. | [optional] -**token_exchange_enabled** | **bool** | When true, the token exchange flow will be supported. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthOauth2ClientsExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthOauth2ClientsExtended.md deleted file mode 100644 index 8cec0ee42..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthOauth2ClientsExtended.md +++ /dev/null @@ -1,10 +0,0 @@ -# OauthOauth2ClientsExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**oauth2clients** | [**list[OauthOauth2Clients]**](OauthOauth2Clients.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthOauth2TokenExchange.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthOauth2TokenExchange.md deleted file mode 100644 index 7e0a350c4..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthOauth2TokenExchange.md +++ /dev/null @@ -1,12 +0,0 @@ -# OauthOauth2TokenExchange - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**customer_client_id** | **str** | External client created by customer IdP for customer server application, this client generates the original token to be exchanged. | [optional] -**customer_metadata_url** | **str** | URL to query client token signing public key (or certificate). | [optional] -**oauth2_client_id** | **str** | Unique identifier of the OAuth2 client. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthOauth2TokenExchangeCreateParams.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthOauth2TokenExchangeCreateParams.md deleted file mode 100644 index 729cfc582..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthOauth2TokenExchangeCreateParams.md +++ /dev/null @@ -1,12 +0,0 @@ -# OauthOauth2TokenExchangeCreateParams - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**customer_client_id** | **str** | External client created by customer IdP for customer server application, this client generates the original token to be exchanged. | -**customer_metadata_url** | **str** | URL to query client token signing public key (or certificate). | -**oauth2_client_id** | **str** | Unique identifier of the OAuth2 client. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthOauth2TokenExchanges.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthOauth2TokenExchanges.md deleted file mode 100644 index 416373388..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthOauth2TokenExchanges.md +++ /dev/null @@ -1,13 +0,0 @@ -# OauthOauth2TokenExchanges - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**customer_client_id** | **str** | External client created by customer IdP for customer server application, this client generates the original token to be exchanged. | [optional] -**customer_metadata_url** | **str** | URL to query client token signing public key (or certificate). | [optional] -**id** | **str** | Unique identifier of the OAuth2 Token Exchange resource. | [optional] -**oauth2_client_id** | **str** | Unique identifier of the OAuth2 client. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthOauth2TokenExchangesExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthOauth2TokenExchangesExtended.md deleted file mode 100644 index 8044f29b4..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthOauth2TokenExchangesExtended.md +++ /dev/null @@ -1,10 +0,0 @@ -# OauthOauth2TokenExchangesExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**oauth2_token_exchanges** | [**list[OauthOauth2TokenExchanges]**](OauthOauth2TokenExchanges.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthSettings.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthSettings.md deleted file mode 100644 index 9eb2306ad..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthSettings.md +++ /dev/null @@ -1,10 +0,0 @@ -# OauthSettings - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**settings** | [**OauthSettingsSettings**](OauthSettingsSettings.md) | Settings for Platform API OAuth function. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthSettingsSettings.md deleted file mode 100644 index ddf647bad..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/OauthSettingsSettings.md +++ /dev/null @@ -1,10 +0,0 @@ -# OauthSettingsSettings - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**oauth_enabled** | **bool** | Indicates whether OAuth is enabled for the access zone. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/OsApi.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/OsApi.md deleted file mode 100644 index 5441061b3..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/OsApi.md +++ /dev/null @@ -1,57 +0,0 @@ -# isilon_sdk.v9_11_0.OsApi - -All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**get_os_security**](OsApi.md#get_os_security) | **GET** /platform/16/os/security | - - -# **get_os_security** -> OsSecurity get_os_security() - - - -Per Node OS Security settings status - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.OsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_os_security() - pprint(api_response) -except ApiException as e: - print("Exception when calling OsApi->get_os_security: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**OsSecurity**](OsSecurity.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/OsSecurityNode.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/OsSecurityNode.md deleted file mode 100644 index 45ffeffb1..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/OsSecurityNode.md +++ /dev/null @@ -1,22 +0,0 @@ -# OsSecurityNode - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**id** | **int** | Sequence ID. | [optional] -**kern_elf32_allow_wx** | **bool** | [ELF32] Allow pages to be mapped simultaneously writable and executable. | [optional] -**kern_elf32_aslr_enable** | **bool** | [ELF32] Enable address map randomization. | [optional] -**kern_elf32_aslr_pie_enable** | **bool** | [ELF32] Enable address map randomization for PIE binaries. | [optional] -**kern_elf32_aslr_stack_gap** | **int** | [ELF32] Maximum percentage of main stack to waste on a random gap. | [optional] -**kern_elf32_nxstack** | **bool** | [ELF32] Enable non-executable stack. | [optional] -**kern_elf64_allow_wx** | **bool** | [ELF64] Allow pages to be mapped simultaneously writable and executable. | [optional] -**kern_elf64_aslr_enable** | **bool** | [ELF64] Enable address map randomization. | [optional] -**kern_elf64_aslr_pie_enable** | **bool** | [ELF64] Enable address map randomization for PIE binaries. | [optional] -**kern_elf64_aslr_stack_gap** | **int** | [ELF32] Maximum percentage of main stack to waste on a random gap. | [optional] -**kern_elf64_nxstack** | **bool** | [ELF64] Enable non-executable stack. | [optional] -**lnn** | **int** | Logical Node Number. | [optional] -**vm_aslr_restarts** | **int** | Number of aslr failures. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PapiSettingsChildSettings.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/PapiSettingsChildSettings.md deleted file mode 100644 index f46b0164a..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PapiSettingsChildSettings.md +++ /dev/null @@ -1,12 +0,0 @@ -# PapiSettingsChildSettings - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**child_limit** | **int** | The number of PAPI requests that can be processed concurrently. If child_limit = 0, then it is set to child_limit_ceiling. If child_limit <= 2, then it is set to 2. | [optional] -**child_limit_ceiling** | **int** | Max value of child_limit that can be controlled. | [optional] -**child_limit_floor** | **int** | Min value of child_limit that can be controlled. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PapiSettingsExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/PapiSettingsExtended.md deleted file mode 100644 index d6bcffb50..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PapiSettingsExtended.md +++ /dev/null @@ -1,13 +0,0 @@ -# PapiSettingsExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**auto_configure_child_limit** | **bool** | If true, PAPI automatically configures the child settings. | [optional] [default to True] -**child_settings** | [**PapiSettingsChildSettings**](PapiSettingsChildSettings.md) | This schema describes various values related to PAPI children. | [optional] -**config_lock_timeout** | **int** | Time out limit of PAPI Configuration lock request. | [optional] -**enable_config_lock_feature** | **bool** | If true, PAPI configuration lock feature is enabled. | [optional] [default to True] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceSettingsExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceSettingsExtended.md deleted file mode 100644 index 320688e06..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceSettingsExtended.md +++ /dev/null @@ -1,27 +0,0 @@ -# PerformanceSettingsExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**client_impact** | [**PerformanceSettingsSettingsClientImpact**](PerformanceSettingsSettingsClientImpact.md) | This indicates how much this workload can impact clients. The thresholds are added to the latency thresholds for computing the throttling limits. | [optional] -**cpu_limit_us** | [**PerformanceSettingsSettingsCpuLimitUs**](PerformanceSettingsSettingsCpuLimitUs.md) | | [optional] -**disk_read_limit** | [**PerformanceSettingsSettingsCpuLimitUs**](PerformanceSettingsSettingsCpuLimitUs.md) | | [optional] -**disk_write_limit** | [**PerformanceSettingsSettingsCpuLimitUs**](PerformanceSettingsSettingsCpuLimitUs.md) | | [optional] -**health_count_interval_day** | **int** | The length of time, in days, after which SmartThrottling restarts its count of cluster health states. This count will be added to a persistent set of counters. | [optional] -**main_loop_timeout_sec** | **int** | Maximum time the main isi_pp_d Leader's loop will take to complete, in seconds. | [optional] -**max_filter_count** | **int** | The maximum number of filters that can be applied to a configured performance dataset. | [optional] -**max_stat_size** | **int** | The maximum size in bytes of a single performance dataset sample. | [optional] -**max_top_n_collection_count** | **int** | The maximum valid value for the 'top_n_collection_count' setting. | [optional] -**max_workload_count** | **int** | The maximum number of workloads that can be pinned to a configured performance dataset. | [optional] -**protocol_ops_limit_enabled** | **bool** | Limit workload performance by protocol ops. | [optional] -**protocol_ops_limit_for_zero_curr_protocol_ops** | **int** | Protocol ops limit to set when current protocol ops on a node is zero. | [optional] -**stats_d_query_interval_sec** | **int** | The number of seconds between consecutive queries to isi_stats_d. | [optional] -**stats_d_query_timeout_sec** | **int** | The number of seconds before a query to isi_stats_d times out. | [optional] -**target_disk_time_in_queue_ms** | **float** | The time in disk queue threshold (in milliseconds) beyond which Partitioned Performance considers a node to be degraded. | [optional] -**target_protocol_read_latency_usec** | **float** | The read latency threshold (in microseconds) beyond which Partitioned Performance considers a node to be degraded. | [optional] -**target_protocol_write_latency_usec** | **float** | The write latency threshold (in microseconds) beyond which Partitioned Performance considers a node to be degraded. | [optional] -**top_n_collection_count** | **int** | The number of highest resource-consuming workloads tracked and collected by the system per configured performance dataset. The number of workloads pinned to a configured performance dataset does not count towards this value. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceSettingsSettings.md deleted file mode 100644 index 90bbe279d..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceSettingsSettings.md +++ /dev/null @@ -1,28 +0,0 @@ -# PerformanceSettingsSettings - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**client_impact** | [**PerformanceSettingsSettingsClientImpact**](PerformanceSettingsSettingsClientImpact.md) | This indicates how much this workload can impact clients. The thresholds are added to the latency thresholds for computing the throttling limits. | [optional] -**cpu_limit_us** | [**PerformanceSettingsSettingsCpuLimitUs**](PerformanceSettingsSettingsCpuLimitUs.md) | | [optional] -**disk_read_limit** | [**PerformanceSettingsSettingsCpuLimitUs**](PerformanceSettingsSettingsCpuLimitUs.md) | | [optional] -**disk_write_limit** | [**PerformanceSettingsSettingsCpuLimitUs**](PerformanceSettingsSettingsCpuLimitUs.md) | | [optional] -**health_count_interval_day** | **int** | The length of time, in days, after which SmartThrottling restarts its count of cluster health states. This count will be added to a persistent set of counters. | [optional] -**main_loop_timeout_sec** | **int** | Maximum time the main isi_pp_d Leader's loop will take to complete, in seconds. | [optional] -**max_dataset_count** | **int** | The maximum number of datasets that can be configured on the system. | -**max_filter_count** | **int** | The maximum number of filters that can be applied to a configured performance dataset. | -**max_stat_size** | **int** | The maximum size in bytes of a single performance dataset sample. | -**max_top_n_collection_count** | **int** | The maximum valid value for the 'top_n_collection_count' setting. | -**max_workload_count** | **int** | The maximum number of workloads that can be pinned to a configured performance dataset. | -**protocol_ops_limit_enabled** | **bool** | Limit workload performance by protocol ops. | [optional] -**protocol_ops_limit_for_zero_curr_protocol_ops** | **int** | Protocol ops limit to set when current protocol ops on a node is zero. | [optional] -**stats_d_query_interval_sec** | **int** | The number of seconds between consecutive queries to isi_stats_d. | [optional] -**stats_d_query_timeout_sec** | **int** | The number of seconds before a query to isi_stats_d times out. | [optional] -**target_disk_time_in_queue_ms** | **float** | The time in disk queue threshold (in milliseconds) beyond which Partitioned Performance considers a node to be degraded. | [optional] -**target_protocol_read_latency_usec** | **float** | The read latency threshold (in microseconds) beyond which Partitioned Performance considers a node to be degraded. | [optional] -**target_protocol_write_latency_usec** | **float** | The write latency threshold (in microseconds) beyond which Partitioned Performance considers a node to be degraded. | [optional] -**top_n_collection_count** | **int** | The number of highest resource-consuming workloads tracked and collected by the system per configured performance dataset. The number of workloads pinned to a configured performance dataset does not count towards this value. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceSettingsSettingsClientImpact.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceSettingsSettingsClientImpact.md deleted file mode 100644 index 49b1d26e0..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceSettingsSettingsClientImpact.md +++ /dev/null @@ -1,13 +0,0 @@ -# PerformanceSettingsSettingsClientImpact - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**impact_high** | **float** | Modifier based on the client_impact value | [optional] -**impact_low** | **float** | Modifier based on the client_impact value | [optional] -**impact_medium** | **float** | Modifier based on the client_impact value | [optional] -**impact_unset** | **float** | Modifier based on the client_impact value | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceSettingsSettingsCpuLimitUs.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceSettingsSettingsCpuLimitUs.md deleted file mode 100644 index d65ee89dc..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceSettingsSettingsCpuLimitUs.md +++ /dev/null @@ -1,15 +0,0 @@ -# PerformanceSettingsSettingsCpuLimitUs - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**base_limit** | **int** | Base value for the resource limit. This value will be used to compute final workload's limits. | [optional] -**health_modifier** | [**PerformanceSettingsSettingsCpuLimitUsHealthModifier**](PerformanceSettingsSettingsCpuLimitUsHealthModifier.md) | | [optional] -**impact_multiplier** | [**PerformanceSettingsSettingsCpuLimitUsImpactMultiplier**](PerformanceSettingsSettingsCpuLimitUsImpactMultiplier.md) | | [optional] -**max_health_multiplier_unhealthy** | **float** | Maximum multiplier computed from cluster's health when the cluster is not healthy | [optional] -**min_health_multiplier** | **float** | Minimum multiplier computed from cluster's health. | [optional] -**starting_health_multiplier** | **float** | Starting health multiplier when the workload is created | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceSettingsSettingsCpuLimitUsHealthModifier.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceSettingsSettingsCpuLimitUsHealthModifier.md deleted file mode 100644 index 94eeae9c1..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceSettingsSettingsCpuLimitUsHealthModifier.md +++ /dev/null @@ -1,13 +0,0 @@ -# PerformanceSettingsSettingsCpuLimitUsHealthModifier - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**impact_high** | [**PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh**](PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh.md) | | [optional] -**impact_low** | [**PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh**](PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh.md) | | [optional] -**impact_medium** | [**PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh**](PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh.md) | | [optional] -**impact_unset** | [**PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh**](PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh.md deleted file mode 100644 index 76fba2ec0..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh.md +++ /dev/null @@ -1,12 +0,0 @@ -# PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**at_risk** | **float** | The modifier to the health multiplier for the respective impact and health level | [optional] -**healthy** | **float** | The modifier to the health multiplier for the respective impact and health level | [optional] -**unhealthy** | **float** | The modifier to the health multiplier for the respective impact and health level | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceSettingsSettingsCpuLimitUsImpactMultiplier.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceSettingsSettingsCpuLimitUsImpactMultiplier.md deleted file mode 100644 index 52565d676..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceSettingsSettingsCpuLimitUsImpactMultiplier.md +++ /dev/null @@ -1,13 +0,0 @@ -# PerformanceSettingsSettingsCpuLimitUsImpactMultiplier - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**impact_high** | **float** | The multiplier to apply for the respective impact level | [optional] -**impact_low** | **float** | The multiplier to apply for the respective impact level | [optional] -**impact_medium** | **float** | The multiplier to apply for the respective impact level | [optional] -**impact_unset** | **float** | The multiplier to apply for the respective impact level | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoliciesPolicyRule.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/PoliciesPolicyRule.md deleted file mode 100644 index 1024d192e..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoliciesPolicyRule.md +++ /dev/null @@ -1,17 +0,0 @@ -# PoliciesPolicyRule - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**action** | **str** | Rule action | [optional] -**description** | **str** | A description of the firewall rule. | [optional] -**dst_ports** | [**PoliciesPolicyRuleDstPorts**](PoliciesPolicyRuleDstPorts.md) | Customer specified protocols or OneFS default services's protocols for destination control | [optional] -**index** | **int** | Firewall rule index in policy | [optional] -**name** | **str** | The name of the firewall rule. | [optional] -**protocol** | **str** | Firewall rule set on protocol | [optional] -**src_networks** | **list[str]** | Source Networks | [optional] -**src_ports** | [**PoliciesPolicyRuleDstPorts**](PoliciesPolicyRuleDstPorts.md) | Customer specified protocols or OneFS default services's protocols for source control | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoliciesPolicyRuleCreateParams.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/PoliciesPolicyRuleCreateParams.md deleted file mode 100644 index 781b58068..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoliciesPolicyRuleCreateParams.md +++ /dev/null @@ -1,18 +0,0 @@ -# PoliciesPolicyRuleCreateParams - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**action** | **str** | Rule action | [optional] -**description** | **str** | A description of the firewall rule. | [optional] -**dst_ports** | [**PoliciesPolicyRuleDstPorts**](PoliciesPolicyRuleDstPorts.md) | Customer specified protocols or OneFS default services's protocols for destination control | [optional] -**id** | **str** | Unique firewall rule ID | [optional] -**index** | **int** | Firewall rule index in policy | [optional] -**name** | **str** | The name of the firewall rule. | -**protocol** | **str** | Firewall rule set on protocol | [optional] -**src_networks** | **list[str]** | Source Networks | [optional] -**src_ports** | [**PoliciesPolicyRuleDstPorts**](PoliciesPolicyRuleDstPorts.md) | Customer specified protocols or OneFS default services's protocols for source control | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoliciesPolicyRuleDstPorts.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/PoliciesPolicyRuleDstPorts.md deleted file mode 100644 index 6e5895350..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoliciesPolicyRuleDstPorts.md +++ /dev/null @@ -1,11 +0,0 @@ -# PoliciesPolicyRuleDstPorts - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**port_numbers** | **list[int]** | Firewall rule acting on the indicated port number. | [optional] -**services_name** | **list[str]** | Firewall rule on the specified services. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoliciesPolicyRules.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/PoliciesPolicyRules.md deleted file mode 100644 index 77b0c60d1..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoliciesPolicyRules.md +++ /dev/null @@ -1,10 +0,0 @@ -# PoliciesPolicyRules - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**rules** | [**list[PoliciesPolicyRulesRule]**](PoliciesPolicyRulesRule.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoliciesPolicyRulesExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/PoliciesPolicyRulesExtended.md deleted file mode 100644 index ad7c69ab6..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoliciesPolicyRulesExtended.md +++ /dev/null @@ -1,12 +0,0 @@ -# PoliciesPolicyRulesExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**rules** | [**list[PoliciesPolicyRulesRule]**](PoliciesPolicyRulesRule.md) | | [optional] -**resume** | **str** | Provide this token as the 'resume' query argument to continue listing results. | [optional] -**total** | **int** | Total number of items available. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoliciesPolicyRulesRule.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/PoliciesPolicyRulesRule.md deleted file mode 100644 index 384f15b56..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoliciesPolicyRulesRule.md +++ /dev/null @@ -1,18 +0,0 @@ -# PoliciesPolicyRulesRule - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**action** | **str** | Rule action | [optional] -**description** | **str** | A description of the firewall rule. | [optional] -**dst_ports** | [**PoliciesPolicyRuleDstPorts**](PoliciesPolicyRuleDstPorts.md) | Customer specified protocols or OneFS default services's protocols for destination control | [optional] -**id** | **str** | Unique firewall rule ID | [optional] -**index** | **int** | Firewall rule index in policy | [optional] -**name** | **str** | The name of the firewall rule. | [optional] -**protocol** | **str** | Firewall rule set on protocol | [optional] -**src_networks** | **list[str]** | Source Networks | [optional] -**src_ports** | [**PoliciesPolicyRuleDstPorts**](PoliciesPolicyRuleDstPorts.md) | Customer specified protocols or OneFS default services's protocols for source control | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PolicyLastJob.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/PolicyLastJob.md deleted file mode 100644 index 32dcd08d9..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PolicyLastJob.md +++ /dev/null @@ -1,10 +0,0 @@ -# PolicyLastJob - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**policy_job_details** | [**PolicyLastJobPolicyJobDetails**](PolicyLastJobPolicyJobDetails.md) | job ID and last execution time of the policy | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PolicyLastJobPolicyJobDetails.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/PolicyLastJobPolicyJobDetails.md deleted file mode 100644 index 2f5142957..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PolicyLastJobPolicyJobDetails.md +++ /dev/null @@ -1,11 +0,0 @@ -# PolicyLastJobPolicyJobDetails - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**job_id** | **int** | Unique Job ID. | [optional] -**last_execution_time** | **int** | The time when the last job for the policy was executed. The time is in seconds past the epoch | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesCertExtractItem.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesCertExtractItem.md deleted file mode 100644 index 9c5b1f4fd..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesCertExtractItem.md +++ /dev/null @@ -1,11 +0,0 @@ -# ProvidersSamlServicesCertExtractItem - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**data** | **str** | PEM-encoded certificate. | [optional] -**path** | **str** | Path to the PEM-encoded certificate. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesIdp.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesIdp.md deleted file mode 100644 index bebabc652..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesIdp.md +++ /dev/null @@ -1,17 +0,0 @@ -# ProvidersSamlServicesIdp - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**entity_id** | **str** | Unique identifier of the IDP. | [optional] -**id** | **str** | Unique identifier of a SAML service resource. | [optional] -**login** | [**ProvidersSamlServicesIdpLogin**](ProvidersSamlServicesIdpLogin.md) | Login endpoint of the IDP. This specifies the method and location PowerScale will use to send AuthnRequest messages to the IDP. | [optional] -**logout** | [**ProvidersSamlServicesIdpLogout**](ProvidersSamlServicesIdpLogout.md) | | [optional] -**metadata** | **str** | Metadata XML data of the SAML provider. | [optional] -**metadata_location** | **str** | Metadata location of the SAML provider. | [optional] -**signing_certificate** | **str** | PEM-encoded certificate used to verify messages from the IDP. | [optional] -**signing_certificate_path** | **str** | Path to the PEM-encoded certificate used to verify messages from the IDP. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesIdpCreateParams.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesIdpCreateParams.md deleted file mode 100644 index b84380082..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesIdpCreateParams.md +++ /dev/null @@ -1,17 +0,0 @@ -# ProvidersSamlServicesIdpCreateParams - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**entity_id** | **str** | Unique identifier of the IDP. | [optional] -**id** | **str** | Unique identifier of a SAML service resource. | -**login** | [**ProvidersSamlServicesIdpLogin**](ProvidersSamlServicesIdpLogin.md) | Login endpoint of the IDP. This specifies the method and location PowerScale will use to send AuthnRequest messages to the IDP. | [optional] -**logout** | [**ProvidersSamlServicesIdpLogout**](ProvidersSamlServicesIdpLogout.md) | | [optional] -**metadata** | **str** | Metadata XML data of the SAML provider. | [optional] -**metadata_location** | **str** | Metadata location of the SAML provider. | [optional] -**signing_certificate** | **str** | PEM-encoded certificate used to verify messages from the IDP. | [optional] -**signing_certificate_path** | **str** | Path to the PEM-encoded certificate used to verify messages from the IDP. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesIdpLogin.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesIdpLogin.md deleted file mode 100644 index 1bdf15ed9..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesIdpLogin.md +++ /dev/null @@ -1,11 +0,0 @@ -# ProvidersSamlServicesIdpLogin - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**binding** | **str** | SAML binding that PowerScale will use to send messages to the IDP. | [optional] -**url** | **str** | URL specifying the location of where to send messages. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesIdpLogout.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesIdpLogout.md deleted file mode 100644 index c6fd3fe3c..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesIdpLogout.md +++ /dev/null @@ -1,12 +0,0 @@ -# ProvidersSamlServicesIdpLogout - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**binding** | **str** | SAML binding that PowerScale will use to send messages to the IDP. | [optional] -**response_url** | **str** | | [optional] -**url** | **str** | URL specifying the location of where to send messages. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesIdps.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesIdps.md deleted file mode 100644 index eefe39b12..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesIdps.md +++ /dev/null @@ -1,10 +0,0 @@ -# ProvidersSamlServicesIdps - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**idps** | [**list[ProvidersSamlServicesIdpsIdp]**](ProvidersSamlServicesIdpsIdp.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesIdpsExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesIdpsExtended.md deleted file mode 100644 index 788434d13..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesIdpsExtended.md +++ /dev/null @@ -1,10 +0,0 @@ -# ProvidersSamlServicesIdpsExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**idps** | [**list[ProvidersSamlServicesIdpsIdpExtended]**](ProvidersSamlServicesIdpsIdpExtended.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesIdpsIdp.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesIdpsIdp.md deleted file mode 100644 index e94767367..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesIdpsIdp.md +++ /dev/null @@ -1,16 +0,0 @@ -# ProvidersSamlServicesIdpsIdp - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**entity_id** | **str** | Unique identifier of the IDP. | [optional] -**id** | **str** | Unique identifier of a SAML service resource. | [optional] -**login** | [**ProvidersSamlServicesIdpLogin**](ProvidersSamlServicesIdpLogin.md) | Login endpoint of the IDP. This specifies the method and location PowerScale will use to send AuthnRequest messages to the IDP. | [optional] -**logout** | [**ProvidersSamlServicesIdpLogout**](ProvidersSamlServicesIdpLogout.md) | | [optional] -**metadata_location** | **str** | Metadata location of the SAML provider. | [optional] -**signing_certificate** | [**CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo**](CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo.md) | Certificate with information about it. | [optional] -**type** | **str** | How the IDP was configured and how it can be updated. When set to \"metadata\" metadata XML was used to configure the IDP and can be used to update it. When set to \"manual\" the IDP was manually configured and can be manually updated. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesIdpsIdpExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesIdpsIdpExtended.md deleted file mode 100644 index 1a2cf65bd..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesIdpsIdpExtended.md +++ /dev/null @@ -1,13 +0,0 @@ -# ProvidersSamlServicesIdpsIdpExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**entity_id** | **str** | Unique identifier of the IDP. | [optional] -**id** | **str** | Unique identifier of a SAML service resource. | [optional] -**login_url** | **str** | URL specifying the location of where to send messages. | [optional] -**logout_url** | **str** | URL specifying the location of where to send messages. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesMetadataExtractItem.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesMetadataExtractItem.md deleted file mode 100644 index 0b33f3d20..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesMetadataExtractItem.md +++ /dev/null @@ -1,12 +0,0 @@ -# ProvidersSamlServicesMetadataExtractItem - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**entity_id** | **str** | When provided the SAML entity ID matching this string will be the IDP data returned. When not provided the SAML metadata must contain a single entity descriptor with a IDP descriptor. | [optional] -**metadata** | **str** | Metadata XML data of the SAML IDP. | [optional] -**metadata_location** | **str** | Path to the SAML IDP metadata. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSettings.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSettings.md deleted file mode 100644 index b417718e1..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSettings.md +++ /dev/null @@ -1,10 +0,0 @@ -# ProvidersSamlServicesSettings - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**settings** | [**ProvidersSamlServicesSettingsSettings**](ProvidersSamlServicesSettingsSettings.md) | Settings for Platform API SAML services. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSettingsSettings.md deleted file mode 100644 index 3e74ef828..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSettingsSettings.md +++ /dev/null @@ -1,10 +0,0 @@ -# ProvidersSamlServicesSettingsSettings - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**sso_enabled** | **bool** | Indicates whether Single Sign On is enabled for the access zone. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSp.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSp.md deleted file mode 100644 index 7978c62ed..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSp.md +++ /dev/null @@ -1,10 +0,0 @@ -# ProvidersSamlServicesSp - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**sp** | [**ProvidersSamlServicesSpSp**](ProvidersSamlServicesSpSp.md) | Returns information about SP | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSpExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSpExtended.md deleted file mode 100644 index e81c7d57f..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSpExtended.md +++ /dev/null @@ -1,17 +0,0 @@ -# ProvidersSamlServicesSpExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**email** | **str** | Email address of SP maintainer. | [optional] -**entity_id** | **str** | Unique identifier of the client (product). | [optional] -**first_name** | **str** | First name of SP maintainer. | [optional] -**hostname** | **str** | Resolvable hostname of the SP in an access zone. | [optional] -**last_name** | **str** | Last name of SP maintainer. | [optional] -**name_id_format** | **str** | SAML NameID format used with the SP. | [optional] -**signing_enabled** | **bool** | Indicates whether signing of requests is enabled for the SP. | [optional] -**user_id** | **str** | ID of SP maintainer. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSpSigningKeySettings.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSpSigningKeySettings.md deleted file mode 100644 index 5b45791c5..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSpSigningKeySettings.md +++ /dev/null @@ -1,10 +0,0 @@ -# ProvidersSamlServicesSpSigningKeySettings - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**settings** | [**ProvidersSamlServicesSpSigningKeySettingsSettings**](ProvidersSamlServicesSpSigningKeySettingsSettings.md) | The SAML SP's signing key settings. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSpSigningKeySettingsSettings.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSpSigningKeySettingsSettings.md deleted file mode 100644 index 4ba711394..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSpSigningKeySettingsSettings.md +++ /dev/null @@ -1,10 +0,0 @@ -# ProvidersSamlServicesSpSigningKeySettingsSettings - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**certificate** | [**ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate**](ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate.md) | Specifies settings to use when generating a new certificate during either a rotation or rekey. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate.md deleted file mode 100644 index 2b9ea1d28..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate.md +++ /dev/null @@ -1,12 +0,0 @@ -# ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**expiration** | **int** | The number of seconds the certificate is valid for after it is created. | [optional] -**key** | [**ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateKey**](ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateKey.md) | Specifies the key parameters used when generating a new certificate. | [optional] -**subject** | [**ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject**](ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject.md) | Specifies the subject used when generating a new certificate. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateKey.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateKey.md deleted file mode 100644 index 0fe047b2a..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateKey.md +++ /dev/null @@ -1,11 +0,0 @@ -# ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateKey - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**bits** | **int** | The number of bits for the key. | [optional] -**type** | **str** | The type of the key. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject.md deleted file mode 100644 index 1a984c65b..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject.md +++ /dev/null @@ -1,15 +0,0 @@ -# ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**common_name** | **str** | | [optional] -**country** | **str** | | [optional] -**locality** | **str** | | [optional] -**organization_units** | **list[str]** | The organization unit(s), OU, to use when generating a new certificate. | [optional] -**organizations** | **list[str]** | The organization(s), O, to use when generating a new certificate. | [optional] -**state_or_province** | **str** | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSpSigningKeyStatus.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSpSigningKeyStatus.md deleted file mode 100644 index 77e7d5ebb..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSpSigningKeyStatus.md +++ /dev/null @@ -1,10 +0,0 @@ -# ProvidersSamlServicesSpSigningKeyStatus - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**status** | [**ProvidersSamlServicesSpSigningKeyStatusStatus**](ProvidersSamlServicesSpSigningKeyStatusStatus.md) | Information about the SAML SP's signing key and certificate. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSpSigningKeyStatusStatus.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSpSigningKeyStatusStatus.md deleted file mode 100644 index c1b43d393..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSpSigningKeyStatusStatus.md +++ /dev/null @@ -1,10 +0,0 @@ -# ProvidersSamlServicesSpSigningKeyStatusStatus - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**certificate** | [**CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate**](CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate.md) | The signing certificate being used to sign messages from the cluster. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSpSp.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSpSp.md deleted file mode 100644 index 82441b2ac..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSamlServicesSpSp.md +++ /dev/null @@ -1,22 +0,0 @@ -# ProvidersSamlServicesSpSp - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**acs_url** | **str** | ACS URL of the SAML provider. | [optional] -**email** | **str** | Email address of SP maintainer. | [optional] -**entity_id** | **str** | Unique identifier of the client (product). | [optional] -**first_name** | **str** | First name of SP maintainer. | [optional] -**hostname** | **str** | Resolvable hostname of the SP in an access zone. | [optional] -**last_name** | **str** | Last name of SP maintainer. | [optional] -**login_url** | **str** | Login URL of the SAML provider. | [optional] -**logout_url** | **str** | Logout URL of the SAML provider. | [optional] -**metadata_location** | **str** | Metadata location of the SAML provider. | [optional] -**name_id_format** | **str** | SAML NameID format used with the SP. | [optional] -**signing_certificate** | [**CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate**](CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate.md) | SAML request signing certificate. | [optional] -**signing_enabled** | **bool** | Indicates whether signing of requests is enabled for the SP. | [optional] -**user_id** | **str** | ID of SP maintainer. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaLicense.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaLicense.md deleted file mode 100644 index a16811e1f..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaLicense.md +++ /dev/null @@ -1,18 +0,0 @@ -# QuotaLicense - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**days_since_expiry** | **int** | Number of days since a license expired. | [optional] -**days_to_expiry** | **int** | Number of days before a license expires. | [optional] -**expiration** | **str** | Date of license expiry. Format is YYYY-MM-DD. It is not included if there is no expiration. Feature is considered expired at end of this day. The cluster time is used to determine expiry. | [optional] -**expired_alert** | **bool** | True when we are generating an alert that this feature has expired. | -**expiring_alert** | **bool** | True when we are generating an alert that this feature is expiring. | -**id** | **str** | Name of the licensed feature. | -**name** | **str** | Name of the licensed feature. | -**status** | **str** | Current status of the license. | -**tiers** | [**list[QuotaLicenseTier]**](QuotaLicenseTier.md) | Tiered License details. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaLicenseTier.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaLicenseTier.md deleted file mode 100644 index 7625e7b6a..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaLicenseTier.md +++ /dev/null @@ -1,17 +0,0 @@ -# QuotaLicenseTier - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**entitlements_exceeded_alerts** | [**list[LicenseLicenseTierEntitlementsExceededAlert]**](LicenseLicenseTierEntitlementsExceededAlert.md) | List of alerts about exceeded entitlements: The following alerts appear when usage of a resource such as a node, an encryption node, or storage capacity exceeds the quantity licensed for that resource. | [optional] -**licensed_drive_capacity** | **int** | Licensed terabyte (TB, 10^12 bytes) drive capacity allocated as storage associated with tier. Included if tier is not NONINF and license is not a base only license. | [optional] -**licensed_node_count** | **int** | Licensed number of nodes in this tier. | [optional] -**licensed_nodes_with_seds_count** | **int** | Licensed number of nodes of this tier that contain self-encrypting drives. Included only if license is ONEFS and tier is not NONINF. | [optional] -**tier** | **str** | OneFS hardware tier. Tier is a number, NONINF, or NO_TIER. NONINF indicates a non infinity tier. NO_TIER indicates a license that is not tier based. | [optional] -**used_drive_capacity** | **int** | Actual terabyte (TB, 10^12 bytes) drive capacity allocated as storage space associated with tier. Included if tier is not NONINF and license is not a base only license. | [optional] -**used_node_count** | **int** | Actual number of nodes in this tier. | [optional] -**used_nodes_with_seds_count** | **int** | Actual number of nodes of this tier that contain self-encrypting drives. Included only if license is ONEFS and if tier is not NONINF. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SecuritySettingsSettings.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SecuritySettingsSettings.md deleted file mode 100644 index 89d17c44e..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SecuritySettingsSettings.md +++ /dev/null @@ -1,12 +0,0 @@ -# SecuritySettingsSettings - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**fips_mode_enabled** | **bool** | Enable OpenSSL FIPS compliance | [optional] -**restricted_shell_enabled** | **bool** | Enable/disable PowerScale Restricted shell. | [optional] -**usb_ports_disabled** | **bool** | Disable USB ports on Cluster | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SedMigrateItem.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SedMigrateItem.md deleted file mode 100644 index 9886582e5..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SedMigrateItem.md +++ /dev/null @@ -1,11 +0,0 @@ -# SedMigrateItem - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**retry** | **bool** | Set to true to retry KMIP migration in the previous direction for errored nodes. e.g. if error occurred after migrate with 'to_server=true', using 'sed/migrate' handler with 'retry=true' will retry migration to server. Similarly, if previous migration was 'to_server=false', retry will try to restore back to local. Also note that, whenever a 'retry' arg is provided to the handler, regardless of true or false, 'to_server' arg will be ignored. i.e. if using the handler with ('retry':true(or false), 'to_server': true), the 'to_server' arg will be ignored and have no effects. | [optional] -**to_server** | **bool** | Set to true to indicate migrating all keys to server. Set to false to indicate restoring all keys back to local. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ServiceTargetPolicies.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ServiceTargetPolicies.md deleted file mode 100644 index 1beb56e0a..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ServiceTargetPolicies.md +++ /dev/null @@ -1,10 +0,0 @@ -# ServiceTargetPolicies - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**policies** | [**list[ServiceTargetPoliciesPolicy]**](ServiceTargetPoliciesPolicy.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ServiceTargetPoliciesExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ServiceTargetPoliciesExtended.md deleted file mode 100644 index 3e3a21df0..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ServiceTargetPoliciesExtended.md +++ /dev/null @@ -1,12 +0,0 @@ -# ServiceTargetPoliciesExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**policies** | [**list[ServiceTargetPoliciesPolicy]**](ServiceTargetPoliciesPolicy.md) | | [optional] -**resume** | **str** | Provide this token as the 'resume' query argument to continue listing results. | [optional] -**total** | **int** | Total number of items available. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ServiceTargetPoliciesPolicy.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/ServiceTargetPoliciesPolicy.md deleted file mode 100644 index f39ff9b33..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ServiceTargetPoliciesPolicy.md +++ /dev/null @@ -1,19 +0,0 @@ -# ServiceTargetPoliciesPolicy - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**failover_failback_state** | **str** | The condition of this policy with respect to sync failover/failback. | -**id** | **str** | The system ID given to this sync policy. | -**last_job_state** | **str** | The state of the last job run for this policy. | -**last_source_coordinator_ip** | **str** | The IP address from which a SyncIQ coordinator daemon most recently connected to this cluster to update it about the progress of a job for this policy. | -**last_update_from_source** | **int** | The last time this cluster was updated with sync information from the source cluster for this policy, in unix epoch seconds. Null if no such update has occurred yet. | [optional] -**legacy_policy** | **bool** | Was this policy defined by a OneFS version earlier than 6.0? (Pre-6.0 policies did not have the target policy concept and canceling from the target side will not be available.) | -**name** | **str** | User-assigned name of this sync policy. | -**source_cluster_guid** | **str** | Unique identifier for the source cluster. | -**source_host** | **str** | Hostname or IP address of sync source cluster. | -**target_path** | **str** | Absolute filesystem path on the target cluster for the sync destination. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsReportsExtendedExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsReportsExtendedExtended.md deleted file mode 100644 index a6f8501f0..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsReportsExtendedExtended.md +++ /dev/null @@ -1,10 +0,0 @@ -# SettingsReportsExtendedExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**settings** | [**SettingsReportsSettingsExtended**](SettingsReportsSettingsExtended.md) | Datamover report related settings | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsReportsSettingsExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsReportsSettingsExtended.md deleted file mode 100644 index 012d56b0f..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsReportsSettingsExtended.md +++ /dev/null @@ -1,11 +0,0 @@ -# SettingsReportsSettingsExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**report_max_age** | **int** | Maximum age (in seconds) of a retained datamover report. Default is 0 (disabled) | [optional] -**report_max_count** | **int** | Maximum number of retained datamover reports. Default is 1000 | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsSessionsExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsSessionsExtended.md deleted file mode 100644 index fb1ab32f4..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsSessionsExtended.md +++ /dev/null @@ -1,11 +0,0 @@ -# SettingsSessionsExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**authentication_mode** | **str** | Platform API authentication mode. Supported modes are 'default' and 'require_sso'. Mode 'default' supports all authenticated sessions. Mode 'require_sso' requires authenticated sessions to originate from a configured SSO provider. | [optional] -**key_rotation** | **int** | The amount of time in seconds before rotating the session signing key with a new key. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsSessionsSettings.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsSessionsSettings.md deleted file mode 100644 index 1a2c3186e..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsSessionsSettings.md +++ /dev/null @@ -1,11 +0,0 @@ -# SettingsSessionsSettings - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**authentication_mode** | **str** | Platform API authentication mode. Supported modes are 'default' and 'require_sso'. Mode 'default' supports all authenticated sessions. Mode 'require_sso' requires authenticated sessions to originate from a configured SSO provider. | [optional] -**key_rotation** | **int** | The amount of time in seconds before rotating the session signing key with a new key. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SubnetsSubnetPoolsPoolExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SubnetsSubnetPoolsPoolExtended.md deleted file mode 100644 index 55535452b..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SubnetsSubnetPoolsPoolExtended.md +++ /dev/null @@ -1,35 +0,0 @@ -# SubnetsSubnetPoolsPoolExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**access_zone** | **str** | Name of a valid access zone to map IP address pool to the zone. | [optional] -**addr_family** | **str** | IP address format. | [optional] -**aggregation_mode** | **str** | OneFS supports the following NIC aggregation modes. 'fec' was renamed to 'loadbalance' in OneFS 9.7. | [optional] -**alloc_method** | **str** | Specifies how IP address allocation is done among pool members. | [optional] -**description** | **str** | A description of the pool. | [optional] -**external_manager** | **str** | Name of the system allocating the IPs for this Network Pool. | [optional] -**firewall_policy** | **str** | Name of the Firewall Policy associated with this Network Pool. | [optional] -**groupnet** | **str** | Name of the groupnet this pool belongs to. | [optional] -**id** | **str** | Unique Pool ID. | [optional] -**ifaces** | [**list[SubnetsSubnetPoolIface]**](SubnetsSubnetPoolIface.md) | List of interface members in this pool. | [optional] -**ipv6_perform_dad** | **bool** | Indicates if the Network Pool should perform IPv6 Duplicate Address Detection when configuring the IPs. Only applies to IPv6 Network Pools. | [optional] -**linklayer** | **str** | Specifies the type of network linklayer this Network Pool uses. | [optional] -**name** | **str** | The name of the pool. It must be unique throughout the given subnet.It's a required field with POST method. | [optional] -**nfs_rroce_only** | **bool** | Indicates that pool contains only RDMA RRoCE capable interfaces. | [optional] -**ranges** | [**list[SubnetsSubnetPoolRange]**](SubnetsSubnetPoolRange.md) | List of IP address ranges in this pool. | [optional] -**rebalance_policy** | **str** | Rebalance policy. | [optional] -**rules** | **list[str]** | Names of the rules in this pool. | [optional] -**sc_connect_policy** | **str** | SmartConnect client connection balancing policy. | [optional] -**sc_dns_zone** | **str** | SmartConnect zone name for the pool. | [optional] -**sc_dns_zone_aliases** | **list[str]** | List of SmartConnect zone aliases (DNS names) to the pool. | [optional] -**sc_failover_policy** | **str** | SmartConnect IP failover policy. | [optional] -**sc_subnet** | **str** | Name of SmartConnect service subnet for this pool. | [optional] -**sc_suspended_nodes** | **list[int]** | List of LNNs showing currently suspended nodes in SmartConnect. | [optional] -**sc_ttl** | **int** | Time to live value for SmartConnect DNS query responses in seconds. | [optional] -**static_routes** | [**list[SubnetsSubnetPoolStaticRoute]**](SubnetsSubnetPoolStaticRoute.md) | List of configured static routes in this network pool | [optional] -**subnet** | **str** | The name of the subnet. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistApi.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistApi.md deleted file mode 100644 index be26fcd3a..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistApi.md +++ /dev/null @@ -1,673 +0,0 @@ -# isilon_sdk.v9_11_0.SupportassistApi - -All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* - -Method | HTTP request | Description -------------- | ------------- | ------------- -[**create_supportassist_data_item**](SupportassistApi.md#create_supportassist_data_item) | **POST** /platform/16/supportassist/data | -[**create_supportassist_payload_item**](SupportassistApi.md#create_supportassist_payload_item) | **POST** /platform/16/supportassist/payload | -[**create_supportassist_task_item**](SupportassistApi.md#create_supportassist_task_item) | **POST** /platform/17/supportassist/task | -[**delete_supportassist_task_by_id**](SupportassistApi.md#delete_supportassist_task_by_id) | **DELETE** /platform/17/supportassist/task/{SupportassistTaskId} | -[**get_supportassist_license**](SupportassistApi.md#get_supportassist_license) | **GET** /platform/16/supportassist/license | -[**get_supportassist_settings**](SupportassistApi.md#get_supportassist_settings) | **GET** /platform/20/supportassist/settings | -[**get_supportassist_status**](SupportassistApi.md#get_supportassist_status) | **GET** /platform/20/supportassist/status | -[**get_supportassist_task_by_id**](SupportassistApi.md#get_supportassist_task_by_id) | **GET** /platform/17/supportassist/task/{SupportassistTaskId} | -[**get_supportassist_terms**](SupportassistApi.md#get_supportassist_terms) | **GET** /platform/16/supportassist/terms | -[**list_supportassist_task**](SupportassistApi.md#list_supportassist_task) | **GET** /platform/17/supportassist/task | -[**update_supportassist_settings**](SupportassistApi.md#update_supportassist_settings) | **PUT** /platform/20/supportassist/settings | -[**update_supportassist_status**](SupportassistApi.md#update_supportassist_status) | **PUT** /platform/20/supportassist/status | -[**update_supportassist_terms**](SupportassistApi.md#update_supportassist_terms) | **PUT** /platform/16/supportassist/terms | - - -# **create_supportassist_data_item** -> CreateResponse create_supportassist_data_item(supportassist_data_item) - - - -SupportAssist task response from ESE to product - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SupportassistApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -supportassist_data_item = isilon_sdk.v9_11_0.SupportassistDataItem() # SupportassistDataItem | - -try: - api_response = api_instance.create_supportassist_data_item(supportassist_data_item) - pprint(api_response) -except ApiException as e: - print("Exception when calling SupportassistApi->create_supportassist_data_item: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **supportassist_data_item** | [**SupportassistDataItem**](SupportassistDataItem.md)| | - -### Return type - -[**CreateResponse**](CreateResponse.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **create_supportassist_payload_item** -> CreateResponse create_supportassist_payload_item(supportassist_payload_item) - - - -Start a payload request task. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SupportassistApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -supportassist_payload_item = isilon_sdk.v9_11_0.SupportassistPayloadItem() # SupportassistPayloadItem | - -try: - api_response = api_instance.create_supportassist_payload_item(supportassist_payload_item) - pprint(api_response) -except ApiException as e: - print("Exception when calling SupportassistApi->create_supportassist_payload_item: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **supportassist_payload_item** | [**SupportassistPayloadItem**](SupportassistPayloadItem.md)| | - -### Return type - -[**CreateResponse**](CreateResponse.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **create_supportassist_task_item** -> CreateSupportassistTaskItemResponse create_supportassist_task_item(supportassist_task_item) - - - -Create a SupportAssist task. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SupportassistApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -supportassist_task_item = isilon_sdk.v9_11_0.SupportassistTaskItem() # SupportassistTaskItem | - -try: - api_response = api_instance.create_supportassist_task_item(supportassist_task_item) - pprint(api_response) -except ApiException as e: - print("Exception when calling SupportassistApi->create_supportassist_task_item: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **supportassist_task_item** | [**SupportassistTaskItem**](SupportassistTaskItem.md)| | - -### Return type - -[**CreateSupportassistTaskItemResponse**](CreateSupportassistTaskItemResponse.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **delete_supportassist_task_by_id** -> delete_supportassist_task_by_id(supportassist_task_id) - - - -Delete a SupportAssist task by ID. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SupportassistApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -supportassist_task_id = 'supportassist_task_id_example' # str | Delete a SupportAssist task by ID. - -try: - api_instance.delete_supportassist_task_by_id(supportassist_task_id) -except ApiException as e: - print("Exception when calling SupportassistApi->delete_supportassist_task_by_id: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **supportassist_task_id** | **str**| Delete a SupportAssist task by ID. | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_supportassist_license** -> SupportassistLicense get_supportassist_license() - - - -License activation status. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SupportassistApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_supportassist_license() - pprint(api_response) -except ApiException as e: - print("Exception when calling SupportassistApi->get_supportassist_license: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**SupportassistLicense**](SupportassistLicense.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_supportassist_settings** -> SupportassistSettings get_supportassist_settings() - - - -List settings. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SupportassistApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_supportassist_settings() - pprint(api_response) -except ApiException as e: - print("Exception when calling SupportassistApi->get_supportassist_settings: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**SupportassistSettings**](SupportassistSettings.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_supportassist_status** -> SupportassistStatus get_supportassist_status() - - - -Get status arguments. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SupportassistApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_supportassist_status() - pprint(api_response) -except ApiException as e: - print("Exception when calling SupportassistApi->get_supportassist_status: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**SupportassistStatus**](SupportassistStatus.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_supportassist_task_by_id** -> SupportassistTask get_supportassist_task_by_id(supportassist_task_id) - - - -Get the status of a SupportAssist task by ID or all tasks from the specified source. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SupportassistApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -supportassist_task_id = 'supportassist_task_id_example' # str | Get the status of a SupportAssist task by ID or all tasks from the specified source. - -try: - api_response = api_instance.get_supportassist_task_by_id(supportassist_task_id) - pprint(api_response) -except ApiException as e: - print("Exception when calling SupportassistApi->get_supportassist_task_by_id: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **supportassist_task_id** | **str**| Get the status of a SupportAssist task by ID or all tasks from the specified source. | - -### Return type - -[**SupportassistTask**](SupportassistTask.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_supportassist_terms** -> SupportassistTerms get_supportassist_terms() - - - -The T&C text for SupportAssist. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SupportassistApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_supportassist_terms() - pprint(api_response) -except ApiException as e: - print("Exception when calling SupportassistApi->get_supportassist_terms: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**SupportassistTerms**](SupportassistTerms.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **list_supportassist_task** -> SupportassistTask list_supportassist_task() - - - -Get all SupportAssist tasks. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SupportassistApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.list_supportassist_task() - pprint(api_response) -except ApiException as e: - print("Exception when calling SupportassistApi->list_supportassist_task: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**SupportassistTask**](SupportassistTask.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **update_supportassist_settings** -> update_supportassist_settings(supportassist_settings) - - - -Modify one or more settings. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SupportassistApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -supportassist_settings = isilon_sdk.v9_11_0.SupportassistSettingsExtended() # SupportassistSettingsExtended | - -try: - api_instance.update_supportassist_settings(supportassist_settings) -except ApiException as e: - print("Exception when calling SupportassistApi->update_supportassist_settings: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **supportassist_settings** | [**SupportassistSettingsExtended**](SupportassistSettingsExtended.md)| | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **update_supportassist_status** -> update_supportassist_status(supportassist_status) - - - -Modify status arguments. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SupportassistApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -supportassist_status = isilon_sdk.v9_11_0.SupportassistStatusExtended() # SupportassistStatusExtended | - -try: - api_instance.update_supportassist_status(supportassist_status) -except ApiException as e: - print("Exception when calling SupportassistApi->update_supportassist_status: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **supportassist_status** | [**SupportassistStatusExtended**](SupportassistStatusExtended.md)| | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **update_supportassist_terms** -> update_supportassist_terms(supportassist_terms) - - - -Setting T&C accepted/rejected status. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SupportassistApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -supportassist_terms = isilon_sdk.v9_11_0.SupportassistTermsExtended() # SupportassistTermsExtended | - -try: - api_instance.update_supportassist_terms(supportassist_terms) -except ApiException as e: - print("Exception when calling SupportassistApi->update_supportassist_terms: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **supportassist_terms** | [**SupportassistTermsExtended**](SupportassistTermsExtended.md)| | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistDataItem.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistDataItem.md deleted file mode 100644 index 93ac153bc..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistDataItem.md +++ /dev/null @@ -1,13 +0,0 @@ -# SupportassistDataItem - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**contract_version** | **str** | Contract Version. | [optional] -**data** | [**SupportassistDataItemData**](SupportassistDataItemData.md) | | [optional] -**payload_type** | **str** | Type of payload request. | -**payload_version** | **str** | Payload version. | [default to '1.0'] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistDataItemData.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistDataItemData.md deleted file mode 100644 index a536adf17..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistDataItemData.md +++ /dev/null @@ -1,14 +0,0 @@ -# SupportassistDataItemData - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**message** | **str** | It has two parts, first part shows status of message second part describes upload status, True-Upload Successful, False-Upload Failed | -**operation** | **str** | Operation type of transaction. | -**sent_transaction_id** | **str** | Payload's sent-transaction-id. It contain the same value as `transaction-id` if one was not supplied as part of the request. If one was supplied with the request, the supplied value will be present here. | [optional] -**status** | **str** | Payload status. | -**transaction_id** | **str** | Payload's transaction ID - matches `x-dell-ese-trans-id` of the response header returned from Product -> ESE /Payload request. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistLicense.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistLicense.md deleted file mode 100644 index d50e4d9d3..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistLicense.md +++ /dev/null @@ -1,11 +0,0 @@ -# SupportassistLicense - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**task** | [**SupportassistLicenseTask**](SupportassistLicenseTask.md) | | [optional] -**warning** | **str** | Error message when license not found | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistLicenseTask.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistLicenseTask.md deleted file mode 100644 index a12b8bc51..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistLicenseTask.md +++ /dev/null @@ -1,20 +0,0 @@ -# SupportassistLicenseTask - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**audit** | [**SupportassistLicenseTaskAudit**](SupportassistLicenseTaskAudit.md) | The audit trail of the task | [optional] -**data** | [**Empty**](Empty.md) | This internal object is a free-form key value store necessary for processing the task. It includes transient data that is necessary to resume processing of a task if it is interrupted. The actual contents of this object are in flux and will be variable depending on the current task source, sub task, and state. | -**description** | **str** | Describe current state detail | [default to 'null'] -**display_state** | **str** | The state of the task should be displayed | -**display_state_history** | **list[str]** | Array showing the history of display_state for this task | -**error_msg** | **str** | The error of the task should be displayed | [optional] [default to 'null'] -**source** | **str** | The source of the task | [optional] -**state** | **str** | The state of the task | [optional] -**sub_state** | **str** | The sub-state of the task | [optional] -**success** | **bool** | The success state of the task | [optional] -**task_id** | **str** | Task ID | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistLicenseTaskAudit.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistLicenseTaskAudit.md deleted file mode 100644 index 4fc08fe24..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistLicenseTaskAudit.md +++ /dev/null @@ -1,11 +0,0 @@ -# SupportassistLicenseTaskAudit - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**state** | [**SupportassistLicenseTaskAuditState**](SupportassistLicenseTaskAuditState.md) | The timestamps of when a task entered a new state | -**sub_state** | [**list[SupportassistLicenseTaskAuditSubStateItem]**](SupportassistLicenseTaskAuditSubStateItem.md) | Audit entries of the task | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistLicenseTaskAuditState.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistLicenseTaskAuditState.md deleted file mode 100644 index 4d631d69c..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistLicenseTaskAuditState.md +++ /dev/null @@ -1,14 +0,0 @@ -# SupportassistLicenseTaskAuditState - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**completed** | **float** | Timestamp when the task was completed | [optional] -**in_progress** | **list[float]** | Timestamps of when the task entered the in_progress state | -**queued** | **float** | Timestamp when the task was submitted | -**retry_wait** | **list[float]** | Timestamps of when the task entered the retry wait state | -**waiting** | **list[float]** | Timestamps of when the task entered the waiting state | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistLicenseTaskAuditSubStateItem.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistLicenseTaskAuditSubStateItem.md deleted file mode 100644 index 511c40933..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistLicenseTaskAuditSubStateItem.md +++ /dev/null @@ -1,15 +0,0 @@ -# SupportassistLicenseTaskAuditSubStateItem - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**api_responds** | **int** | Connectivity API response code. | [optional] -**api_responds_obj** | **str** | Connectivity API response JSON blob. | [optional] -**error** | **str** | The task sub-state error, if any | [optional] -**processing_lnn** | **str** | LNN of node that processed this sub-state | -**state** | **str** | The sub-state of the task | -**time_stamp** | **float** | Timestamp when the task entered this sub-state | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistPayloadItem.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistPayloadItem.md deleted file mode 100644 index 14ea12168..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistPayloadItem.md +++ /dev/null @@ -1,13 +0,0 @@ -# SupportassistPayloadItem - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**payload_type** | **str** | Type of payload request. | -**payload_version** | **str** | Payload version. | [optional] [default to '1.0'] -**sub_type** | **str** | Payload subtype. | [optional] -**timestamp** | **str** | Current Timestamp. | [optional] [default to ''] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettings.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettings.md deleted file mode 100644 index 829efb131..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettings.md +++ /dev/null @@ -1,18 +0,0 @@ -# SupportassistSettings - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**automatic_case_creation** | **bool** | True indicates automatic case creation is enabled | [optional] [default to True] -**connection** | [**SupportassistSettingsConnection**](SupportassistSettingsConnection.md) | | [optional] -**connection_state** | **str** | connection state. | [optional] -**contact** | [**SupportassistSettingsContact**](SupportassistSettingsContact.md) | | [optional] -**enable_download** | **bool** | True indicates downloads are enabled | [optional] [default to True] -**enable_remote_support** | **bool** | Whether remoteAccessEnabled is enabled | [optional] [default to False] -**onefs_software_id** | **str** | The software ID used by Dell Technologies connectivity services | [optional] -**supportassist_enabled** | **bool** | Whether Dell Technologies connectivity services is enabled | -**telemetry** | [**SupportassistSettingsTelemetry**](SupportassistSettingsTelemetry.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsConnection.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsConnection.md deleted file mode 100644 index 41c2d3221..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsConnection.md +++ /dev/null @@ -1,12 +0,0 @@ -# SupportassistSettingsConnection - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**gateway_endpoints** | [**list[SupportassistSettingsConnectionGatewayEndpoint]**](SupportassistSettingsConnectionGatewayEndpoint.md) | | [optional] -**mode** | **str** | Connection mode for Dell Technologies connectivity services. Use 'direct' for direct connectivity and 'gateway' for connecting through secure connect gateway. | [optional] -**network_pools** | [**list[SupportassistSettingsConnectionNetworkPool]**](SupportassistSettingsConnectionNetworkPool.md) | Network pools for use by Dell Technologies connectivity services. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsConnectionExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsConnectionExtended.md deleted file mode 100644 index c3cd54dc4..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsConnectionExtended.md +++ /dev/null @@ -1,12 +0,0 @@ -# SupportassistSettingsConnectionExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**gateway_endpoints** | [**list[SupportassistSettingsConnectionGatewayEndpoint]**](SupportassistSettingsConnectionGatewayEndpoint.md) | | [optional] -**mode** | **str** | Connection mode for Dell Technologies connectivity services. Use 'direct' for direct connectivity and 'gateway' for connecting through secure connect gateway. | [optional] -**network_pools** | **list[str]** | Network pools for Dell Technologies connectivity services. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsConnectionGatewayEndpoint.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsConnectionGatewayEndpoint.md deleted file mode 100644 index ee1260852..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsConnectionGatewayEndpoint.md +++ /dev/null @@ -1,15 +0,0 @@ -# SupportassistSettingsConnectionGatewayEndpoint - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**enabled** | **bool** | Whether this secure connect gateway is enabled. | [optional] [default to True] -**host** | **str** | Hostname, IPv4 address, or IPv6 address for the secure connect gateway. | -**port** | **int** | Port for the secure connect gateway. | [optional] -**priority** | **int** | Priority for using the secure connect gateway. | [optional] -**use_proxy** | **bool** | Whether to use Proxy for this secure connect gateway. | [optional] [default to False] -**validate_ssl** | **bool** | Whether to validate SSL for this secure connect gateway. | [optional] [default to False] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsConnectionNetworkPool.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsConnectionNetworkPool.md deleted file mode 100644 index dcd0d4603..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsConnectionNetworkPool.md +++ /dev/null @@ -1,11 +0,0 @@ -# SupportassistSettingsConnectionNetworkPool - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**pool** | **str** | Pool of the network_pools | -**subnet** | **str** | Subnet of the network_pools | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsContact.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsContact.md deleted file mode 100644 index 1819a8595..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsContact.md +++ /dev/null @@ -1,11 +0,0 @@ -# SupportassistSettingsContact - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**primary** | [**SupportassistSettingsContactPrimary**](SupportassistSettingsContactPrimary.md) | | [optional] -**secondary** | [**SupportassistSettingsContactPrimary**](SupportassistSettingsContactPrimary.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsContactExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsContactExtended.md deleted file mode 100644 index b49332757..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsContactExtended.md +++ /dev/null @@ -1,11 +0,0 @@ -# SupportassistSettingsContactExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**primary** | [**SupportassistSettingsContactPrimaryExtended**](SupportassistSettingsContactPrimaryExtended.md) | | [optional] -**secondary** | [**SupportassistSettingsContactPrimaryExtended**](SupportassistSettingsContactPrimaryExtended.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsTelemetry.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsTelemetry.md deleted file mode 100644 index 6ff84f86a..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsTelemetry.md +++ /dev/null @@ -1,13 +0,0 @@ -# SupportassistSettingsTelemetry - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**offline_collection_period** | **int** | Offline collection period in seconds when connectivity is down. | -**telemetry_enabled** | **bool** | True indicates telemetry is enabled. | -**telemetry_persist** | **bool** | True indicates files are kept after upload. | -**telemetry_threads** | **int** | The number of threads for telemetry gathers. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsTelemetryExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsTelemetryExtended.md deleted file mode 100644 index 44ede6ce4..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistSettingsTelemetryExtended.md +++ /dev/null @@ -1,13 +0,0 @@ -# SupportassistSettingsTelemetryExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**offline_collection_period** | **int** | Change the offline collection period for when connectivity is down. | [optional] -**telemetry_enabled** | **bool** | Change the status of telemetry. | [optional] -**telemetry_persist** | **bool** | Change if files are kept after upload. | [optional] -**telemetry_threads** | **int** | Change the number of threads for telemetry gathers. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistStatus.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistStatus.md deleted file mode 100644 index ad303ca23..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistStatus.md +++ /dev/null @@ -1,10 +0,0 @@ -# SupportassistStatus - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**status** | [**SupportassistStatusStatus**](SupportassistStatusStatus.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistStatusExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistStatusExtended.md deleted file mode 100644 index 1a5d9d0c7..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistStatusExtended.md +++ /dev/null @@ -1,11 +0,0 @@ -# SupportassistStatusExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**enabled** | **bool** | Setting to true or yes will enable Dell Technologies connectivity services. Setting to false or no will disable Dell Technologies connectivity services. | [optional] -**supportassist_dismissed** | **bool** | Whether Dell Technologies connectivity services prompt should be dismissed | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistStatusStatus.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistStatusStatus.md deleted file mode 100644 index 0b553e011..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistStatusStatus.md +++ /dev/null @@ -1,18 +0,0 @@ -# SupportassistStatusStatus - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**connection_status** | **str** | The current connection status of Dell Technologies connectivity services. | -**hardware_key_present** | **bool** | Whether Hardware key is present. | -**provisioned** | **bool** | True indicates Dell Technologies connectivity services provisioning is done. | -**srs_disabled** | **bool** | False indicates Remote Support is disabled. | -**supportassist_connected** | **bool** | Whether Dell Technologies connectivity services is connected. | -**supportassist_dismissed** | **bool** | Whether Dell Technologies connectivity services prompt should be dismissed. | -**supportassist_enabled** | **bool** | Whether Dell Technologies connectivity services is enabled. | -**swid** | **str** | The software ID used by Dell Technologies connectivity services. | -**ui_state** | **str** | Connectivity system state. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistTask.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistTask.md deleted file mode 100644 index 8b4f23256..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistTask.md +++ /dev/null @@ -1,10 +0,0 @@ -# SupportassistTask - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**tasks** | [**list[SupportassistLicenseTask]**](SupportassistLicenseTask.md) | List of recent Dell Technologies connectivity services tasks | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistTaskItem.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistTaskItem.md deleted file mode 100644 index 69dfacdf6..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistTaskItem.md +++ /dev/null @@ -1,11 +0,0 @@ -# SupportassistTaskItem - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**source** | **str** | | -**task_params** | [**SupportassistTaskItemTaskParams**](SupportassistTaskItemTaskParams.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistTaskItemTaskParams.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistTaskItemTaskParams.md deleted file mode 100644 index d4cf6bcbd..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistTaskItemTaskParams.md +++ /dev/null @@ -1,14 +0,0 @@ -# SupportassistTaskItemTaskParams - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**delete_on_transaction** | **bool** | Indicates whether the payload should be deleted after the transaction is completed. | [optional] [default to False] -**file_path** | **str** | The path to the file that will be uploaded. | -**payload_type** | **str** | The binary payload format being sent. | -**sub_type** | **str** | sub_type is not yet defined, but is intended to allow differentiation of syslog types. | -**transaction_id** | **str** | Optional ID that will inform Dell Technologies connectivity services to associate payload uploads together. | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistTerms.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistTerms.md deleted file mode 100644 index 3d90ebdf2..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistTerms.md +++ /dev/null @@ -1,10 +0,0 @@ -# SupportassistTerms - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**terms** | [**SupportassistTermsTerms**](SupportassistTermsTerms.md) | | [optional] - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistTermsExtended.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistTermsExtended.md deleted file mode 100644 index bbe88f750..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistTermsExtended.md +++ /dev/null @@ -1,10 +0,0 @@ -# SupportassistTermsExtended - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**accepted** | **bool** | Set Telemetry Notice as accepted or rejected. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistTermsTerms.md b/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistTermsTerms.md deleted file mode 100644 index c6f100b53..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SupportassistTermsTerms.md +++ /dev/null @@ -1,11 +0,0 @@ -# SupportassistTermsTerms - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**accepted** | **bool** | True indicates the Telemetry Notice is accepted. | -**terms_and_conditions** | **str** | The Telemetry Notice text for Dell Technologies connectivity services. | - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/__init__.py b/isilon_sdk/isilon_sdk/v9_11_0/models/__init__.py deleted file mode 100644 index b49600ed6..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/__init__.py +++ /dev/null @@ -1,1530 +0,0 @@ -# coding: utf-8 - -# flake8: noqa -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -from __future__ import absolute_import - -# import models into model package -from isilon_sdk.v9_11_0.models.access_point_create_params import AccessPointCreateParams -from isilon_sdk.v9_11_0.models.acl_object import AclObject -from isilon_sdk.v9_11_0.models.ads_provider_controllers import AdsProviderControllers -from isilon_sdk.v9_11_0.models.ads_provider_controllers_controller import AdsProviderControllersController -from isilon_sdk.v9_11_0.models.ads_provider_domains import AdsProviderDomains -from isilon_sdk.v9_11_0.models.ads_provider_domains_domain import AdsProviderDomainsDomain -from isilon_sdk.v9_11_0.models.ads_provider_search_item import AdsProviderSearchItem -from isilon_sdk.v9_11_0.models.antivirus_policies import AntivirusPolicies -from isilon_sdk.v9_11_0.models.antivirus_policy import AntivirusPolicy -from isilon_sdk.v9_11_0.models.antivirus_quarantine import AntivirusQuarantine -from isilon_sdk.v9_11_0.models.antivirus_quarantine_path_params import AntivirusQuarantinePathParams -from isilon_sdk.v9_11_0.models.antivirus_scan_item import AntivirusScanItem -from isilon_sdk.v9_11_0.models.antivirus_server import AntivirusServer -from isilon_sdk.v9_11_0.models.antivirus_servers import AntivirusServers -from isilon_sdk.v9_11_0.models.antivirus_settings import AntivirusSettings -from isilon_sdk.v9_11_0.models.antivirus_settings_extended import AntivirusSettingsExtended -from isilon_sdk.v9_11_0.models.antivirus_settings_settings import AntivirusSettingsSettings -from isilon_sdk.v9_11_0.models.audit_logs import AuditLogs -from isilon_sdk.v9_11_0.models.audit_logs_blocker_item import AuditLogsBlockerItem -from isilon_sdk.v9_11_0.models.audit_logs_deletion_item import AuditLogsDeletionItem -from isilon_sdk.v9_11_0.models.audit_progress import AuditProgress -from isilon_sdk.v9_11_0.models.audit_progress_progress import AuditProgressProgress -from isilon_sdk.v9_11_0.models.audit_settings import AuditSettings -from isilon_sdk.v9_11_0.models.audit_settings_settings import AuditSettingsSettings -from isilon_sdk.v9_11_0.models.audit_topic import AuditTopic -from isilon_sdk.v9_11_0.models.audit_topic_create_params import AuditTopicCreateParams -from isilon_sdk.v9_11_0.models.audit_topics import AuditTopics -from isilon_sdk.v9_11_0.models.auth_access import AuthAccess -from isilon_sdk.v9_11_0.models.auth_access_access_item import AuthAccessAccessItem -from isilon_sdk.v9_11_0.models.auth_access_access_item_file import AuthAccessAccessItemFile -from isilon_sdk.v9_11_0.models.auth_access_access_item_file_file_permissions import AuthAccessAccessItemFileFilePermissions -from isilon_sdk.v9_11_0.models.auth_access_access_item_file_group import AuthAccessAccessItemFileGroup -from isilon_sdk.v9_11_0.models.auth_access_access_item_share import AuthAccessAccessItemShare -from isilon_sdk.v9_11_0.models.auth_access_access_item_share_effective_user import AuthAccessAccessItemShareEffectiveUser -from isilon_sdk.v9_11_0.models.auth_access_access_item_share_share_permissions import AuthAccessAccessItemShareSharePermissions -from isilon_sdk.v9_11_0.models.auth_cache_item import AuthCacheItem -from isilon_sdk.v9_11_0.models.auth_error import AuthError -from isilon_sdk.v9_11_0.models.auth_group import AuthGroup -from isilon_sdk.v9_11_0.models.auth_group_extended import AuthGroupExtended -from isilon_sdk.v9_11_0.models.auth_group_object_history_item import AuthGroupObjectHistoryItem -from isilon_sdk.v9_11_0.models.auth_groups import AuthGroups -from isilon_sdk.v9_11_0.models.auth_groups_extended import AuthGroupsExtended -from isilon_sdk.v9_11_0.models.auth_id import AuthId -from isilon_sdk.v9_11_0.models.auth_id_ntoken import AuthIdNtoken -from isilon_sdk.v9_11_0.models.auth_id_ntoken_privilege_item import AuthIdNtokenPrivilegeItem -from isilon_sdk.v9_11_0.models.auth_ldap_templates import AuthLdapTemplates -from isilon_sdk.v9_11_0.models.auth_ldap_templates_extended import AuthLdapTemplatesExtended -from isilon_sdk.v9_11_0.models.auth_ldap_templates_ldap_configuration_template import AuthLdapTemplatesLdapConfigurationTemplate -from isilon_sdk.v9_11_0.models.auth_ldap_templates_ldap_configuration_template_extended import AuthLdapTemplatesLdapConfigurationTemplateExtended -from isilon_sdk.v9_11_0.models.auth_log_level import AuthLogLevel -from isilon_sdk.v9_11_0.models.auth_log_level_extended import AuthLogLevelExtended -from isilon_sdk.v9_11_0.models.auth_log_level_level import AuthLogLevelLevel -from isilon_sdk.v9_11_0.models.auth_netgroup import AuthNetgroup -from isilon_sdk.v9_11_0.models.auth_netgroups import AuthNetgroups -from isilon_sdk.v9_11_0.models.auth_privilege import AuthPrivilege -from isilon_sdk.v9_11_0.models.auth_privileges import AuthPrivileges -from isilon_sdk.v9_11_0.models.auth_role import AuthRole -from isilon_sdk.v9_11_0.models.auth_roles import AuthRoles -from isilon_sdk.v9_11_0.models.auth_shells import AuthShells -from isilon_sdk.v9_11_0.models.auth_user import AuthUser -from isilon_sdk.v9_11_0.models.auth_user_extended import AuthUserExtended -from isilon_sdk.v9_11_0.models.auth_users import AuthUsers -from isilon_sdk.v9_11_0.models.auth_users_extended import AuthUsersExtended -from isilon_sdk.v9_11_0.models.auth_wellknowns import AuthWellknowns -from isilon_sdk.v9_11_0.models.avscan_filter import AvscanFilter -from isilon_sdk.v9_11_0.models.avscan_filter_extended import AvscanFilterExtended -from isilon_sdk.v9_11_0.models.avscan_filter_extended_extended import AvscanFilterExtendedExtended -from isilon_sdk.v9_11_0.models.avscan_filters import AvscanFilters -from isilon_sdk.v9_11_0.models.avscan_filters_extended import AvscanFiltersExtended -from isilon_sdk.v9_11_0.models.avscan_job import AvscanJob -from isilon_sdk.v9_11_0.models.avscan_job_create_params import AvscanJobCreateParams -from isilon_sdk.v9_11_0.models.avscan_job_extended import AvscanJobExtended -from isilon_sdk.v9_11_0.models.avscan_jobs import AvscanJobs -from isilon_sdk.v9_11_0.models.avscan_server import AvscanServer -from isilon_sdk.v9_11_0.models.avscan_server_create_params import AvscanServerCreateParams -from isilon_sdk.v9_11_0.models.avscan_server_extended import AvscanServerExtended -from isilon_sdk.v9_11_0.models.avscan_servers import AvscanServers -from isilon_sdk.v9_11_0.models.avscan_settings import AvscanSettings -from isilon_sdk.v9_11_0.models.avscan_settings_settings import AvscanSettingsSettings -from isilon_sdk.v9_11_0.models.catalog_export import CatalogExport -from isilon_sdk.v9_11_0.models.catalog_import import CatalogImport -from isilon_sdk.v9_11_0.models.catalog_list import CatalogList -from isilon_sdk.v9_11_0.models.catalog_list_artifact import CatalogListArtifact -from isilon_sdk.v9_11_0.models.catalog_readme import CatalogReadme -from isilon_sdk.v9_11_0.models.catalog_remove import CatalogRemove -from isilon_sdk.v9_11_0.models.catalog_verify import CatalogVerify -from isilon_sdk.v9_11_0.models.catalog_verify_artifact import CatalogVerifyArtifact -from isilon_sdk.v9_11_0.models.certificate_authority_item import CertificateAuthorityItem -from isilon_sdk.v9_11_0.models.certificate_settings import CertificateSettings -from isilon_sdk.v9_11_0.models.certificate_settings_extended import CertificateSettingsExtended -from isilon_sdk.v9_11_0.models.certificate_settings_settings import CertificateSettingsSettings -from isilon_sdk.v9_11_0.models.certificates_ca_id_params import CertificatesCaIdParams -from isilon_sdk.v9_11_0.models.certificates_ca_item import CertificatesCaItem -from isilon_sdk.v9_11_0.models.certificates_identity import CertificatesIdentity -from isilon_sdk.v9_11_0.models.certificates_identity_certificate import CertificatesIdentityCertificate -from isilon_sdk.v9_11_0.models.certificates_identity_item import CertificatesIdentityItem -from isilon_sdk.v9_11_0.models.certificates_peer import CertificatesPeer -from isilon_sdk.v9_11_0.models.certificates_server import CertificatesServer -from isilon_sdk.v9_11_0.models.certificates_settings import CertificatesSettings -from isilon_sdk.v9_11_0.models.certificates_settings_settings import CertificatesSettingsSettings -from isilon_sdk.v9_11_0.models.certificates_syslog import CertificatesSyslog -from isilon_sdk.v9_11_0.models.certificates_syslog_certificate import CertificatesSyslogCertificate -from isilon_sdk.v9_11_0.models.certificates_syslog_certificate_fingerprint import CertificatesSyslogCertificateFingerprint -from isilon_sdk.v9_11_0.models.certificates_syslog_id_params import CertificatesSyslogIdParams -from isilon_sdk.v9_11_0.models.certificates_syslog_item import CertificatesSyslogItem -from isilon_sdk.v9_11_0.models.changelist_entries import ChangelistEntries -from isilon_sdk.v9_11_0.models.changelist_entries_extended import ChangelistEntriesExtended -from isilon_sdk.v9_11_0.models.changelist_entry import ChangelistEntry -from isilon_sdk.v9_11_0.models.changelist_entry_atime import ChangelistEntryAtime -from isilon_sdk.v9_11_0.models.changelist_lins import ChangelistLins -from isilon_sdk.v9_11_0.models.changelist_lins_atime import ChangelistLinsAtime -from isilon_sdk.v9_11_0.models.changelist_lins_extended import ChangelistLinsExtended -from isilon_sdk.v9_11_0.models.changelists_changelist_diff_regions import ChangelistsChangelistDiffRegions -from isilon_sdk.v9_11_0.models.changelists_changelist_diff_regions_diff_region import ChangelistsChangelistDiffRegionsDiffRegion -from isilon_sdk.v9_11_0.models.check_report import CheckReport -from isilon_sdk.v9_11_0.models.check_report_report_item import CheckReportReportItem -from isilon_sdk.v9_11_0.models.check_settings import CheckSettings -from isilon_sdk.v9_11_0.models.check_settings_extended import CheckSettingsExtended -from isilon_sdk.v9_11_0.models.check_settings_settings import CheckSettingsSettings -from isilon_sdk.v9_11_0.models.cloud_access import CloudAccess -from isilon_sdk.v9_11_0.models.cloud_access_cluster import CloudAccessCluster -from isilon_sdk.v9_11_0.models.cloud_access_item import CloudAccessItem -from isilon_sdk.v9_11_0.models.cloud_account import CloudAccount -from isilon_sdk.v9_11_0.models.cloud_account_create_params import CloudAccountCreateParams -from isilon_sdk.v9_11_0.models.cloud_account_credential_provider import CloudAccountCredentialProvider -from isilon_sdk.v9_11_0.models.cloud_accounts import CloudAccounts -from isilon_sdk.v9_11_0.models.cloud_accounts_extended import CloudAccountsExtended -from isilon_sdk.v9_11_0.models.cloud_certificates import CloudCertificates -from isilon_sdk.v9_11_0.models.cloud_job import CloudJob -from isilon_sdk.v9_11_0.models.cloud_job_create_params import CloudJobCreateParams -from isilon_sdk.v9_11_0.models.cloud_job_extended import CloudJobExtended -from isilon_sdk.v9_11_0.models.cloud_job_files import CloudJobFiles -from isilon_sdk.v9_11_0.models.cloud_job_files_name import CloudJobFilesName -from isilon_sdk.v9_11_0.models.cloud_job_job_engine_job import CloudJobJobEngineJob -from isilon_sdk.v9_11_0.models.cloud_jobs import CloudJobs -from isilon_sdk.v9_11_0.models.cloud_jobs_files import CloudJobsFiles -from isilon_sdk.v9_11_0.models.cloud_jobs_files_file import CloudJobsFilesFile -from isilon_sdk.v9_11_0.models.cloud_pool import CloudPool -from isilon_sdk.v9_11_0.models.cloud_pools import CloudPools -from isilon_sdk.v9_11_0.models.cloud_pools_extended import CloudPoolsExtended -from isilon_sdk.v9_11_0.models.cloud_proxies import CloudProxies -from isilon_sdk.v9_11_0.models.cloud_proxies_extended import CloudProxiesExtended -from isilon_sdk.v9_11_0.models.cloud_proxy import CloudProxy -from isilon_sdk.v9_11_0.models.cloud_settings import CloudSettings -from isilon_sdk.v9_11_0.models.cloud_settings_settings import CloudSettingsSettings -from isilon_sdk.v9_11_0.models.cloud_settings_settings_cloud_policy_defaults import CloudSettingsSettingsCloudPolicyDefaults -from isilon_sdk.v9_11_0.models.cloud_settings_settings_cloud_policy_defaults_cache import CloudSettingsSettingsCloudPolicyDefaultsCache -from isilon_sdk.v9_11_0.models.cloud_settings_settings_sleep_timeout_archive import CloudSettingsSettingsSleepTimeoutArchive -from isilon_sdk.v9_11_0.models.cluster_ac import ClusterAc -from isilon_sdk.v9_11_0.models.cluster_acs import ClusterAcs -from isilon_sdk.v9_11_0.models.cluster_add_node_item import ClusterAddNodeItem -from isilon_sdk.v9_11_0.models.cluster_archive_item import ClusterArchiveItem -from isilon_sdk.v9_11_0.models.cluster_assess_item import ClusterAssessItem -from isilon_sdk.v9_11_0.models.cluster_config import ClusterConfig -from isilon_sdk.v9_11_0.models.cluster_config_device import ClusterConfigDevice -from isilon_sdk.v9_11_0.models.cluster_config_onefs_version import ClusterConfigOnefsVersion -from isilon_sdk.v9_11_0.models.cluster_config_timezone import ClusterConfigTimezone -from isilon_sdk.v9_11_0.models.cluster_drain import ClusterDrain -from isilon_sdk.v9_11_0.models.cluster_drain_list import ClusterDrainList -from isilon_sdk.v9_11_0.models.cluster_drain_timeout import ClusterDrainTimeout -from isilon_sdk.v9_11_0.models.cluster_drain_timeout_extended import ClusterDrainTimeoutExtended -from isilon_sdk.v9_11_0.models.cluster_email import ClusterEmail -from isilon_sdk.v9_11_0.models.cluster_email_extended import ClusterEmailExtended -from isilon_sdk.v9_11_0.models.cluster_email_settings import ClusterEmailSettings -from isilon_sdk.v9_11_0.models.cluster_firmware_assess_item import ClusterFirmwareAssessItem -from isilon_sdk.v9_11_0.models.cluster_firmware_device import ClusterFirmwareDevice -from isilon_sdk.v9_11_0.models.cluster_firmware_device_node import ClusterFirmwareDeviceNode -from isilon_sdk.v9_11_0.models.cluster_firmware_progress import ClusterFirmwareProgress -from isilon_sdk.v9_11_0.models.cluster_firmware_status import ClusterFirmwareStatus -from isilon_sdk.v9_11_0.models.cluster_firmware_status_node import ClusterFirmwareStatusNode -from isilon_sdk.v9_11_0.models.cluster_firmware_upgrade_item import ClusterFirmwareUpgradeItem -from isilon_sdk.v9_11_0.models.cluster_identity import ClusterIdentity -from isilon_sdk.v9_11_0.models.cluster_identity_extended import ClusterIdentityExtended -from isilon_sdk.v9_11_0.models.cluster_identity_logon import ClusterIdentityLogon -from isilon_sdk.v9_11_0.models.cluster_identity_logon_extended import ClusterIdentityLogonExtended -from isilon_sdk.v9_11_0.models.cluster_internal_networks import ClusterInternalNetworks -from isilon_sdk.v9_11_0.models.cluster_internal_networks_extended import ClusterInternalNetworksExtended -from isilon_sdk.v9_11_0.models.cluster_mixed_mode import ClusterMixedMode -from isilon_sdk.v9_11_0.models.cluster_mode_settings import ClusterModeSettings -from isilon_sdk.v9_11_0.models.cluster_mode_settings_extended import ClusterModeSettingsExtended -from isilon_sdk.v9_11_0.models.cluster_node import ClusterNode -from isilon_sdk.v9_11_0.models.cluster_node_drive_d_config import ClusterNodeDriveDConfig -from isilon_sdk.v9_11_0.models.cluster_node_extended import ClusterNodeExtended -from isilon_sdk.v9_11_0.models.cluster_node_hardware import ClusterNodeHardware -from isilon_sdk.v9_11_0.models.cluster_node_partition import ClusterNodePartition -from isilon_sdk.v9_11_0.models.cluster_node_partition_statfs import ClusterNodePartitionStatfs -from isilon_sdk.v9_11_0.models.cluster_node_partitions import ClusterNodePartitions -from isilon_sdk.v9_11_0.models.cluster_node_sensor import ClusterNodeSensor -from isilon_sdk.v9_11_0.models.cluster_node_sensor_value import ClusterNodeSensorValue -from isilon_sdk.v9_11_0.models.cluster_node_sensors import ClusterNodeSensors -from isilon_sdk.v9_11_0.models.cluster_node_sled import ClusterNodeSled -from isilon_sdk.v9_11_0.models.cluster_node_state import ClusterNodeState -from isilon_sdk.v9_11_0.models.cluster_node_state_extended import ClusterNodeStateExtended -from isilon_sdk.v9_11_0.models.cluster_node_status import ClusterNodeStatus -from isilon_sdk.v9_11_0.models.cluster_nodes import ClusterNodes -from isilon_sdk.v9_11_0.models.cluster_nodes_available import ClusterNodesAvailable -from isilon_sdk.v9_11_0.models.cluster_nodes_available_node import ClusterNodesAvailableNode -from isilon_sdk.v9_11_0.models.cluster_nodes_error import ClusterNodesError -from isilon_sdk.v9_11_0.models.cluster_nodes_extended import ClusterNodesExtended -from isilon_sdk.v9_11_0.models.cluster_nodes_extended_extended import ClusterNodesExtendedExtended -from isilon_sdk.v9_11_0.models.cluster_nodes_extended_extended_extended import ClusterNodesExtendedExtendedExtended -from isilon_sdk.v9_11_0.models.cluster_nodes_onefs_version import ClusterNodesOnefsVersion -from isilon_sdk.v9_11_0.models.cluster_owner import ClusterOwner -from isilon_sdk.v9_11_0.models.cluster_patch_patch import ClusterPatchPatch -from isilon_sdk.v9_11_0.models.cluster_patch_patches import ClusterPatchPatches -from isilon_sdk.v9_11_0.models.cluster_patch_patches_patch import ClusterPatchPatchesPatch -from isilon_sdk.v9_11_0.models.cluster_rekey import ClusterRekey -from isilon_sdk.v9_11_0.models.cluster_rekey_extended import ClusterRekeyExtended -from isilon_sdk.v9_11_0.models.cluster_rekey_item import ClusterRekeyItem -from isilon_sdk.v9_11_0.models.cluster_retry_last_action_item import ClusterRetryLastActionItem -from isilon_sdk.v9_11_0.models.cluster_services import ClusterServices -from isilon_sdk.v9_11_0.models.cluster_services_node import ClusterServicesNode -from isilon_sdk.v9_11_0.models.cluster_services_node_service import ClusterServicesNodeService -from isilon_sdk.v9_11_0.models.cluster_skip_optional import ClusterSkipOptional -from isilon_sdk.v9_11_0.models.cluster_statfs import ClusterStatfs -from isilon_sdk.v9_11_0.models.cluster_status import ClusterStatus -from isilon_sdk.v9_11_0.models.cluster_status_domain import ClusterStatusDomain -from isilon_sdk.v9_11_0.models.cluster_time import ClusterTime -from isilon_sdk.v9_11_0.models.cluster_time_extended import ClusterTimeExtended -from isilon_sdk.v9_11_0.models.cluster_time_extended_extended import ClusterTimeExtendedExtended -from isilon_sdk.v9_11_0.models.cluster_time_node import ClusterTimeNode -from isilon_sdk.v9_11_0.models.cluster_timezone import ClusterTimezone -from isilon_sdk.v9_11_0.models.cluster_timezone_extended import ClusterTimezoneExtended -from isilon_sdk.v9_11_0.models.cluster_timezone_settings import ClusterTimezoneSettings -from isilon_sdk.v9_11_0.models.cluster_timezone_settings_extended import ClusterTimezoneSettingsExtended -from isilon_sdk.v9_11_0.models.cluster_unblock import ClusterUnblock -from isilon_sdk.v9_11_0.models.cluster_update_lnns import ClusterUpdateLnns -from isilon_sdk.v9_11_0.models.cluster_update_lnns_lnn import ClusterUpdateLnnsLnn -from isilon_sdk.v9_11_0.models.cluster_upgrade import ClusterUpgrade -from isilon_sdk.v9_11_0.models.cluster_upgrade_item import ClusterUpgradeItem -from isilon_sdk.v9_11_0.models.cluster_version import ClusterVersion -from isilon_sdk.v9_11_0.models.cluster_version_node import ClusterVersionNode -from isilon_sdk.v9_11_0.models.config_catalog_status import ConfigCatalogStatus -from isilon_sdk.v9_11_0.models.config_catalog_status_extended import ConfigCatalogStatusExtended -from isilon_sdk.v9_11_0.models.config_catalog_status_last_failed_package import ConfigCatalogStatusLastFailedPackage -from isilon_sdk.v9_11_0.models.config_config_lock import ConfigConfigLock -from isilon_sdk.v9_11_0.models.config_export import ConfigExport -from isilon_sdk.v9_11_0.models.config_export_create_params import ConfigExportCreateParams -from isilon_sdk.v9_11_0.models.config_exports import ConfigExports -from isilon_sdk.v9_11_0.models.config_feature import ConfigFeature -from isilon_sdk.v9_11_0.models.config_features import ConfigFeatures -from isilon_sdk.v9_11_0.models.config_features_extended import ConfigFeaturesExtended -from isilon_sdk.v9_11_0.models.config_import import ConfigImport -from isilon_sdk.v9_11_0.models.config_import_create_params import ConfigImportCreateParams -from isilon_sdk.v9_11_0.models.config_import_rules import ConfigImportRules -from isilon_sdk.v9_11_0.models.config_import_rules_network import ConfigImportRulesNetwork -from isilon_sdk.v9_11_0.models.config_import_rules_network_restore import ConfigImportRulesNetworkRestore -from isilon_sdk.v9_11_0.models.config_imports import ConfigImports -from isilon_sdk.v9_11_0.models.config_namespace import ConfigNamespace -from isilon_sdk.v9_11_0.models.config_namespace_entry import ConfigNamespaceEntry -from isilon_sdk.v9_11_0.models.config_namespace_id_params import ConfigNamespaceIdParams -from isilon_sdk.v9_11_0.models.config_network import ConfigNetwork -from isilon_sdk.v9_11_0.models.config_network_network import ConfigNetworkNetwork -from isilon_sdk.v9_11_0.models.config_network_network_range import ConfigNetworkNetworkRange -from isilon_sdk.v9_11_0.models.config_node import ConfigNode -from isilon_sdk.v9_11_0.models.config_nodes import ConfigNodes -from isilon_sdk.v9_11_0.models.config_nodes_extended import ConfigNodesExtended -from isilon_sdk.v9_11_0.models.config_settings import ConfigSettings -from isilon_sdk.v9_11_0.models.config_settings_settings import ConfigSettingsSettings -from isilon_sdk.v9_11_0.models.config_user import ConfigUser -from isilon_sdk.v9_11_0.models.config_user_extended import ConfigUserExtended -from isilon_sdk.v9_11_0.models.config_user_user import ConfigUserUser -from isilon_sdk.v9_11_0.models.connectivity_settings import ConnectivitySettings -from isilon_sdk.v9_11_0.models.connectivity_status import ConnectivityStatus -from isilon_sdk.v9_11_0.models.connectivity_status_extended import ConnectivityStatusExtended -from isilon_sdk.v9_11_0.models.connectivity_status_status import ConnectivityStatusStatus -from isilon_sdk.v9_11_0.models.copy_errors import CopyErrors -from isilon_sdk.v9_11_0.models.copy_errors_copy_errors import CopyErrorsCopyErrors -from isilon_sdk.v9_11_0.models.create_ads_provider_search_item_response import CreateAdsProviderSearchItemResponse -from isilon_sdk.v9_11_0.models.create_ads_provider_search_item_response_object import CreateAdsProviderSearchItemResponseObject -from isilon_sdk.v9_11_0.models.create_antivirus_scan_item_response import CreateAntivirusScanItemResponse -from isilon_sdk.v9_11_0.models.create_cloud_account_response import CreateCloudAccountResponse -from isilon_sdk.v9_11_0.models.create_cloud_job_response import CreateCloudJobResponse -from isilon_sdk.v9_11_0.models.create_cloud_pool_response import CreateCloudPoolResponse -from isilon_sdk.v9_11_0.models.create_cloud_proxy_response import CreateCloudProxyResponse -from isilon_sdk.v9_11_0.models.create_cluster_rekey_item_response import CreateClusterRekeyItemResponse -from isilon_sdk.v9_11_0.models.create_config_export_response import CreateConfigExportResponse -from isilon_sdk.v9_11_0.models.create_config_import_response import CreateConfigImportResponse -from isilon_sdk.v9_11_0.models.create_datamover_account_response import CreateDatamoverAccountResponse -from isilon_sdk.v9_11_0.models.create_datamover_base_policy_response import CreateDatamoverBasePolicyResponse -from isilon_sdk.v9_11_0.models.create_datamover_policy_response import CreateDatamoverPolicyResponse -from isilon_sdk.v9_11_0.models.create_dataset_filter_response import CreateDatasetFilterResponse -from isilon_sdk.v9_11_0.models.create_dataset_workload_response import CreateDatasetWorkloadResponse -from isilon_sdk.v9_11_0.models.create_filepool_policy_response import CreateFilepoolPolicyResponse -from isilon_sdk.v9_11_0.models.create_hardening_apply_item_response import CreateHardeningApplyItemResponse -from isilon_sdk.v9_11_0.models.create_hardware_tape_name_response import CreateHardwareTapeNameResponse -from isilon_sdk.v9_11_0.models.create_hardware_tape_name_response_node import CreateHardwareTapeNameResponseNode -from isilon_sdk.v9_11_0.models.create_hardware_tape_name_response_node_rescan_report_item import CreateHardwareTapeNameResponseNodeRescanReportItem -from isilon_sdk.v9_11_0.models.create_job_job_response import CreateJobJobResponse -from isilon_sdk.v9_11_0.models.create_kmip_server_verify_item_response import CreateKmipServerVerifyItemResponse -from isilon_sdk.v9_11_0.models.create_kmip_server_verify_item_response_node import CreateKmipServerVerifyItemResponseNode -from isilon_sdk.v9_11_0.models.create_nfs_alias_response import CreateNfsAliasResponse -from isilon_sdk.v9_11_0.models.create_nfs_nlm_sessions_check_item_response import CreateNfsNlmSessionsCheckItemResponse -from isilon_sdk.v9_11_0.models.create_oauth_certificate_response import CreateOauthCertificateResponse -from isilon_sdk.v9_11_0.models.create_oauth_oauth2_client_response import CreateOauthOauth2ClientResponse -from isilon_sdk.v9_11_0.models.create_oauth_oauth2_token_exchange_response import CreateOauthOauth2TokenExchangeResponse -from isilon_sdk.v9_11_0.models.create_performance_dataset_response import CreatePerformanceDatasetResponse -from isilon_sdk.v9_11_0.models.create_providers_saml_services_cert_extract_item_response import CreateProvidersSamlServicesCertExtractItemResponse -from isilon_sdk.v9_11_0.models.create_providers_saml_services_cert_extract_item_response_certificate_info import CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo -from isilon_sdk.v9_11_0.models.create_providers_saml_services_cert_extract_item_response_certificate_info_value import CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue -from isilon_sdk.v9_11_0.models.create_providers_saml_services_idp_response import CreateProvidersSamlServicesIdpResponse -from isilon_sdk.v9_11_0.models.create_providers_saml_services_metadata_extract_item_response import CreateProvidersSamlServicesMetadataExtractItemResponse -from isilon_sdk.v9_11_0.models.create_providers_saml_services_metadata_extract_item_response_login_endpoint import CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint -from isilon_sdk.v9_11_0.models.create_providers_saml_services_metadata_extract_item_response_logout_endpoint import CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint -from isilon_sdk.v9_11_0.models.create_providers_saml_services_metadata_extract_item_response_signing_certificate import CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate -from isilon_sdk.v9_11_0.models.create_quota_report_response import CreateQuotaReportResponse -from isilon_sdk.v9_11_0.models.create_response import CreateResponse -from isilon_sdk.v9_11_0.models.create_s3_key_response import CreateS3KeyResponse -from isilon_sdk.v9_11_0.models.create_s3_key_response_keys import CreateS3KeyResponseKeys -from isilon_sdk.v9_11_0.models.create_sed_migrate_item_response import CreateSedMigrateItemResponse -from isilon_sdk.v9_11_0.models.create_smb_log_level_filter_response import CreateSmbLogLevelFilterResponse -from isilon_sdk.v9_11_0.models.create_smb_share_response import CreateSmbShareResponse -from isilon_sdk.v9_11_0.models.create_snapshot_alias_response import CreateSnapshotAliasResponse -from isilon_sdk.v9_11_0.models.create_snapshot_lock_response import CreateSnapshotLockResponse -from isilon_sdk.v9_11_0.models.create_snapshot_schedule_response import CreateSnapshotScheduleResponse -from isilon_sdk.v9_11_0.models.create_snapshot_snapshot_response import CreateSnapshotSnapshotResponse -from isilon_sdk.v9_11_0.models.create_storagepool_tier_response import CreateStoragepoolTierResponse -from isilon_sdk.v9_11_0.models.create_supportassist_task_item_response import CreateSupportassistTaskItemResponse -from isilon_sdk.v9_11_0.models.create_sync_reports_rotate_item_response import CreateSyncReportsRotateItemResponse -from isilon_sdk.v9_11_0.models.create_throttling_bw_rule_response import CreateThrottlingBwRuleResponse -from isilon_sdk.v9_11_0.models.create_user_reset_password_item_response import CreateUserResetPasswordItemResponse -from isilon_sdk.v9_11_0.models.datamover_account import DatamoverAccount -from isilon_sdk.v9_11_0.models.datamover_account_create_params import DatamoverAccountCreateParams -from isilon_sdk.v9_11_0.models.datamover_account_credentials import DatamoverAccountCredentials -from isilon_sdk.v9_11_0.models.datamover_account_credentials_certificate import DatamoverAccountCredentialsCertificate -from isilon_sdk.v9_11_0.models.datamover_account_credentials_certificate_extended import DatamoverAccountCredentialsCertificateExtended -from isilon_sdk.v9_11_0.models.datamover_account_credentials_cloud import DatamoverAccountCredentialsCloud -from isilon_sdk.v9_11_0.models.datamover_account_credentials_cloud_extended import DatamoverAccountCredentialsCloudExtended -from isilon_sdk.v9_11_0.models.datamover_account_credentials_cloud_proxy import DatamoverAccountCredentialsCloudProxy -from isilon_sdk.v9_11_0.models.datamover_account_credentials_cloud_proxy_extended import DatamoverAccountCredentialsCloudProxyExtended -from isilon_sdk.v9_11_0.models.datamover_account_credentials_extended import DatamoverAccountCredentialsExtended -from isilon_sdk.v9_11_0.models.datamover_account_extended import DatamoverAccountExtended -from isilon_sdk.v9_11_0.models.datamover_accounts import DatamoverAccounts -from isilon_sdk.v9_11_0.models.datamover_base_policies import DatamoverBasePolicies -from isilon_sdk.v9_11_0.models.datamover_base_policies_policy import DatamoverBasePoliciesPolicy -from isilon_sdk.v9_11_0.models.datamover_base_policies_policy_schedule import DatamoverBasePoliciesPolicySchedule -from isilon_sdk.v9_11_0.models.datamover_base_policy import DatamoverBasePolicy -from isilon_sdk.v9_11_0.models.datamover_base_policy_schedule import DatamoverBasePolicySchedule -from isilon_sdk.v9_11_0.models.datamover_base_policy_src_dataset_retention import DatamoverBasePolicySrcDatasetRetention -from isilon_sdk.v9_11_0.models.datamover_config import DatamoverConfig -from isilon_sdk.v9_11_0.models.datamover_config_extended import DatamoverConfigExtended -from isilon_sdk.v9_11_0.models.datamover_config_namespace import DatamoverConfigNamespace -from isilon_sdk.v9_11_0.models.datamover_dataset import DatamoverDataset -from isilon_sdk.v9_11_0.models.datamover_dataset_dataset_global_id import DatamoverDatasetDatasetGlobalId -from isilon_sdk.v9_11_0.models.datamover_dataset_dataset_global_id_dataset_revision import DatamoverDatasetDatasetGlobalIdDatasetRevision -from isilon_sdk.v9_11_0.models.datamover_dataset_extended import DatamoverDatasetExtended -from isilon_sdk.v9_11_0.models.datamover_datasets import DatamoverDatasets -from isilon_sdk.v9_11_0.models.datamover_datasets_extended import DatamoverDatasetsExtended -from isilon_sdk.v9_11_0.models.datamover_historical_jobs import DatamoverHistoricalJobs -from isilon_sdk.v9_11_0.models.datamover_historical_jobs_job import DatamoverHistoricalJobsJob -from isilon_sdk.v9_11_0.models.datamover_historical_jobs_job_job_failed_task import DatamoverHistoricalJobsJobJobFailedTask -from isilon_sdk.v9_11_0.models.datamover_historical_jobs_job_job_type_specific_attrs import DatamoverHistoricalJobsJobJobTypeSpecificAttrs -from isilon_sdk.v9_11_0.models.datamover_historical_jobs_job_job_type_specific_attrs_dataset_baseline_copy_job import DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJob -from isilon_sdk.v9_11_0.models.datamover_historical_jobs_job_job_type_specific_attrs_dataset_baseline_copy_job_statistics import DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics -from isilon_sdk.v9_11_0.models.datamover_historical_jobs_job_job_type_specific_attrs_dataset_creation_job import DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJob -from isilon_sdk.v9_11_0.models.datamover_historical_jobs_job_job_type_specific_attrs_dataset_creation_job_statistics import DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJobStatistics -from isilon_sdk.v9_11_0.models.datamover_historical_jobs_job_job_type_specific_attrs_dataset_expiration_job import DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJob -from isilon_sdk.v9_11_0.models.datamover_historical_jobs_job_job_type_specific_attrs_dataset_expiration_job_statistics import DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics -from isilon_sdk.v9_11_0.models.datamover_historical_jobs_job_job_type_specific_attrs_dataset_incremental_copy_job import DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJob -from isilon_sdk.v9_11_0.models.datamover_historical_jobs_job_job_type_specific_attrs_dataset_incremental_copy_job_statistics import DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics -from isilon_sdk.v9_11_0.models.datamover_job import DatamoverJob -from isilon_sdk.v9_11_0.models.datamover_job_job_type_specific_attrs import DatamoverJobJobTypeSpecificAttrs -from isilon_sdk.v9_11_0.models.datamover_job_job_type_specific_attrs_dataset_baseline_copy_job import DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob -from isilon_sdk.v9_11_0.models.datamover_job_job_type_specific_attrs_dataset_creation_job import DatamoverJobJobTypeSpecificAttrsDatasetCreationJob -from isilon_sdk.v9_11_0.models.datamover_job_job_type_specific_attrs_dataset_expiration_job import DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob -from isilon_sdk.v9_11_0.models.datamover_job_job_type_specific_attrs_dataset_incremental_copy_job import DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob -from isilon_sdk.v9_11_0.models.datamover_jobs import DatamoverJobs -from isilon_sdk.v9_11_0.models.datamover_policies import DatamoverPolicies -from isilon_sdk.v9_11_0.models.datamover_policy import DatamoverPolicy -from isilon_sdk.v9_11_0.models.datamover_policy_create_params import DatamoverPolicyCreateParams -from isilon_sdk.v9_11_0.models.datamover_policy_extended import DatamoverPolicyExtended -from isilon_sdk.v9_11_0.models.datamover_policy_policy_specific_attr import DatamoverPolicyPolicySpecificAttr -from isilon_sdk.v9_11_0.models.datamover_policy_policy_specific_attr_copy_policy import DatamoverPolicyPolicySpecificAttrCopyPolicy -from isilon_sdk.v9_11_0.models.datamover_policy_policy_specific_attr_copy_policy_dataset_copy_policy_base import DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBase -from isilon_sdk.v9_11_0.models.datamover_policy_policy_specific_attr_copy_policy_extended import DatamoverPolicyPolicySpecificAttrCopyPolicyExtended -from isilon_sdk.v9_11_0.models.datamover_policy_policy_specific_attr_creation_policy import DatamoverPolicyPolicySpecificAttrCreationPolicy -from isilon_sdk.v9_11_0.models.datamover_policy_policy_specific_attr_expiration_policy import DatamoverPolicyPolicySpecificAttrExpirationPolicy -from isilon_sdk.v9_11_0.models.datamover_policy_policy_specific_attr_extended import DatamoverPolicyPolicySpecificAttrExtended -from isilon_sdk.v9_11_0.models.datamover_policy_policy_specific_attr_repeat_copy_policy import DatamoverPolicyPolicySpecificAttrRepeatCopyPolicy -from isilon_sdk.v9_11_0.models.datamover_policy_policy_specific_attr_repeat_copy_policy_extended import DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended -from isilon_sdk.v9_11_0.models.datamover_policy_schedule import DatamoverPolicySchedule -from isilon_sdk.v9_11_0.models.dataset_filter import DatasetFilter -from isilon_sdk.v9_11_0.models.dataset_filter_metric_values import DatasetFilterMetricValues -from isilon_sdk.v9_11_0.models.dataset_filter_metric_values_create_params import DatasetFilterMetricValuesCreateParams -from isilon_sdk.v9_11_0.models.dataset_filters import DatasetFilters -from isilon_sdk.v9_11_0.models.dataset_filters_extended import DatasetFiltersExtended -from isilon_sdk.v9_11_0.models.dataset_workload import DatasetWorkload -from isilon_sdk.v9_11_0.models.dataset_workload_limits import DatasetWorkloadLimits -from isilon_sdk.v9_11_0.models.dataset_workloads import DatasetWorkloads -from isilon_sdk.v9_11_0.models.dataset_workloads_extended import DatasetWorkloadsExtended -from isilon_sdk.v9_11_0.models.debug_stats import DebugStats -from isilon_sdk.v9_11_0.models.debug_stats_describe import DebugStatsDescribe -from isilon_sdk.v9_11_0.models.debug_stats_handler import DebugStatsHandler -from isilon_sdk.v9_11_0.models.dedupe_dedupe_summary import DedupeDedupeSummary -from isilon_sdk.v9_11_0.models.dedupe_dedupe_summary_summary import DedupeDedupeSummarySummary -from isilon_sdk.v9_11_0.models.dedupe_report import DedupeReport -from isilon_sdk.v9_11_0.models.dedupe_report_extended import DedupeReportExtended -from isilon_sdk.v9_11_0.models.dedupe_reports import DedupeReports -from isilon_sdk.v9_11_0.models.dedupe_settings import DedupeSettings -from isilon_sdk.v9_11_0.models.dedupe_settings_extended import DedupeSettingsExtended -from isilon_sdk.v9_11_0.models.dedupe_settings_settings import DedupeSettingsSettings -from isilon_sdk.v9_11_0.models.diagnostics_gather import DiagnosticsGather -from isilon_sdk.v9_11_0.models.diagnostics_gather_gather import DiagnosticsGatherGather -from isilon_sdk.v9_11_0.models.diagnostics_gather_groups import DiagnosticsGatherGroups -from isilon_sdk.v9_11_0.models.diagnostics_gather_settings import DiagnosticsGatherSettings -from isilon_sdk.v9_11_0.models.diagnostics_gather_settings_extended import DiagnosticsGatherSettingsExtended -from isilon_sdk.v9_11_0.models.diagnostics_gather_settings_settings import DiagnosticsGatherSettingsSettings -from isilon_sdk.v9_11_0.models.diagnostics_gather_start_item import DiagnosticsGatherStartItem -from isilon_sdk.v9_11_0.models.diagnostics_gather_status import DiagnosticsGatherStatus -from isilon_sdk.v9_11_0.models.diagnostics_gather_status_gather import DiagnosticsGatherStatusGather -from isilon_sdk.v9_11_0.models.diagnostics_gather_status_gather_extended import DiagnosticsGatherStatusGatherExtended -from isilon_sdk.v9_11_0.models.diagnostics_gather_status_gather_status import DiagnosticsGatherStatusGatherStatus -from isilon_sdk.v9_11_0.models.diagnostics_netlogger_settings import DiagnosticsNetloggerSettings -from isilon_sdk.v9_11_0.models.diagnostics_netlogger_settings_settings import DiagnosticsNetloggerSettingsSettings -from isilon_sdk.v9_11_0.models.diagnostics_netlogger_status import DiagnosticsNetloggerStatus -from isilon_sdk.v9_11_0.models.directory_query import DirectoryQuery -from isilon_sdk.v9_11_0.models.directory_query_scope import DirectoryQueryScope -from isilon_sdk.v9_11_0.models.directory_query_scope_conditions import DirectoryQueryScopeConditions -from isilon_sdk.v9_11_0.models.drives_drive_firmware import DrivesDriveFirmware -from isilon_sdk.v9_11_0.models.drives_drive_firmware_node import DrivesDriveFirmwareNode -from isilon_sdk.v9_11_0.models.drives_drive_firmware_node_drive import DrivesDriveFirmwareNodeDrive -from isilon_sdk.v9_11_0.models.drives_drive_firmware_update import DrivesDriveFirmwareUpdate -from isilon_sdk.v9_11_0.models.drives_drive_firmware_update_item import DrivesDriveFirmwareUpdateItem -from isilon_sdk.v9_11_0.models.drives_drive_firmware_update_node import DrivesDriveFirmwareUpdateNode -from isilon_sdk.v9_11_0.models.drives_drive_firmware_update_node_status import DrivesDriveFirmwareUpdateNodeStatus -from isilon_sdk.v9_11_0.models.drives_drive_format_item import DrivesDriveFormatItem -from isilon_sdk.v9_11_0.models.drives_drive_purpose_item import DrivesDrivePurposeItem -from isilon_sdk.v9_11_0.models.empty import Empty -from isilon_sdk.v9_11_0.models.error import Error -from isilon_sdk.v9_11_0.models.event_alert_condition import EventAlertCondition -from isilon_sdk.v9_11_0.models.event_alert_conditions import EventAlertConditions -from isilon_sdk.v9_11_0.models.event_alert_conditions_alert_condition import EventAlertConditionsAlertCondition -from isilon_sdk.v9_11_0.models.event_categories import EventCategories -from isilon_sdk.v9_11_0.models.event_category import EventCategory -from isilon_sdk.v9_11_0.models.event_channel import EventChannel -from isilon_sdk.v9_11_0.models.event_channel_parameters import EventChannelParameters -from isilon_sdk.v9_11_0.models.event_channels import EventChannels -from isilon_sdk.v9_11_0.models.event_event import EventEvent -from isilon_sdk.v9_11_0.models.event_eventgroup_definitions import EventEventgroupDefinitions -from isilon_sdk.v9_11_0.models.event_eventgroup_definitions_eventgroup_definition import EventEventgroupDefinitionsEventgroupDefinition -from isilon_sdk.v9_11_0.models.event_eventgroup_occurrence import EventEventgroupOccurrence -from isilon_sdk.v9_11_0.models.event_eventgroup_occurrences import EventEventgroupOccurrences -from isilon_sdk.v9_11_0.models.event_eventgroup_occurrences_eventgroup import EventEventgroupOccurrencesEventgroup -from isilon_sdk.v9_11_0.models.event_eventlist import EventEventlist -from isilon_sdk.v9_11_0.models.event_eventlist_event import EventEventlistEvent -from isilon_sdk.v9_11_0.models.event_eventlists import EventEventlists -from isilon_sdk.v9_11_0.models.event_maintenance import EventMaintenance -from isilon_sdk.v9_11_0.models.event_maintenance_extended import EventMaintenanceExtended -from isilon_sdk.v9_11_0.models.event_maintenance_history_item import EventMaintenanceHistoryItem -from isilon_sdk.v9_11_0.models.event_settings import EventSettings -from isilon_sdk.v9_11_0.models.event_settings_settings import EventSettingsSettings -from isilon_sdk.v9_11_0.models.event_suppress import EventSuppress -from isilon_sdk.v9_11_0.models.event_suppress_id_params import EventSuppressIdParams -from isilon_sdk.v9_11_0.models.event_suppress_suppression import EventSuppressSuppression -from isilon_sdk.v9_11_0.models.event_threshold import EventThreshold -from isilon_sdk.v9_11_0.models.event_threshold_defaults import EventThresholdDefaults -from isilon_sdk.v9_11_0.models.event_threshold_defaults_crit import EventThresholdDefaultsCrit -from isilon_sdk.v9_11_0.models.event_thresholds import EventThresholds -from isilon_sdk.v9_11_0.models.file_filter_settings import FileFilterSettings -from isilon_sdk.v9_11_0.models.file_filter_settings_extended import FileFilterSettingsExtended -from isilon_sdk.v9_11_0.models.file_filter_settings_settings import FileFilterSettingsSettings -from isilon_sdk.v9_11_0.models.filepool_default_policy import FilepoolDefaultPolicy -from isilon_sdk.v9_11_0.models.filepool_default_policy_default_policy import FilepoolDefaultPolicyDefaultPolicy -from isilon_sdk.v9_11_0.models.filepool_default_policy_default_policy_action import FilepoolDefaultPolicyDefaultPolicyAction -from isilon_sdk.v9_11_0.models.filepool_default_policy_extended import FilepoolDefaultPolicyExtended -from isilon_sdk.v9_11_0.models.filepool_policies import FilepoolPolicies -from isilon_sdk.v9_11_0.models.filepool_policies_extended import FilepoolPoliciesExtended -from isilon_sdk.v9_11_0.models.filepool_policy import FilepoolPolicy -from isilon_sdk.v9_11_0.models.filepool_policy_action import FilepoolPolicyAction -from isilon_sdk.v9_11_0.models.filepool_policy_action_extended import FilepoolPolicyActionExtended -from isilon_sdk.v9_11_0.models.filepool_policy_action_extended_extended import FilepoolPolicyActionExtendedExtended -from isilon_sdk.v9_11_0.models.filepool_policy_extended import FilepoolPolicyExtended -from isilon_sdk.v9_11_0.models.filepool_policy_extended_extended import FilepoolPolicyExtendedExtended -from isilon_sdk.v9_11_0.models.filepool_policy_file_matching_pattern import FilepoolPolicyFileMatchingPattern -from isilon_sdk.v9_11_0.models.filepool_policy_file_matching_pattern_or_criteria_item import FilepoolPolicyFileMatchingPatternOrCriteriaItem -from isilon_sdk.v9_11_0.models.filepool_policy_file_matching_pattern_or_criteria_item_and_criteria_item import FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem -from isilon_sdk.v9_11_0.models.filepool_template import FilepoolTemplate -from isilon_sdk.v9_11_0.models.filepool_template_action import FilepoolTemplateAction -from isilon_sdk.v9_11_0.models.filepool_template_action_extended import FilepoolTemplateActionExtended -from isilon_sdk.v9_11_0.models.filepool_template_extended import FilepoolTemplateExtended -from isilon_sdk.v9_11_0.models.filepool_templates import FilepoolTemplates -from isilon_sdk.v9_11_0.models.filepool_templates_extended import FilepoolTemplatesExtended -from isilon_sdk.v9_11_0.models.firewall_dscp import FirewallDscp -from isilon_sdk.v9_11_0.models.firewall_dscp_extended import FirewallDscpExtended -from isilon_sdk.v9_11_0.models.firewall_dscp_rule import FirewallDscpRule -from isilon_sdk.v9_11_0.models.firewall_dscp_rule_params import FirewallDscpRuleParams -from isilon_sdk.v9_11_0.models.firewall_dscp_rule_params_dst_ports import FirewallDscpRuleParamsDstPorts -from isilon_sdk.v9_11_0.models.firewall_policies import FirewallPolicies -from isilon_sdk.v9_11_0.models.firewall_policies_extended import FirewallPoliciesExtended -from isilon_sdk.v9_11_0.models.firewall_policy import FirewallPolicy -from isilon_sdk.v9_11_0.models.firewall_policy_create_params import FirewallPolicyCreateParams -from isilon_sdk.v9_11_0.models.firewall_rules import FirewallRules -from isilon_sdk.v9_11_0.models.firewall_service import FirewallService -from isilon_sdk.v9_11_0.models.firewall_services import FirewallServices -from isilon_sdk.v9_11_0.models.firewall_settings import FirewallSettings -from isilon_sdk.v9_11_0.models.firewall_settings_extended import FirewallSettingsExtended -from isilon_sdk.v9_11_0.models.firewall_settings_settings import FirewallSettingsSettings -from isilon_sdk.v9_11_0.models.fsa_index import FsaIndex -from isilon_sdk.v9_11_0.models.fsa_result import FsaResult -from isilon_sdk.v9_11_0.models.fsa_results import FsaResults -from isilon_sdk.v9_11_0.models.fsa_settings import FsaSettings -from isilon_sdk.v9_11_0.models.fsa_settings_settings import FsaSettingsSettings -from isilon_sdk.v9_11_0.models.ftp_settings import FtpSettings -from isilon_sdk.v9_11_0.models.ftp_settings_extended import FtpSettingsExtended -from isilon_sdk.v9_11_0.models.ftp_settings_settings import FtpSettingsSettings -from isilon_sdk.v9_11_0.models.group_members import GroupMembers -from isilon_sdk.v9_11_0.models.groupnet_subnet import GroupnetSubnet -from isilon_sdk.v9_11_0.models.groupnet_subnets import GroupnetSubnets -from isilon_sdk.v9_11_0.models.groupnets_summary import GroupnetsSummary -from isilon_sdk.v9_11_0.models.groupnets_summary_summary import GroupnetsSummarySummary -from isilon_sdk.v9_11_0.models.groupnets_summary_summary_list_item import GroupnetsSummarySummaryListItem -from isilon_sdk.v9_11_0.models.hardening_apply_item import HardeningApplyItem -from isilon_sdk.v9_11_0.models.hardening_list import HardeningList -from isilon_sdk.v9_11_0.models.hardening_list_profile import HardeningListProfile -from isilon_sdk.v9_11_0.models.hardening_reports import HardeningReports -from isilon_sdk.v9_11_0.models.hardening_reports_report import HardeningReportsReport -from isilon_sdk.v9_11_0.models.hardening_reports_report_profile import HardeningReportsReportProfile -from isilon_sdk.v9_11_0.models.hardening_reports_report_profile_cluster_wide import HardeningReportsReportProfileClusterWide -from isilon_sdk.v9_11_0.models.hardening_reports_report_profile_cluster_wide_rule import HardeningReportsReportProfileClusterWideRule -from isilon_sdk.v9_11_0.models.hardening_reports_report_profile_cluster_wide_rule_settings_comparisons_list_item import HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItem -from isilon_sdk.v9_11_0.models.hardening_reports_report_profile_cluster_wide_rule_settings_comparisons_list_item_comparison import HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison -from isilon_sdk.v9_11_0.models.hardening_reports_report_profile_node import HardeningReportsReportProfileNode -from isilon_sdk.v9_11_0.models.hardening_state import HardeningState -from isilon_sdk.v9_11_0.models.hardening_state_state import HardeningStateState -from isilon_sdk.v9_11_0.models.hardware_fcport import HardwareFcport -from isilon_sdk.v9_11_0.models.hardware_fcports import HardwareFcports -from isilon_sdk.v9_11_0.models.hardware_fcports_node import HardwareFcportsNode -from isilon_sdk.v9_11_0.models.hardware_fcports_node_fcport import HardwareFcportsNodeFcport -from isilon_sdk.v9_11_0.models.hardware_tape_name_params import HardwareTapeNameParams -from isilon_sdk.v9_11_0.models.hardware_tapes import HardwareTapes -from isilon_sdk.v9_11_0.models.hardware_tapes_devices import HardwareTapesDevices -from isilon_sdk.v9_11_0.models.hardware_tapes_devices_media_changer import HardwareTapesDevicesMediaChanger -from isilon_sdk.v9_11_0.models.hardware_tapes_devices_media_changer_path import HardwareTapesDevicesMediaChangerPath -from isilon_sdk.v9_11_0.models.hdfs_crypto_encryption_zone import HdfsCryptoEncryptionZone -from isilon_sdk.v9_11_0.models.hdfs_crypto_encryption_zones import HdfsCryptoEncryptionZones -from isilon_sdk.v9_11_0.models.hdfs_crypto_encryption_zones_encryption_zone import HdfsCryptoEncryptionZonesEncryptionZone -from isilon_sdk.v9_11_0.models.hdfs_crypto_settings import HdfsCryptoSettings -from isilon_sdk.v9_11_0.models.hdfs_crypto_settings_settings import HdfsCryptoSettingsSettings -from isilon_sdk.v9_11_0.models.hdfs_fsimage_job import HdfsFsimageJob -from isilon_sdk.v9_11_0.models.hdfs_fsimage_job_job import HdfsFsimageJobJob -from isilon_sdk.v9_11_0.models.hdfs_fsimage_job_settings import HdfsFsimageJobSettings -from isilon_sdk.v9_11_0.models.hdfs_fsimage_job_settings_settings import HdfsFsimageJobSettingsSettings -from isilon_sdk.v9_11_0.models.hdfs_fsimage_latest import HdfsFsimageLatest -from isilon_sdk.v9_11_0.models.hdfs_fsimage_latest_latest import HdfsFsimageLatestLatest -from isilon_sdk.v9_11_0.models.hdfs_fsimage_settings import HdfsFsimageSettings -from isilon_sdk.v9_11_0.models.hdfs_fsimage_settings_settings import HdfsFsimageSettingsSettings -from isilon_sdk.v9_11_0.models.hdfs_inotify_settings import HdfsInotifySettings -from isilon_sdk.v9_11_0.models.hdfs_inotify_settings_settings import HdfsInotifySettingsSettings -from isilon_sdk.v9_11_0.models.hdfs_inotify_stream import HdfsInotifyStream -from isilon_sdk.v9_11_0.models.hdfs_inotify_stream_stream import HdfsInotifyStreamStream -from isilon_sdk.v9_11_0.models.hdfs_log_level import HdfsLogLevel -from isilon_sdk.v9_11_0.models.hdfs_proxyuser import HdfsProxyuser -from isilon_sdk.v9_11_0.models.hdfs_proxyuser_create_params import HdfsProxyuserCreateParams -from isilon_sdk.v9_11_0.models.hdfs_proxyusers import HdfsProxyusers -from isilon_sdk.v9_11_0.models.hdfs_proxyusers_extended import HdfsProxyusersExtended -from isilon_sdk.v9_11_0.models.hdfs_rack import HdfsRack -from isilon_sdk.v9_11_0.models.hdfs_racks import HdfsRacks -from isilon_sdk.v9_11_0.models.hdfs_racks_extended import HdfsRacksExtended -from isilon_sdk.v9_11_0.models.hdfs_ranger_plugin_settings import HdfsRangerPluginSettings -from isilon_sdk.v9_11_0.models.hdfs_ranger_plugin_settings_settings import HdfsRangerPluginSettingsSettings -from isilon_sdk.v9_11_0.models.hdfs_settings import HdfsSettings -from isilon_sdk.v9_11_0.models.hdfs_settings_global import HdfsSettingsGlobal -from isilon_sdk.v9_11_0.models.hdfs_settings_global_global_settings import HdfsSettingsGlobalGlobalSettings -from isilon_sdk.v9_11_0.models.hdfs_settings_settings import HdfsSettingsSettings -from isilon_sdk.v9_11_0.models.healthcheck_autoupdate import HealthcheckAutoupdate -from isilon_sdk.v9_11_0.models.healthcheck_autoupdate_autoupdate import HealthcheckAutoupdateAutoupdate -from isilon_sdk.v9_11_0.models.healthcheck_checklist import HealthcheckChecklist -from isilon_sdk.v9_11_0.models.healthcheck_checklist_delivery_item import HealthcheckChecklistDeliveryItem -from isilon_sdk.v9_11_0.models.healthcheck_checklist_item import HealthcheckChecklistItem -from isilon_sdk.v9_11_0.models.healthcheck_checklist_item_thresholds import HealthcheckChecklistItemThresholds -from isilon_sdk.v9_11_0.models.healthcheck_checklists import HealthcheckChecklists -from isilon_sdk.v9_11_0.models.healthcheck_definition import HealthcheckDefinition -from isilon_sdk.v9_11_0.models.healthcheck_definition_create_params import HealthcheckDefinitionCreateParams -from isilon_sdk.v9_11_0.models.healthcheck_definition_file import HealthcheckDefinitionFile -from isilon_sdk.v9_11_0.models.healthcheck_definition_service import HealthcheckDefinitionService -from isilon_sdk.v9_11_0.models.healthcheck_definitions import HealthcheckDefinitions -from isilon_sdk.v9_11_0.models.healthcheck_evaluation import HealthcheckEvaluation -from isilon_sdk.v9_11_0.models.healthcheck_evaluation_create_params import HealthcheckEvaluationCreateParams -from isilon_sdk.v9_11_0.models.healthcheck_evaluation_detail import HealthcheckEvaluationDetail -from isilon_sdk.v9_11_0.models.healthcheck_evaluation_extended import HealthcheckEvaluationExtended -from isilon_sdk.v9_11_0.models.healthcheck_evaluation_override import HealthcheckEvaluationOverride -from isilon_sdk.v9_11_0.models.healthcheck_evaluation_smartlog import HealthcheckEvaluationSmartlog -from isilon_sdk.v9_11_0.models.healthcheck_evaluations import HealthcheckEvaluations -from isilon_sdk.v9_11_0.models.healthcheck_item import HealthcheckItem -from isilon_sdk.v9_11_0.models.healthcheck_item_parameter import HealthcheckItemParameter -from isilon_sdk.v9_11_0.models.healthcheck_items import HealthcheckItems -from isilon_sdk.v9_11_0.models.healthcheck_parameter import HealthcheckParameter -from isilon_sdk.v9_11_0.models.healthcheck_parameters import HealthcheckParameters -from isilon_sdk.v9_11_0.models.healthcheck_schedule import HealthcheckSchedule -from isilon_sdk.v9_11_0.models.healthcheck_schedule_create_params import HealthcheckScheduleCreateParams -from isilon_sdk.v9_11_0.models.healthcheck_schedule_extended import HealthcheckScheduleExtended -from isilon_sdk.v9_11_0.models.healthcheck_schedules import HealthcheckSchedules -from isilon_sdk.v9_11_0.models.healthcheck_version import HealthcheckVersion -from isilon_sdk.v9_11_0.models.histogram_stat_by import HistogramStatBy -from isilon_sdk.v9_11_0.models.histogram_stat_by_breakout import HistogramStatByBreakout -from isilon_sdk.v9_11_0.models.history_file import HistoryFile -from isilon_sdk.v9_11_0.models.history_file_statistic import HistoryFileStatistic -from isilon_sdk.v9_11_0.models.http_service import HttpService -from isilon_sdk.v9_11_0.models.http_services import HttpServices -from isilon_sdk.v9_11_0.models.http_services_extended import HttpServicesExtended -from isilon_sdk.v9_11_0.models.http_settings import HttpSettings -from isilon_sdk.v9_11_0.models.http_settings_extended import HttpSettingsExtended -from isilon_sdk.v9_11_0.models.http_settings_settings import HttpSettingsSettings -from isilon_sdk.v9_11_0.models.iceage_settings import IceageSettings -from isilon_sdk.v9_11_0.models.iceage_settings_settings import IceageSettingsSettings -from isilon_sdk.v9_11_0.models.id_resolution_domains import IdResolutionDomains -from isilon_sdk.v9_11_0.models.id_resolution_domains_error import IdResolutionDomainsError -from isilon_sdk.v9_11_0.models.id_resolution_domains_path import IdResolutionDomainsPath -from isilon_sdk.v9_11_0.models.id_resolution_lins import IdResolutionLins -from isilon_sdk.v9_11_0.models.id_resolution_lins_path import IdResolutionLinsPath -from isilon_sdk.v9_11_0.models.id_resolution_zone import IdResolutionZone -from isilon_sdk.v9_11_0.models.id_resolution_zones import IdResolutionZones -from isilon_sdk.v9_11_0.models.inline_settings import InlineSettings -from isilon_sdk.v9_11_0.models.inline_settings_settings import InlineSettingsSettings -from isilon_sdk.v9_11_0.models.internal_networks_preferred_network import InternalNetworksPreferredNetwork -from isilon_sdk.v9_11_0.models.internal_networks_settings import InternalNetworksSettings -from isilon_sdk.v9_11_0.models.internal_networks_settings_extended import InternalNetworksSettingsExtended -from isilon_sdk.v9_11_0.models.internal_networks_settings_internal_networks_settings import InternalNetworksSettingsInternalNetworksSettings -from isilon_sdk.v9_11_0.models.internal_networks_settings_internal_networks_settings_network_item import InternalNetworksSettingsInternalNetworksSettingsNetworkItem -from isilon_sdk.v9_11_0.models.internal_networks_settings_internal_networks_settings_network_item_backend_config import InternalNetworksSettingsInternalNetworksSettingsNetworkItemBackendConfig -from isilon_sdk.v9_11_0.models.internal_networks_settings_network import InternalNetworksSettingsNetwork -from isilon_sdk.v9_11_0.models.internal_networks_settings_network_backend_config import InternalNetworksSettingsNetworkBackendConfig -from isilon_sdk.v9_11_0.models.job_event import JobEvent -from isilon_sdk.v9_11_0.models.job_events import JobEvents -from isilon_sdk.v9_11_0.models.job_job import JobJob -from isilon_sdk.v9_11_0.models.job_job_avscan_params import JobJobAvscanParams -from isilon_sdk.v9_11_0.models.job_job_changelistcreate_params import JobJobChangelistcreateParams -from isilon_sdk.v9_11_0.models.job_job_create_params import JobJobCreateParams -from isilon_sdk.v9_11_0.models.job_job_domainmark_params import JobJobDomainmarkParams -from isilon_sdk.v9_11_0.models.job_job_esrsmftdownload_params import JobJobEsrsmftdownloadParams -from isilon_sdk.v9_11_0.models.job_job_extended import JobJobExtended -from isilon_sdk.v9_11_0.models.job_job_filepolicy_params import JobJobFilepolicyParams -from isilon_sdk.v9_11_0.models.job_job_prepair_params import JobJobPrepairParams -from isilon_sdk.v9_11_0.models.job_job_smartpoolstree_params import JobJobSmartpoolstreeParams -from isilon_sdk.v9_11_0.models.job_job_snaprevert_params import JobJobSnaprevertParams -from isilon_sdk.v9_11_0.models.job_job_summary import JobJobSummary -from isilon_sdk.v9_11_0.models.job_job_summary_summary import JobJobSummarySummary -from isilon_sdk.v9_11_0.models.job_job_treedelete_params import JobJobTreedeleteParams -from isilon_sdk.v9_11_0.models.job_jobs import JobJobs -from isilon_sdk.v9_11_0.models.job_policies import JobPolicies -from isilon_sdk.v9_11_0.models.job_policy import JobPolicy -from isilon_sdk.v9_11_0.models.job_policy_interval import JobPolicyInterval -from isilon_sdk.v9_11_0.models.job_recent import JobRecent -from isilon_sdk.v9_11_0.models.job_recent_recent_job import JobRecentRecentJob -from isilon_sdk.v9_11_0.models.job_report import JobReport -from isilon_sdk.v9_11_0.models.job_reports import JobReports -from isilon_sdk.v9_11_0.models.job_settings import JobSettings -from isilon_sdk.v9_11_0.models.job_settings_settings import JobSettingsSettings -from isilon_sdk.v9_11_0.models.job_statistics import JobStatistics -from isilon_sdk.v9_11_0.models.job_statistics_job import JobStatisticsJob -from isilon_sdk.v9_11_0.models.job_statistics_job_node import JobStatisticsJobNode -from isilon_sdk.v9_11_0.models.job_statistics_job_node_cpu import JobStatisticsJobNodeCpu -from isilon_sdk.v9_11_0.models.job_statistics_job_node_io import JobStatisticsJobNodeIo -from isilon_sdk.v9_11_0.models.job_statistics_job_node_io_read import JobStatisticsJobNodeIoRead -from isilon_sdk.v9_11_0.models.job_statistics_job_node_io_write import JobStatisticsJobNodeIoWrite -from isilon_sdk.v9_11_0.models.job_statistics_job_node_memory import JobStatisticsJobNodeMemory -from isilon_sdk.v9_11_0.models.job_statistics_job_node_memory_physical import JobStatisticsJobNodeMemoryPhysical -from isilon_sdk.v9_11_0.models.job_statistics_job_node_memory_virtual import JobStatisticsJobNodeMemoryVirtual -from isilon_sdk.v9_11_0.models.job_statistics_job_node_worker import JobStatisticsJobNodeWorker -from isilon_sdk.v9_11_0.models.job_type import JobType -from isilon_sdk.v9_11_0.models.job_types import JobTypes -from isilon_sdk.v9_11_0.models.keymanager_cluster import KeymanagerCluster -from isilon_sdk.v9_11_0.models.keymanager_cluster_domain import KeymanagerClusterDomain -from isilon_sdk.v9_11_0.models.kmip_server import KmipServer -from isilon_sdk.v9_11_0.models.kmip_server_ca_chain_item import KmipServerCaChainItem -from isilon_sdk.v9_11_0.models.kmip_server_client_cert import KmipServerClientCert -from isilon_sdk.v9_11_0.models.kmip_server_extended import KmipServerExtended -from isilon_sdk.v9_11_0.models.kmip_server_verify_item import KmipServerVerifyItem -from isilon_sdk.v9_11_0.models.kmip_servers import KmipServers -from isilon_sdk.v9_11_0.models.kmip_servers_extended import KmipServersExtended -from isilon_sdk.v9_11_0.models.lfn import Lfn -from isilon_sdk.v9_11_0.models.lfn_domain import LfnDomain -from isilon_sdk.v9_11_0.models.lfn_path_params import LfnPathParams -from isilon_sdk.v9_11_0.models.license_activation import LicenseActivation -from isilon_sdk.v9_11_0.models.license_activation_elms_error import LicenseActivationElmsError -from isilon_sdk.v9_11_0.models.license_activation_item import LicenseActivationItem -from isilon_sdk.v9_11_0.models.license_generate import LicenseGenerate -from isilon_sdk.v9_11_0.models.license_generate_hardware_item import LicenseGenerateHardwareItem -from isilon_sdk.v9_11_0.models.license_license import LicenseLicense -from isilon_sdk.v9_11_0.models.license_license_create_params import LicenseLicenseCreateParams -from isilon_sdk.v9_11_0.models.license_license_tier import LicenseLicenseTier -from isilon_sdk.v9_11_0.models.license_license_tier_entitlements_exceeded_alert import LicenseLicenseTierEntitlementsExceededAlert -from isilon_sdk.v9_11_0.models.license_licenses import LicenseLicenses -from isilon_sdk.v9_11_0.models.maintenance_settings import MaintenanceSettings -from isilon_sdk.v9_11_0.models.maintenance_settings_component import MaintenanceSettingsComponent -from isilon_sdk.v9_11_0.models.maintenance_settings_extended import MaintenanceSettingsExtended -from isilon_sdk.v9_11_0.models.maintenance_settings_history_item import MaintenanceSettingsHistoryItem -from isilon_sdk.v9_11_0.models.mapping_dump import MappingDump -from isilon_sdk.v9_11_0.models.mapping_identities import MappingIdentities -from isilon_sdk.v9_11_0.models.mapping_identities_create_params import MappingIdentitiesCreateParams -from isilon_sdk.v9_11_0.models.mapping_identities_target import MappingIdentitiesTarget -from isilon_sdk.v9_11_0.models.mapping_identity import MappingIdentity -from isilon_sdk.v9_11_0.models.mapping_identity_target import MappingIdentityTarget -from isilon_sdk.v9_11_0.models.mapping_users_lookup import MappingUsersLookup -from isilon_sdk.v9_11_0.models.mapping_users_lookup_mapping_item import MappingUsersLookupMappingItem -from isilon_sdk.v9_11_0.models.mapping_users_lookup_mapping_item_group import MappingUsersLookupMappingItemGroup -from isilon_sdk.v9_11_0.models.mapping_users_rules import MappingUsersRules -from isilon_sdk.v9_11_0.models.mapping_users_rules_extended import MappingUsersRulesExtended -from isilon_sdk.v9_11_0.models.mapping_users_rules_parameters import MappingUsersRulesParameters -from isilon_sdk.v9_11_0.models.mapping_users_rules_rule import MappingUsersRulesRule -from isilon_sdk.v9_11_0.models.mapping_users_rules_rule_extended import MappingUsersRulesRuleExtended -from isilon_sdk.v9_11_0.models.mapping_users_rules_rule_options import MappingUsersRulesRuleOptions -from isilon_sdk.v9_11_0.models.mapping_users_rules_rule_options_extended import MappingUsersRulesRuleOptionsExtended -from isilon_sdk.v9_11_0.models.mapping_users_rules_rules import MappingUsersRulesRules -from isilon_sdk.v9_11_0.models.mapping_users_rules_rules_parameters import MappingUsersRulesRulesParameters -from isilon_sdk.v9_11_0.models.mapping_users_rules_rules_parameters_default_unix_user import MappingUsersRulesRulesParametersDefaultUnixUser -from isilon_sdk.v9_11_0.models.member_object import MemberObject -from isilon_sdk.v9_11_0.models.metadataiq_certificate import MetadataiqCertificate -from isilon_sdk.v9_11_0.models.metadataiq_settings import MetadataiqSettings -from isilon_sdk.v9_11_0.models.metadataiq_settings_settings import MetadataiqSettingsSettings -from isilon_sdk.v9_11_0.models.metadataiq_settings_settings_consumer import MetadataiqSettingsSettingsConsumer -from isilon_sdk.v9_11_0.models.metadataiq_settings_settings_consumer_database_info import MetadataiqSettingsSettingsConsumerDatabaseInfo -from isilon_sdk.v9_11_0.models.metadataiq_settings_settings_producer import MetadataiqSettingsSettingsProducer -from isilon_sdk.v9_11_0.models.metadataiq_status import MetadataiqStatus -from isilon_sdk.v9_11_0.models.metadataiq_status_status import MetadataiqStatusStatus -from isilon_sdk.v9_11_0.models.metadataiq_status_status_consumer import MetadataiqStatusStatusConsumer -from isilon_sdk.v9_11_0.models.metadataiq_status_status_producer import MetadataiqStatusStatusProducer -from isilon_sdk.v9_11_0.models.name_lin import NameLin -from isilon_sdk.v9_11_0.models.name_lins import NameLins -from isilon_sdk.v9_11_0.models.name_lins_extended import NameLinsExtended -from isilon_sdk.v9_11_0.models.namespace_access_points import NamespaceAccessPoints -from isilon_sdk.v9_11_0.models.namespace_access_points_namespaces import NamespaceAccessPointsNamespaces -from isilon_sdk.v9_11_0.models.namespace_acl import NamespaceAcl -from isilon_sdk.v9_11_0.models.namespace_metadata import NamespaceMetadata -from isilon_sdk.v9_11_0.models.namespace_metadata_attrs import NamespaceMetadataAttrs -from isilon_sdk.v9_11_0.models.namespace_metadata_list import NamespaceMetadataList -from isilon_sdk.v9_11_0.models.namespace_metadata_list_attrs import NamespaceMetadataListAttrs -from isilon_sdk.v9_11_0.models.namespace_object import NamespaceObject -from isilon_sdk.v9_11_0.models.namespace_objects import NamespaceObjects -from isilon_sdk.v9_11_0.models.ndmp_contexts_backup import NdmpContextsBackup -from isilon_sdk.v9_11_0.models.ndmp_contexts_backup_context import NdmpContextsBackupContext -from isilon_sdk.v9_11_0.models.ndmp_contexts_backup_context_extended import NdmpContextsBackupContextExtended -from isilon_sdk.v9_11_0.models.ndmp_contexts_backup_context_session import NdmpContextsBackupContextSession -from isilon_sdk.v9_11_0.models.ndmp_contexts_backup_extended import NdmpContextsBackupExtended -from isilon_sdk.v9_11_0.models.ndmp_contexts_bre import NdmpContextsBre -from isilon_sdk.v9_11_0.models.ndmp_contexts_bre_context import NdmpContextsBreContext -from isilon_sdk.v9_11_0.models.ndmp_contexts_bre_context_env_variable import NdmpContextsBreContextEnvVariable -from isilon_sdk.v9_11_0.models.ndmp_contexts_bre_context_extended import NdmpContextsBreContextExtended -from isilon_sdk.v9_11_0.models.ndmp_contexts_bre_extended import NdmpContextsBreExtended -from isilon_sdk.v9_11_0.models.ndmp_diagnostics import NdmpDiagnostics -from isilon_sdk.v9_11_0.models.ndmp_diagnostics_diagnostics import NdmpDiagnosticsDiagnostics -from isilon_sdk.v9_11_0.models.ndmp_dumpdate import NdmpDumpdate -from isilon_sdk.v9_11_0.models.ndmp_dumpdates import NdmpDumpdates -from isilon_sdk.v9_11_0.models.ndmp_logs import NdmpLogs -from isilon_sdk.v9_11_0.models.ndmp_logs_node import NdmpLogsNode -from isilon_sdk.v9_11_0.models.ndmp_session import NdmpSession -from isilon_sdk.v9_11_0.models.ndmp_sessions import NdmpSessions -from isilon_sdk.v9_11_0.models.ndmp_sessions_extended import NdmpSessionsExtended -from isilon_sdk.v9_11_0.models.ndmp_sessions_node import NdmpSessionsNode -from isilon_sdk.v9_11_0.models.ndmp_sessions_node_session import NdmpSessionsNodeSession -from isilon_sdk.v9_11_0.models.ndmp_settings_dmas import NdmpSettingsDmas -from isilon_sdk.v9_11_0.models.ndmp_settings_dmas_dmavendor import NdmpSettingsDmasDmavendor -from isilon_sdk.v9_11_0.models.ndmp_settings_global import NdmpSettingsGlobal -from isilon_sdk.v9_11_0.models.ndmp_settings_global_global import NdmpSettingsGlobalGlobal -from isilon_sdk.v9_11_0.models.ndmp_settings_preferred_ip import NdmpSettingsPreferredIp -from isilon_sdk.v9_11_0.models.ndmp_settings_preferred_ip_data_subnet import NdmpSettingsPreferredIpDataSubnet -from isilon_sdk.v9_11_0.models.ndmp_settings_preferred_ips import NdmpSettingsPreferredIps -from isilon_sdk.v9_11_0.models.ndmp_settings_preferred_ips_preference import NdmpSettingsPreferredIpsPreference -from isilon_sdk.v9_11_0.models.ndmp_settings_variable import NdmpSettingsVariable -from isilon_sdk.v9_11_0.models.ndmp_settings_variables import NdmpSettingsVariables -from isilon_sdk.v9_11_0.models.ndmp_settings_variables_variable import NdmpSettingsVariablesVariable -from isilon_sdk.v9_11_0.models.ndmp_settings_variables_variable_path_variable import NdmpSettingsVariablesVariablePathVariable -from isilon_sdk.v9_11_0.models.ndmp_user import NdmpUser -from isilon_sdk.v9_11_0.models.ndmp_user_extended import NdmpUserExtended -from isilon_sdk.v9_11_0.models.ndmp_users import NdmpUsers -from isilon_sdk.v9_11_0.models.network_discover import NetworkDiscover -from isilon_sdk.v9_11_0.models.network_discover_discover import NetworkDiscoverDiscover -from isilon_sdk.v9_11_0.models.network_dnscache import NetworkDnscache -from isilon_sdk.v9_11_0.models.network_dnscache_extended import NetworkDnscacheExtended -from isilon_sdk.v9_11_0.models.network_dnscache_settings import NetworkDnscacheSettings -from isilon_sdk.v9_11_0.models.network_external import NetworkExternal -from isilon_sdk.v9_11_0.models.network_external_extended import NetworkExternalExtended -from isilon_sdk.v9_11_0.models.network_external_settings import NetworkExternalSettings -from isilon_sdk.v9_11_0.models.network_groupnet import NetworkGroupnet -from isilon_sdk.v9_11_0.models.network_groupnets import NetworkGroupnets -from isilon_sdk.v9_11_0.models.network_interface import NetworkInterface -from isilon_sdk.v9_11_0.models.network_interface_name import NetworkInterfaceName -from isilon_sdk.v9_11_0.models.network_interface_names import NetworkInterfaceNames -from isilon_sdk.v9_11_0.models.network_interface_owner import NetworkInterfaceOwner -from isilon_sdk.v9_11_0.models.network_interface_vlan import NetworkInterfaceVlan -from isilon_sdk.v9_11_0.models.network_interfaces import NetworkInterfaces -from isilon_sdk.v9_11_0.models.network_ping import NetworkPing -from isilon_sdk.v9_11_0.models.network_ping_ping import NetworkPingPing -from isilon_sdk.v9_11_0.models.network_pool import NetworkPool -from isilon_sdk.v9_11_0.models.network_pools import NetworkPools -from isilon_sdk.v9_11_0.models.nfs_alias import NfsAlias -from isilon_sdk.v9_11_0.models.nfs_alias_create_params import NfsAliasCreateParams -from isilon_sdk.v9_11_0.models.nfs_aliases import NfsAliases -from isilon_sdk.v9_11_0.models.nfs_aliases_extended import NfsAliasesExtended -from isilon_sdk.v9_11_0.models.nfs_check import NfsCheck -from isilon_sdk.v9_11_0.models.nfs_check_extended import NfsCheckExtended -from isilon_sdk.v9_11_0.models.nfs_export import NfsExport -from isilon_sdk.v9_11_0.models.nfs_export_extended import NfsExportExtended -from isilon_sdk.v9_11_0.models.nfs_export_map_all import NfsExportMapAll -from isilon_sdk.v9_11_0.models.nfs_export_map_all_secondary_groups import NfsExportMapAllSecondaryGroups -from isilon_sdk.v9_11_0.models.nfs_exports import NfsExports -from isilon_sdk.v9_11_0.models.nfs_exports_extended import NfsExportsExtended -from isilon_sdk.v9_11_0.models.nfs_exports_summary import NfsExportsSummary -from isilon_sdk.v9_11_0.models.nfs_exports_summary_summary import NfsExportsSummarySummary -from isilon_sdk.v9_11_0.models.nfs_lock import NfsLock -from isilon_sdk.v9_11_0.models.nfs_locks import NfsLocks -from isilon_sdk.v9_11_0.models.nfs_log_level import NfsLogLevel -from isilon_sdk.v9_11_0.models.nfs_netgroup import NfsNetgroup -from isilon_sdk.v9_11_0.models.nfs_netgroup_settings import NfsNetgroupSettings -from isilon_sdk.v9_11_0.models.nfs_nlm_locks import NfsNlmLocks -from isilon_sdk.v9_11_0.models.nfs_nlm_locks_lock import NfsNlmLocksLock -from isilon_sdk.v9_11_0.models.nfs_nlm_sessions import NfsNlmSessions -from isilon_sdk.v9_11_0.models.nfs_nlm_sessions_extended import NfsNlmSessionsExtended -from isilon_sdk.v9_11_0.models.nfs_nlm_sessions_session import NfsNlmSessionsSession -from isilon_sdk.v9_11_0.models.nfs_nlm_waiters import NfsNlmWaiters -from isilon_sdk.v9_11_0.models.nfs_settings_export import NfsSettingsExport -from isilon_sdk.v9_11_0.models.nfs_settings_export_settings import NfsSettingsExportSettings -from isilon_sdk.v9_11_0.models.nfs_settings_export_settings_map_all import NfsSettingsExportSettingsMapAll -from isilon_sdk.v9_11_0.models.nfs_settings_global import NfsSettingsGlobal -from isilon_sdk.v9_11_0.models.nfs_settings_global_settings import NfsSettingsGlobalSettings -from isilon_sdk.v9_11_0.models.nfs_settings_zone import NfsSettingsZone -from isilon_sdk.v9_11_0.models.nfs_settings_zone_settings import NfsSettingsZoneSettings -from isilon_sdk.v9_11_0.models.nfs_waiters import NfsWaiters -from isilon_sdk.v9_11_0.models.node_driveconfig import NodeDriveconfig -from isilon_sdk.v9_11_0.models.node_driveconfig_extended import NodeDriveconfigExtended -from isilon_sdk.v9_11_0.models.node_driveconfig_node import NodeDriveconfigNode -from isilon_sdk.v9_11_0.models.node_driveconfig_node_alert import NodeDriveconfigNodeAlert -from isilon_sdk.v9_11_0.models.node_driveconfig_node_allow import NodeDriveconfigNodeAllow -from isilon_sdk.v9_11_0.models.node_driveconfig_node_automatic_replacement_recognition import NodeDriveconfigNodeAutomaticReplacementRecognition -from isilon_sdk.v9_11_0.models.node_driveconfig_node_instant_secure_erase import NodeDriveconfigNodeInstantSecureErase -from isilon_sdk.v9_11_0.models.node_driveconfig_node_log import NodeDriveconfigNodeLog -from isilon_sdk.v9_11_0.models.node_driveconfig_node_reboot import NodeDriveconfigNodeReboot -from isilon_sdk.v9_11_0.models.node_driveconfig_node_spin_wait import NodeDriveconfigNodeSpinWait -from isilon_sdk.v9_11_0.models.node_driveconfig_node_stall import NodeDriveconfigNodeStall -from isilon_sdk.v9_11_0.models.node_driveconfig_stall import NodeDriveconfigStall -from isilon_sdk.v9_11_0.models.node_drives import NodeDrives -from isilon_sdk.v9_11_0.models.node_drives_node import NodeDrivesNode -from isilon_sdk.v9_11_0.models.node_drives_node_drive import NodeDrivesNodeDrive -from isilon_sdk.v9_11_0.models.node_drives_node_drive_firmware import NodeDrivesNodeDriveFirmware -from isilon_sdk.v9_11_0.models.node_drives_purposelist import NodeDrivesPurposelist -from isilon_sdk.v9_11_0.models.node_drives_purposelist_node import NodeDrivesPurposelistNode -from isilon_sdk.v9_11_0.models.node_drives_purposelist_node_purpose import NodeDrivesPurposelistNodePurpose -from isilon_sdk.v9_11_0.models.node_hardware import NodeHardware -from isilon_sdk.v9_11_0.models.node_hardware_fast import NodeHardwareFast -from isilon_sdk.v9_11_0.models.node_hardware_fast_node import NodeHardwareFastNode -from isilon_sdk.v9_11_0.models.node_hardware_node import NodeHardwareNode -from isilon_sdk.v9_11_0.models.node_internal_ip_address import NodeInternalIpAddress -from isilon_sdk.v9_11_0.models.node_internal_ip_address_node import NodeInternalIpAddressNode -from isilon_sdk.v9_11_0.models.node_partitions import NodePartitions -from isilon_sdk.v9_11_0.models.node_partitions_node import NodePartitionsNode -from isilon_sdk.v9_11_0.models.node_sensors import NodeSensors -from isilon_sdk.v9_11_0.models.node_sensors_node import NodeSensorsNode -from isilon_sdk.v9_11_0.models.node_sleds import NodeSleds -from isilon_sdk.v9_11_0.models.node_sleds_node import NodeSledsNode -from isilon_sdk.v9_11_0.models.node_state import NodeState -from isilon_sdk.v9_11_0.models.node_state_node import NodeStateNode -from isilon_sdk.v9_11_0.models.node_state_node_readonly import NodeStateNodeReadonly -from isilon_sdk.v9_11_0.models.node_state_node_smartfail import NodeStateNodeSmartfail -from isilon_sdk.v9_11_0.models.node_state_readonly import NodeStateReadonly -from isilon_sdk.v9_11_0.models.node_state_readonly_node import NodeStateReadonlyNode -from isilon_sdk.v9_11_0.models.node_state_servicelight import NodeStateServicelight -from isilon_sdk.v9_11_0.models.node_state_servicelight_extended import NodeStateServicelightExtended -from isilon_sdk.v9_11_0.models.node_state_servicelight_node import NodeStateServicelightNode -from isilon_sdk.v9_11_0.models.node_state_smartfail import NodeStateSmartfail -from isilon_sdk.v9_11_0.models.node_state_smartfail_node import NodeStateSmartfailNode -from isilon_sdk.v9_11_0.models.node_status import NodeStatus -from isilon_sdk.v9_11_0.models.node_status_batterystatus import NodeStatusBatterystatus -from isilon_sdk.v9_11_0.models.node_status_batterystatus_node import NodeStatusBatterystatusNode -from isilon_sdk.v9_11_0.models.node_status_cpu import NodeStatusCpu -from isilon_sdk.v9_11_0.models.node_status_cpu_error import NodeStatusCpuError -from isilon_sdk.v9_11_0.models.node_status_cpu_node import NodeStatusCpuNode -from isilon_sdk.v9_11_0.models.node_status_drive_security_level import NodeStatusDriveSecurityLevel -from isilon_sdk.v9_11_0.models.node_status_drive_security_level_node import NodeStatusDriveSecurityLevelNode -from isilon_sdk.v9_11_0.models.node_status_extended import NodeStatusExtended -from isilon_sdk.v9_11_0.models.node_status_node import NodeStatusNode -from isilon_sdk.v9_11_0.models.node_status_node_batterystatus import NodeStatusNodeBatterystatus -from isilon_sdk.v9_11_0.models.node_status_node_capacity_item import NodeStatusNodeCapacityItem -from isilon_sdk.v9_11_0.models.node_status_node_cpu import NodeStatusNodeCpu -from isilon_sdk.v9_11_0.models.node_status_node_drive_security_level import NodeStatusNodeDriveSecurityLevel -from isilon_sdk.v9_11_0.models.node_status_node_extended import NodeStatusNodeExtended -from isilon_sdk.v9_11_0.models.node_status_node_nvram import NodeStatusNodeNvram -from isilon_sdk.v9_11_0.models.node_status_node_powersupplies import NodeStatusNodePowersupplies -from isilon_sdk.v9_11_0.models.node_status_node_status import NodeStatusNodeStatus -from isilon_sdk.v9_11_0.models.node_status_node_status_server_status_item import NodeStatusNodeStatusServerStatusItem -from isilon_sdk.v9_11_0.models.node_status_node_status_system_stats import NodeStatusNodeStatusSystemStats -from isilon_sdk.v9_11_0.models.node_status_nvram import NodeStatusNvram -from isilon_sdk.v9_11_0.models.node_status_nvram_node import NodeStatusNvramNode -from isilon_sdk.v9_11_0.models.node_status_nvram_node_battery import NodeStatusNvramNodeBattery -from isilon_sdk.v9_11_0.models.node_status_powersupplies import NodeStatusPowersupplies -from isilon_sdk.v9_11_0.models.node_status_powersupplies_node import NodeStatusPowersuppliesNode -from isilon_sdk.v9_11_0.models.node_status_powersupplies_node_supply import NodeStatusPowersuppliesNodeSupply -from isilon_sdk.v9_11_0.models.nodes_node_firmware_device import NodesNodeFirmwareDevice -from isilon_sdk.v9_11_0.models.nodes_node_internal_ip_address import NodesNodeInternalIpAddress -from isilon_sdk.v9_11_0.models.nodetype_assess import NodetypeAssess -from isilon_sdk.v9_11_0.models.nodetype_assess_from_nodepool import NodetypeAssessFromNodepool -from isilon_sdk.v9_11_0.models.ntp_server import NtpServer -from isilon_sdk.v9_11_0.models.ntp_server_create_params import NtpServerCreateParams -from isilon_sdk.v9_11_0.models.ntp_server_extended import NtpServerExtended -from isilon_sdk.v9_11_0.models.ntp_servers import NtpServers -from isilon_sdk.v9_11_0.models.ntp_settings import NtpSettings -from isilon_sdk.v9_11_0.models.ntp_settings_settings import NtpSettingsSettings -from isilon_sdk.v9_11_0.models.oauth_certificate import OauthCertificate -from isilon_sdk.v9_11_0.models.oauth_certificate_create_params import OauthCertificateCreateParams -from isilon_sdk.v9_11_0.models.oauth_certificates import OauthCertificates -from isilon_sdk.v9_11_0.models.oauth_certificates_extended import OauthCertificatesExtended -from isilon_sdk.v9_11_0.models.oauth_oauth2_client import OauthOauth2Client -from isilon_sdk.v9_11_0.models.oauth_oauth2_clients import OauthOauth2Clients -from isilon_sdk.v9_11_0.models.oauth_oauth2_clients_extended import OauthOauth2ClientsExtended -from isilon_sdk.v9_11_0.models.oauth_oauth2_token_exchange import OauthOauth2TokenExchange -from isilon_sdk.v9_11_0.models.oauth_oauth2_token_exchanges import OauthOauth2TokenExchanges -from isilon_sdk.v9_11_0.models.oauth_oauth2_token_exchanges_extended import OauthOauth2TokenExchangesExtended -from isilon_sdk.v9_11_0.models.oauth_settings import OauthSettings -from isilon_sdk.v9_11_0.models.oauth_settings_settings import OauthSettingsSettings -from isilon_sdk.v9_11_0.models.os_security import OsSecurity -from isilon_sdk.v9_11_0.models.os_security_node import OsSecurityNode -from isilon_sdk.v9_11_0.models.papi_settings import PapiSettings -from isilon_sdk.v9_11_0.models.papi_settings_child_settings import PapiSettingsChildSettings -from isilon_sdk.v9_11_0.models.papi_settings_extended import PapiSettingsExtended -from isilon_sdk.v9_11_0.models.papi_settings_papi_settings import PapiSettingsPapiSettings -from isilon_sdk.v9_11_0.models.papi_settings_papi_settings_child_settings import PapiSettingsPapiSettingsChildSettings -from isilon_sdk.v9_11_0.models.performance_dataset import PerformanceDataset -from isilon_sdk.v9_11_0.models.performance_datasets import PerformanceDatasets -from isilon_sdk.v9_11_0.models.performance_datasets_extended import PerformanceDatasetsExtended -from isilon_sdk.v9_11_0.models.performance_metric import PerformanceMetric -from isilon_sdk.v9_11_0.models.performance_metrics import PerformanceMetrics -from isilon_sdk.v9_11_0.models.performance_metrics_extended import PerformanceMetricsExtended -from isilon_sdk.v9_11_0.models.performance_settings import PerformanceSettings -from isilon_sdk.v9_11_0.models.performance_settings_extended import PerformanceSettingsExtended -from isilon_sdk.v9_11_0.models.performance_settings_settings import PerformanceSettingsSettings -from isilon_sdk.v9_11_0.models.performance_settings_settings_client_impact import PerformanceSettingsSettingsClientImpact -from isilon_sdk.v9_11_0.models.performance_settings_settings_cpu_limit_us import PerformanceSettingsSettingsCpuLimitUs -from isilon_sdk.v9_11_0.models.performance_settings_settings_cpu_limit_us_health_modifier import PerformanceSettingsSettingsCpuLimitUsHealthModifier -from isilon_sdk.v9_11_0.models.performance_settings_settings_cpu_limit_us_health_modifier_impact_high import PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh -from isilon_sdk.v9_11_0.models.performance_settings_settings_cpu_limit_us_impact_multiplier import PerformanceSettingsSettingsCpuLimitUsImpactMultiplier -from isilon_sdk.v9_11_0.models.policies_policy_rule import PoliciesPolicyRule -from isilon_sdk.v9_11_0.models.policies_policy_rule_dst_ports import PoliciesPolicyRuleDstPorts -from isilon_sdk.v9_11_0.models.policies_policy_rules import PoliciesPolicyRules -from isilon_sdk.v9_11_0.models.policies_policy_rules_rule import PoliciesPolicyRulesRule -from isilon_sdk.v9_11_0.models.policy_last_job import PolicyLastJob -from isilon_sdk.v9_11_0.models.policy_last_job_policy_job_details import PolicyLastJobPolicyJobDetails -from isilon_sdk.v9_11_0.models.pools_pool_interfaces import PoolsPoolInterfaces -from isilon_sdk.v9_11_0.models.pools_pool_interfaces_interface import PoolsPoolInterfacesInterface -from isilon_sdk.v9_11_0.models.pools_pool_interfaces_interface_owner import PoolsPoolInterfacesInterfaceOwner -from isilon_sdk.v9_11_0.models.pools_pool_rule import PoolsPoolRule -from isilon_sdk.v9_11_0.models.pools_pool_rule_create_params import PoolsPoolRuleCreateParams -from isilon_sdk.v9_11_0.models.pools_pool_rules import PoolsPoolRules -from isilon_sdk.v9_11_0.models.pools_pool_rules_rule import PoolsPoolRulesRule -from isilon_sdk.v9_11_0.models.pools_pool_sc_resume_node import PoolsPoolScResumeNode -from isilon_sdk.v9_11_0.models.pools_pool_status import PoolsPoolStatus -from isilon_sdk.v9_11_0.models.pools_pool_status_status import PoolsPoolStatusStatus -from isilon_sdk.v9_11_0.models.pools_pool_status_status_node import PoolsPoolStatusStatusNode -from isilon_sdk.v9_11_0.models.pools_pool_status_status_node_interface_status import PoolsPoolStatusStatusNodeInterfaceStatus -from isilon_sdk.v9_11_0.models.pools_pool_status_status_sc_dns_overview import PoolsPoolStatusStatusScDnsOverview -from isilon_sdk.v9_11_0.models.progress_global import ProgressGlobal -from isilon_sdk.v9_11_0.models.progress_global_progress import ProgressGlobalProgress -from isilon_sdk.v9_11_0.models.protocols_smb_sessions import ProtocolsSmbSessions -from isilon_sdk.v9_11_0.models.protocols_smb_sessions_session import ProtocolsSmbSessionsSession -from isilon_sdk.v9_11_0.models.providers_ads import ProvidersAds -from isilon_sdk.v9_11_0.models.providers_ads_ads_item import ProvidersAdsAdsItem -from isilon_sdk.v9_11_0.models.providers_ads_ads_item_extended import ProvidersAdsAdsItemExtended -from isilon_sdk.v9_11_0.models.providers_ads_extended import ProvidersAdsExtended -from isilon_sdk.v9_11_0.models.providers_ads_id_params import ProvidersAdsIdParams -from isilon_sdk.v9_11_0.models.providers_ads_item import ProvidersAdsItem -from isilon_sdk.v9_11_0.models.providers_duo import ProvidersDuo -from isilon_sdk.v9_11_0.models.providers_duo_extended import ProvidersDuoExtended -from isilon_sdk.v9_11_0.models.providers_duo_settings import ProvidersDuoSettings -from isilon_sdk.v9_11_0.models.providers_file import ProvidersFile -from isilon_sdk.v9_11_0.models.providers_file_file_item import ProvidersFileFileItem -from isilon_sdk.v9_11_0.models.providers_file_id_params import ProvidersFileIdParams -from isilon_sdk.v9_11_0.models.providers_file_item import ProvidersFileItem -from isilon_sdk.v9_11_0.models.providers_krb5 import ProvidersKrb5 -from isilon_sdk.v9_11_0.models.providers_krb5_extended import ProvidersKrb5Extended -from isilon_sdk.v9_11_0.models.providers_krb5_id_params import ProvidersKrb5IdParams -from isilon_sdk.v9_11_0.models.providers_krb5_id_params_keytab_entry import ProvidersKrb5IdParamsKeytabEntry -from isilon_sdk.v9_11_0.models.providers_krb5_item import ProvidersKrb5Item -from isilon_sdk.v9_11_0.models.providers_krb5_krb5_item import ProvidersKrb5Krb5Item -from isilon_sdk.v9_11_0.models.providers_ldap import ProvidersLdap -from isilon_sdk.v9_11_0.models.providers_ldap_id_params import ProvidersLdapIdParams -from isilon_sdk.v9_11_0.models.providers_ldap_item import ProvidersLdapItem -from isilon_sdk.v9_11_0.models.providers_ldap_ldap_item import ProvidersLdapLdapItem -from isilon_sdk.v9_11_0.models.providers_local import ProvidersLocal -from isilon_sdk.v9_11_0.models.providers_local_id_params import ProvidersLocalIdParams -from isilon_sdk.v9_11_0.models.providers_local_local_item import ProvidersLocalLocalItem -from isilon_sdk.v9_11_0.models.providers_nis import ProvidersNis -from isilon_sdk.v9_11_0.models.providers_nis_id_params import ProvidersNisIdParams -from isilon_sdk.v9_11_0.models.providers_nis_item import ProvidersNisItem -from isilon_sdk.v9_11_0.models.providers_nis_nis_item import ProvidersNisNisItem -from isilon_sdk.v9_11_0.models.providers_saml_services_cert_extract_item import ProvidersSamlServicesCertExtractItem -from isilon_sdk.v9_11_0.models.providers_saml_services_idp import ProvidersSamlServicesIdp -from isilon_sdk.v9_11_0.models.providers_saml_services_idp_login import ProvidersSamlServicesIdpLogin -from isilon_sdk.v9_11_0.models.providers_saml_services_idp_logout import ProvidersSamlServicesIdpLogout -from isilon_sdk.v9_11_0.models.providers_saml_services_idps import ProvidersSamlServicesIdps -from isilon_sdk.v9_11_0.models.providers_saml_services_idps_extended import ProvidersSamlServicesIdpsExtended -from isilon_sdk.v9_11_0.models.providers_saml_services_idps_idp import ProvidersSamlServicesIdpsIdp -from isilon_sdk.v9_11_0.models.providers_saml_services_idps_idp_extended import ProvidersSamlServicesIdpsIdpExtended -from isilon_sdk.v9_11_0.models.providers_saml_services_metadata_extract_item import ProvidersSamlServicesMetadataExtractItem -from isilon_sdk.v9_11_0.models.providers_saml_services_settings import ProvidersSamlServicesSettings -from isilon_sdk.v9_11_0.models.providers_saml_services_settings_settings import ProvidersSamlServicesSettingsSettings -from isilon_sdk.v9_11_0.models.providers_saml_services_sp import ProvidersSamlServicesSp -from isilon_sdk.v9_11_0.models.providers_saml_services_sp_extended import ProvidersSamlServicesSpExtended -from isilon_sdk.v9_11_0.models.providers_saml_services_sp_signing_key_settings import ProvidersSamlServicesSpSigningKeySettings -from isilon_sdk.v9_11_0.models.providers_saml_services_sp_signing_key_settings_settings import ProvidersSamlServicesSpSigningKeySettingsSettings -from isilon_sdk.v9_11_0.models.providers_saml_services_sp_signing_key_settings_settings_certificate import ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate -from isilon_sdk.v9_11_0.models.providers_saml_services_sp_signing_key_settings_settings_certificate_key import ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateKey -from isilon_sdk.v9_11_0.models.providers_saml_services_sp_signing_key_settings_settings_certificate_subject import ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject -from isilon_sdk.v9_11_0.models.providers_saml_services_sp_signing_key_status import ProvidersSamlServicesSpSigningKeyStatus -from isilon_sdk.v9_11_0.models.providers_saml_services_sp_signing_key_status_status import ProvidersSamlServicesSpSigningKeyStatusStatus -from isilon_sdk.v9_11_0.models.providers_saml_services_sp_sp import ProvidersSamlServicesSpSp -from isilon_sdk.v9_11_0.models.providers_summary import ProvidersSummary -from isilon_sdk.v9_11_0.models.providers_summary_provider_instance import ProvidersSummaryProviderInstance -from isilon_sdk.v9_11_0.models.providers_summary_provider_instance_connection import ProvidersSummaryProviderInstanceConnection -from isilon_sdk.v9_11_0.models.proxyusers_name_members import ProxyusersNameMembers -from isilon_sdk.v9_11_0.models.quota_license import QuotaLicense -from isilon_sdk.v9_11_0.models.quota_license_tier import QuotaLicenseTier -from isilon_sdk.v9_11_0.models.quota_notification import QuotaNotification -from isilon_sdk.v9_11_0.models.quota_notifications import QuotaNotifications -from isilon_sdk.v9_11_0.models.quota_quota import QuotaQuota -from isilon_sdk.v9_11_0.models.quota_quota_create_params import QuotaQuotaCreateParams -from isilon_sdk.v9_11_0.models.quota_quota_extended import QuotaQuotaExtended -from isilon_sdk.v9_11_0.models.quota_quota_thresholds import QuotaQuotaThresholds -from isilon_sdk.v9_11_0.models.quota_quota_thresholds_extended import QuotaQuotaThresholdsExtended -from isilon_sdk.v9_11_0.models.quota_quota_usage import QuotaQuotaUsage -from isilon_sdk.v9_11_0.models.quota_quotas import QuotaQuotas -from isilon_sdk.v9_11_0.models.quota_quotas_extended import QuotaQuotasExtended -from isilon_sdk.v9_11_0.models.quota_quotas_summary import QuotaQuotasSummary -from isilon_sdk.v9_11_0.models.quota_quotas_summary_summary import QuotaQuotasSummarySummary -from isilon_sdk.v9_11_0.models.quota_reports import QuotaReports -from isilon_sdk.v9_11_0.models.report_about import ReportAbout -from isilon_sdk.v9_11_0.models.report_about_report import ReportAboutReport -from isilon_sdk.v9_11_0.models.report_subreport import ReportSubreport -from isilon_sdk.v9_11_0.models.report_subreports import ReportSubreports -from isilon_sdk.v9_11_0.models.reports_report_subreports import ReportsReportSubreports -from isilon_sdk.v9_11_0.models.reports_report_subreports_subreport import ReportsReportSubreportsSubreport -from isilon_sdk.v9_11_0.models.reports_scans import ReportsScans -from isilon_sdk.v9_11_0.models.reports_scans_report import ReportsScansReport -from isilon_sdk.v9_11_0.models.reports_threats import ReportsThreats -from isilon_sdk.v9_11_0.models.reports_threats_report import ReportsThreatsReport -from isilon_sdk.v9_11_0.models.result_dir_pools_usage import ResultDirPoolsUsage -from isilon_sdk.v9_11_0.models.result_dir_pools_usage_usage_data import ResultDirPoolsUsageUsageData -from isilon_sdk.v9_11_0.models.result_directories import ResultDirectories -from isilon_sdk.v9_11_0.models.result_directories_dir_usage import ResultDirectoriesDirUsage -from isilon_sdk.v9_11_0.models.result_directories_extended import ResultDirectoriesExtended -from isilon_sdk.v9_11_0.models.result_directories_usage_data_item import ResultDirectoriesUsageDataItem -from isilon_sdk.v9_11_0.models.result_histogram import ResultHistogram -from isilon_sdk.v9_11_0.models.result_histogram_histogram_item import ResultHistogramHistogramItem -from isilon_sdk.v9_11_0.models.result_top_dirs import ResultTopDirs -from isilon_sdk.v9_11_0.models.result_top_dirs_dir import ResultTopDirsDir -from isilon_sdk.v9_11_0.models.result_top_files import ResultTopFiles -from isilon_sdk.v9_11_0.models.result_top_files_file import ResultTopFilesFile -from isilon_sdk.v9_11_0.models.role_members import RoleMembers -from isilon_sdk.v9_11_0.models.role_privileges import RolePrivileges -from isilon_sdk.v9_11_0.models.s3_bucket import S3Bucket -from isilon_sdk.v9_11_0.models.s3_bucket_acl_item import S3BucketAclItem -from isilon_sdk.v9_11_0.models.s3_buckets import S3Buckets -from isilon_sdk.v9_11_0.models.s3_buckets_extended import S3BucketsExtended -from isilon_sdk.v9_11_0.models.s3_key import S3Key -from isilon_sdk.v9_11_0.models.s3_keys import S3Keys -from isilon_sdk.v9_11_0.models.s3_keys_keys import S3KeysKeys -from isilon_sdk.v9_11_0.models.s3_log_level import S3LogLevel -from isilon_sdk.v9_11_0.models.s3_settings_global import S3SettingsGlobal -from isilon_sdk.v9_11_0.models.s3_settings_global_settings import S3SettingsGlobalSettings -from isilon_sdk.v9_11_0.models.s3_settings_zone import S3SettingsZone -from isilon_sdk.v9_11_0.models.s3_settings_zone_settings import S3SettingsZoneSettings -from isilon_sdk.v9_11_0.models.security_check import SecurityCheck -from isilon_sdk.v9_11_0.models.security_check_item import SecurityCheckItem -from isilon_sdk.v9_11_0.models.security_check_settings import SecurityCheckSettings -from isilon_sdk.v9_11_0.models.security_settings import SecuritySettings -from isilon_sdk.v9_11_0.models.security_settings_settings import SecuritySettingsSettings -from isilon_sdk.v9_11_0.models.sed_migrate_item import SedMigrateItem -from isilon_sdk.v9_11_0.models.sed_settings import SedSettings -from isilon_sdk.v9_11_0.models.sed_settings_extended import SedSettingsExtended -from isilon_sdk.v9_11_0.models.sed_settings_settings import SedSettingsSettings -from isilon_sdk.v9_11_0.models.sed_status import SedStatus -from isilon_sdk.v9_11_0.models.sed_status_extended import SedStatusExtended -from isilon_sdk.v9_11_0.models.sed_status_node import SedStatusNode -from isilon_sdk.v9_11_0.models.service_policies import ServicePolicies -from isilon_sdk.v9_11_0.models.service_policies_extended import ServicePoliciesExtended -from isilon_sdk.v9_11_0.models.service_policy import ServicePolicy -from isilon_sdk.v9_11_0.models.service_policy_create_params import ServicePolicyCreateParams -from isilon_sdk.v9_11_0.models.service_policy_extended import ServicePolicyExtended -from isilon_sdk.v9_11_0.models.service_target_policies import ServiceTargetPolicies -from isilon_sdk.v9_11_0.models.service_target_policies_policy import ServiceTargetPoliciesPolicy -from isilon_sdk.v9_11_0.models.sessions_invalidation import SessionsInvalidation -from isilon_sdk.v9_11_0.models.sessions_invalidation_extended import SessionsInvalidationExtended -from isilon_sdk.v9_11_0.models.sessions_invalidations import SessionsInvalidations -from isilon_sdk.v9_11_0.models.settings_access_time import SettingsAccessTime -from isilon_sdk.v9_11_0.models.settings_access_time_extended import SettingsAccessTimeExtended -from isilon_sdk.v9_11_0.models.settings_access_time_settings import SettingsAccessTimeSettings -from isilon_sdk.v9_11_0.models.settings_acls import SettingsAcls -from isilon_sdk.v9_11_0.models.settings_acls_acl_policy_settings import SettingsAclsAclPolicySettings -from isilon_sdk.v9_11_0.models.settings_acls_extended import SettingsAclsExtended -from isilon_sdk.v9_11_0.models.settings_character_encodings import SettingsCharacterEncodings -from isilon_sdk.v9_11_0.models.settings_character_encodings_extended import SettingsCharacterEncodingsExtended -from isilon_sdk.v9_11_0.models.settings_character_encodings_settings import SettingsCharacterEncodingsSettings -from isilon_sdk.v9_11_0.models.settings_compression import SettingsCompression -from isilon_sdk.v9_11_0.models.settings_compression_extended import SettingsCompressionExtended -from isilon_sdk.v9_11_0.models.settings_compression_settings import SettingsCompressionSettings -from isilon_sdk.v9_11_0.models.settings_global import SettingsGlobal -from isilon_sdk.v9_11_0.models.settings_global_extended import SettingsGlobalExtended -from isilon_sdk.v9_11_0.models.settings_global_global_settings import SettingsGlobalGlobalSettings -from isilon_sdk.v9_11_0.models.settings_global_settings import SettingsGlobalSettings -from isilon_sdk.v9_11_0.models.settings_krb5_defaults import SettingsKrb5Defaults -from isilon_sdk.v9_11_0.models.settings_krb5_defaults_krb5_settings import SettingsKrb5DefaultsKrb5Settings -from isilon_sdk.v9_11_0.models.settings_krb5_domain import SettingsKrb5Domain -from isilon_sdk.v9_11_0.models.settings_krb5_domains import SettingsKrb5Domains -from isilon_sdk.v9_11_0.models.settings_krb5_domains_domain_item import SettingsKrb5DomainsDomainItem -from isilon_sdk.v9_11_0.models.settings_krb5_realm import SettingsKrb5Realm -from isilon_sdk.v9_11_0.models.settings_krb5_realms import SettingsKrb5Realms -from isilon_sdk.v9_11_0.models.settings_krb5_realms_realm_item import SettingsKrb5RealmsRealmItem -from isilon_sdk.v9_11_0.models.settings_mapping import SettingsMapping -from isilon_sdk.v9_11_0.models.settings_mapping_create_params import SettingsMappingCreateParams -from isilon_sdk.v9_11_0.models.settings_mapping_extended import SettingsMappingExtended -from isilon_sdk.v9_11_0.models.settings_mapping_extended_extended import SettingsMappingExtendedExtended -from isilon_sdk.v9_11_0.models.settings_mapping_mapping_settings import SettingsMappingMappingSettings -from isilon_sdk.v9_11_0.models.settings_mappings import SettingsMappings -from isilon_sdk.v9_11_0.models.settings_mappings_extended import SettingsMappingsExtended -from isilon_sdk.v9_11_0.models.settings_notifications import SettingsNotifications -from isilon_sdk.v9_11_0.models.settings_reporting_eula import SettingsReportingEula -from isilon_sdk.v9_11_0.models.settings_reporting_eula_eula import SettingsReportingEulaEula -from isilon_sdk.v9_11_0.models.settings_reports import SettingsReports -from isilon_sdk.v9_11_0.models.settings_reports_extended import SettingsReportsExtended -from isilon_sdk.v9_11_0.models.settings_reports_extended_extended import SettingsReportsExtendedExtended -from isilon_sdk.v9_11_0.models.settings_reports_settings import SettingsReportsSettings -from isilon_sdk.v9_11_0.models.settings_reports_settings_extended import SettingsReportsSettingsExtended -from isilon_sdk.v9_11_0.models.settings_sessions import SettingsSessions -from isilon_sdk.v9_11_0.models.settings_sessions_extended import SettingsSessionsExtended -from isilon_sdk.v9_11_0.models.settings_sessions_settings import SettingsSessionsSettings -from isilon_sdk.v9_11_0.models.smb_log_level import SmbLogLevel -from isilon_sdk.v9_11_0.models.smb_log_level_filter import SmbLogLevelFilter -from isilon_sdk.v9_11_0.models.smb_log_level_filters import SmbLogLevelFilters -from isilon_sdk.v9_11_0.models.smb_log_level_filters_filter import SmbLogLevelFiltersFilter -from isilon_sdk.v9_11_0.models.smb_openfile import SmbOpenfile -from isilon_sdk.v9_11_0.models.smb_openfiles import SmbOpenfiles -from isilon_sdk.v9_11_0.models.smb_sessions import SmbSessions -from isilon_sdk.v9_11_0.models.smb_sessions_node import SmbSessionsNode -from isilon_sdk.v9_11_0.models.smb_settings_global import SmbSettingsGlobal -from isilon_sdk.v9_11_0.models.smb_settings_global_extended import SmbSettingsGlobalExtended -from isilon_sdk.v9_11_0.models.smb_settings_global_settings import SmbSettingsGlobalSettings -from isilon_sdk.v9_11_0.models.smb_settings_share import SmbSettingsShare -from isilon_sdk.v9_11_0.models.smb_settings_share_extended import SmbSettingsShareExtended -from isilon_sdk.v9_11_0.models.smb_settings_share_settings import SmbSettingsShareSettings -from isilon_sdk.v9_11_0.models.smb_settings_zone import SmbSettingsZone -from isilon_sdk.v9_11_0.models.smb_settings_zone_settings import SmbSettingsZoneSettings -from isilon_sdk.v9_11_0.models.smb_share import SmbShare -from isilon_sdk.v9_11_0.models.smb_share_create_params import SmbShareCreateParams -from isilon_sdk.v9_11_0.models.smb_share_extended import SmbShareExtended -from isilon_sdk.v9_11_0.models.smb_share_permission import SmbSharePermission -from isilon_sdk.v9_11_0.models.smb_shares import SmbShares -from isilon_sdk.v9_11_0.models.smb_shares_summary import SmbSharesSummary -from isilon_sdk.v9_11_0.models.smb_shares_summary_summary import SmbSharesSummarySummary -from isilon_sdk.v9_11_0.models.snapshot_alias import SnapshotAlias -from isilon_sdk.v9_11_0.models.snapshot_alias_create_params import SnapshotAliasCreateParams -from isilon_sdk.v9_11_0.models.snapshot_alias_extended import SnapshotAliasExtended -from isilon_sdk.v9_11_0.models.snapshot_aliases import SnapshotAliases -from isilon_sdk.v9_11_0.models.snapshot_aliases_extended import SnapshotAliasesExtended -from isilon_sdk.v9_11_0.models.snapshot_changelists import SnapshotChangelists -from isilon_sdk.v9_11_0.models.snapshot_changelists_extended import SnapshotChangelistsExtended -from isilon_sdk.v9_11_0.models.snapshot_lock import SnapshotLock -from isilon_sdk.v9_11_0.models.snapshot_lock_extended import SnapshotLockExtended -from isilon_sdk.v9_11_0.models.snapshot_locks import SnapshotLocks -from isilon_sdk.v9_11_0.models.snapshot_locks_extended import SnapshotLocksExtended -from isilon_sdk.v9_11_0.models.snapshot_pending import SnapshotPending -from isilon_sdk.v9_11_0.models.snapshot_pending_pending_item import SnapshotPendingPendingItem -from isilon_sdk.v9_11_0.models.snapshot_repstates import SnapshotRepstates -from isilon_sdk.v9_11_0.models.snapshot_repstates_extended import SnapshotRepstatesExtended -from isilon_sdk.v9_11_0.models.snapshot_schedule import SnapshotSchedule -from isilon_sdk.v9_11_0.models.snapshot_schedule_extended import SnapshotScheduleExtended -from isilon_sdk.v9_11_0.models.snapshot_schedule_extended_extended import SnapshotScheduleExtendedExtended -from isilon_sdk.v9_11_0.models.snapshot_schedules import SnapshotSchedules -from isilon_sdk.v9_11_0.models.snapshot_schedules_extended import SnapshotSchedulesExtended -from isilon_sdk.v9_11_0.models.snapshot_settings import SnapshotSettings -from isilon_sdk.v9_11_0.models.snapshot_settings_extended import SnapshotSettingsExtended -from isilon_sdk.v9_11_0.models.snapshot_settings_settings import SnapshotSettingsSettings -from isilon_sdk.v9_11_0.models.snapshot_snapshot import SnapshotSnapshot -from isilon_sdk.v9_11_0.models.snapshot_snapshots import SnapshotSnapshots -from isilon_sdk.v9_11_0.models.snapshot_snapshots_extended import SnapshotSnapshotsExtended -from isilon_sdk.v9_11_0.models.snapshot_snapshots_summary import SnapshotSnapshotsSummary -from isilon_sdk.v9_11_0.models.snapshot_snapshots_summary_summary import SnapshotSnapshotsSummarySummary -from isilon_sdk.v9_11_0.models.snapshot_writable import SnapshotWritable -from isilon_sdk.v9_11_0.models.snapshot_writable_item import SnapshotWritableItem -from isilon_sdk.v9_11_0.models.snapshot_writable_snapshot_summary import SnapshotWritableSnapshotSummary -from isilon_sdk.v9_11_0.models.snapshot_writable_snapshot_summary_summary import SnapshotWritableSnapshotSummarySummary -from isilon_sdk.v9_11_0.models.snapshot_writable_writable_item import SnapshotWritableWritableItem -from isilon_sdk.v9_11_0.models.snmp_settings import SnmpSettings -from isilon_sdk.v9_11_0.models.snmp_settings_extended import SnmpSettingsExtended -from isilon_sdk.v9_11_0.models.snmp_settings_settings import SnmpSettingsSettings -from isilon_sdk.v9_11_0.models.ssh_settings import SshSettings -from isilon_sdk.v9_11_0.models.ssh_settings_settings import SshSettingsSettings -from isilon_sdk.v9_11_0.models.statistics_current import StatisticsCurrent -from isilon_sdk.v9_11_0.models.statistics_current_stat import StatisticsCurrentStat -from isilon_sdk.v9_11_0.models.statistics_history import StatisticsHistory -from isilon_sdk.v9_11_0.models.statistics_history_stat import StatisticsHistoryStat -from isilon_sdk.v9_11_0.models.statistics_history_stat_value import StatisticsHistoryStatValue -from isilon_sdk.v9_11_0.models.statistics_key import StatisticsKey -from isilon_sdk.v9_11_0.models.statistics_key_policy import StatisticsKeyPolicy -from isilon_sdk.v9_11_0.models.statistics_keys import StatisticsKeys -from isilon_sdk.v9_11_0.models.statistics_operation import StatisticsOperation -from isilon_sdk.v9_11_0.models.statistics_operations import StatisticsOperations -from isilon_sdk.v9_11_0.models.statistics_protocol import StatisticsProtocol -from isilon_sdk.v9_11_0.models.statistics_protocols import StatisticsProtocols -from isilon_sdk.v9_11_0.models.storagepool_nodepool import StoragepoolNodepool -from isilon_sdk.v9_11_0.models.storagepool_nodepool_create_params import StoragepoolNodepoolCreateParams -from isilon_sdk.v9_11_0.models.storagepool_nodepool_extended import StoragepoolNodepoolExtended -from isilon_sdk.v9_11_0.models.storagepool_nodepools import StoragepoolNodepools -from isilon_sdk.v9_11_0.models.storagepool_nodepools_extended import StoragepoolNodepoolsExtended -from isilon_sdk.v9_11_0.models.storagepool_nodetype import StoragepoolNodetype -from isilon_sdk.v9_11_0.models.storagepool_nodetypes import StoragepoolNodetypes -from isilon_sdk.v9_11_0.models.storagepool_nodetypes_extended import StoragepoolNodetypesExtended -from isilon_sdk.v9_11_0.models.storagepool_settings import StoragepoolSettings -from isilon_sdk.v9_11_0.models.storagepool_settings_extended import StoragepoolSettingsExtended -from isilon_sdk.v9_11_0.models.storagepool_settings_settings import StoragepoolSettingsSettings -from isilon_sdk.v9_11_0.models.storagepool_settings_settings_spillover_target import StoragepoolSettingsSettingsSpilloverTarget -from isilon_sdk.v9_11_0.models.storagepool_settings_spillover_target import StoragepoolSettingsSpilloverTarget -from isilon_sdk.v9_11_0.models.storagepool_status import StoragepoolStatus -from isilon_sdk.v9_11_0.models.storagepool_status_unhealthy_item import StoragepoolStatusUnhealthyItem -from isilon_sdk.v9_11_0.models.storagepool_status_unhealthy_item_affected_item import StoragepoolStatusUnhealthyItemAffectedItem -from isilon_sdk.v9_11_0.models.storagepool_status_unhealthy_item_affected_item_device import StoragepoolStatusUnhealthyItemAffectedItemDevice -from isilon_sdk.v9_11_0.models.storagepool_status_unhealthy_item_diskpool import StoragepoolStatusUnhealthyItemDiskpool -from isilon_sdk.v9_11_0.models.storagepool_storagepool import StoragepoolStoragepool -from isilon_sdk.v9_11_0.models.storagepool_storagepool_usage import StoragepoolStoragepoolUsage -from isilon_sdk.v9_11_0.models.storagepool_storagepools import StoragepoolStoragepools -from isilon_sdk.v9_11_0.models.storagepool_suggested_protection import StoragepoolSuggestedProtection -from isilon_sdk.v9_11_0.models.storagepool_tier import StoragepoolTier -from isilon_sdk.v9_11_0.models.storagepool_tier_extended import StoragepoolTierExtended -from isilon_sdk.v9_11_0.models.storagepool_tiers import StoragepoolTiers -from isilon_sdk.v9_11_0.models.storagepool_tiers_extended import StoragepoolTiersExtended -from isilon_sdk.v9_11_0.models.storagepool_unprovisioned import StoragepoolUnprovisioned -from isilon_sdk.v9_11_0.models.storagepool_unprovisioned_unprovisioned import StoragepoolUnprovisionedUnprovisioned -from isilon_sdk.v9_11_0.models.subnets_subnet_pool import SubnetsSubnetPool -from isilon_sdk.v9_11_0.models.subnets_subnet_pool_create_params import SubnetsSubnetPoolCreateParams -from isilon_sdk.v9_11_0.models.subnets_subnet_pool_iface import SubnetsSubnetPoolIface -from isilon_sdk.v9_11_0.models.subnets_subnet_pool_range import SubnetsSubnetPoolRange -from isilon_sdk.v9_11_0.models.subnets_subnet_pool_static_route import SubnetsSubnetPoolStaticRoute -from isilon_sdk.v9_11_0.models.subnets_subnet_pools import SubnetsSubnetPools -from isilon_sdk.v9_11_0.models.subnets_subnet_pools_extended import SubnetsSubnetPoolsExtended -from isilon_sdk.v9_11_0.models.subnets_subnet_pools_pool import SubnetsSubnetPoolsPool -from isilon_sdk.v9_11_0.models.subnets_subnet_pools_pool_extended import SubnetsSubnetPoolsPoolExtended -from isilon_sdk.v9_11_0.models.summary_client import SummaryClient -from isilon_sdk.v9_11_0.models.summary_client_client_item import SummaryClientClientItem -from isilon_sdk.v9_11_0.models.summary_cloud import SummaryCloud -from isilon_sdk.v9_11_0.models.summary_cloud_cloud_item import SummaryCloudCloudItem -from isilon_sdk.v9_11_0.models.summary_drive import SummaryDrive -from isilon_sdk.v9_11_0.models.summary_drive_drive_item import SummaryDriveDriveItem -from isilon_sdk.v9_11_0.models.summary_heat import SummaryHeat -from isilon_sdk.v9_11_0.models.summary_heat_heat_item import SummaryHeatHeatItem -from isilon_sdk.v9_11_0.models.summary_protocol import SummaryProtocol -from isilon_sdk.v9_11_0.models.summary_protocol_protocol_item import SummaryProtocolProtocolItem -from isilon_sdk.v9_11_0.models.summary_protocol_stats import SummaryProtocolStats -from isilon_sdk.v9_11_0.models.summary_protocol_stats_protocol_stats import SummaryProtocolStatsProtocolStats -from isilon_sdk.v9_11_0.models.summary_protocol_stats_protocol_stats_cpu import SummaryProtocolStatsProtocolStatsCpu -from isilon_sdk.v9_11_0.models.summary_protocol_stats_protocol_stats_disk import SummaryProtocolStatsProtocolStatsDisk -from isilon_sdk.v9_11_0.models.summary_protocol_stats_protocol_stats_network import SummaryProtocolStatsProtocolStatsNetwork -from isilon_sdk.v9_11_0.models.summary_protocol_stats_protocol_stats_network_in import SummaryProtocolStatsProtocolStatsNetworkIn -from isilon_sdk.v9_11_0.models.summary_protocol_stats_protocol_stats_network_out import SummaryProtocolStatsProtocolStatsNetworkOut -from isilon_sdk.v9_11_0.models.summary_protocol_stats_protocol_stats_onefs import SummaryProtocolStatsProtocolStatsOnefs -from isilon_sdk.v9_11_0.models.summary_protocol_stats_protocol_stats_protocol import SummaryProtocolStatsProtocolStatsProtocol -from isilon_sdk.v9_11_0.models.summary_protocol_stats_protocol_stats_protocol_data_item import SummaryProtocolStatsProtocolStatsProtocolDataItem -from isilon_sdk.v9_11_0.models.summary_system import SummarySystem -from isilon_sdk.v9_11_0.models.summary_system_system_item import SummarySystemSystemItem -from isilon_sdk.v9_11_0.models.summary_workload import SummaryWorkload -from isilon_sdk.v9_11_0.models.summary_workload_workload_item import SummaryWorkloadWorkloadItem -from isilon_sdk.v9_11_0.models.supportassist_data_item import SupportassistDataItem -from isilon_sdk.v9_11_0.models.supportassist_data_item_data import SupportassistDataItemData -from isilon_sdk.v9_11_0.models.supportassist_license import SupportassistLicense -from isilon_sdk.v9_11_0.models.supportassist_license_task import SupportassistLicenseTask -from isilon_sdk.v9_11_0.models.supportassist_license_task_audit import SupportassistLicenseTaskAudit -from isilon_sdk.v9_11_0.models.supportassist_license_task_audit_state import SupportassistLicenseTaskAuditState -from isilon_sdk.v9_11_0.models.supportassist_license_task_audit_sub_state_item import SupportassistLicenseTaskAuditSubStateItem -from isilon_sdk.v9_11_0.models.supportassist_payload_item import SupportassistPayloadItem -from isilon_sdk.v9_11_0.models.supportassist_settings import SupportassistSettings -from isilon_sdk.v9_11_0.models.supportassist_settings_connection import SupportassistSettingsConnection -from isilon_sdk.v9_11_0.models.supportassist_settings_connection_extended import SupportassistSettingsConnectionExtended -from isilon_sdk.v9_11_0.models.supportassist_settings_connection_gateway_endpoint import SupportassistSettingsConnectionGatewayEndpoint -from isilon_sdk.v9_11_0.models.supportassist_settings_connection_network_pool import SupportassistSettingsConnectionNetworkPool -from isilon_sdk.v9_11_0.models.supportassist_settings_contact import SupportassistSettingsContact -from isilon_sdk.v9_11_0.models.supportassist_settings_contact_extended import SupportassistSettingsContactExtended -from isilon_sdk.v9_11_0.models.supportassist_settings_contact_primary import SupportassistSettingsContactPrimary -from isilon_sdk.v9_11_0.models.supportassist_settings_contact_primary_extended import SupportassistSettingsContactPrimaryExtended -from isilon_sdk.v9_11_0.models.supportassist_settings_extended import SupportassistSettingsExtended -from isilon_sdk.v9_11_0.models.supportassist_settings_telemetry import SupportassistSettingsTelemetry -from isilon_sdk.v9_11_0.models.supportassist_settings_telemetry_extended import SupportassistSettingsTelemetryExtended -from isilon_sdk.v9_11_0.models.supportassist_status import SupportassistStatus -from isilon_sdk.v9_11_0.models.supportassist_status_extended import SupportassistStatusExtended -from isilon_sdk.v9_11_0.models.supportassist_status_status import SupportassistStatusStatus -from isilon_sdk.v9_11_0.models.supportassist_task import SupportassistTask -from isilon_sdk.v9_11_0.models.supportassist_task_item import SupportassistTaskItem -from isilon_sdk.v9_11_0.models.supportassist_task_item_task_params import SupportassistTaskItemTaskParams -from isilon_sdk.v9_11_0.models.supportassist_terms import SupportassistTerms -from isilon_sdk.v9_11_0.models.supportassist_terms_extended import SupportassistTermsExtended -from isilon_sdk.v9_11_0.models.supportassist_terms_terms import SupportassistTermsTerms -from isilon_sdk.v9_11_0.models.sync_job import SyncJob -from isilon_sdk.v9_11_0.models.sync_job_create_params import SyncJobCreateParams -from isilon_sdk.v9_11_0.models.sync_job_extended import SyncJobExtended -from isilon_sdk.v9_11_0.models.sync_job_phase import SyncJobPhase -from isilon_sdk.v9_11_0.models.sync_job_phase_statistics import SyncJobPhaseStatistics -from isilon_sdk.v9_11_0.models.sync_job_policy import SyncJobPolicy -from isilon_sdk.v9_11_0.models.sync_job_service_report_item import SyncJobServiceReportItem -from isilon_sdk.v9_11_0.models.sync_job_worker import SyncJobWorker -from isilon_sdk.v9_11_0.models.sync_jobs import SyncJobs -from isilon_sdk.v9_11_0.models.sync_jobs_extended import SyncJobsExtended -from isilon_sdk.v9_11_0.models.sync_policies import SyncPolicies -from isilon_sdk.v9_11_0.models.sync_policy import SyncPolicy -from isilon_sdk.v9_11_0.models.sync_policy_create_params import SyncPolicyCreateParams -from isilon_sdk.v9_11_0.models.sync_policy_extended import SyncPolicyExtended -from isilon_sdk.v9_11_0.models.sync_policy_file_matching_pattern import SyncPolicyFileMatchingPattern -from isilon_sdk.v9_11_0.models.sync_policy_file_matching_pattern_or_criteria_item import SyncPolicyFileMatchingPatternOrCriteriaItem -from isilon_sdk.v9_11_0.models.sync_policy_file_matching_pattern_or_criteria_item_and_criteria_item import SyncPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem -from isilon_sdk.v9_11_0.models.sync_policy_source_network import SyncPolicySourceNetwork -from isilon_sdk.v9_11_0.models.sync_report import SyncReport -from isilon_sdk.v9_11_0.models.sync_reports import SyncReports -from isilon_sdk.v9_11_0.models.sync_reports_extended import SyncReportsExtended -from isilon_sdk.v9_11_0.models.sync_reports_rotate import SyncReportsRotate -from isilon_sdk.v9_11_0.models.sync_rule import SyncRule -from isilon_sdk.v9_11_0.models.sync_rule_extended_extended import SyncRuleExtendedExtended -from isilon_sdk.v9_11_0.models.sync_rule_schedule import SyncRuleSchedule -from isilon_sdk.v9_11_0.models.sync_rules import SyncRules -from isilon_sdk.v9_11_0.models.sync_rules_extended import SyncRulesExtended -from isilon_sdk.v9_11_0.models.sync_settings import SyncSettings -from isilon_sdk.v9_11_0.models.sync_settings_extended import SyncSettingsExtended -from isilon_sdk.v9_11_0.models.sync_settings_settings import SyncSettingsSettings -from isilon_sdk.v9_11_0.models.target_policies import TargetPolicies -from isilon_sdk.v9_11_0.models.target_policies_extended import TargetPoliciesExtended -from isilon_sdk.v9_11_0.models.target_policy import TargetPolicy -from isilon_sdk.v9_11_0.models.target_report import TargetReport -from isilon_sdk.v9_11_0.models.target_reports import TargetReports -from isilon_sdk.v9_11_0.models.target_reports_extended import TargetReportsExtended -from isilon_sdk.v9_11_0.models.throttling_bw_rule import ThrottlingBwRule -from isilon_sdk.v9_11_0.models.throttling_bw_rules import ThrottlingBwRules -from isilon_sdk.v9_11_0.models.throttling_bw_rules_bandwidth_rule import ThrottlingBwRulesBandwidthRule -from isilon_sdk.v9_11_0.models.throttling_settings import ThrottlingSettings -from isilon_sdk.v9_11_0.models.throttling_settings_settings import ThrottlingSettingsSettings -from isilon_sdk.v9_11_0.models.timezone_region import TimezoneRegion -from isilon_sdk.v9_11_0.models.timezone_region_timezone import TimezoneRegionTimezone -from isilon_sdk.v9_11_0.models.timezone_regions import TimezoneRegions -from isilon_sdk.v9_11_0.models.timezone_settings import TimezoneSettings -from isilon_sdk.v9_11_0.models.upgrade_cluster import UpgradeCluster -from isilon_sdk.v9_11_0.models.upgrade_cluster_cluster_overview import UpgradeClusterClusterOverview -from isilon_sdk.v9_11_0.models.upgrade_cluster_committed_features import UpgradeClusterCommittedFeatures -from isilon_sdk.v9_11_0.models.upgrade_cluster_committed_features_gen_bit import UpgradeClusterCommittedFeaturesGenBit -from isilon_sdk.v9_11_0.models.upgrade_cluster_firmware_device import UpgradeClusterFirmwareDevice -from isilon_sdk.v9_11_0.models.upgrade_cluster_firmware_device_node import UpgradeClusterFirmwareDeviceNode -from isilon_sdk.v9_11_0.models.upgrade_cluster_firmware_device_node_device import UpgradeClusterFirmwareDeviceNodeDevice -from isilon_sdk.v9_11_0.models.upgrade_cluster_firmware_device_node_package_item import UpgradeClusterFirmwareDeviceNodePackageItem -from isilon_sdk.v9_11_0.models.upgrade_cluster_upgrade_settings import UpgradeClusterUpgradeSettings -from isilon_sdk.v9_11_0.models.user_change_password import UserChangePassword -from isilon_sdk.v9_11_0.models.user_member_of import UserMemberOf -from isilon_sdk.v9_11_0.models.worm_create_params import WormCreateParams -from isilon_sdk.v9_11_0.models.worm_domain import WormDomain -from isilon_sdk.v9_11_0.models.worm_domain_exclusion import WormDomainExclusion -from isilon_sdk.v9_11_0.models.worm_domains import WormDomains -from isilon_sdk.v9_11_0.models.worm_properties import WormProperties -from isilon_sdk.v9_11_0.models.worm_settings import WormSettings -from isilon_sdk.v9_11_0.models.worm_settings_extended import WormSettingsExtended -from isilon_sdk.v9_11_0.models.worm_settings_settings import WormSettingsSettings -from isilon_sdk.v9_11_0.models.zone import Zone -from isilon_sdk.v9_11_0.models.zone_extended_extended import ZoneExtendedExtended -from isilon_sdk.v9_11_0.models.zone_group import ZoneGroup -from isilon_sdk.v9_11_0.models.zone_groups import ZoneGroups -from isilon_sdk.v9_11_0.models.zone_user import ZoneUser -from isilon_sdk.v9_11_0.models.zone_users import ZoneUsers -from isilon_sdk.v9_11_0.models.zones import Zones -from isilon_sdk.v9_11_0.models.zones_extended import ZonesExtended -from isilon_sdk.v9_11_0.models.zones_summary import ZonesSummary -from isilon_sdk.v9_11_0.models.zones_summary_extended import ZonesSummaryExtended -from isilon_sdk.v9_11_0.models.zones_summary_summary import ZonesSummarySummary -from isilon_sdk.v9_11_0.models.zones_summary_summary_extended import ZonesSummarySummaryExtended -from isilon_sdk.v9_11_0.models.antivirus_policies_extended import AntivirusPoliciesExtended -from isilon_sdk.v9_11_0.models.antivirus_policy_create_params import AntivirusPolicyCreateParams -from isilon_sdk.v9_11_0.models.antivirus_policy_extended import AntivirusPolicyExtended -from isilon_sdk.v9_11_0.models.antivirus_server_create_params import AntivirusServerCreateParams -from isilon_sdk.v9_11_0.models.antivirus_server_extended import AntivirusServerExtended -from isilon_sdk.v9_11_0.models.antivirus_servers_extended import AntivirusServersExtended -from isilon_sdk.v9_11_0.models.audit_topic_extended import AuditTopicExtended -from isilon_sdk.v9_11_0.models.auth_group_create_params import AuthGroupCreateParams -from isilon_sdk.v9_11_0.models.auth_role_create_params import AuthRoleCreateParams -from isilon_sdk.v9_11_0.models.auth_role_extended import AuthRoleExtended -from isilon_sdk.v9_11_0.models.auth_roles_extended import AuthRolesExtended -from isilon_sdk.v9_11_0.models.auth_user_create_params import AuthUserCreateParams -from isilon_sdk.v9_11_0.models.avscan_jobs_extended import AvscanJobsExtended -from isilon_sdk.v9_11_0.models.avscan_servers_extended import AvscanServersExtended -from isilon_sdk.v9_11_0.models.certificates_identity_extended import CertificatesIdentityExtended -from isilon_sdk.v9_11_0.models.certificates_syslog_extended import CertificatesSyslogExtended -from isilon_sdk.v9_11_0.models.cloud_access_extended import CloudAccessExtended -from isilon_sdk.v9_11_0.models.cloud_account_extended import CloudAccountExtended -from isilon_sdk.v9_11_0.models.cloud_jobs_extended import CloudJobsExtended -from isilon_sdk.v9_11_0.models.cloud_pool_create_params import CloudPoolCreateParams -from isilon_sdk.v9_11_0.models.cloud_pool_extended import CloudPoolExtended -from isilon_sdk.v9_11_0.models.cloud_proxy_create_params import CloudProxyCreateParams -from isilon_sdk.v9_11_0.models.cloud_proxy_extended import CloudProxyExtended -from isilon_sdk.v9_11_0.models.cluster_internal_networks_failover_ip_addresse import ClusterInternalNetworksFailoverIpAddresse -from isilon_sdk.v9_11_0.models.cluster_internal_networks_failover_ip_addresse_extended import ClusterInternalNetworksFailoverIpAddresseExtended -from isilon_sdk.v9_11_0.models.cluster_internal_networks_int_a_ip_addresse import ClusterInternalNetworksIntAIpAddresse -from isilon_sdk.v9_11_0.models.cluster_internal_networks_int_a_ip_addresse_extended import ClusterInternalNetworksIntAIpAddresseExtended -from isilon_sdk.v9_11_0.models.cluster_internal_networks_int_b_ip_addresse import ClusterInternalNetworksIntBIpAddresse -from isilon_sdk.v9_11_0.models.cluster_internal_networks_int_b_ip_addresse_extended import ClusterInternalNetworksIntBIpAddresseExtended -from isilon_sdk.v9_11_0.models.cluster_node_state_servicelight import ClusterNodeStateServicelight -from isilon_sdk.v9_11_0.models.cluster_node_state_servicelight_extended import ClusterNodeStateServicelightExtended -from isilon_sdk.v9_11_0.models.cluster_patch_patches_extended import ClusterPatchPatchesExtended -from isilon_sdk.v9_11_0.models.config_feature_extended import ConfigFeatureExtended -from isilon_sdk.v9_11_0.models.datamover_accounts_extended import DatamoverAccountsExtended -from isilon_sdk.v9_11_0.models.datamover_base_policies_extended import DatamoverBasePoliciesExtended -from isilon_sdk.v9_11_0.models.datamover_base_policy_create_params import DatamoverBasePolicyCreateParams -from isilon_sdk.v9_11_0.models.datamover_jobs_extended import DatamoverJobsExtended -from isilon_sdk.v9_11_0.models.datamover_policies_extended import DatamoverPoliciesExtended -from isilon_sdk.v9_11_0.models.datamover_policy_policy_specific_attr_copy_policy_dataset_copy_policy_base_extended import DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended -from isilon_sdk.v9_11_0.models.datamover_policy_policy_specific_attr_create_params import DatamoverPolicyPolicySpecificAttrCreateParams -from isilon_sdk.v9_11_0.models.datamover_policy_policy_specific_attr_creation_policy_extended import DatamoverPolicyPolicySpecificAttrCreationPolicyExtended -from isilon_sdk.v9_11_0.models.datamover_policy_policy_specific_attr_expiration_policy_extended import DatamoverPolicyPolicySpecificAttrExpirationPolicyExtended -from isilon_sdk.v9_11_0.models.dataset_filter_create_params import DatasetFilterCreateParams -from isilon_sdk.v9_11_0.models.dataset_filter_extended import DatasetFilterExtended -from isilon_sdk.v9_11_0.models.dataset_workload_create_params import DatasetWorkloadCreateParams -from isilon_sdk.v9_11_0.models.dataset_workload_extended import DatasetWorkloadExtended -from isilon_sdk.v9_11_0.models.dedupe_reports_extended import DedupeReportsExtended -from isilon_sdk.v9_11_0.models.event_alert_condition_create_params import EventAlertConditionCreateParams -from isilon_sdk.v9_11_0.models.event_alert_conditions_extended import EventAlertConditionsExtended -from isilon_sdk.v9_11_0.models.event_categories_extended import EventCategoriesExtended -from isilon_sdk.v9_11_0.models.event_channel_extended import EventChannelExtended -from isilon_sdk.v9_11_0.models.event_channels_extended import EventChannelsExtended -from isilon_sdk.v9_11_0.models.event_eventgroup_definitions_extended import EventEventgroupDefinitionsExtended -from isilon_sdk.v9_11_0.models.event_eventgroup_occurrences_extended import EventEventgroupOccurrencesExtended -from isilon_sdk.v9_11_0.models.event_eventlists_extended import EventEventlistsExtended -from isilon_sdk.v9_11_0.models.event_threshold_extended import EventThresholdExtended -from isilon_sdk.v9_11_0.models.filepool_policy_create_params import FilepoolPolicyCreateParams -from isilon_sdk.v9_11_0.models.firewall_dscp_rule_extended import FirewallDscpRuleExtended -from isilon_sdk.v9_11_0.models.firewall_policy_extended import FirewallPolicyExtended -from isilon_sdk.v9_11_0.models.firewall_rule import FirewallRule -from isilon_sdk.v9_11_0.models.fsa_result_extended import FsaResultExtended -from isilon_sdk.v9_11_0.models.fsa_results_extended import FsaResultsExtended -from isilon_sdk.v9_11_0.models.groupnet_subnet_create_params import GroupnetSubnetCreateParams -from isilon_sdk.v9_11_0.models.groupnet_subnet_extended import GroupnetSubnetExtended -from isilon_sdk.v9_11_0.models.groupnet_subnets_extended import GroupnetSubnetsExtended -from isilon_sdk.v9_11_0.models.hdfs_rack_create_params import HdfsRackCreateParams -from isilon_sdk.v9_11_0.models.hdfs_rack_extended import HdfsRackExtended -from isilon_sdk.v9_11_0.models.healthcheck_checklist_extended import HealthcheckChecklistExtended -from isilon_sdk.v9_11_0.models.healthcheck_checklists_extended import HealthcheckChecklistsExtended -from isilon_sdk.v9_11_0.models.healthcheck_evaluations_extended import HealthcheckEvaluationsExtended -from isilon_sdk.v9_11_0.models.healthcheck_items_extended import HealthcheckItemsExtended -from isilon_sdk.v9_11_0.models.healthcheck_parameter_create_params import HealthcheckParameterCreateParams -from isilon_sdk.v9_11_0.models.healthcheck_parameters_extended import HealthcheckParametersExtended -from isilon_sdk.v9_11_0.models.healthcheck_schedules_extended import HealthcheckSchedulesExtended -from isilon_sdk.v9_11_0.models.http_service_extended import HttpServiceExtended -from isilon_sdk.v9_11_0.models.id_resolution_domains_extended import IdResolutionDomainsExtended -from isilon_sdk.v9_11_0.models.id_resolution_lins_extended import IdResolutionLinsExtended -from isilon_sdk.v9_11_0.models.id_resolution_zones_extended import IdResolutionZonesExtended -from isilon_sdk.v9_11_0.models.job_jobs_extended import JobJobsExtended -from isilon_sdk.v9_11_0.models.job_policies_extended import JobPoliciesExtended -from isilon_sdk.v9_11_0.models.job_policy_create_params import JobPolicyCreateParams -from isilon_sdk.v9_11_0.models.job_policy_extended import JobPolicyExtended -from isilon_sdk.v9_11_0.models.job_type_extended import JobTypeExtended -from isilon_sdk.v9_11_0.models.job_types_extended import JobTypesExtended -from isilon_sdk.v9_11_0.models.kmip_server_create_params import KmipServerCreateParams -from isilon_sdk.v9_11_0.models.kmip_server_extended_extended import KmipServerExtendedExtended -from isilon_sdk.v9_11_0.models.lfn_extended import LfnExtended -from isilon_sdk.v9_11_0.models.lfn_item import LfnItem -from isilon_sdk.v9_11_0.models.license_licenses_extended import LicenseLicensesExtended -from isilon_sdk.v9_11_0.models.mapping_users_rules_parameters_default_unix_user import MappingUsersRulesParametersDefaultUnixUser -from isilon_sdk.v9_11_0.models.mapping_users_rules_rule_options_default_user import MappingUsersRulesRuleOptionsDefaultUser -from isilon_sdk.v9_11_0.models.mapping_users_rules_rule_user1 import MappingUsersRulesRuleUser1 -from isilon_sdk.v9_11_0.models.mapping_users_rules_rule_user2 import MappingUsersRulesRuleUser2 -from isilon_sdk.v9_11_0.models.ndmp_settings_preferred_ip_create_params import NdmpSettingsPreferredIpCreateParams -from isilon_sdk.v9_11_0.models.ndmp_settings_preferred_ips_extended import NdmpSettingsPreferredIpsExtended -from isilon_sdk.v9_11_0.models.ndmp_settings_variable_create_params import NdmpSettingsVariableCreateParams -from isilon_sdk.v9_11_0.models.ndmp_user_create_params import NdmpUserCreateParams -from isilon_sdk.v9_11_0.models.ndmp_users_extended import NdmpUsersExtended -from isilon_sdk.v9_11_0.models.network_groupnet_create_params import NetworkGroupnetCreateParams -from isilon_sdk.v9_11_0.models.network_groupnet_extended import NetworkGroupnetExtended -from isilon_sdk.v9_11_0.models.network_groupnets_extended import NetworkGroupnetsExtended -from isilon_sdk.v9_11_0.models.nfs_alias_extended import NfsAliasExtended -from isilon_sdk.v9_11_0.models.nfs_export_create_params import NfsExportCreateParams -from isilon_sdk.v9_11_0.models.node_state_node_servicelight import NodeStateNodeServicelight -from isilon_sdk.v9_11_0.models.ntp_servers_extended import NtpServersExtended -from isilon_sdk.v9_11_0.models.oauth_oauth2_client_create_params import OauthOauth2ClientCreateParams -from isilon_sdk.v9_11_0.models.oauth_oauth2_token_exchange_create_params import OauthOauth2TokenExchangeCreateParams -from isilon_sdk.v9_11_0.models.performance_dataset_create_params import PerformanceDatasetCreateParams -from isilon_sdk.v9_11_0.models.performance_dataset_extended import PerformanceDatasetExtended -from isilon_sdk.v9_11_0.models.policies_policy_rule_create_params import PoliciesPolicyRuleCreateParams -from isilon_sdk.v9_11_0.models.policies_policy_rules_extended import PoliciesPolicyRulesExtended -from isilon_sdk.v9_11_0.models.pools_pool_rules_extended import PoolsPoolRulesExtended -from isilon_sdk.v9_11_0.models.providers_krb5_krb5_item_extended import ProvidersKrb5Krb5ItemExtended -from isilon_sdk.v9_11_0.models.providers_saml_services_idp_create_params import ProvidersSamlServicesIdpCreateParams -from isilon_sdk.v9_11_0.models.quota_notification_create_params import QuotaNotificationCreateParams -from isilon_sdk.v9_11_0.models.quota_notification_extended import QuotaNotificationExtended -from isilon_sdk.v9_11_0.models.quota_notifications_extended import QuotaNotificationsExtended -from isilon_sdk.v9_11_0.models.report_subreports_extended import ReportSubreportsExtended -from isilon_sdk.v9_11_0.models.reports_report_subreports_extended import ReportsReportSubreportsExtended -from isilon_sdk.v9_11_0.models.reports_scans_extended import ReportsScansExtended -from isilon_sdk.v9_11_0.models.reports_threats_extended import ReportsThreatsExtended -from isilon_sdk.v9_11_0.models.result_directories_total_usage import ResultDirectoriesTotalUsage -from isilon_sdk.v9_11_0.models.result_directories_total_usage_extended import ResultDirectoriesTotalUsageExtended -from isilon_sdk.v9_11_0.models.s3_bucket_create_params import S3BucketCreateParams -from isilon_sdk.v9_11_0.models.s3_bucket_extended import S3BucketExtended -from isilon_sdk.v9_11_0.models.sed_status_node_extended import SedStatusNodeExtended -from isilon_sdk.v9_11_0.models.service_policy_extended_extended import ServicePolicyExtendedExtended -from isilon_sdk.v9_11_0.models.service_target_policies_extended import ServiceTargetPoliciesExtended -from isilon_sdk.v9_11_0.models.sessions_invalidation_create_params import SessionsInvalidationCreateParams -from isilon_sdk.v9_11_0.models.settings_krb5_domain_create_params import SettingsKrb5DomainCreateParams -from isilon_sdk.v9_11_0.models.settings_krb5_realm_create_params import SettingsKrb5RealmCreateParams -from isilon_sdk.v9_11_0.models.smb_shares_extended import SmbSharesExtended -from isilon_sdk.v9_11_0.models.snapshot_lock_create_params import SnapshotLockCreateParams -from isilon_sdk.v9_11_0.models.snapshot_schedule_create_params import SnapshotScheduleCreateParams -from isilon_sdk.v9_11_0.models.snapshot_snapshot_create_params import SnapshotSnapshotCreateParams -from isilon_sdk.v9_11_0.models.snapshot_writable_extended import SnapshotWritableExtended -from isilon_sdk.v9_11_0.models.statistics_keys_extended import StatisticsKeysExtended -from isilon_sdk.v9_11_0.models.storagepool_tier_create_params import StoragepoolTierCreateParams -from isilon_sdk.v9_11_0.models.sync_policies_extended import SyncPoliciesExtended -from isilon_sdk.v9_11_0.models.sync_rule_create_params import SyncRuleCreateParams -from isilon_sdk.v9_11_0.models.sync_rule_extended import SyncRuleExtended -from isilon_sdk.v9_11_0.models.throttling_bw_rule_create_params import ThrottlingBwRuleCreateParams -from isilon_sdk.v9_11_0.models.throttling_bw_rules_extended import ThrottlingBwRulesExtended -from isilon_sdk.v9_11_0.models.worm_domain_create_params import WormDomainCreateParams -from isilon_sdk.v9_11_0.models.worm_domain_extended import WormDomainExtended -from isilon_sdk.v9_11_0.models.worm_domains_extended import WormDomainsExtended -from isilon_sdk.v9_11_0.models.zone_create_params import ZoneCreateParams -from isilon_sdk.v9_11_0.models.zone_extended import ZoneExtended -from isilon_sdk.v9_11_0.models.zone_groups_extended import ZoneGroupsExtended -from isilon_sdk.v9_11_0.models.zone_users_extended import ZoneUsersExtended -from isilon_sdk.v9_11_0.models.event_channel_create_params import EventChannelCreateParams -from isilon_sdk.v9_11_0.models.firewall_policy_extended_extended import FirewallPolicyExtendedExtended diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_settings.py b/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_settings.py deleted file mode 100644 index 36c3d4746..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_settings.py +++ /dev/null @@ -1,117 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class CertificatesSettings(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'settings': 'CertificatesSettingsSettings' - } - - attribute_map = { - 'settings': 'settings' - } - - def __init__(self, settings=None): # noqa: E501 - """CertificatesSettings - a model defined in Swagger""" # noqa: E501 - - self._settings = None - self.discriminator = None - - if settings is not None: - self.settings = settings - - @property - def settings(self): - """Gets the settings of this CertificatesSettings. # noqa: E501 - - Manage Datamover TLS settings # noqa: E501 - - :return: The settings of this CertificatesSettings. # noqa: E501 - :rtype: CertificatesSettingsSettings - """ - return self._settings - - @settings.setter - def settings(self, settings): - """Sets the settings of this CertificatesSettings. - - Manage Datamover TLS settings # noqa: E501 - - :param settings: The settings of this CertificatesSettings. # noqa: E501 - :type: CertificatesSettingsSettings - """ - - self._settings = settings - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(CertificatesSettings, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, CertificatesSettings): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_settings_settings.py b/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_settings_settings.py deleted file mode 100644 index 6c3e17b58..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_settings_settings.py +++ /dev/null @@ -1,211 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class CertificatesSettingsSettings(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'enable_encryption': 'bool', - 'ocsp_uri': 'str', - 'revocation_setting': 'str', - 'strict_hostname_check': 'bool' - } - - attribute_map = { - 'enable_encryption': 'enable_encryption', - 'ocsp_uri': 'ocsp_uri', - 'revocation_setting': 'revocation_setting', - 'strict_hostname_check': 'strict_hostname_check' - } - - def __init__(self, enable_encryption=None, ocsp_uri=None, revocation_setting=None, strict_hostname_check=None): # noqa: E501 - """CertificatesSettingsSettings - a model defined in Swagger""" # noqa: E501 - - self._enable_encryption = None - self._ocsp_uri = None - self._revocation_setting = None - self._strict_hostname_check = None - self.discriminator = None - - if enable_encryption is not None: - self.enable_encryption = enable_encryption - if ocsp_uri is not None: - self.ocsp_uri = ocsp_uri - if revocation_setting is not None: - self.revocation_setting = revocation_setting - if strict_hostname_check is not None: - self.strict_hostname_check = strict_hostname_check - - @property - def enable_encryption(self): - """Gets the enable_encryption of this CertificatesSettingsSettings. # noqa: E501 - - Enables encryption. If disabled, TLS handshakes still must succeed, but once successful, traffic is left unencrypted. # noqa: E501 - - :return: The enable_encryption of this CertificatesSettingsSettings. # noqa: E501 - :rtype: bool - """ - return self._enable_encryption - - @enable_encryption.setter - def enable_encryption(self, enable_encryption): - """Sets the enable_encryption of this CertificatesSettingsSettings. - - Enables encryption. If disabled, TLS handshakes still must succeed, but once successful, traffic is left unencrypted. # noqa: E501 - - :param enable_encryption: The enable_encryption of this CertificatesSettingsSettings. # noqa: E501 - :type: bool - """ - - self._enable_encryption = enable_encryption - - @property - def ocsp_uri(self): - """Gets the ocsp_uri of this CertificatesSettingsSettings. # noqa: E501 - - The URI of the server to check revocation status against if the received certificate does not contain an AIA extension. # noqa: E501 - - :return: The ocsp_uri of this CertificatesSettingsSettings. # noqa: E501 - :rtype: str - """ - return self._ocsp_uri - - @ocsp_uri.setter - def ocsp_uri(self, ocsp_uri): - """Sets the ocsp_uri of this CertificatesSettingsSettings. - - The URI of the server to check revocation status against if the received certificate does not contain an AIA extension. # noqa: E501 - - :param ocsp_uri: The ocsp_uri of this CertificatesSettingsSettings. # noqa: E501 - :type: str - """ - if ocsp_uri is not None and len(ocsp_uri) > 1024: - raise ValueError("Invalid value for `ocsp_uri`, length must be less than or equal to `1024`") # noqa: E501 - if ocsp_uri is not None and len(ocsp_uri) < 0: - raise ValueError("Invalid value for `ocsp_uri`, length must be greater than or equal to `0`") # noqa: E501 - - self._ocsp_uri = ocsp_uri - - @property - def revocation_setting(self): - """Gets the revocation_setting of this CertificatesSettingsSettings. # noqa: E501 - - The strictness of revocation checking to use.NONE: Don't check for revoked certificates.STRICT: Check for revoked certificates and fail the handshake if any certificate in the chain is revoked, or if revocation status data cannot be obtained.ALLOW_NO_REVOKE_SRC: Allow handshakes to proceed if a certificate does not contain information on where to check for revocation (e.g. no OCSP responder field).ALLOW_REVOKE_DATA_UNAVAILABLE: Attempt to check each certificate for revocation status, but proceed if revocation status information is unavailable. # noqa: E501 - - :return: The revocation_setting of this CertificatesSettingsSettings. # noqa: E501 - :rtype: str - """ - return self._revocation_setting - - @revocation_setting.setter - def revocation_setting(self, revocation_setting): - """Sets the revocation_setting of this CertificatesSettingsSettings. - - The strictness of revocation checking to use.NONE: Don't check for revoked certificates.STRICT: Check for revoked certificates and fail the handshake if any certificate in the chain is revoked, or if revocation status data cannot be obtained.ALLOW_NO_REVOKE_SRC: Allow handshakes to proceed if a certificate does not contain information on where to check for revocation (e.g. no OCSP responder field).ALLOW_REVOKE_DATA_UNAVAILABLE: Attempt to check each certificate for revocation status, but proceed if revocation status information is unavailable. # noqa: E501 - - :param revocation_setting: The revocation_setting of this CertificatesSettingsSettings. # noqa: E501 - :type: str - """ - allowed_values = ["NONE", "STRICT", "ALLOW_NO_REVOKE_SRC", "ALLOW_REVOKE_DATA_UNAVAILABLE"] # noqa: E501 - if revocation_setting not in allowed_values: - raise ValueError( - "Invalid value for `revocation_setting` ({0}), must be one of {1}" # noqa: E501 - .format(revocation_setting, allowed_values) - ) - - self._revocation_setting = revocation_setting - - @property - def strict_hostname_check(self): - """Gets the strict_hostname_check of this CertificatesSettingsSettings. # noqa: E501 - - If enabled, the CN in the certificate presented by the remote host must match the CN used to connect to that host for the handshake to succeed. # noqa: E501 - - :return: The strict_hostname_check of this CertificatesSettingsSettings. # noqa: E501 - :rtype: bool - """ - return self._strict_hostname_check - - @strict_hostname_check.setter - def strict_hostname_check(self, strict_hostname_check): - """Sets the strict_hostname_check of this CertificatesSettingsSettings. - - If enabled, the CN in the certificate presented by the remote host must match the CN used to connect to that host for the handshake to succeed. # noqa: E501 - - :param strict_hostname_check: The strict_hostname_check of this CertificatesSettingsSettings. # noqa: E501 - :type: bool - """ - - self._strict_hostname_check = strict_hostname_check - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(CertificatesSettingsSettings, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, CertificatesSettingsSettings): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_rekey.py b/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_rekey.py deleted file mode 100644 index e087e8bce..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_rekey.py +++ /dev/null @@ -1,155 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ClusterRekey(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'key_rotation': 'int', - 'rekey_time': 'int' - } - - attribute_map = { - 'key_rotation': 'key_rotation', - 'rekey_time': 'rekey_time' - } - - def __init__(self, key_rotation=None, rekey_time=None): # noqa: E501 - """ClusterRekey - a model defined in Swagger""" # noqa: E501 - - self._key_rotation = None - self._rekey_time = None - self.discriminator = None - - self.key_rotation = key_rotation - self.rekey_time = rekey_time - - @property - def key_rotation(self): - """Gets the key_rotation of this ClusterRekey. # noqa: E501 - - The amount of time in seconds between changing the provider master passphrase. # noqa: E501 - - :return: The key_rotation of this ClusterRekey. # noqa: E501 - :rtype: int - """ - return self._key_rotation - - @key_rotation.setter - def key_rotation(self, key_rotation): - """Sets the key_rotation of this ClusterRekey. - - The amount of time in seconds between changing the provider master passphrase. # noqa: E501 - - :param key_rotation: The key_rotation of this ClusterRekey. # noqa: E501 - :type: int - """ - if key_rotation is None: - raise ValueError("Invalid value for `key_rotation`, must not be `None`") # noqa: E501 - if key_rotation is not None and key_rotation > 2147483647: # noqa: E501 - raise ValueError("Invalid value for `key_rotation`, must be a value less than or equal to `2147483647`") # noqa: E501 - if key_rotation is not None and key_rotation < 0: # noqa: E501 - raise ValueError("Invalid value for `key_rotation`, must be a value greater than or equal to `0`") # noqa: E501 - - self._key_rotation = key_rotation - - @property - def rekey_time(self): - """Gets the rekey_time of this ClusterRekey. # noqa: E501 - - Last rekey date of the provider master passphrase. # noqa: E501 - - :return: The rekey_time of this ClusterRekey. # noqa: E501 - :rtype: int - """ - return self._rekey_time - - @rekey_time.setter - def rekey_time(self, rekey_time): - """Sets the rekey_time of this ClusterRekey. - - Last rekey date of the provider master passphrase. # noqa: E501 - - :param rekey_time: The rekey_time of this ClusterRekey. # noqa: E501 - :type: int - """ - if rekey_time is None: - raise ValueError("Invalid value for `rekey_time`, must not be `None`") # noqa: E501 - if rekey_time is not None and rekey_time > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `rekey_time`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if rekey_time is not None and rekey_time < 0: # noqa: E501 - raise ValueError("Invalid value for `rekey_time`, must be a value greater than or equal to `0`") # noqa: E501 - - self._rekey_time = rekey_time - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ClusterRekey, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ClusterRekey): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_rekey_item.py b/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_rekey_item.py deleted file mode 100644 index 9337b96ae..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_rekey_item.py +++ /dev/null @@ -1,117 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ClusterRekeyItem(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'start': 'bool' - } - - attribute_map = { - 'start': 'start' - } - - def __init__(self, start=None): # noqa: E501 - """ClusterRekeyItem - a model defined in Swagger""" # noqa: E501 - - self._start = None - self.discriminator = None - - if start is not None: - self.start = start - - @property - def start(self): - """Gets the start of this ClusterRekeyItem. # noqa: E501 - - Set to true to start a rekey of the provider master passphrase. # noqa: E501 - - :return: The start of this ClusterRekeyItem. # noqa: E501 - :rtype: bool - """ - return self._start - - @start.setter - def start(self, start): - """Sets the start of this ClusterRekeyItem. - - Set to true to start a rekey of the provider master passphrase. # noqa: E501 - - :param start: The start of this ClusterRekeyItem. # noqa: E501 - :type: bool - """ - - self._start = start - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ClusterRekeyItem, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ClusterRekeyItem): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_status.py b/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_status.py deleted file mode 100644 index 6084a43ef..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_status.py +++ /dev/null @@ -1,179 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ClusterStatus(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'domains': 'list[ClusterStatusDomain]', - 'resume': 'str', - 'total': 'int' - } - - attribute_map = { - 'domains': 'domains', - 'resume': 'resume', - 'total': 'total' - } - - def __init__(self, domains=None, resume=None, total=None): # noqa: E501 - """ClusterStatus - a model defined in Swagger""" # noqa: E501 - - self._domains = None - self._resume = None - self._total = None - self.discriminator = None - - if domains is not None: - self.domains = domains - if resume is not None: - self.resume = resume - if total is not None: - self.total = total - - @property - def domains(self): - """Gets the domains of this ClusterStatus. # noqa: E501 - - - :return: The domains of this ClusterStatus. # noqa: E501 - :rtype: list[ClusterStatusDomain] - """ - return self._domains - - @domains.setter - def domains(self, domains): - """Sets the domains of this ClusterStatus. - - - :param domains: The domains of this ClusterStatus. # noqa: E501 - :type: list[ClusterStatusDomain] - """ - - self._domains = domains - - @property - def resume(self): - """Gets the resume of this ClusterStatus. # noqa: E501 - - Provide this token as the 'resume' query argument to continue listing results. # noqa: E501 - - :return: The resume of this ClusterStatus. # noqa: E501 - :rtype: str - """ - return self._resume - - @resume.setter - def resume(self, resume): - """Sets the resume of this ClusterStatus. - - Provide this token as the 'resume' query argument to continue listing results. # noqa: E501 - - :param resume: The resume of this ClusterStatus. # noqa: E501 - :type: str - """ - if resume is not None and len(resume) > 8192: - raise ValueError("Invalid value for `resume`, length must be less than or equal to `8192`") # noqa: E501 - if resume is not None and len(resume) < 0: - raise ValueError("Invalid value for `resume`, length must be greater than or equal to `0`") # noqa: E501 - - self._resume = resume - - @property - def total(self): - """Gets the total of this ClusterStatus. # noqa: E501 - - Total number of items available. # noqa: E501 - - :return: The total of this ClusterStatus. # noqa: E501 - :rtype: int - """ - return self._total - - @total.setter - def total(self, total): - """Sets the total of this ClusterStatus. - - Total number of items available. # noqa: E501 - - :param total: The total of this ClusterStatus. # noqa: E501 - :type: int - """ - if total is not None and total > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `total`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if total is not None and total < 0: # noqa: E501 - raise ValueError("Invalid value for `total`, must be a value greater than or equal to `0`") # noqa: E501 - - self._total = total - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ClusterStatus, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ClusterStatus): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_status_domain.py b/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_status_domain.py deleted file mode 100644 index 191c2617b..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_status_domain.py +++ /dev/null @@ -1,217 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ClusterStatusDomain(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'error_msg': 'str', - 'id': 'str', - 'key_timestamp': 'int', - 'status': 'str' - } - - attribute_map = { - 'error_msg': 'error_msg', - 'id': 'id', - 'key_timestamp': 'key_timestamp', - 'status': 'status' - } - - def __init__(self, error_msg=None, id=None, key_timestamp=None, status=None): # noqa: E501 - """ClusterStatusDomain - a model defined in Swagger""" # noqa: E501 - - self._error_msg = None - self._id = None - self._key_timestamp = None - self._status = None - self.discriminator = None - - if error_msg is not None: - self.error_msg = error_msg - if id is not None: - self.id = id - if key_timestamp is not None: - self.key_timestamp = key_timestamp - if status is not None: - self.status = status - - @property - def error_msg(self): - """Gets the error_msg of this ClusterStatusDomain. # noqa: E501 - - information of the error if there is an error status. Empty if no error occurred. # noqa: E501 - - :return: The error_msg of this ClusterStatusDomain. # noqa: E501 - :rtype: str - """ - return self._error_msg - - @error_msg.setter - def error_msg(self, error_msg): - """Sets the error_msg of this ClusterStatusDomain. - - information of the error if there is an error status. Empty if no error occurred. # noqa: E501 - - :param error_msg: The error_msg of this ClusterStatusDomain. # noqa: E501 - :type: str - """ - if error_msg is not None and len(error_msg) > 255: - raise ValueError("Invalid value for `error_msg`, length must be less than or equal to `255`") # noqa: E501 - if error_msg is not None and len(error_msg) < 0: - raise ValueError("Invalid value for `error_msg`, length must be greater than or equal to `0`") # noqa: E501 - - self._error_msg = error_msg - - @property - def id(self): - """Gets the id of this ClusterStatusDomain. # noqa: E501 - - The name of a keymanager cluster domain. # noqa: E501 - - :return: The id of this ClusterStatusDomain. # noqa: E501 - :rtype: str - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this ClusterStatusDomain. - - The name of a keymanager cluster domain. # noqa: E501 - - :param id: The id of this ClusterStatusDomain. # noqa: E501 - :type: str - """ - if id is not None and len(id) > 255: - raise ValueError("Invalid value for `id`, length must be less than or equal to `255`") # noqa: E501 - if id is not None and len(id) < 1: - raise ValueError("Invalid value for `id`, length must be greater than or equal to `1`") # noqa: E501 - - self._id = id - - @property - def key_timestamp(self): - """Gets the key_timestamp of this ClusterStatusDomain. # noqa: E501 - - Creation time of the key # noqa: E501 - - :return: The key_timestamp of this ClusterStatusDomain. # noqa: E501 - :rtype: int - """ - return self._key_timestamp - - @key_timestamp.setter - def key_timestamp(self, key_timestamp): - """Sets the key_timestamp of this ClusterStatusDomain. - - Creation time of the key # noqa: E501 - - :param key_timestamp: The key_timestamp of this ClusterStatusDomain. # noqa: E501 - :type: int - """ - if key_timestamp is not None and key_timestamp > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `key_timestamp`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if key_timestamp is not None and key_timestamp < 0: # noqa: E501 - raise ValueError("Invalid value for `key_timestamp`, must be a value greater than or equal to `0`") # noqa: E501 - - self._key_timestamp = key_timestamp - - @property - def status(self): - """Gets the status of this ClusterStatusDomain. # noqa: E501 - - Current key domain status. # noqa: E501 - - :return: The status of this ClusterStatusDomain. # noqa: E501 - :rtype: str - """ - return self._status - - @status.setter - def status(self, status): - """Sets the status of this ClusterStatusDomain. - - Current key domain status. # noqa: E501 - - :param status: The status of this ClusterStatusDomain. # noqa: E501 - :type: str - """ - if status is not None and len(status) > 255: - raise ValueError("Invalid value for `status`, length must be less than or equal to `255`") # noqa: E501 - if status is not None and len(status) < 1: - raise ValueError("Invalid value for `status`, length must be greater than or equal to `1`") # noqa: E501 - - self._status = status - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ClusterStatusDomain, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ClusterStatusDomain): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_catalog_status.py b/isilon_sdk/isilon_sdk/v9_11_0/models/config_catalog_status.py deleted file mode 100644 index d64fbfc32..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_catalog_status.py +++ /dev/null @@ -1,206 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ConfigCatalogStatus(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'compliance_update': 'bool', - 'enabled': 'bool', - 'last_failed_package': 'ConfigCatalogStatusLastFailedPackage', - 'version': 'str' - } - - attribute_map = { - 'compliance_update': 'compliance_update', - 'enabled': 'enabled', - 'last_failed_package': 'last_failed_package', - 'version': 'version' - } - - def __init__(self, compliance_update=None, enabled=None, last_failed_package=None, version=None): # noqa: E501 - """ConfigCatalogStatus - a model defined in Swagger""" # noqa: E501 - - self._compliance_update = None - self._enabled = None - self._last_failed_package = None - self._version = None - self.discriminator = None - - if compliance_update is not None: - self.compliance_update = compliance_update - if enabled is not None: - self.enabled = enabled - if last_failed_package is not None: - self.last_failed_package = last_failed_package - self.version = version - - @property - def compliance_update(self): - """Gets the compliance_update of this ConfigCatalogStatus. # noqa: E501 - - Enable flag for compliance mode. # noqa: E501 - - :return: The compliance_update of this ConfigCatalogStatus. # noqa: E501 - :rtype: bool - """ - return self._compliance_update - - @compliance_update.setter - def compliance_update(self, compliance_update): - """Sets the compliance_update of this ConfigCatalogStatus. - - Enable flag for compliance mode. # noqa: E501 - - :param compliance_update: The compliance_update of this ConfigCatalogStatus. # noqa: E501 - :type: bool - """ - - self._compliance_update = compliance_update - - @property - def enabled(self): - """Gets the enabled of this ConfigCatalogStatus. # noqa: E501 - - Autoupdate enable flag. # noqa: E501 - - :return: The enabled of this ConfigCatalogStatus. # noqa: E501 - :rtype: bool - """ - return self._enabled - - @enabled.setter - def enabled(self, enabled): - """Sets the enabled of this ConfigCatalogStatus. - - Autoupdate enable flag. # noqa: E501 - - :param enabled: The enabled of this ConfigCatalogStatus. # noqa: E501 - :type: bool - """ - - self._enabled = enabled - - @property - def last_failed_package(self): - """Gets the last_failed_package of this ConfigCatalogStatus. # noqa: E501 - - The last failed package information. # noqa: E501 - - :return: The last_failed_package of this ConfigCatalogStatus. # noqa: E501 - :rtype: ConfigCatalogStatusLastFailedPackage - """ - return self._last_failed_package - - @last_failed_package.setter - def last_failed_package(self, last_failed_package): - """Sets the last_failed_package of this ConfigCatalogStatus. - - The last failed package information. # noqa: E501 - - :param last_failed_package: The last_failed_package of this ConfigCatalogStatus. # noqa: E501 - :type: ConfigCatalogStatusLastFailedPackage - """ - - self._last_failed_package = last_failed_package - - @property - def version(self): - """Gets the version of this ConfigCatalogStatus. # noqa: E501 - - The version number. # noqa: E501 - - :return: The version of this ConfigCatalogStatus. # noqa: E501 - :rtype: str - """ - return self._version - - @version.setter - def version(self, version): - """Sets the version of this ConfigCatalogStatus. - - The version number. # noqa: E501 - - :param version: The version of this ConfigCatalogStatus. # noqa: E501 - :type: str - """ - if version is None: - raise ValueError("Invalid value for `version`, must not be `None`") # noqa: E501 - if version is not None and len(version) > 255: - raise ValueError("Invalid value for `version`, length must be less than or equal to `255`") # noqa: E501 - if version is not None and len(version) < 0: - raise ValueError("Invalid value for `version`, length must be greater than or equal to `0`") # noqa: E501 - - self._version = version - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ConfigCatalogStatus, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ConfigCatalogStatus): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_catalog_status_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/config_catalog_status_extended.py deleted file mode 100644 index 466de6205..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_catalog_status_extended.py +++ /dev/null @@ -1,117 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ConfigCatalogStatusExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'enabled': 'bool' - } - - attribute_map = { - 'enabled': 'enabled' - } - - def __init__(self, enabled=None): # noqa: E501 - """ConfigCatalogStatusExtended - a model defined in Swagger""" # noqa: E501 - - self._enabled = None - self.discriminator = None - - if enabled is not None: - self.enabled = enabled - - @property - def enabled(self): - """Gets the enabled of this ConfigCatalogStatusExtended. # noqa: E501 - - Enable/disable config catalog package auto download # noqa: E501 - - :return: The enabled of this ConfigCatalogStatusExtended. # noqa: E501 - :rtype: bool - """ - return self._enabled - - @enabled.setter - def enabled(self, enabled): - """Sets the enabled of this ConfigCatalogStatusExtended. - - Enable/disable config catalog package auto download # noqa: E501 - - :param enabled: The enabled of this ConfigCatalogStatusExtended. # noqa: E501 - :type: bool - """ - - self._enabled = enabled - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ConfigCatalogStatusExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ConfigCatalogStatusExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_catalog_status_last_failed_package.py b/isilon_sdk/isilon_sdk/v9_11_0/models/config_catalog_status_last_failed_package.py deleted file mode 100644 index 9db8698b1..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_catalog_status_last_failed_package.py +++ /dev/null @@ -1,185 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ConfigCatalogStatusLastFailedPackage(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'attempts': 'int', - 'message': 'str', - 'version': 'str' - } - - attribute_map = { - 'attempts': 'attempts', - 'message': 'message', - 'version': 'version' - } - - def __init__(self, attempts=None, message=None, version=None): # noqa: E501 - """ConfigCatalogStatusLastFailedPackage - a model defined in Swagger""" # noqa: E501 - - self._attempts = None - self._message = None - self._version = None - self.discriminator = None - - if attempts is not None: - self.attempts = attempts - if message is not None: - self.message = message - if version is not None: - self.version = version - - @property - def attempts(self): - """Gets the attempts of this ConfigCatalogStatusLastFailedPackage. # noqa: E501 - - The number of attempts to install the last failed package # noqa: E501 - - :return: The attempts of this ConfigCatalogStatusLastFailedPackage. # noqa: E501 - :rtype: int - """ - return self._attempts - - @attempts.setter - def attempts(self, attempts): - """Sets the attempts of this ConfigCatalogStatusLastFailedPackage. - - The number of attempts to install the last failed package # noqa: E501 - - :param attempts: The attempts of this ConfigCatalogStatusLastFailedPackage. # noqa: E501 - :type: int - """ - if attempts is not None and attempts > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `attempts`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if attempts is not None and attempts < 0: # noqa: E501 - raise ValueError("Invalid value for `attempts`, must be a value greater than or equal to `0`") # noqa: E501 - - self._attempts = attempts - - @property - def message(self): - """Gets the message of this ConfigCatalogStatusLastFailedPackage. # noqa: E501 - - The last failed package error message # noqa: E501 - - :return: The message of this ConfigCatalogStatusLastFailedPackage. # noqa: E501 - :rtype: str - """ - return self._message - - @message.setter - def message(self, message): - """Sets the message of this ConfigCatalogStatusLastFailedPackage. - - The last failed package error message # noqa: E501 - - :param message: The message of this ConfigCatalogStatusLastFailedPackage. # noqa: E501 - :type: str - """ - if message is not None and len(message) > 255: - raise ValueError("Invalid value for `message`, length must be less than or equal to `255`") # noqa: E501 - if message is not None and len(message) < 0: - raise ValueError("Invalid value for `message`, length must be greater than or equal to `0`") # noqa: E501 - - self._message = message - - @property - def version(self): - """Gets the version of this ConfigCatalogStatusLastFailedPackage. # noqa: E501 - - The last failed package version. # noqa: E501 - - :return: The version of this ConfigCatalogStatusLastFailedPackage. # noqa: E501 - :rtype: str - """ - return self._version - - @version.setter - def version(self, version): - """Sets the version of this ConfigCatalogStatusLastFailedPackage. - - The last failed package version. # noqa: E501 - - :param version: The version of this ConfigCatalogStatusLastFailedPackage. # noqa: E501 - :type: str - """ - if version is not None and len(version) > 255: - raise ValueError("Invalid value for `version`, length must be less than or equal to `255`") # noqa: E501 - if version is not None and len(version) < 0: - raise ValueError("Invalid value for `version`, length must be greater than or equal to `0`") # noqa: E501 - - self._version = version - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ConfigCatalogStatusLastFailedPackage, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ConfigCatalogStatusLastFailedPackage): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_config_lock.py b/isilon_sdk/isilon_sdk/v9_11_0/models/config_config_lock.py deleted file mode 100644 index 644083138..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_config_lock.py +++ /dev/null @@ -1,117 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ConfigConfigLock(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'config_lock_status': 'bool' - } - - attribute_map = { - 'config_lock_status': 'config_lock_status' - } - - def __init__(self, config_lock_status=None): # noqa: E501 - """ConfigConfigLock - a model defined in Swagger""" # noqa: E501 - - self._config_lock_status = None - self.discriminator = None - - if config_lock_status is not None: - self.config_lock_status = config_lock_status - - @property - def config_lock_status(self): - """Gets the config_lock_status of this ConfigConfigLock. # noqa: E501 - - Status of configuration lock: false - disabled, true - enabled # noqa: E501 - - :return: The config_lock_status of this ConfigConfigLock. # noqa: E501 - :rtype: bool - """ - return self._config_lock_status - - @config_lock_status.setter - def config_lock_status(self, config_lock_status): - """Sets the config_lock_status of this ConfigConfigLock. - - Status of configuration lock: false - disabled, true - enabled # noqa: E501 - - :param config_lock_status: The config_lock_status of this ConfigConfigLock. # noqa: E501 - :type: bool - """ - - self._config_lock_status = config_lock_status - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ConfigConfigLock, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ConfigConfigLock): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_import_rules.py b/isilon_sdk/isilon_sdk/v9_11_0/models/config_import_rules.py deleted file mode 100644 index 3342d93bb..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_import_rules.py +++ /dev/null @@ -1,117 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ConfigImportRules(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'network': 'ConfigImportRulesNetwork' - } - - attribute_map = { - 'network': 'network' - } - - def __init__(self, network=None): # noqa: E501 - """ConfigImportRules - a model defined in Swagger""" # noqa: E501 - - self._network = None - self.discriminator = None - - if network is not None: - self.network = network - - @property - def network(self): - """Gets the network of this ConfigImportRules. # noqa: E501 - - # noqa: E501 - - :return: The network of this ConfigImportRules. # noqa: E501 - :rtype: ConfigImportRulesNetwork - """ - return self._network - - @network.setter - def network(self, network): - """Sets the network of this ConfigImportRules. - - # noqa: E501 - - :param network: The network of this ConfigImportRules. # noqa: E501 - :type: ConfigImportRulesNetwork - """ - - self._network = network - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ConfigImportRules, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ConfigImportRules): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_import_rules_network.py b/isilon_sdk/isilon_sdk/v9_11_0/models/config_import_rules_network.py deleted file mode 100644 index d70792a55..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_import_rules_network.py +++ /dev/null @@ -1,117 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ConfigImportRulesNetwork(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'restore': 'ConfigImportRulesNetworkRestore' - } - - attribute_map = { - 'restore': 'restore' - } - - def __init__(self, restore=None): # noqa: E501 - """ConfigImportRulesNetwork - a model defined in Swagger""" # noqa: E501 - - self._restore = None - self.discriminator = None - - if restore is not None: - self.restore = restore - - @property - def restore(self): - """Gets the restore of this ConfigImportRulesNetwork. # noqa: E501 - - # noqa: E501 - - :return: The restore of this ConfigImportRulesNetwork. # noqa: E501 - :rtype: ConfigImportRulesNetworkRestore - """ - return self._restore - - @restore.setter - def restore(self, restore): - """Sets the restore of this ConfigImportRulesNetwork. - - # noqa: E501 - - :param restore: The restore of this ConfigImportRulesNetwork. # noqa: E501 - :type: ConfigImportRulesNetworkRestore - """ - - self._restore = restore - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ConfigImportRulesNetwork, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ConfigImportRulesNetwork): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_import_rules_network_restore.py b/isilon_sdk/isilon_sdk/v9_11_0/models/config_import_rules_network_restore.py deleted file mode 100644 index 6aa48bd46..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_import_rules_network_restore.py +++ /dev/null @@ -1,117 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ConfigImportRulesNetworkRestore(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'subnets': 'Empty' - } - - attribute_map = { - 'subnets': 'subnets' - } - - def __init__(self, subnets=None): # noqa: E501 - """ConfigImportRulesNetworkRestore - a model defined in Swagger""" # noqa: E501 - - self._subnets = None - self.discriminator = None - - if subnets is not None: - self.subnets = subnets - - @property - def subnets(self): - """Gets the subnets of this ConfigImportRulesNetworkRestore. # noqa: E501 - - # noqa: E501 - - :return: The subnets of this ConfigImportRulesNetworkRestore. # noqa: E501 - :rtype: Empty - """ - return self._subnets - - @subnets.setter - def subnets(self, subnets): - """Sets the subnets of this ConfigImportRulesNetworkRestore. - - # noqa: E501 - - :param subnets: The subnets of this ConfigImportRulesNetworkRestore. # noqa: E501 - :type: Empty - """ - - self._subnets = subnets - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ConfigImportRulesNetworkRestore, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ConfigImportRulesNetworkRestore): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_namespace_entry.py b/isilon_sdk/isilon_sdk/v9_11_0/models/config_namespace_entry.py deleted file mode 100644 index 7e8a84648..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_namespace_entry.py +++ /dev/null @@ -1,256 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ConfigNamespaceEntry(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'id': 'str', - 'namespace': 'str', - 'value': 'str', - 'value_size': 'int', - 'value_type': 'str' - } - - attribute_map = { - 'id': 'id', - 'namespace': 'namespace', - 'value': 'value', - 'value_size': 'value_size', - 'value_type': 'value_type' - } - - def __init__(self, id=None, namespace=None, value=None, value_size=None, value_type=None): # noqa: E501 - """ConfigNamespaceEntry - a model defined in Swagger""" # noqa: E501 - - self._id = None - self._namespace = None - self._value = None - self._value_size = None - self._value_type = None - self.discriminator = None - - self.id = id - self.namespace = namespace - self.value = value - self.value_size = value_size - self.value_type = value_type - - @property - def id(self): - """Gets the id of this ConfigNamespaceEntry. # noqa: E501 - - Configuration identifier # noqa: E501 - - :return: The id of this ConfigNamespaceEntry. # noqa: E501 - :rtype: str - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this ConfigNamespaceEntry. - - Configuration identifier # noqa: E501 - - :param id: The id of this ConfigNamespaceEntry. # noqa: E501 - :type: str - """ - if id is None: - raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 - if id is not None and len(id) > 8192: - raise ValueError("Invalid value for `id`, length must be less than or equal to `8192`") # noqa: E501 - if id is not None and len(id) < 1: - raise ValueError("Invalid value for `id`, length must be greater than or equal to `1`") # noqa: E501 - - self._id = id - - @property - def namespace(self): - """Gets the namespace of this ConfigNamespaceEntry. # noqa: E501 - - Configuration namespace # noqa: E501 - - :return: The namespace of this ConfigNamespaceEntry. # noqa: E501 - :rtype: str - """ - return self._namespace - - @namespace.setter - def namespace(self, namespace): - """Sets the namespace of this ConfigNamespaceEntry. - - Configuration namespace # noqa: E501 - - :param namespace: The namespace of this ConfigNamespaceEntry. # noqa: E501 - :type: str - """ - if namespace is None: - raise ValueError("Invalid value for `namespace`, must not be `None`") # noqa: E501 - if namespace is not None and len(namespace) > 8192: - raise ValueError("Invalid value for `namespace`, length must be less than or equal to `8192`") # noqa: E501 - if namespace is not None and len(namespace) < 1: - raise ValueError("Invalid value for `namespace`, length must be greater than or equal to `1`") # noqa: E501 - - self._namespace = namespace - - @property - def value(self): - """Gets the value of this ConfigNamespaceEntry. # noqa: E501 - - Configuration value (binary types base64 encoded) # noqa: E501 - - :return: The value of this ConfigNamespaceEntry. # noqa: E501 - :rtype: str - """ - return self._value - - @value.setter - def value(self, value): - """Sets the value of this ConfigNamespaceEntry. - - Configuration value (binary types base64 encoded) # noqa: E501 - - :param value: The value of this ConfigNamespaceEntry. # noqa: E501 - :type: str - """ - if value is None: - raise ValueError("Invalid value for `value`, must not be `None`") # noqa: E501 - if value is not None and len(value) > 87384: - raise ValueError("Invalid value for `value`, length must be less than or equal to `87384`") # noqa: E501 - if value is not None and len(value) < 0: - raise ValueError("Invalid value for `value`, length must be greater than or equal to `0`") # noqa: E501 - - self._value = value - - @property - def value_size(self): - """Gets the value_size of this ConfigNamespaceEntry. # noqa: E501 - - Length of configuration value, including null termination # noqa: E501 - - :return: The value_size of this ConfigNamespaceEntry. # noqa: E501 - :rtype: int - """ - return self._value_size - - @value_size.setter - def value_size(self, value_size): - """Sets the value_size of this ConfigNamespaceEntry. - - Length of configuration value, including null termination # noqa: E501 - - :param value_size: The value_size of this ConfigNamespaceEntry. # noqa: E501 - :type: int - """ - if value_size is None: - raise ValueError("Invalid value for `value_size`, must not be `None`") # noqa: E501 - if value_size is not None and value_size > 87385: # noqa: E501 - raise ValueError("Invalid value for `value_size`, must be a value less than or equal to `87385`") # noqa: E501 - if value_size is not None and value_size < 0: # noqa: E501 - raise ValueError("Invalid value for `value_size`, must be a value greater than or equal to `0`") # noqa: E501 - - self._value_size = value_size - - @property - def value_type(self): - """Gets the value_type of this ConfigNamespaceEntry. # noqa: E501 - - Value type # noqa: E501 - - :return: The value_type of this ConfigNamespaceEntry. # noqa: E501 - :rtype: str - """ - return self._value_type - - @value_type.setter - def value_type(self, value_type): - """Sets the value_type of this ConfigNamespaceEntry. - - Value type # noqa: E501 - - :param value_type: The value_type of this ConfigNamespaceEntry. # noqa: E501 - :type: str - """ - if value_type is None: - raise ValueError("Invalid value for `value_type`, must not be `None`") # noqa: E501 - allowed_values = ["invalid", "string", "binary", "last"] # noqa: E501 - if value_type not in allowed_values: - raise ValueError( - "Invalid value for `value_type` ({0}), must be one of {1}" # noqa: E501 - .format(value_type, allowed_values) - ) - - self._value_type = value_type - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ConfigNamespaceEntry, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ConfigNamespaceEntry): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_namespace_id_params.py b/isilon_sdk/isilon_sdk/v9_11_0/models/config_namespace_id_params.py deleted file mode 100644 index c7f417103..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_namespace_id_params.py +++ /dev/null @@ -1,187 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ConfigNamespaceIdParams(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'value': 'str', - 'value_size': 'int', - 'value_type': 'str' - } - - attribute_map = { - 'value': 'value', - 'value_size': 'value_size', - 'value_type': 'value_type' - } - - def __init__(self, value=None, value_size=None, value_type=None): # noqa: E501 - """ConfigNamespaceIdParams - a model defined in Swagger""" # noqa: E501 - - self._value = None - self._value_size = None - self._value_type = None - self.discriminator = None - - if value is not None: - self.value = value - if value_size is not None: - self.value_size = value_size - if value_type is not None: - self.value_type = value_type - - @property - def value(self): - """Gets the value of this ConfigNamespaceIdParams. # noqa: E501 - - Configuration value (binary types base64 encoded) # noqa: E501 - - :return: The value of this ConfigNamespaceIdParams. # noqa: E501 - :rtype: str - """ - return self._value - - @value.setter - def value(self, value): - """Sets the value of this ConfigNamespaceIdParams. - - Configuration value (binary types base64 encoded) # noqa: E501 - - :param value: The value of this ConfigNamespaceIdParams. # noqa: E501 - :type: str - """ - if value is not None and len(value) > 87384: - raise ValueError("Invalid value for `value`, length must be less than or equal to `87384`") # noqa: E501 - if value is not None and len(value) < 0: - raise ValueError("Invalid value for `value`, length must be greater than or equal to `0`") # noqa: E501 - - self._value = value - - @property - def value_size(self): - """Gets the value_size of this ConfigNamespaceIdParams. # noqa: E501 - - Length of configuration value, including null termination # noqa: E501 - - :return: The value_size of this ConfigNamespaceIdParams. # noqa: E501 - :rtype: int - """ - return self._value_size - - @value_size.setter - def value_size(self, value_size): - """Sets the value_size of this ConfigNamespaceIdParams. - - Length of configuration value, including null termination # noqa: E501 - - :param value_size: The value_size of this ConfigNamespaceIdParams. # noqa: E501 - :type: int - """ - if value_size is not None and value_size > 87385: # noqa: E501 - raise ValueError("Invalid value for `value_size`, must be a value less than or equal to `87385`") # noqa: E501 - if value_size is not None and value_size < 0: # noqa: E501 - raise ValueError("Invalid value for `value_size`, must be a value greater than or equal to `0`") # noqa: E501 - - self._value_size = value_size - - @property - def value_type(self): - """Gets the value_type of this ConfigNamespaceIdParams. # noqa: E501 - - Value type # noqa: E501 - - :return: The value_type of this ConfigNamespaceIdParams. # noqa: E501 - :rtype: str - """ - return self._value_type - - @value_type.setter - def value_type(self, value_type): - """Sets the value_type of this ConfigNamespaceIdParams. - - Value type # noqa: E501 - - :param value_type: The value_type of this ConfigNamespaceIdParams. # noqa: E501 - :type: str - """ - allowed_values = ["invalid", "string", "binary", "last"] # noqa: E501 - if value_type not in allowed_values: - raise ValueError( - "Invalid value for `value_type` ({0}), must be one of {1}" # noqa: E501 - .format(value_type, allowed_values) - ) - - self._value_type = value_type - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ConfigNamespaceIdParams, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ConfigNamespaceIdParams): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_user_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/config_user_extended.py deleted file mode 100644 index d16bf8a17..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_user_extended.py +++ /dev/null @@ -1,185 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ConfigUserExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'id': 'int', - 'password': 'str', - 'username': 'str' - } - - attribute_map = { - 'id': 'id', - 'password': 'password', - 'username': 'username' - } - - def __init__(self, id=None, password=None, username=None): # noqa: E501 - """ConfigUserExtended - a model defined in Swagger""" # noqa: E501 - - self._id = None - self._password = None - self._username = None - self.discriminator = None - - if id is not None: - self.id = id - if password is not None: - self.password = password - if username is not None: - self.username = username - - @property - def id(self): - """Gets the id of this ConfigUserExtended. # noqa: E501 - - The numeric User ID associated with the username. # noqa: E501 - - :return: The id of this ConfigUserExtended. # noqa: E501 - :rtype: int - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this ConfigUserExtended. - - The numeric User ID associated with the username. # noqa: E501 - - :param id: The id of this ConfigUserExtended. # noqa: E501 - :type: int - """ - if id is not None and id > 16: # noqa: E501 - raise ValueError("Invalid value for `id`, must be a value less than or equal to `16`") # noqa: E501 - if id is not None and id < 3: # noqa: E501 - raise ValueError("Invalid value for `id`, must be a value greater than or equal to `3`") # noqa: E501 - - self._id = id - - @property - def password(self): - """Gets the password of this ConfigUserExtended. # noqa: E501 - - Represents the password that customers will use with the IPMI username when authenticating remote IPMI requests. # noqa: E501 - - :return: The password of this ConfigUserExtended. # noqa: E501 - :rtype: str - """ - return self._password - - @password.setter - def password(self, password): - """Sets the password of this ConfigUserExtended. - - Represents the password that customers will use with the IPMI username when authenticating remote IPMI requests. # noqa: E501 - - :param password: The password of this ConfigUserExtended. # noqa: E501 - :type: str - """ - if password is not None and len(password) > 20: - raise ValueError("Invalid value for `password`, length must be less than or equal to `20`") # noqa: E501 - if password is not None and len(password) < 16: - raise ValueError("Invalid value for `password`, length must be greater than or equal to `16`") # noqa: E501 - - self._password = password - - @property - def username(self): - """Gets the username of this ConfigUserExtended. # noqa: E501 - - Represents the username that customers will use when authenticating remote IPMI requests. # noqa: E501 - - :return: The username of this ConfigUserExtended. # noqa: E501 - :rtype: str - """ - return self._username - - @username.setter - def username(self, username): - """Sets the username of this ConfigUserExtended. - - Represents the username that customers will use when authenticating remote IPMI requests. # noqa: E501 - - :param username: The username of this ConfigUserExtended. # noqa: E501 - :type: str - """ - if username is not None and len(username) > 16: - raise ValueError("Invalid value for `username`, length must be less than or equal to `16`") # noqa: E501 - if username is not None and len(username) < 1: - raise ValueError("Invalid value for `username`, length must be greater than or equal to `1`") # noqa: E501 - - self._username = username - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ConfigUserExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ConfigUserExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/connectivity_settings.py b/isilon_sdk/isilon_sdk/v9_11_0/models/connectivity_settings.py deleted file mode 100644 index 0ab91a8fd..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/connectivity_settings.py +++ /dev/null @@ -1,352 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ConnectivitySettings(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'automatic_case_creation': 'bool', - 'connection': 'SupportassistSettingsConnection', - 'connection_state': 'str', - 'connectivity_enabled': 'bool', - 'contact': 'SupportassistSettingsContact', - 'enable_download': 'bool', - 'enable_remote_support': 'bool', - 'onefs_software_id': 'str', - 'telemetry': 'SupportassistSettingsTelemetry' - } - - attribute_map = { - 'automatic_case_creation': 'automatic_case_creation', - 'connection': 'connection', - 'connection_state': 'connection_state', - 'connectivity_enabled': 'connectivity_enabled', - 'contact': 'contact', - 'enable_download': 'enable_download', - 'enable_remote_support': 'enable_remote_support', - 'onefs_software_id': 'onefs_software_id', - 'telemetry': 'telemetry' - } - - def __init__(self, automatic_case_creation=True, connection=None, connection_state=None, connectivity_enabled=None, contact=None, enable_download=True, enable_remote_support=False, onefs_software_id=None, telemetry=None): # noqa: E501 - """ConnectivitySettings - a model defined in Swagger""" # noqa: E501 - - self._automatic_case_creation = None - self._connection = None - self._connection_state = None - self._connectivity_enabled = None - self._contact = None - self._enable_download = None - self._enable_remote_support = None - self._onefs_software_id = None - self._telemetry = None - self.discriminator = None - - if automatic_case_creation is not None: - self.automatic_case_creation = automatic_case_creation - if connection is not None: - self.connection = connection - if connection_state is not None: - self.connection_state = connection_state - self.connectivity_enabled = connectivity_enabled - if contact is not None: - self.contact = contact - if enable_download is not None: - self.enable_download = enable_download - if enable_remote_support is not None: - self.enable_remote_support = enable_remote_support - if onefs_software_id is not None: - self.onefs_software_id = onefs_software_id - if telemetry is not None: - self.telemetry = telemetry - - @property - def automatic_case_creation(self): - """Gets the automatic_case_creation of this ConnectivitySettings. # noqa: E501 - - True indicates automatic case creation is enabled # noqa: E501 - - :return: The automatic_case_creation of this ConnectivitySettings. # noqa: E501 - :rtype: bool - """ - return self._automatic_case_creation - - @automatic_case_creation.setter - def automatic_case_creation(self, automatic_case_creation): - """Sets the automatic_case_creation of this ConnectivitySettings. - - True indicates automatic case creation is enabled # noqa: E501 - - :param automatic_case_creation: The automatic_case_creation of this ConnectivitySettings. # noqa: E501 - :type: bool - """ - - self._automatic_case_creation = automatic_case_creation - - @property - def connection(self): - """Gets the connection of this ConnectivitySettings. # noqa: E501 - - # noqa: E501 - - :return: The connection of this ConnectivitySettings. # noqa: E501 - :rtype: SupportassistSettingsConnection - """ - return self._connection - - @connection.setter - def connection(self, connection): - """Sets the connection of this ConnectivitySettings. - - # noqa: E501 - - :param connection: The connection of this ConnectivitySettings. # noqa: E501 - :type: SupportassistSettingsConnection - """ - - self._connection = connection - - @property - def connection_state(self): - """Gets the connection_state of this ConnectivitySettings. # noqa: E501 - - connection state. # noqa: E501 - - :return: The connection_state of this ConnectivitySettings. # noqa: E501 - :rtype: str - """ - return self._connection_state - - @connection_state.setter - def connection_state(self, connection_state): - """Sets the connection_state of this ConnectivitySettings. - - connection state. # noqa: E501 - - :param connection_state: The connection_state of this ConnectivitySettings. # noqa: E501 - :type: str - """ - allowed_values = ["enabled", "disabled", "enabledinprogress", "disabledinprogress"] # noqa: E501 - if connection_state not in allowed_values: - raise ValueError( - "Invalid value for `connection_state` ({0}), must be one of {1}" # noqa: E501 - .format(connection_state, allowed_values) - ) - - self._connection_state = connection_state - - @property - def connectivity_enabled(self): - """Gets the connectivity_enabled of this ConnectivitySettings. # noqa: E501 - - Whether Dell Technologies connectivity services is enabled # noqa: E501 - - :return: The connectivity_enabled of this ConnectivitySettings. # noqa: E501 - :rtype: bool - """ - return self._connectivity_enabled - - @connectivity_enabled.setter - def connectivity_enabled(self, connectivity_enabled): - """Sets the connectivity_enabled of this ConnectivitySettings. - - Whether Dell Technologies connectivity services is enabled # noqa: E501 - - :param connectivity_enabled: The connectivity_enabled of this ConnectivitySettings. # noqa: E501 - :type: bool - """ - if connectivity_enabled is None: - raise ValueError("Invalid value for `connectivity_enabled`, must not be `None`") # noqa: E501 - - self._connectivity_enabled = connectivity_enabled - - @property - def contact(self): - """Gets the contact of this ConnectivitySettings. # noqa: E501 - - # noqa: E501 - - :return: The contact of this ConnectivitySettings. # noqa: E501 - :rtype: SupportassistSettingsContact - """ - return self._contact - - @contact.setter - def contact(self, contact): - """Sets the contact of this ConnectivitySettings. - - # noqa: E501 - - :param contact: The contact of this ConnectivitySettings. # noqa: E501 - :type: SupportassistSettingsContact - """ - - self._contact = contact - - @property - def enable_download(self): - """Gets the enable_download of this ConnectivitySettings. # noqa: E501 - - True indicates downloads are enabled # noqa: E501 - - :return: The enable_download of this ConnectivitySettings. # noqa: E501 - :rtype: bool - """ - return self._enable_download - - @enable_download.setter - def enable_download(self, enable_download): - """Sets the enable_download of this ConnectivitySettings. - - True indicates downloads are enabled # noqa: E501 - - :param enable_download: The enable_download of this ConnectivitySettings. # noqa: E501 - :type: bool - """ - - self._enable_download = enable_download - - @property - def enable_remote_support(self): - """Gets the enable_remote_support of this ConnectivitySettings. # noqa: E501 - - Whether remoteAccessEnabled is enabled # noqa: E501 - - :return: The enable_remote_support of this ConnectivitySettings. # noqa: E501 - :rtype: bool - """ - return self._enable_remote_support - - @enable_remote_support.setter - def enable_remote_support(self, enable_remote_support): - """Sets the enable_remote_support of this ConnectivitySettings. - - Whether remoteAccessEnabled is enabled # noqa: E501 - - :param enable_remote_support: The enable_remote_support of this ConnectivitySettings. # noqa: E501 - :type: bool - """ - - self._enable_remote_support = enable_remote_support - - @property - def onefs_software_id(self): - """Gets the onefs_software_id of this ConnectivitySettings. # noqa: E501 - - The software ID used by Dell Technologies connectivity services # noqa: E501 - - :return: The onefs_software_id of this ConnectivitySettings. # noqa: E501 - :rtype: str - """ - return self._onefs_software_id - - @onefs_software_id.setter - def onefs_software_id(self, onefs_software_id): - """Sets the onefs_software_id of this ConnectivitySettings. - - The software ID used by Dell Technologies connectivity services # noqa: E501 - - :param onefs_software_id: The onefs_software_id of this ConnectivitySettings. # noqa: E501 - :type: str - """ - if onefs_software_id is not None and len(onefs_software_id) > 2048: - raise ValueError("Invalid value for `onefs_software_id`, length must be less than or equal to `2048`") # noqa: E501 - if onefs_software_id is not None and len(onefs_software_id) < 0: - raise ValueError("Invalid value for `onefs_software_id`, length must be greater than or equal to `0`") # noqa: E501 - - self._onefs_software_id = onefs_software_id - - @property - def telemetry(self): - """Gets the telemetry of this ConnectivitySettings. # noqa: E501 - - # noqa: E501 - - :return: The telemetry of this ConnectivitySettings. # noqa: E501 - :rtype: SupportassistSettingsTelemetry - """ - return self._telemetry - - @telemetry.setter - def telemetry(self, telemetry): - """Sets the telemetry of this ConnectivitySettings. - - # noqa: E501 - - :param telemetry: The telemetry of this ConnectivitySettings. # noqa: E501 - :type: SupportassistSettingsTelemetry - """ - - self._telemetry = telemetry - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ConnectivitySettings, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ConnectivitySettings): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/connectivity_status_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/connectivity_status_extended.py deleted file mode 100644 index fbf372bd3..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/connectivity_status_extended.py +++ /dev/null @@ -1,173 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ConnectivityStatusExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'connectivity_dismissed': 'bool', - 'enabled': 'bool', - 'show_migrated': 'bool' - } - - attribute_map = { - 'connectivity_dismissed': 'connectivity_dismissed', - 'enabled': 'enabled', - 'show_migrated': 'show_migrated' - } - - def __init__(self, connectivity_dismissed=None, enabled=None, show_migrated=None): # noqa: E501 - """ConnectivityStatusExtended - a model defined in Swagger""" # noqa: E501 - - self._connectivity_dismissed = None - self._enabled = None - self._show_migrated = None - self.discriminator = None - - if connectivity_dismissed is not None: - self.connectivity_dismissed = connectivity_dismissed - if enabled is not None: - self.enabled = enabled - if show_migrated is not None: - self.show_migrated = show_migrated - - @property - def connectivity_dismissed(self): - """Gets the connectivity_dismissed of this ConnectivityStatusExtended. # noqa: E501 - - Whether Dell Technologies connectivity services prompt should be dismissed # noqa: E501 - - :return: The connectivity_dismissed of this ConnectivityStatusExtended. # noqa: E501 - :rtype: bool - """ - return self._connectivity_dismissed - - @connectivity_dismissed.setter - def connectivity_dismissed(self, connectivity_dismissed): - """Sets the connectivity_dismissed of this ConnectivityStatusExtended. - - Whether Dell Technologies connectivity services prompt should be dismissed # noqa: E501 - - :param connectivity_dismissed: The connectivity_dismissed of this ConnectivityStatusExtended. # noqa: E501 - :type: bool - """ - - self._connectivity_dismissed = connectivity_dismissed - - @property - def enabled(self): - """Gets the enabled of this ConnectivityStatusExtended. # noqa: E501 - - Setting to true or yes will enable Dell Technologies connectivity services. Setting to false or no will disable Dell Technologies connectivity services. # noqa: E501 - - :return: The enabled of this ConnectivityStatusExtended. # noqa: E501 - :rtype: bool - """ - return self._enabled - - @enabled.setter - def enabled(self, enabled): - """Sets the enabled of this ConnectivityStatusExtended. - - Setting to true or yes will enable Dell Technologies connectivity services. Setting to false or no will disable Dell Technologies connectivity services. # noqa: E501 - - :param enabled: The enabled of this ConnectivityStatusExtended. # noqa: E501 - :type: bool - """ - - self._enabled = enabled - - @property - def show_migrated(self): - """Gets the show_migrated of this ConnectivityStatusExtended. # noqa: E501 - - Whether to show if connectivity had been migrated. # noqa: E501 - - :return: The show_migrated of this ConnectivityStatusExtended. # noqa: E501 - :rtype: bool - """ - return self._show_migrated - - @show_migrated.setter - def show_migrated(self, show_migrated): - """Sets the show_migrated of this ConnectivityStatusExtended. - - Whether to show if connectivity had been migrated. # noqa: E501 - - :param show_migrated: The show_migrated of this ConnectivityStatusExtended. # noqa: E501 - :type: bool - """ - - self._show_migrated = show_migrated - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ConnectivityStatusExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ConnectivityStatusExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/connectivity_status_status.py b/isilon_sdk/isilon_sdk/v9_11_0/models/connectivity_status_status.py deleted file mode 100644 index dc959025c..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/connectivity_status_status.py +++ /dev/null @@ -1,395 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ConnectivityStatusStatus(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'connection_status': 'str', - 'connectivity_connected': 'bool', - 'connectivity_dismissed': 'bool', - 'connectivity_enabled': 'bool', - 'hardware_key_present': 'bool', - 'provisioned': 'bool', - 'show_migrated': 'bool', - 'srs_disabled': 'bool', - 'swid': 'str', - 'ui_state': 'str' - } - - attribute_map = { - 'connection_status': 'connection_status', - 'connectivity_connected': 'connectivity_connected', - 'connectivity_dismissed': 'connectivity_dismissed', - 'connectivity_enabled': 'connectivity_enabled', - 'hardware_key_present': 'hardware_key_present', - 'provisioned': 'provisioned', - 'show_migrated': 'show_migrated', - 'srs_disabled': 'srs_disabled', - 'swid': 'swid', - 'ui_state': 'ui_state' - } - - def __init__(self, connection_status=None, connectivity_connected=None, connectivity_dismissed=None, connectivity_enabled=None, hardware_key_present=None, provisioned=None, show_migrated=None, srs_disabled=None, swid=None, ui_state=None): # noqa: E501 - """ConnectivityStatusStatus - a model defined in Swagger""" # noqa: E501 - - self._connection_status = None - self._connectivity_connected = None - self._connectivity_dismissed = None - self._connectivity_enabled = None - self._hardware_key_present = None - self._provisioned = None - self._show_migrated = None - self._srs_disabled = None - self._swid = None - self._ui_state = None - self.discriminator = None - - self.connection_status = connection_status - self.connectivity_connected = connectivity_connected - self.connectivity_dismissed = connectivity_dismissed - self.connectivity_enabled = connectivity_enabled - self.hardware_key_present = hardware_key_present - self.provisioned = provisioned - self.show_migrated = show_migrated - self.srs_disabled = srs_disabled - self.swid = swid - self.ui_state = ui_state - - @property - def connection_status(self): - """Gets the connection_status of this ConnectivityStatusStatus. # noqa: E501 - - The current connection status of Dell Technologies connectivity services. # noqa: E501 - - :return: The connection_status of this ConnectivityStatusStatus. # noqa: E501 - :rtype: str - """ - return self._connection_status - - @connection_status.setter - def connection_status(self, connection_status): - """Sets the connection_status of this ConnectivityStatusStatus. - - The current connection status of Dell Technologies connectivity services. # noqa: E501 - - :param connection_status: The connection_status of this ConnectivityStatusStatus. # noqa: E501 - :type: str - """ - if connection_status is None: - raise ValueError("Invalid value for `connection_status`, must not be `None`") # noqa: E501 - allowed_values = ["Connected", "Connecting", "Disconnected"] # noqa: E501 - if connection_status not in allowed_values: - raise ValueError( - "Invalid value for `connection_status` ({0}), must be one of {1}" # noqa: E501 - .format(connection_status, allowed_values) - ) - - self._connection_status = connection_status - - @property - def connectivity_connected(self): - """Gets the connectivity_connected of this ConnectivityStatusStatus. # noqa: E501 - - Whether Dell Technologies connectivity services is connected. # noqa: E501 - - :return: The connectivity_connected of this ConnectivityStatusStatus. # noqa: E501 - :rtype: bool - """ - return self._connectivity_connected - - @connectivity_connected.setter - def connectivity_connected(self, connectivity_connected): - """Sets the connectivity_connected of this ConnectivityStatusStatus. - - Whether Dell Technologies connectivity services is connected. # noqa: E501 - - :param connectivity_connected: The connectivity_connected of this ConnectivityStatusStatus. # noqa: E501 - :type: bool - """ - if connectivity_connected is None: - raise ValueError("Invalid value for `connectivity_connected`, must not be `None`") # noqa: E501 - - self._connectivity_connected = connectivity_connected - - @property - def connectivity_dismissed(self): - """Gets the connectivity_dismissed of this ConnectivityStatusStatus. # noqa: E501 - - Whether Dell Technologies connectivity services prompt should be dismissed. # noqa: E501 - - :return: The connectivity_dismissed of this ConnectivityStatusStatus. # noqa: E501 - :rtype: bool - """ - return self._connectivity_dismissed - - @connectivity_dismissed.setter - def connectivity_dismissed(self, connectivity_dismissed): - """Sets the connectivity_dismissed of this ConnectivityStatusStatus. - - Whether Dell Technologies connectivity services prompt should be dismissed. # noqa: E501 - - :param connectivity_dismissed: The connectivity_dismissed of this ConnectivityStatusStatus. # noqa: E501 - :type: bool - """ - if connectivity_dismissed is None: - raise ValueError("Invalid value for `connectivity_dismissed`, must not be `None`") # noqa: E501 - - self._connectivity_dismissed = connectivity_dismissed - - @property - def connectivity_enabled(self): - """Gets the connectivity_enabled of this ConnectivityStatusStatus. # noqa: E501 - - Whether Dell Technologies connectivity services is enabled. # noqa: E501 - - :return: The connectivity_enabled of this ConnectivityStatusStatus. # noqa: E501 - :rtype: bool - """ - return self._connectivity_enabled - - @connectivity_enabled.setter - def connectivity_enabled(self, connectivity_enabled): - """Sets the connectivity_enabled of this ConnectivityStatusStatus. - - Whether Dell Technologies connectivity services is enabled. # noqa: E501 - - :param connectivity_enabled: The connectivity_enabled of this ConnectivityStatusStatus. # noqa: E501 - :type: bool - """ - if connectivity_enabled is None: - raise ValueError("Invalid value for `connectivity_enabled`, must not be `None`") # noqa: E501 - - self._connectivity_enabled = connectivity_enabled - - @property - def hardware_key_present(self): - """Gets the hardware_key_present of this ConnectivityStatusStatus. # noqa: E501 - - Whether Hardware key is present. # noqa: E501 - - :return: The hardware_key_present of this ConnectivityStatusStatus. # noqa: E501 - :rtype: bool - """ - return self._hardware_key_present - - @hardware_key_present.setter - def hardware_key_present(self, hardware_key_present): - """Sets the hardware_key_present of this ConnectivityStatusStatus. - - Whether Hardware key is present. # noqa: E501 - - :param hardware_key_present: The hardware_key_present of this ConnectivityStatusStatus. # noqa: E501 - :type: bool - """ - if hardware_key_present is None: - raise ValueError("Invalid value for `hardware_key_present`, must not be `None`") # noqa: E501 - - self._hardware_key_present = hardware_key_present - - @property - def provisioned(self): - """Gets the provisioned of this ConnectivityStatusStatus. # noqa: E501 - - True indicates Dell Technologies connectivity services provisioning is done. # noqa: E501 - - :return: The provisioned of this ConnectivityStatusStatus. # noqa: E501 - :rtype: bool - """ - return self._provisioned - - @provisioned.setter - def provisioned(self, provisioned): - """Sets the provisioned of this ConnectivityStatusStatus. - - True indicates Dell Technologies connectivity services provisioning is done. # noqa: E501 - - :param provisioned: The provisioned of this ConnectivityStatusStatus. # noqa: E501 - :type: bool - """ - if provisioned is None: - raise ValueError("Invalid value for `provisioned`, must not be `None`") # noqa: E501 - - self._provisioned = provisioned - - @property - def show_migrated(self): - """Gets the show_migrated of this ConnectivityStatusStatus. # noqa: E501 - - Whether to show if connectivity had been migrated. # noqa: E501 - - :return: The show_migrated of this ConnectivityStatusStatus. # noqa: E501 - :rtype: bool - """ - return self._show_migrated - - @show_migrated.setter - def show_migrated(self, show_migrated): - """Sets the show_migrated of this ConnectivityStatusStatus. - - Whether to show if connectivity had been migrated. # noqa: E501 - - :param show_migrated: The show_migrated of this ConnectivityStatusStatus. # noqa: E501 - :type: bool - """ - if show_migrated is None: - raise ValueError("Invalid value for `show_migrated`, must not be `None`") # noqa: E501 - - self._show_migrated = show_migrated - - @property - def srs_disabled(self): - """Gets the srs_disabled of this ConnectivityStatusStatus. # noqa: E501 - - False indicates Remote Support is disabled. # noqa: E501 - - :return: The srs_disabled of this ConnectivityStatusStatus. # noqa: E501 - :rtype: bool - """ - return self._srs_disabled - - @srs_disabled.setter - def srs_disabled(self, srs_disabled): - """Sets the srs_disabled of this ConnectivityStatusStatus. - - False indicates Remote Support is disabled. # noqa: E501 - - :param srs_disabled: The srs_disabled of this ConnectivityStatusStatus. # noqa: E501 - :type: bool - """ - if srs_disabled is None: - raise ValueError("Invalid value for `srs_disabled`, must not be `None`") # noqa: E501 - - self._srs_disabled = srs_disabled - - @property - def swid(self): - """Gets the swid of this ConnectivityStatusStatus. # noqa: E501 - - The software ID used by Dell Technologies connectivity services. # noqa: E501 - - :return: The swid of this ConnectivityStatusStatus. # noqa: E501 - :rtype: str - """ - return self._swid - - @swid.setter - def swid(self, swid): - """Sets the swid of this ConnectivityStatusStatus. - - The software ID used by Dell Technologies connectivity services. # noqa: E501 - - :param swid: The swid of this ConnectivityStatusStatus. # noqa: E501 - :type: str - """ - if swid is None: - raise ValueError("Invalid value for `swid`, must not be `None`") # noqa: E501 - if swid is not None and len(swid) > 50: - raise ValueError("Invalid value for `swid`, length must be less than or equal to `50`") # noqa: E501 - if swid is not None and len(swid) < 0: - raise ValueError("Invalid value for `swid`, length must be greater than or equal to `0`") # noqa: E501 - - self._swid = swid - - @property - def ui_state(self): - """Gets the ui_state of this ConnectivityStatusStatus. # noqa: E501 - - Connectivity system state. # noqa: E501 - - :return: The ui_state of this ConnectivityStatusStatus. # noqa: E501 - :rtype: str - """ - return self._ui_state - - @ui_state.setter - def ui_state(self, ui_state): - """Sets the ui_state of this ConnectivityStatusStatus. - - Connectivity system state. # noqa: E501 - - :param ui_state: The ui_state of this ConnectivityStatusStatus. # noqa: E501 - :type: str - """ - if ui_state is None: - raise ValueError("Invalid value for `ui_state`, must not be `None`") # noqa: E501 - allowed_values = ["terms", "setup", "monitor"] # noqa: E501 - if ui_state not in allowed_values: - raise ValueError( - "Invalid value for `ui_state` ({0}), must be one of {1}" # noqa: E501 - .format(ui_state, allowed_values) - ) - - self._ui_state = ui_state - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ConnectivityStatusStatus, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ConnectivityStatusStatus): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_cluster_rekey_item_response.py b/isilon_sdk/isilon_sdk/v9_11_0/models/create_cluster_rekey_item_response.py deleted file mode 100644 index c6b399a6b..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_cluster_rekey_item_response.py +++ /dev/null @@ -1,122 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class CreateClusterRekeyItemResponse(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'rekey_msg': 'str' - } - - attribute_map = { - 'rekey_msg': 'rekey_msg' - } - - def __init__(self, rekey_msg=None): # noqa: E501 - """CreateClusterRekeyItemResponse - a model defined in Swagger""" # noqa: E501 - - self._rekey_msg = None - self.discriminator = None - - self.rekey_msg = rekey_msg - - @property - def rekey_msg(self): - """Gets the rekey_msg of this CreateClusterRekeyItemResponse. # noqa: E501 - - Non-error message reported to user about the rekey process. # noqa: E501 - - :return: The rekey_msg of this CreateClusterRekeyItemResponse. # noqa: E501 - :rtype: str - """ - return self._rekey_msg - - @rekey_msg.setter - def rekey_msg(self, rekey_msg): - """Sets the rekey_msg of this CreateClusterRekeyItemResponse. - - Non-error message reported to user about the rekey process. # noqa: E501 - - :param rekey_msg: The rekey_msg of this CreateClusterRekeyItemResponse. # noqa: E501 - :type: str - """ - if rekey_msg is None: - raise ValueError("Invalid value for `rekey_msg`, must not be `None`") # noqa: E501 - if rekey_msg is not None and len(rekey_msg) > 255: - raise ValueError("Invalid value for `rekey_msg`, length must be less than or equal to `255`") # noqa: E501 - if rekey_msg is not None and len(rekey_msg) < 1: - raise ValueError("Invalid value for `rekey_msg`, length must be greater than or equal to `1`") # noqa: E501 - - self._rekey_msg = rekey_msg - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(CreateClusterRekeyItemResponse, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, CreateClusterRekeyItemResponse): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_datamover_policy_response.py b/isilon_sdk/isilon_sdk/v9_11_0/models/create_datamover_policy_response.py deleted file mode 100644 index fdc4d7b70..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_datamover_policy_response.py +++ /dev/null @@ -1,122 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class CreateDatamoverPolicyResponse(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'id': 'int' - } - - attribute_map = { - 'id': 'id' - } - - def __init__(self, id=None): # noqa: E501 - """CreateDatamoverPolicyResponse - a model defined in Swagger""" # noqa: E501 - - self._id = None - self.discriminator = None - - self.id = id - - @property - def id(self): - """Gets the id of this CreateDatamoverPolicyResponse. # noqa: E501 - - The unique policy identifier. # noqa: E501 - - :return: The id of this CreateDatamoverPolicyResponse. # noqa: E501 - :rtype: int - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this CreateDatamoverPolicyResponse. - - The unique policy identifier. # noqa: E501 - - :param id: The id of this CreateDatamoverPolicyResponse. # noqa: E501 - :type: int - """ - if id is None: - raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 - if id is not None and id > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `id`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if id is not None and id < 0: # noqa: E501 - raise ValueError("Invalid value for `id`, must be a value greater than or equal to `0`") # noqa: E501 - - self._id = id - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(CreateDatamoverPolicyResponse, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, CreateDatamoverPolicyResponse): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_oauth_oauth2_client_response.py b/isilon_sdk/isilon_sdk/v9_11_0/models/create_oauth_oauth2_client_response.py deleted file mode 100644 index 8e8454fab..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_oauth_oauth2_client_response.py +++ /dev/null @@ -1,153 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class CreateOauthOauth2ClientResponse(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'client_secret': 'str', - 'id': 'str' - } - - attribute_map = { - 'client_secret': 'client_secret', - 'id': 'id' - } - - def __init__(self, client_secret=None, id=None): # noqa: E501 - """CreateOauthOauth2ClientResponse - a model defined in Swagger""" # noqa: E501 - - self._client_secret = None - self._id = None - self.discriminator = None - - if client_secret is not None: - self.client_secret = client_secret - if id is not None: - self.id = id - - @property - def client_secret(self): - """Gets the client_secret of this CreateOauthOauth2ClientResponse. # noqa: E501 - - Client Secret to identify the OAuth2 client # noqa: E501 - - :return: The client_secret of this CreateOauthOauth2ClientResponse. # noqa: E501 - :rtype: str - """ - return self._client_secret - - @client_secret.setter - def client_secret(self, client_secret): - """Sets the client_secret of this CreateOauthOauth2ClientResponse. - - Client Secret to identify the OAuth2 client # noqa: E501 - - :param client_secret: The client_secret of this CreateOauthOauth2ClientResponse. # noqa: E501 - :type: str - """ - if client_secret is not None and len(client_secret) > 255: - raise ValueError("Invalid value for `client_secret`, length must be less than or equal to `255`") # noqa: E501 - if client_secret is not None and len(client_secret) < 0: - raise ValueError("Invalid value for `client_secret`, length must be greater than or equal to `0`") # noqa: E501 - - self._client_secret = client_secret - - @property - def id(self): - """Gets the id of this CreateOauthOauth2ClientResponse. # noqa: E501 - - Unique identifier of an OAuth2 client. # noqa: E501 - - :return: The id of this CreateOauthOauth2ClientResponse. # noqa: E501 - :rtype: str - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this CreateOauthOauth2ClientResponse. - - Unique identifier of an OAuth2 client. # noqa: E501 - - :param id: The id of this CreateOauthOauth2ClientResponse. # noqa: E501 - :type: str - """ - if id is not None and len(id) > 255: - raise ValueError("Invalid value for `id`, length must be less than or equal to `255`") # noqa: E501 - if id is not None and len(id) < 1: - raise ValueError("Invalid value for `id`, length must be greater than or equal to `1`") # noqa: E501 - - self._id = id - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(CreateOauthOauth2ClientResponse, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, CreateOauthOauth2ClientResponse): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_oauth_oauth2_token_exchange_response.py b/isilon_sdk/isilon_sdk/v9_11_0/models/create_oauth_oauth2_token_exchange_response.py deleted file mode 100644 index bac4a676d..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_oauth_oauth2_token_exchange_response.py +++ /dev/null @@ -1,121 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class CreateOauthOauth2TokenExchangeResponse(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'id': 'str' - } - - attribute_map = { - 'id': 'id' - } - - def __init__(self, id=None): # noqa: E501 - """CreateOauthOauth2TokenExchangeResponse - a model defined in Swagger""" # noqa: E501 - - self._id = None - self.discriminator = None - - if id is not None: - self.id = id - - @property - def id(self): - """Gets the id of this CreateOauthOauth2TokenExchangeResponse. # noqa: E501 - - Unique identifier of the OAuth2 Token Exchange resource. # noqa: E501 - - :return: The id of this CreateOauthOauth2TokenExchangeResponse. # noqa: E501 - :rtype: str - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this CreateOauthOauth2TokenExchangeResponse. - - Unique identifier of the OAuth2 Token Exchange resource. # noqa: E501 - - :param id: The id of this CreateOauthOauth2TokenExchangeResponse. # noqa: E501 - :type: str - """ - if id is not None and len(id) > 255: - raise ValueError("Invalid value for `id`, length must be less than or equal to `255`") # noqa: E501 - if id is not None and len(id) < 1: - raise ValueError("Invalid value for `id`, length must be greater than or equal to `1`") # noqa: E501 - - self._id = id - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(CreateOauthOauth2TokenExchangeResponse, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, CreateOauthOauth2TokenExchangeResponse): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_providers_saml_services_cert_extract_item_response.py b/isilon_sdk/isilon_sdk/v9_11_0/models/create_providers_saml_services_cert_extract_item_response.py deleted file mode 100644 index bf2fb7504..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_providers_saml_services_cert_extract_item_response.py +++ /dev/null @@ -1,117 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class CreateProvidersSamlServicesCertExtractItemResponse(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'certificate_info': 'CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo' - } - - attribute_map = { - 'certificate_info': 'certificate_info' - } - - def __init__(self, certificate_info=None): # noqa: E501 - """CreateProvidersSamlServicesCertExtractItemResponse - a model defined in Swagger""" # noqa: E501 - - self._certificate_info = None - self.discriminator = None - - if certificate_info is not None: - self.certificate_info = certificate_info - - @property - def certificate_info(self): - """Gets the certificate_info of this CreateProvidersSamlServicesCertExtractItemResponse. # noqa: E501 - - Certificate with information about it. # noqa: E501 - - :return: The certificate_info of this CreateProvidersSamlServicesCertExtractItemResponse. # noqa: E501 - :rtype: CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo - """ - return self._certificate_info - - @certificate_info.setter - def certificate_info(self, certificate_info): - """Sets the certificate_info of this CreateProvidersSamlServicesCertExtractItemResponse. - - Certificate with information about it. # noqa: E501 - - :param certificate_info: The certificate_info of this CreateProvidersSamlServicesCertExtractItemResponse. # noqa: E501 - :type: CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo - """ - - self._certificate_info = certificate_info - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(CreateProvidersSamlServicesCertExtractItemResponse, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, CreateProvidersSamlServicesCertExtractItemResponse): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_providers_saml_services_cert_extract_item_response_certificate_info.py b/isilon_sdk/isilon_sdk/v9_11_0/models/create_providers_saml_services_cert_extract_item_response_certificate_info.py deleted file mode 100644 index 556770022..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_providers_saml_services_cert_extract_item_response_certificate_info.py +++ /dev/null @@ -1,339 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'fingerprints': 'list[CertificatesSyslogCertificateFingerprint]', - 'issuer': 'str', - 'not_after': 'int', - 'not_before': 'int', - 'path': 'str', - 'status': 'str', - 'subject': 'str', - 'value': 'CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue' - } - - attribute_map = { - 'fingerprints': 'fingerprints', - 'issuer': 'issuer', - 'not_after': 'not_after', - 'not_before': 'not_before', - 'path': 'path', - 'status': 'status', - 'subject': 'subject', - 'value': 'value' - } - - def __init__(self, fingerprints=None, issuer=None, not_after=None, not_before=None, path=None, status=None, subject=None, value=None): # noqa: E501 - """CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo - a model defined in Swagger""" # noqa: E501 - - self._fingerprints = None - self._issuer = None - self._not_after = None - self._not_before = None - self._path = None - self._status = None - self._subject = None - self._value = None - self.discriminator = None - - if fingerprints is not None: - self.fingerprints = fingerprints - if issuer is not None: - self.issuer = issuer - if not_after is not None: - self.not_after = not_after - if not_before is not None: - self.not_before = not_before - if path is not None: - self.path = path - if status is not None: - self.status = status - if subject is not None: - self.subject = subject - if value is not None: - self.value = value - - @property - def fingerprints(self): - """Gets the fingerprints of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. # noqa: E501 - - A list of zero or more certificate fingerprints which can be used for certificate identification. # noqa: E501 - - :return: The fingerprints of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. # noqa: E501 - :rtype: list[CertificatesSyslogCertificateFingerprint] - """ - return self._fingerprints - - @fingerprints.setter - def fingerprints(self, fingerprints): - """Sets the fingerprints of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. - - A list of zero or more certificate fingerprints which can be used for certificate identification. # noqa: E501 - - :param fingerprints: The fingerprints of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. # noqa: E501 - :type: list[CertificatesSyslogCertificateFingerprint] - """ - - self._fingerprints = fingerprints - - @property - def issuer(self): - """Gets the issuer of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. # noqa: E501 - - Certificate issuer field extracted from the certificate. # noqa: E501 - - :return: The issuer of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. # noqa: E501 - :rtype: str - """ - return self._issuer - - @issuer.setter - def issuer(self, issuer): - """Sets the issuer of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. - - Certificate issuer field extracted from the certificate. # noqa: E501 - - :param issuer: The issuer of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. # noqa: E501 - :type: str - """ - if issuer is not None and len(issuer) > 2048: - raise ValueError("Invalid value for `issuer`, length must be less than or equal to `2048`") # noqa: E501 - if issuer is not None and len(issuer) < 1: - raise ValueError("Invalid value for `issuer`, length must be greater than or equal to `1`") # noqa: E501 - - self._issuer = issuer - - @property - def not_after(self): - """Gets the not_after of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. # noqa: E501 - - Certificate notAfter field extracted from the certificate encoded as a UNIX epoch timestamp. The certificate is not valid after this timestamp. # noqa: E501 - - :return: The not_after of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. # noqa: E501 - :rtype: int - """ - return self._not_after - - @not_after.setter - def not_after(self, not_after): - """Sets the not_after of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. - - Certificate notAfter field extracted from the certificate encoded as a UNIX epoch timestamp. The certificate is not valid after this timestamp. # noqa: E501 - - :param not_after: The not_after of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. # noqa: E501 - :type: int - """ - if not_after is not None and not_after > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `not_after`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if not_after is not None and not_after < 0: # noqa: E501 - raise ValueError("Invalid value for `not_after`, must be a value greater than or equal to `0`") # noqa: E501 - - self._not_after = not_after - - @property - def not_before(self): - """Gets the not_before of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. # noqa: E501 - - Certificate notBefore field extracted from the certificate encoded as a UNIX epoch timestamp. The certificate is not valid before this timestamp. # noqa: E501 - - :return: The not_before of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. # noqa: E501 - :rtype: int - """ - return self._not_before - - @not_before.setter - def not_before(self, not_before): - """Sets the not_before of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. - - Certificate notBefore field extracted from the certificate encoded as a UNIX epoch timestamp. The certificate is not valid before this timestamp. # noqa: E501 - - :param not_before: The not_before of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. # noqa: E501 - :type: int - """ - if not_before is not None and not_before > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `not_before`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if not_before is not None and not_before < 0: # noqa: E501 - raise ValueError("Invalid value for `not_before`, must be a value greater than or equal to `0`") # noqa: E501 - - self._not_before = not_before - - @property - def path(self): - """Gets the path of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. # noqa: E501 - - The path the certificate was imported from. # noqa: E501 - - :return: The path of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. # noqa: E501 - :rtype: str - """ - return self._path - - @path.setter - def path(self, path): - """Sets the path of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. - - The path the certificate was imported from. # noqa: E501 - - :param path: The path of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. # noqa: E501 - :type: str - """ - if path is not None and len(path) > 4096: - raise ValueError("Invalid value for `path`, length must be less than or equal to `4096`") # noqa: E501 - if path is not None and len(path) < 0: - raise ValueError("Invalid value for `path`, length must be greater than or equal to `0`") # noqa: E501 - - self._path = path - - @property - def status(self): - """Gets the status of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. # noqa: E501 - - Certificate validity status # noqa: E501 - - :return: The status of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. # noqa: E501 - :rtype: str - """ - return self._status - - @status.setter - def status(self, status): - """Sets the status of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. - - Certificate validity status # noqa: E501 - - :param status: The status of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. # noqa: E501 - :type: str - """ - allowed_values = ["valid", "invalid", "expired", "expiring"] # noqa: E501 - if status not in allowed_values: - raise ValueError( - "Invalid value for `status` ({0}), must be one of {1}" # noqa: E501 - .format(status, allowed_values) - ) - - self._status = status - - @property - def subject(self): - """Gets the subject of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. # noqa: E501 - - Certificate subject field extracted from the certificate. # noqa: E501 - - :return: The subject of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. # noqa: E501 - :rtype: str - """ - return self._subject - - @subject.setter - def subject(self, subject): - """Sets the subject of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. - - Certificate subject field extracted from the certificate. # noqa: E501 - - :param subject: The subject of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. # noqa: E501 - :type: str - """ - if subject is not None and len(subject) > 2048: - raise ValueError("Invalid value for `subject`, length must be less than or equal to `2048`") # noqa: E501 - if subject is not None and len(subject) < 1: - raise ValueError("Invalid value for `subject`, length must be greater than or equal to `1`") # noqa: E501 - - self._subject = subject - - @property - def value(self): - """Gets the value of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. # noqa: E501 - - Certificate data. # noqa: E501 - - :return: The value of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. # noqa: E501 - :rtype: CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue - """ - return self._value - - @value.setter - def value(self, value): - """Sets the value of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. - - Certificate data. # noqa: E501 - - :param value: The value of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo. # noqa: E501 - :type: CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue - """ - - self._value = value - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_providers_saml_services_cert_extract_item_response_certificate_info_value.py b/isilon_sdk/isilon_sdk/v9_11_0/models/create_providers_saml_services_cert_extract_item_response_certificate_info_value.py deleted file mode 100644 index 14e7d7315..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_providers_saml_services_cert_extract_item_response_certificate_info_value.py +++ /dev/null @@ -1,153 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'type': 'str', - 'value': 'str' - } - - attribute_map = { - 'type': 'type', - 'value': 'value' - } - - def __init__(self, type=None, value=None): # noqa: E501 - """CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue - a model defined in Swagger""" # noqa: E501 - - self._type = None - self._value = None - self.discriminator = None - - if type is not None: - self.type = type - if value is not None: - self.value = value - - @property - def type(self): - """Gets the type of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue. # noqa: E501 - - The format of the certificate in the data property. # noqa: E501 - - :return: The type of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue. # noqa: E501 - :rtype: str - """ - return self._type - - @type.setter - def type(self, type): - """Sets the type of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue. - - The format of the certificate in the data property. # noqa: E501 - - :param type: The type of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue. # noqa: E501 - :type: str - """ - if type is not None and len(type) > 128: - raise ValueError("Invalid value for `type`, length must be less than or equal to `128`") # noqa: E501 - if type is not None and len(type) < 1: - raise ValueError("Invalid value for `type`, length must be greater than or equal to `1`") # noqa: E501 - - self._type = type - - @property - def value(self): - """Gets the value of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue. # noqa: E501 - - Certificate in the encoding of the type property. # noqa: E501 - - :return: The value of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue. # noqa: E501 - :rtype: str - """ - return self._value - - @value.setter - def value(self, value): - """Sets the value of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue. - - Certificate in the encoding of the type property. # noqa: E501 - - :param value: The value of this CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue. # noqa: E501 - :type: str - """ - if value is not None and len(value) > 32768: - raise ValueError("Invalid value for `value`, length must be less than or equal to `32768`") # noqa: E501 - if value is not None and len(value) < 1: - raise ValueError("Invalid value for `value`, length must be greater than or equal to `1`") # noqa: E501 - - self._value = value - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_providers_saml_services_idp_response.py b/isilon_sdk/isilon_sdk/v9_11_0/models/create_providers_saml_services_idp_response.py deleted file mode 100644 index 672a95134..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_providers_saml_services_idp_response.py +++ /dev/null @@ -1,121 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class CreateProvidersSamlServicesIdpResponse(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'id': 'str' - } - - attribute_map = { - 'id': 'id' - } - - def __init__(self, id=None): # noqa: E501 - """CreateProvidersSamlServicesIdpResponse - a model defined in Swagger""" # noqa: E501 - - self._id = None - self.discriminator = None - - if id is not None: - self.id = id - - @property - def id(self): - """Gets the id of this CreateProvidersSamlServicesIdpResponse. # noqa: E501 - - Unique identifier of a SAML service resource. # noqa: E501 - - :return: The id of this CreateProvidersSamlServicesIdpResponse. # noqa: E501 - :rtype: str - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this CreateProvidersSamlServicesIdpResponse. - - Unique identifier of a SAML service resource. # noqa: E501 - - :param id: The id of this CreateProvidersSamlServicesIdpResponse. # noqa: E501 - :type: str - """ - if id is not None and len(id) > 255: - raise ValueError("Invalid value for `id`, length must be less than or equal to `255`") # noqa: E501 - if id is not None and len(id) < 0: - raise ValueError("Invalid value for `id`, length must be greater than or equal to `0`") # noqa: E501 - - self._id = id - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(CreateProvidersSamlServicesIdpResponse, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, CreateProvidersSamlServicesIdpResponse): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_providers_saml_services_metadata_extract_item_response.py b/isilon_sdk/isilon_sdk/v9_11_0/models/create_providers_saml_services_metadata_extract_item_response.py deleted file mode 100644 index edadfeda2..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_providers_saml_services_metadata_extract_item_response.py +++ /dev/null @@ -1,205 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class CreateProvidersSamlServicesMetadataExtractItemResponse(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'entity_id': 'str', - 'login_endpoints': 'list[CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint]', - 'logout_endpoints': 'list[CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint]', - 'signing_certificates': 'list[CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate]' - } - - attribute_map = { - 'entity_id': 'entity_id', - 'login_endpoints': 'login_endpoints', - 'logout_endpoints': 'logout_endpoints', - 'signing_certificates': 'signing_certificates' - } - - def __init__(self, entity_id=None, login_endpoints=None, logout_endpoints=None, signing_certificates=None): # noqa: E501 - """CreateProvidersSamlServicesMetadataExtractItemResponse - a model defined in Swagger""" # noqa: E501 - - self._entity_id = None - self._login_endpoints = None - self._logout_endpoints = None - self._signing_certificates = None - self.discriminator = None - - if entity_id is not None: - self.entity_id = entity_id - if login_endpoints is not None: - self.login_endpoints = login_endpoints - if logout_endpoints is not None: - self.logout_endpoints = logout_endpoints - if signing_certificates is not None: - self.signing_certificates = signing_certificates - - @property - def entity_id(self): - """Gets the entity_id of this CreateProvidersSamlServicesMetadataExtractItemResponse. # noqa: E501 - - The SAML entity ID the rest of this object's properties are within. # noqa: E501 - - :return: The entity_id of this CreateProvidersSamlServicesMetadataExtractItemResponse. # noqa: E501 - :rtype: str - """ - return self._entity_id - - @entity_id.setter - def entity_id(self, entity_id): - """Sets the entity_id of this CreateProvidersSamlServicesMetadataExtractItemResponse. - - The SAML entity ID the rest of this object's properties are within. # noqa: E501 - - :param entity_id: The entity_id of this CreateProvidersSamlServicesMetadataExtractItemResponse. # noqa: E501 - :type: str - """ - if entity_id is not None and len(entity_id) > 1024: - raise ValueError("Invalid value for `entity_id`, length must be less than or equal to `1024`") # noqa: E501 - if entity_id is not None and len(entity_id) < 1: - raise ValueError("Invalid value for `entity_id`, length must be greater than or equal to `1`") # noqa: E501 - - self._entity_id = entity_id - - @property - def login_endpoints(self): - """Gets the login_endpoints of this CreateProvidersSamlServicesMetadataExtractItemResponse. # noqa: E501 - - A list of endpoints from the metadata that can be used as the login URL when creating an IDP on PowerScale. # noqa: E501 - - :return: The login_endpoints of this CreateProvidersSamlServicesMetadataExtractItemResponse. # noqa: E501 - :rtype: list[CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint] - """ - return self._login_endpoints - - @login_endpoints.setter - def login_endpoints(self, login_endpoints): - """Sets the login_endpoints of this CreateProvidersSamlServicesMetadataExtractItemResponse. - - A list of endpoints from the metadata that can be used as the login URL when creating an IDP on PowerScale. # noqa: E501 - - :param login_endpoints: The login_endpoints of this CreateProvidersSamlServicesMetadataExtractItemResponse. # noqa: E501 - :type: list[CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint] - """ - - self._login_endpoints = login_endpoints - - @property - def logout_endpoints(self): - """Gets the logout_endpoints of this CreateProvidersSamlServicesMetadataExtractItemResponse. # noqa: E501 - - A list of endpoints from the metadata that can be used as the logout URL when creating an IDP on PowerScale. # noqa: E501 - - :return: The logout_endpoints of this CreateProvidersSamlServicesMetadataExtractItemResponse. # noqa: E501 - :rtype: list[CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint] - """ - return self._logout_endpoints - - @logout_endpoints.setter - def logout_endpoints(self, logout_endpoints): - """Sets the logout_endpoints of this CreateProvidersSamlServicesMetadataExtractItemResponse. - - A list of endpoints from the metadata that can be used as the logout URL when creating an IDP on PowerScale. # noqa: E501 - - :param logout_endpoints: The logout_endpoints of this CreateProvidersSamlServicesMetadataExtractItemResponse. # noqa: E501 - :type: list[CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint] - """ - - self._logout_endpoints = logout_endpoints - - @property - def signing_certificates(self): - """Gets the signing_certificates of this CreateProvidersSamlServicesMetadataExtractItemResponse. # noqa: E501 - - A list of signing certificates from the metadata's IDP. Only signing certificates with a status property of valid can be used to create an IDP on PowerScale. # noqa: E501 - - :return: The signing_certificates of this CreateProvidersSamlServicesMetadataExtractItemResponse. # noqa: E501 - :rtype: list[CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate] - """ - return self._signing_certificates - - @signing_certificates.setter - def signing_certificates(self, signing_certificates): - """Sets the signing_certificates of this CreateProvidersSamlServicesMetadataExtractItemResponse. - - A list of signing certificates from the metadata's IDP. Only signing certificates with a status property of valid can be used to create an IDP on PowerScale. # noqa: E501 - - :param signing_certificates: The signing_certificates of this CreateProvidersSamlServicesMetadataExtractItemResponse. # noqa: E501 - :type: list[CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate] - """ - - self._signing_certificates = signing_certificates - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(CreateProvidersSamlServicesMetadataExtractItemResponse, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, CreateProvidersSamlServicesMetadataExtractItemResponse): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_providers_saml_services_metadata_extract_item_response_login_endpoint.py b/isilon_sdk/isilon_sdk/v9_11_0/models/create_providers_saml_services_metadata_extract_item_response_login_endpoint.py deleted file mode 100644 index c359be3b7..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_providers_saml_services_metadata_extract_item_response_login_endpoint.py +++ /dev/null @@ -1,181 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'binding': 'str', - 'is_default': 'bool', - 'url': 'str' - } - - attribute_map = { - 'binding': 'binding', - 'is_default': 'is_default', - 'url': 'url' - } - - def __init__(self, binding=None, is_default=None, url=None): # noqa: E501 - """CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint - a model defined in Swagger""" # noqa: E501 - - self._binding = None - self._is_default = None - self._url = None - self.discriminator = None - - if binding is not None: - self.binding = binding - if is_default is not None: - self.is_default = is_default - if url is not None: - self.url = url - - @property - def binding(self): - """Gets the binding of this CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint. # noqa: E501 - - SAML binding that PowerScale can use. # noqa: E501 - - :return: The binding of this CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint. # noqa: E501 - :rtype: str - """ - return self._binding - - @binding.setter - def binding(self, binding): - """Sets the binding of this CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint. - - SAML binding that PowerScale can use. # noqa: E501 - - :param binding: The binding of this CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint. # noqa: E501 - :type: str - """ - if binding is not None and len(binding) > 255: - raise ValueError("Invalid value for `binding`, length must be less than or equal to `255`") # noqa: E501 - if binding is not None and len(binding) < 1: - raise ValueError("Invalid value for `binding`, length must be greater than or equal to `1`") # noqa: E501 - - self._binding = binding - - @property - def is_default(self): - """Gets the is_default of this CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint. # noqa: E501 - - When true this is the endpoint that PowerScale will use if this same metadata is used to create an IDP on PowerScale. There will be at most one item in the list set to true. # noqa: E501 - - :return: The is_default of this CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint. # noqa: E501 - :rtype: bool - """ - return self._is_default - - @is_default.setter - def is_default(self, is_default): - """Sets the is_default of this CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint. - - When true this is the endpoint that PowerScale will use if this same metadata is used to create an IDP on PowerScale. There will be at most one item in the list set to true. # noqa: E501 - - :param is_default: The is_default of this CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint. # noqa: E501 - :type: bool - """ - - self._is_default = is_default - - @property - def url(self): - """Gets the url of this CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint. # noqa: E501 - - URL specifying the location of the endpoint. # noqa: E501 - - :return: The url of this CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint. # noqa: E501 - :rtype: str - """ - return self._url - - @url.setter - def url(self, url): - """Sets the url of this CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint. - - URL specifying the location of the endpoint. # noqa: E501 - - :param url: The url of this CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint. # noqa: E501 - :type: str - """ - if url is not None and len(url) > 2048: - raise ValueError("Invalid value for `url`, length must be less than or equal to `2048`") # noqa: E501 - if url is not None and len(url) < 1: - raise ValueError("Invalid value for `url`, length must be greater than or equal to `1`") # noqa: E501 - - self._url = url - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_providers_saml_services_metadata_extract_item_response_logout_endpoint.py b/isilon_sdk/isilon_sdk/v9_11_0/models/create_providers_saml_services_metadata_extract_item_response_logout_endpoint.py deleted file mode 100644 index 3060f0993..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_providers_saml_services_metadata_extract_item_response_logout_endpoint.py +++ /dev/null @@ -1,213 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'binding': 'str', - 'is_default': 'bool', - 'response_url': 'str', - 'url': 'str' - } - - attribute_map = { - 'binding': 'binding', - 'is_default': 'is_default', - 'response_url': 'response_url', - 'url': 'url' - } - - def __init__(self, binding=None, is_default=None, response_url=None, url=None): # noqa: E501 - """CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint - a model defined in Swagger""" # noqa: E501 - - self._binding = None - self._is_default = None - self._response_url = None - self._url = None - self.discriminator = None - - if binding is not None: - self.binding = binding - if is_default is not None: - self.is_default = is_default - if response_url is not None: - self.response_url = response_url - if url is not None: - self.url = url - - @property - def binding(self): - """Gets the binding of this CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint. # noqa: E501 - - SAML binding that PowerScale can use. # noqa: E501 - - :return: The binding of this CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint. # noqa: E501 - :rtype: str - """ - return self._binding - - @binding.setter - def binding(self, binding): - """Sets the binding of this CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint. - - SAML binding that PowerScale can use. # noqa: E501 - - :param binding: The binding of this CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint. # noqa: E501 - :type: str - """ - if binding is not None and len(binding) > 255: - raise ValueError("Invalid value for `binding`, length must be less than or equal to `255`") # noqa: E501 - if binding is not None and len(binding) < 1: - raise ValueError("Invalid value for `binding`, length must be greater than or equal to `1`") # noqa: E501 - - self._binding = binding - - @property - def is_default(self): - """Gets the is_default of this CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint. # noqa: E501 - - When true this is the endpoint that PowerScale will use if this same metadata is used to create an IDP on PowerScale. There will be at most one item in the list set to true. # noqa: E501 - - :return: The is_default of this CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint. # noqa: E501 - :rtype: bool - """ - return self._is_default - - @is_default.setter - def is_default(self, is_default): - """Sets the is_default of this CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint. - - When true this is the endpoint that PowerScale will use if this same metadata is used to create an IDP on PowerScale. There will be at most one item in the list set to true. # noqa: E501 - - :param is_default: The is_default of this CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint. # noqa: E501 - :type: bool - """ - - self._is_default = is_default - - @property - def response_url(self): - """Gets the response_url of this CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint. # noqa: E501 - - URL specifying the location of where to send responses to. # noqa: E501 - - :return: The response_url of this CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint. # noqa: E501 - :rtype: str - """ - return self._response_url - - @response_url.setter - def response_url(self, response_url): - """Sets the response_url of this CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint. - - URL specifying the location of where to send responses to. # noqa: E501 - - :param response_url: The response_url of this CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint. # noqa: E501 - :type: str - """ - if response_url is not None and len(response_url) > 2048: - raise ValueError("Invalid value for `response_url`, length must be less than or equal to `2048`") # noqa: E501 - if response_url is not None and len(response_url) < 1: - raise ValueError("Invalid value for `response_url`, length must be greater than or equal to `1`") # noqa: E501 - - self._response_url = response_url - - @property - def url(self): - """Gets the url of this CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint. # noqa: E501 - - URL specifying the location of the endpoint. # noqa: E501 - - :return: The url of this CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint. # noqa: E501 - :rtype: str - """ - return self._url - - @url.setter - def url(self, url): - """Sets the url of this CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint. - - URL specifying the location of the endpoint. # noqa: E501 - - :param url: The url of this CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint. # noqa: E501 - :type: str - """ - if url is not None and len(url) > 2048: - raise ValueError("Invalid value for `url`, length must be less than or equal to `2048`") # noqa: E501 - if url is not None and len(url) < 1: - raise ValueError("Invalid value for `url`, length must be greater than or equal to `1`") # noqa: E501 - - self._url = url - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_providers_saml_services_metadata_extract_item_response_signing_certificate.py b/isilon_sdk/isilon_sdk/v9_11_0/models/create_providers_saml_services_metadata_extract_item_response_signing_certificate.py deleted file mode 100644 index 2d363a1cf..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_providers_saml_services_metadata_extract_item_response_signing_certificate.py +++ /dev/null @@ -1,307 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'fingerprints': 'list[CertificatesSyslogCertificateFingerprint]', - 'issuer': 'str', - 'not_after': 'int', - 'not_before': 'int', - 'status': 'str', - 'subject': 'str', - 'value': 'CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue' - } - - attribute_map = { - 'fingerprints': 'fingerprints', - 'issuer': 'issuer', - 'not_after': 'not_after', - 'not_before': 'not_before', - 'status': 'status', - 'subject': 'subject', - 'value': 'value' - } - - def __init__(self, fingerprints=None, issuer=None, not_after=None, not_before=None, status=None, subject=None, value=None): # noqa: E501 - """CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate - a model defined in Swagger""" # noqa: E501 - - self._fingerprints = None - self._issuer = None - self._not_after = None - self._not_before = None - self._status = None - self._subject = None - self._value = None - self.discriminator = None - - if fingerprints is not None: - self.fingerprints = fingerprints - if issuer is not None: - self.issuer = issuer - if not_after is not None: - self.not_after = not_after - if not_before is not None: - self.not_before = not_before - if status is not None: - self.status = status - if subject is not None: - self.subject = subject - if value is not None: - self.value = value - - @property - def fingerprints(self): - """Gets the fingerprints of this CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate. # noqa: E501 - - A list of zero or more certificate fingerprints which can be used for certificate identification. # noqa: E501 - - :return: The fingerprints of this CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate. # noqa: E501 - :rtype: list[CertificatesSyslogCertificateFingerprint] - """ - return self._fingerprints - - @fingerprints.setter - def fingerprints(self, fingerprints): - """Sets the fingerprints of this CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate. - - A list of zero or more certificate fingerprints which can be used for certificate identification. # noqa: E501 - - :param fingerprints: The fingerprints of this CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate. # noqa: E501 - :type: list[CertificatesSyslogCertificateFingerprint] - """ - - self._fingerprints = fingerprints - - @property - def issuer(self): - """Gets the issuer of this CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate. # noqa: E501 - - Certificate issuer field extracted from the certificate. # noqa: E501 - - :return: The issuer of this CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate. # noqa: E501 - :rtype: str - """ - return self._issuer - - @issuer.setter - def issuer(self, issuer): - """Sets the issuer of this CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate. - - Certificate issuer field extracted from the certificate. # noqa: E501 - - :param issuer: The issuer of this CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate. # noqa: E501 - :type: str - """ - if issuer is not None and len(issuer) > 2048: - raise ValueError("Invalid value for `issuer`, length must be less than or equal to `2048`") # noqa: E501 - if issuer is not None and len(issuer) < 1: - raise ValueError("Invalid value for `issuer`, length must be greater than or equal to `1`") # noqa: E501 - - self._issuer = issuer - - @property - def not_after(self): - """Gets the not_after of this CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate. # noqa: E501 - - Certificate notAfter field extracted from the certificate encoded as a UNIX epoch timestamp. The certificate is not valid after this timestamp. # noqa: E501 - - :return: The not_after of this CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate. # noqa: E501 - :rtype: int - """ - return self._not_after - - @not_after.setter - def not_after(self, not_after): - """Sets the not_after of this CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate. - - Certificate notAfter field extracted from the certificate encoded as a UNIX epoch timestamp. The certificate is not valid after this timestamp. # noqa: E501 - - :param not_after: The not_after of this CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate. # noqa: E501 - :type: int - """ - if not_after is not None and not_after > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `not_after`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if not_after is not None and not_after < 0: # noqa: E501 - raise ValueError("Invalid value for `not_after`, must be a value greater than or equal to `0`") # noqa: E501 - - self._not_after = not_after - - @property - def not_before(self): - """Gets the not_before of this CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate. # noqa: E501 - - Certificate notBefore field extracted from the certificate encoded as a UNIX epoch timestamp. The certificate is not valid before this timestamp. # noqa: E501 - - :return: The not_before of this CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate. # noqa: E501 - :rtype: int - """ - return self._not_before - - @not_before.setter - def not_before(self, not_before): - """Sets the not_before of this CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate. - - Certificate notBefore field extracted from the certificate encoded as a UNIX epoch timestamp. The certificate is not valid before this timestamp. # noqa: E501 - - :param not_before: The not_before of this CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate. # noqa: E501 - :type: int - """ - if not_before is not None and not_before > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `not_before`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if not_before is not None and not_before < 0: # noqa: E501 - raise ValueError("Invalid value for `not_before`, must be a value greater than or equal to `0`") # noqa: E501 - - self._not_before = not_before - - @property - def status(self): - """Gets the status of this CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate. # noqa: E501 - - Certificate validity status # noqa: E501 - - :return: The status of this CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate. # noqa: E501 - :rtype: str - """ - return self._status - - @status.setter - def status(self, status): - """Sets the status of this CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate. - - Certificate validity status # noqa: E501 - - :param status: The status of this CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate. # noqa: E501 - :type: str - """ - allowed_values = ["valid", "invalid", "expired", "expiring"] # noqa: E501 - if status not in allowed_values: - raise ValueError( - "Invalid value for `status` ({0}), must be one of {1}" # noqa: E501 - .format(status, allowed_values) - ) - - self._status = status - - @property - def subject(self): - """Gets the subject of this CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate. # noqa: E501 - - Certificate subject field extracted from the certificate. # noqa: E501 - - :return: The subject of this CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate. # noqa: E501 - :rtype: str - """ - return self._subject - - @subject.setter - def subject(self, subject): - """Sets the subject of this CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate. - - Certificate subject field extracted from the certificate. # noqa: E501 - - :param subject: The subject of this CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate. # noqa: E501 - :type: str - """ - if subject is not None and len(subject) > 2048: - raise ValueError("Invalid value for `subject`, length must be less than or equal to `2048`") # noqa: E501 - if subject is not None and len(subject) < 1: - raise ValueError("Invalid value for `subject`, length must be greater than or equal to `1`") # noqa: E501 - - self._subject = subject - - @property - def value(self): - """Gets the value of this CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate. # noqa: E501 - - Certificate data. # noqa: E501 - - :return: The value of this CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate. # noqa: E501 - :rtype: CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue - """ - return self._value - - @value.setter - def value(self, value): - """Sets the value of this CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate. - - Certificate data. # noqa: E501 - - :param value: The value of this CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate. # noqa: E501 - :type: CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue - """ - - self._value = value - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_supportassist_task_item_response.py b/isilon_sdk/isilon_sdk/v9_11_0/models/create_supportassist_task_item_response.py deleted file mode 100644 index 5a724bcef..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_supportassist_task_item_response.py +++ /dev/null @@ -1,122 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class CreateSupportassistTaskItemResponse(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'task_id': 'str' - } - - attribute_map = { - 'task_id': 'task_id' - } - - def __init__(self, task_id=None): # noqa: E501 - """CreateSupportassistTaskItemResponse - a model defined in Swagger""" # noqa: E501 - - self._task_id = None - self.discriminator = None - - self.task_id = task_id - - @property - def task_id(self): - """Gets the task_id of this CreateSupportassistTaskItemResponse. # noqa: E501 - - ID of created item that can be used to refer to item in the collection-item resource path. # noqa: E501 - - :return: The task_id of this CreateSupportassistTaskItemResponse. # noqa: E501 - :rtype: str - """ - return self._task_id - - @task_id.setter - def task_id(self, task_id): - """Sets the task_id of this CreateSupportassistTaskItemResponse. - - ID of created item that can be used to refer to item in the collection-item resource path. # noqa: E501 - - :param task_id: The task_id of this CreateSupportassistTaskItemResponse. # noqa: E501 - :type: str - """ - if task_id is None: - raise ValueError("Invalid value for `task_id`, must not be `None`") # noqa: E501 - if task_id is not None and len(task_id) > 255: - raise ValueError("Invalid value for `task_id`, length must be less than or equal to `255`") # noqa: E501 - if task_id is not None and len(task_id) < 0: - raise ValueError("Invalid value for `task_id`, length must be greater than or equal to `0`") # noqa: E501 - - self._task_id = task_id - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(CreateSupportassistTaskItemResponse, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, CreateSupportassistTaskItemResponse): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_user_reset_password_item_response.py b/isilon_sdk/isilon_sdk/v9_11_0/models/create_user_reset_password_item_response.py deleted file mode 100644 index a468175a1..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_user_reset_password_item_response.py +++ /dev/null @@ -1,121 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class CreateUserResetPasswordItemResponse(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'new_password': 'str' - } - - attribute_map = { - 'new_password': 'new_password' - } - - def __init__(self, new_password=None): # noqa: E501 - """CreateUserResetPasswordItemResponse - a model defined in Swagger""" # noqa: E501 - - self._new_password = None - self.discriminator = None - - if new_password is not None: - self.new_password = new_password - - @property - def new_password(self): - """Gets the new_password of this CreateUserResetPasswordItemResponse. # noqa: E501 - - the newly generated password # noqa: E501 - - :return: The new_password of this CreateUserResetPasswordItemResponse. # noqa: E501 - :rtype: str - """ - return self._new_password - - @new_password.setter - def new_password(self, new_password): - """Sets the new_password of this CreateUserResetPasswordItemResponse. - - the newly generated password # noqa: E501 - - :param new_password: The new_password of this CreateUserResetPasswordItemResponse. # noqa: E501 - :type: str - """ - if new_password is not None and len(new_password) > 255: - raise ValueError("Invalid value for `new_password`, length must be less than or equal to `255`") # noqa: E501 - if new_password is not None and len(new_password) < 0: - raise ValueError("Invalid value for `new_password`, length must be greater than or equal to `0`") # noqa: E501 - - self._new_password = new_password - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(CreateUserResetPasswordItemResponse, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, CreateUserResetPasswordItemResponse): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_config.py b/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_config.py deleted file mode 100644 index 4fd3ba465..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_config.py +++ /dev/null @@ -1,147 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class DatamoverConfig(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'entries': 'list[ConfigNamespaceEntry]', - 'resume': 'str' - } - - attribute_map = { - 'entries': 'entries', - 'resume': 'resume' - } - - def __init__(self, entries=None, resume=None): # noqa: E501 - """DatamoverConfig - a model defined in Swagger""" # noqa: E501 - - self._entries = None - self._resume = None - self.discriminator = None - - if entries is not None: - self.entries = entries - if resume is not None: - self.resume = resume - - @property - def entries(self): - """Gets the entries of this DatamoverConfig. # noqa: E501 - - - :return: The entries of this DatamoverConfig. # noqa: E501 - :rtype: list[ConfigNamespaceEntry] - """ - return self._entries - - @entries.setter - def entries(self, entries): - """Sets the entries of this DatamoverConfig. - - - :param entries: The entries of this DatamoverConfig. # noqa: E501 - :type: list[ConfigNamespaceEntry] - """ - - self._entries = entries - - @property - def resume(self): - """Gets the resume of this DatamoverConfig. # noqa: E501 - - Provide this token as the 'resume' query argument to continue listing results. # noqa: E501 - - :return: The resume of this DatamoverConfig. # noqa: E501 - :rtype: str - """ - return self._resume - - @resume.setter - def resume(self, resume): - """Sets the resume of this DatamoverConfig. - - Provide this token as the 'resume' query argument to continue listing results. # noqa: E501 - - :param resume: The resume of this DatamoverConfig. # noqa: E501 - :type: str - """ - if resume is not None and len(resume) > 8192: - raise ValueError("Invalid value for `resume`, length must be less than or equal to `8192`") # noqa: E501 - if resume is not None and len(resume) < 0: - raise ValueError("Invalid value for `resume`, length must be greater than or equal to `0`") # noqa: E501 - - self._resume = resume - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(DatamoverConfig, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, DatamoverConfig): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_config_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_config_extended.py deleted file mode 100644 index 3a050cc4d..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_config_extended.py +++ /dev/null @@ -1,147 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class DatamoverConfigExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'namespaces': 'list[DatamoverConfigNamespace]', - 'resume': 'str' - } - - attribute_map = { - 'namespaces': 'namespaces', - 'resume': 'resume' - } - - def __init__(self, namespaces=None, resume=None): # noqa: E501 - """DatamoverConfigExtended - a model defined in Swagger""" # noqa: E501 - - self._namespaces = None - self._resume = None - self.discriminator = None - - if namespaces is not None: - self.namespaces = namespaces - if resume is not None: - self.resume = resume - - @property - def namespaces(self): - """Gets the namespaces of this DatamoverConfigExtended. # noqa: E501 - - - :return: The namespaces of this DatamoverConfigExtended. # noqa: E501 - :rtype: list[DatamoverConfigNamespace] - """ - return self._namespaces - - @namespaces.setter - def namespaces(self, namespaces): - """Sets the namespaces of this DatamoverConfigExtended. - - - :param namespaces: The namespaces of this DatamoverConfigExtended. # noqa: E501 - :type: list[DatamoverConfigNamespace] - """ - - self._namespaces = namespaces - - @property - def resume(self): - """Gets the resume of this DatamoverConfigExtended. # noqa: E501 - - Provide this token as the 'resume' query argument to continue listing results. # noqa: E501 - - :return: The resume of this DatamoverConfigExtended. # noqa: E501 - :rtype: str - """ - return self._resume - - @resume.setter - def resume(self, resume): - """Sets the resume of this DatamoverConfigExtended. - - Provide this token as the 'resume' query argument to continue listing results. # noqa: E501 - - :param resume: The resume of this DatamoverConfigExtended. # noqa: E501 - :type: str - """ - if resume is not None and len(resume) > 8192: - raise ValueError("Invalid value for `resume`, length must be less than or equal to `8192`") # noqa: E501 - if resume is not None and len(resume) < 0: - raise ValueError("Invalid value for `resume`, length must be greater than or equal to `0`") # noqa: E501 - - self._resume = resume - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(DatamoverConfigExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, DatamoverConfigExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_config_namespace.py b/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_config_namespace.py deleted file mode 100644 index f4728cda6..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_config_namespace.py +++ /dev/null @@ -1,150 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class DatamoverConfigNamespace(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'entries': 'list[ConfigNamespaceEntry]', - 'id': 'str' - } - - attribute_map = { - 'entries': 'entries', - 'id': 'id' - } - - def __init__(self, entries=None, id=None): # noqa: E501 - """DatamoverConfigNamespace - a model defined in Swagger""" # noqa: E501 - - self._entries = None - self._id = None - self.discriminator = None - - if entries is not None: - self.entries = entries - self.id = id - - @property - def entries(self): - """Gets the entries of this DatamoverConfigNamespace. # noqa: E501 - - Configuration entries # noqa: E501 - - :return: The entries of this DatamoverConfigNamespace. # noqa: E501 - :rtype: list[ConfigNamespaceEntry] - """ - return self._entries - - @entries.setter - def entries(self, entries): - """Sets the entries of this DatamoverConfigNamespace. - - Configuration entries # noqa: E501 - - :param entries: The entries of this DatamoverConfigNamespace. # noqa: E501 - :type: list[ConfigNamespaceEntry] - """ - - self._entries = entries - - @property - def id(self): - """Gets the id of this DatamoverConfigNamespace. # noqa: E501 - - Configuration namespace identifier # noqa: E501 - - :return: The id of this DatamoverConfigNamespace. # noqa: E501 - :rtype: str - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this DatamoverConfigNamespace. - - Configuration namespace identifier # noqa: E501 - - :param id: The id of this DatamoverConfigNamespace. # noqa: E501 - :type: str - """ - if id is None: - raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 - if id is not None and len(id) > 8192: - raise ValueError("Invalid value for `id`, length must be less than or equal to `8192`") # noqa: E501 - if id is not None and len(id) < 1: - raise ValueError("Invalid value for `id`, length must be greater than or equal to `1`") # noqa: E501 - - self._id = id - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(DatamoverConfigNamespace, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, DatamoverConfigNamespace): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_failed_task.py b/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_failed_task.py deleted file mode 100644 index 464af1618..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_failed_task.py +++ /dev/null @@ -1,225 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class DatamoverHistoricalJobsJobJobFailedTask(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'error_msg': 'str', - 'id': 'int', - 'task_state': 'str', - 'task_type': 'str' - } - - attribute_map = { - 'error_msg': 'error_msg', - 'id': 'id', - 'task_state': 'task_state', - 'task_type': 'task_type' - } - - def __init__(self, error_msg=None, id=None, task_state=None, task_type=None): # noqa: E501 - """DatamoverHistoricalJobsJobJobFailedTask - a model defined in Swagger""" # noqa: E501 - - self._error_msg = None - self._id = None - self._task_state = None - self._task_type = None - self.discriminator = None - - self.error_msg = error_msg - self.id = id - self.task_state = task_state - self.task_type = task_type - - @property - def error_msg(self): - """Gets the error_msg of this DatamoverHistoricalJobsJobJobFailedTask. # noqa: E501 - - Error message # noqa: E501 - - :return: The error_msg of this DatamoverHistoricalJobsJobJobFailedTask. # noqa: E501 - :rtype: str - """ - return self._error_msg - - @error_msg.setter - def error_msg(self, error_msg): - """Sets the error_msg of this DatamoverHistoricalJobsJobJobFailedTask. - - Error message # noqa: E501 - - :param error_msg: The error_msg of this DatamoverHistoricalJobsJobJobFailedTask. # noqa: E501 - :type: str - """ - if error_msg is None: - raise ValueError("Invalid value for `error_msg`, must not be `None`") # noqa: E501 - if error_msg is not None and len(error_msg) > 1024: - raise ValueError("Invalid value for `error_msg`, length must be less than or equal to `1024`") # noqa: E501 - if error_msg is not None and len(error_msg) < 1: - raise ValueError("Invalid value for `error_msg`, length must be greater than or equal to `1`") # noqa: E501 - - self._error_msg = error_msg - - @property - def id(self): - """Gets the id of this DatamoverHistoricalJobsJobJobFailedTask. # noqa: E501 - - Task identifier # noqa: E501 - - :return: The id of this DatamoverHistoricalJobsJobJobFailedTask. # noqa: E501 - :rtype: int - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this DatamoverHistoricalJobsJobJobFailedTask. - - Task identifier # noqa: E501 - - :param id: The id of this DatamoverHistoricalJobsJobJobFailedTask. # noqa: E501 - :type: int - """ - if id is None: - raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 - if id is not None and id > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `id`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if id is not None and id < 0: # noqa: E501 - raise ValueError("Invalid value for `id`, must be a value greater than or equal to `0`") # noqa: E501 - - self._id = id - - @property - def task_state(self): - """Gets the task_state of this DatamoverHistoricalJobsJobJobFailedTask. # noqa: E501 - - Task state # noqa: E501 - - :return: The task_state of this DatamoverHistoricalJobsJobJobFailedTask. # noqa: E501 - :rtype: str - """ - return self._task_state - - @task_state.setter - def task_state(self, task_state): - """Sets the task_state of this DatamoverHistoricalJobsJobJobFailedTask. - - Task state # noqa: E501 - - :param task_state: The task_state of this DatamoverHistoricalJobsJobJobFailedTask. # noqa: E501 - :type: str - """ - if task_state is None: - raise ValueError("Invalid value for `task_state`, must not be `None`") # noqa: E501 - allowed_values = ["invalid", "pending", "running", "paused", "finished", "cancelled", "failed", "failed-fatal", "last"] # noqa: E501 - if task_state not in allowed_values: - raise ValueError( - "Invalid value for `task_state` ({0}), must be one of {1}" # noqa: E501 - .format(task_state, allowed_values) - ) - - self._task_state = task_state - - @property - def task_type(self): - """Gets the task_type of this DatamoverHistoricalJobsJobJobFailedTask. # noqa: E501 - - Task type # noqa: E501 - - :return: The task_type of this DatamoverHistoricalJobsJobJobFailedTask. # noqa: E501 - :rtype: str - """ - return self._task_type - - @task_type.setter - def task_type(self, task_type): - """Sets the task_type of this DatamoverHistoricalJobsJobJobFailedTask. - - Task type # noqa: E501 - - :param task_type: The task_type of this DatamoverHistoricalJobsJobJobFailedTask. # noqa: E501 - :type: str - """ - if task_type is None: - raise ValueError("Invalid value for `task_type`, must not be `None`") # noqa: E501 - allowed_values = ["invalid", "dir xfer by id", "dir xfer by name", "file xfer by id", "file xfer by name", "batch file xfer by id", "batch execute", "inc inodes scan", "inc dir change", "test task", "inc late list", "root task ds create", "root task ds base copy", "root task ds inc copy", "root task ds expire", "last"] # noqa: E501 - if task_type not in allowed_values: - raise ValueError( - "Invalid value for `task_type` ({0}), must be one of {1}" # noqa: E501 - .format(task_type, allowed_values) - ) - - self._task_type = task_type - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(DatamoverHistoricalJobsJobJobFailedTask, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, DatamoverHistoricalJobsJobJobFailedTask): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_expiration_job_statistics.py b/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_expiration_job_statistics.py deleted file mode 100644 index 6e693cea5..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_expiration_job_statistics.py +++ /dev/null @@ -1,153 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'datasets_deleted': 'int', - 'expiry_time': 'int' - } - - attribute_map = { - 'datasets_deleted': 'datasets_deleted', - 'expiry_time': 'expiry_time' - } - - def __init__(self, datasets_deleted=None, expiry_time=None): # noqa: E501 - """DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics - a model defined in Swagger""" # noqa: E501 - - self._datasets_deleted = None - self._expiry_time = None - self.discriminator = None - - if datasets_deleted is not None: - self.datasets_deleted = datasets_deleted - if expiry_time is not None: - self.expiry_time = expiry_time - - @property - def datasets_deleted(self): - """Gets the datasets_deleted of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics. # noqa: E501 - - Datasets Deleted. # noqa: E501 - - :return: The datasets_deleted of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics. # noqa: E501 - :rtype: int - """ - return self._datasets_deleted - - @datasets_deleted.setter - def datasets_deleted(self, datasets_deleted): - """Sets the datasets_deleted of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics. - - Datasets Deleted. # noqa: E501 - - :param datasets_deleted: The datasets_deleted of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics. # noqa: E501 - :type: int - """ - if datasets_deleted is not None and datasets_deleted > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `datasets_deleted`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if datasets_deleted is not None and datasets_deleted < 0: # noqa: E501 - raise ValueError("Invalid value for `datasets_deleted`, must be a value greater than or equal to `0`") # noqa: E501 - - self._datasets_deleted = datasets_deleted - - @property - def expiry_time(self): - """Gets the expiry_time of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics. # noqa: E501 - - Expiry Time. # noqa: E501 - - :return: The expiry_time of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics. # noqa: E501 - :rtype: int - """ - return self._expiry_time - - @expiry_time.setter - def expiry_time(self, expiry_time): - """Sets the expiry_time of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics. - - Expiry Time. # noqa: E501 - - :param expiry_time: The expiry_time of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics. # noqa: E501 - :type: int - """ - if expiry_time is not None and expiry_time > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `expiry_time`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if expiry_time is not None and expiry_time < 1: # noqa: E501 - raise ValueError("Invalid value for `expiry_time`, must be a value greater than or equal to `1`") # noqa: E501 - - self._expiry_time = expiry_time - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_job_job_type_specific_attrs_dataset_creation_job.py b/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_job_job_type_specific_attrs_dataset_creation_job.py deleted file mode 100644 index d2f39d3fc..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_job_job_type_specific_attrs_dataset_creation_job.py +++ /dev/null @@ -1,303 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class DatamoverJobJobTypeSpecificAttrsDatasetCreationJob(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'account_id': 'str', - 'account_name': 'str', - 'base_path': 'str', - 'dataset_version': 'str', - 'retention': 'DatamoverBasePolicySrcDatasetRetention', - 'statistics': 'DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJobStatistics', - 'subpaths': 'list[str]' - } - - attribute_map = { - 'account_id': 'account_id', - 'account_name': 'account_name', - 'base_path': 'base_path', - 'dataset_version': 'dataset_version', - 'retention': 'retention', - 'statistics': 'statistics', - 'subpaths': 'subpaths' - } - - def __init__(self, account_id=None, account_name=None, base_path=None, dataset_version=None, retention=None, statistics=None, subpaths=None): # noqa: E501 - """DatamoverJobJobTypeSpecificAttrsDatasetCreationJob - a model defined in Swagger""" # noqa: E501 - - self._account_id = None - self._account_name = None - self._base_path = None - self._dataset_version = None - self._retention = None - self._statistics = None - self._subpaths = None - self.discriminator = None - - if account_id is not None: - self.account_id = account_id - if account_name is not None: - self.account_name = account_name - if base_path is not None: - self.base_path = base_path - if dataset_version is not None: - self.dataset_version = dataset_version - if retention is not None: - self.retention = retention - if statistics is not None: - self.statistics = statistics - if subpaths is not None: - self.subpaths = subpaths - - @property - def account_id(self): - """Gets the account_id of this DatamoverJobJobTypeSpecificAttrsDatasetCreationJob. # noqa: E501 - - Account ID of the source storage system, where the dataset is to be created. # noqa: E501 - - :return: The account_id of this DatamoverJobJobTypeSpecificAttrsDatasetCreationJob. # noqa: E501 - :rtype: str - """ - return self._account_id - - @account_id.setter - def account_id(self, account_id): - """Sets the account_id of this DatamoverJobJobTypeSpecificAttrsDatasetCreationJob. - - Account ID of the source storage system, where the dataset is to be created. # noqa: E501 - - :param account_id: The account_id of this DatamoverJobJobTypeSpecificAttrsDatasetCreationJob. # noqa: E501 - :type: str - """ - if account_id is not None and len(account_id) > 48: - raise ValueError("Invalid value for `account_id`, length must be less than or equal to `48`") # noqa: E501 - if account_id is not None and len(account_id) < 2: - raise ValueError("Invalid value for `account_id`, length must be greater than or equal to `2`") # noqa: E501 - - self._account_id = account_id - - @property - def account_name(self): - """Gets the account_name of this DatamoverJobJobTypeSpecificAttrsDatasetCreationJob. # noqa: E501 - - Account name of the source storage system, where the dataset is to be created. # noqa: E501 - - :return: The account_name of this DatamoverJobJobTypeSpecificAttrsDatasetCreationJob. # noqa: E501 - :rtype: str - """ - return self._account_name - - @account_name.setter - def account_name(self, account_name): - """Sets the account_name of this DatamoverJobJobTypeSpecificAttrsDatasetCreationJob. - - Account name of the source storage system, where the dataset is to be created. # noqa: E501 - - :param account_name: The account_name of this DatamoverJobJobTypeSpecificAttrsDatasetCreationJob. # noqa: E501 - :type: str - """ - if account_name is not None and len(account_name) > 255: - raise ValueError("Invalid value for `account_name`, length must be less than or equal to `255`") # noqa: E501 - if account_name is not None and len(account_name) < 1: - raise ValueError("Invalid value for `account_name`, length must be greater than or equal to `1`") # noqa: E501 - - self._account_name = account_name - - @property - def base_path(self): - """Gets the base_path of this DatamoverJobJobTypeSpecificAttrsDatasetCreationJob. # noqa: E501 - - Filesystem path for dataset creation. The subpath is relative to this path. # noqa: E501 - - :return: The base_path of this DatamoverJobJobTypeSpecificAttrsDatasetCreationJob. # noqa: E501 - :rtype: str - """ - return self._base_path - - @base_path.setter - def base_path(self, base_path): - """Sets the base_path of this DatamoverJobJobTypeSpecificAttrsDatasetCreationJob. - - Filesystem path for dataset creation. The subpath is relative to this path. # noqa: E501 - - :param base_path: The base_path of this DatamoverJobJobTypeSpecificAttrsDatasetCreationJob. # noqa: E501 - :type: str - """ - if base_path is not None and len(base_path) > 4096: - raise ValueError("Invalid value for `base_path`, length must be less than or equal to `4096`") # noqa: E501 - if base_path is not None and len(base_path) < 1: - raise ValueError("Invalid value for `base_path`, length must be greater than or equal to `1`") # noqa: E501 - - self._base_path = base_path - - @property - def dataset_version(self): - """Gets the dataset_version of this DatamoverJobJobTypeSpecificAttrsDatasetCreationJob. # noqa: E501 - - The version of dataset. # noqa: E501 - - :return: The dataset_version of this DatamoverJobJobTypeSpecificAttrsDatasetCreationJob. # noqa: E501 - :rtype: str - """ - return self._dataset_version - - @dataset_version.setter - def dataset_version(self, dataset_version): - """Sets the dataset_version of this DatamoverJobJobTypeSpecificAttrsDatasetCreationJob. - - The version of dataset. # noqa: E501 - - :param dataset_version: The dataset_version of this DatamoverJobJobTypeSpecificAttrsDatasetCreationJob. # noqa: E501 - :type: str - """ - allowed_values = ["1", "2"] # noqa: E501 - if dataset_version not in allowed_values: - raise ValueError( - "Invalid value for `dataset_version` ({0}), must be one of {1}" # noqa: E501 - .format(dataset_version, allowed_values) - ) - - self._dataset_version = dataset_version - - @property - def retention(self): - """Gets the retention of this DatamoverJobJobTypeSpecificAttrsDatasetCreationJob. # noqa: E501 - - # noqa: E501 - - :return: The retention of this DatamoverJobJobTypeSpecificAttrsDatasetCreationJob. # noqa: E501 - :rtype: DatamoverBasePolicySrcDatasetRetention - """ - return self._retention - - @retention.setter - def retention(self, retention): - """Sets the retention of this DatamoverJobJobTypeSpecificAttrsDatasetCreationJob. - - # noqa: E501 - - :param retention: The retention of this DatamoverJobJobTypeSpecificAttrsDatasetCreationJob. # noqa: E501 - :type: DatamoverBasePolicySrcDatasetRetention - """ - - self._retention = retention - - @property - def statistics(self): - """Gets the statistics of this DatamoverJobJobTypeSpecificAttrsDatasetCreationJob. # noqa: E501 - - Statistics for this job # noqa: E501 - - :return: The statistics of this DatamoverJobJobTypeSpecificAttrsDatasetCreationJob. # noqa: E501 - :rtype: DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJobStatistics - """ - return self._statistics - - @statistics.setter - def statistics(self, statistics): - """Sets the statistics of this DatamoverJobJobTypeSpecificAttrsDatasetCreationJob. - - Statistics for this job # noqa: E501 - - :param statistics: The statistics of this DatamoverJobJobTypeSpecificAttrsDatasetCreationJob. # noqa: E501 - :type: DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJobStatistics - """ - - self._statistics = statistics - - @property - def subpaths(self): - """Gets the subpaths of this DatamoverJobJobTypeSpecificAttrsDatasetCreationJob. # noqa: E501 - - Set of filesystem paths relative to base path. # noqa: E501 - - :return: The subpaths of this DatamoverJobJobTypeSpecificAttrsDatasetCreationJob. # noqa: E501 - :rtype: list[str] - """ - return self._subpaths - - @subpaths.setter - def subpaths(self, subpaths): - """Sets the subpaths of this DatamoverJobJobTypeSpecificAttrsDatasetCreationJob. - - Set of filesystem paths relative to base path. # noqa: E501 - - :param subpaths: The subpaths of this DatamoverJobJobTypeSpecificAttrsDatasetCreationJob. # noqa: E501 - :type: list[str] - """ - - self._subpaths = subpaths - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(DatamoverJobJobTypeSpecificAttrsDatasetCreationJob, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, DatamoverJobJobTypeSpecificAttrsDatasetCreationJob): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_job_job_type_specific_attrs_dataset_expiration_job.py b/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_job_job_type_specific_attrs_dataset_expiration_job.py deleted file mode 100644 index fb4b2e156..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_job_job_type_specific_attrs_dataset_expiration_job.py +++ /dev/null @@ -1,181 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'account_id': 'str', - 'account_name': 'str', - 'statistics': 'DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics' - } - - attribute_map = { - 'account_id': 'account_id', - 'account_name': 'account_name', - 'statistics': 'statistics' - } - - def __init__(self, account_id=None, account_name=None, statistics=None): # noqa: E501 - """DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob - a model defined in Swagger""" # noqa: E501 - - self._account_id = None - self._account_name = None - self._statistics = None - self.discriminator = None - - if account_id is not None: - self.account_id = account_id - if account_name is not None: - self.account_name = account_name - if statistics is not None: - self.statistics = statistics - - @property - def account_id(self): - """Gets the account_id of this DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob. # noqa: E501 - - The account where this dataset expiration job is to be run. # noqa: E501 - - :return: The account_id of this DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob. # noqa: E501 - :rtype: str - """ - return self._account_id - - @account_id.setter - def account_id(self, account_id): - """Sets the account_id of this DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob. - - The account where this dataset expiration job is to be run. # noqa: E501 - - :param account_id: The account_id of this DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob. # noqa: E501 - :type: str - """ - if account_id is not None and len(account_id) > 48: - raise ValueError("Invalid value for `account_id`, length must be less than or equal to `48`") # noqa: E501 - if account_id is not None and len(account_id) < 2: - raise ValueError("Invalid value for `account_id`, length must be greater than or equal to `2`") # noqa: E501 - - self._account_id = account_id - - @property - def account_name(self): - """Gets the account_name of this DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob. # noqa: E501 - - The account name of the system on which this dataset expiration job is to be run. # noqa: E501 - - :return: The account_name of this DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob. # noqa: E501 - :rtype: str - """ - return self._account_name - - @account_name.setter - def account_name(self, account_name): - """Sets the account_name of this DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob. - - The account name of the system on which this dataset expiration job is to be run. # noqa: E501 - - :param account_name: The account_name of this DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob. # noqa: E501 - :type: str - """ - if account_name is not None and len(account_name) > 255: - raise ValueError("Invalid value for `account_name`, length must be less than or equal to `255`") # noqa: E501 - if account_name is not None and len(account_name) < 1: - raise ValueError("Invalid value for `account_name`, length must be greater than or equal to `1`") # noqa: E501 - - self._account_name = account_name - - @property - def statistics(self): - """Gets the statistics of this DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob. # noqa: E501 - - Statistics for this job # noqa: E501 - - :return: The statistics of this DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob. # noqa: E501 - :rtype: DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics - """ - return self._statistics - - @statistics.setter - def statistics(self, statistics): - """Sets the statistics of this DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob. - - Statistics for this job # noqa: E501 - - :param statistics: The statistics of this DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob. # noqa: E501 - :type: DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics - """ - - self._statistics = statistics - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_copy_policy_dataset_copy_policy_base_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_copy_policy_dataset_copy_policy_base_extended.py deleted file mode 100644 index 5122795d3..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_copy_policy_dataset_copy_policy_base_extended.py +++ /dev/null @@ -1,439 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'base_account_id': 'str', - 'copy_retention': 'DatamoverBasePolicySrcDatasetRetention', - 'new_tasks_account': 'str', - 'source_account_id': 'str', - 'target_account_id': 'str', - 'target_base_path': 'str', - 'target_dataset_type': 'str', - 'base_account_name': 'str', - 'new_tasks_account_name': 'str', - 'source_account_name': 'str', - 'target_account_name': 'str' - } - - attribute_map = { - 'base_account_id': 'base_account_id', - 'copy_retention': 'copy_retention', - 'new_tasks_account': 'new_tasks_account', - 'source_account_id': 'source_account_id', - 'target_account_id': 'target_account_id', - 'target_base_path': 'target_base_path', - 'target_dataset_type': 'target_dataset_type', - 'base_account_name': 'base_account_name', - 'new_tasks_account_name': 'new_tasks_account_name', - 'source_account_name': 'source_account_name', - 'target_account_name': 'target_account_name' - } - - def __init__(self, base_account_id=None, copy_retention=None, new_tasks_account=None, source_account_id=None, target_account_id=None, target_base_path=None, target_dataset_type=None, base_account_name=None, new_tasks_account_name=None, source_account_name=None, target_account_name=None): # noqa: E501 - """DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended - a model defined in Swagger""" # noqa: E501 - - self._base_account_id = None - self._copy_retention = None - self._new_tasks_account = None - self._source_account_id = None - self._target_account_id = None - self._target_base_path = None - self._target_dataset_type = None - self._base_account_name = None - self._new_tasks_account_name = None - self._source_account_name = None - self._target_account_name = None - self.discriminator = None - - if base_account_id is not None: - self.base_account_id = base_account_id - if copy_retention is not None: - self.copy_retention = copy_retention - if new_tasks_account is not None: - self.new_tasks_account = new_tasks_account - if source_account_id is not None: - self.source_account_id = source_account_id - if target_account_id is not None: - self.target_account_id = target_account_id - if target_base_path is not None: - self.target_base_path = target_base_path - if target_dataset_type is not None: - self.target_dataset_type = target_dataset_type - if base_account_name is not None: - self.base_account_name = base_account_name - if new_tasks_account_name is not None: - self.new_tasks_account_name = new_tasks_account_name - if source_account_name is not None: - self.source_account_name = source_account_name - if target_account_name is not None: - self.target_account_name = target_account_name - - @property - def base_account_id(self): - """Gets the base_account_id of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - - Account ID (local or remote DM system) where the policy should be created. This is an optional field, if not specified it will be set to the local account ID. # noqa: E501 - - :return: The base_account_id of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - :rtype: str - """ - return self._base_account_id - - @base_account_id.setter - def base_account_id(self, base_account_id): - """Sets the base_account_id of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. - - Account ID (local or remote DM system) where the policy should be created. This is an optional field, if not specified it will be set to the local account ID. # noqa: E501 - - :param base_account_id: The base_account_id of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - :type: str - """ - if base_account_id is not None and len(base_account_id) > 48: - raise ValueError("Invalid value for `base_account_id`, length must be less than or equal to `48`") # noqa: E501 - if base_account_id is not None and len(base_account_id) < 2: - raise ValueError("Invalid value for `base_account_id`, length must be greater than or equal to `2`") # noqa: E501 - - self._base_account_id = base_account_id - - @property - def copy_retention(self): - """Gets the copy_retention of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - - # noqa: E501 - - :return: The copy_retention of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - :rtype: DatamoverBasePolicySrcDatasetRetention - """ - return self._copy_retention - - @copy_retention.setter - def copy_retention(self, copy_retention): - """Sets the copy_retention of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. - - # noqa: E501 - - :param copy_retention: The copy_retention of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - :type: DatamoverBasePolicySrcDatasetRetention - """ - - self._copy_retention = copy_retention - - @property - def new_tasks_account(self): - """Gets the new_tasks_account of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - - Account ID where to create all the tasks. This is an optional field, if not specified will be set to the local account ID. # noqa: E501 - - :return: The new_tasks_account of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - :rtype: str - """ - return self._new_tasks_account - - @new_tasks_account.setter - def new_tasks_account(self, new_tasks_account): - """Sets the new_tasks_account of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. - - Account ID where to create all the tasks. This is an optional field, if not specified will be set to the local account ID. # noqa: E501 - - :param new_tasks_account: The new_tasks_account of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - :type: str - """ - if new_tasks_account is not None and len(new_tasks_account) > 48: - raise ValueError("Invalid value for `new_tasks_account`, length must be less than or equal to `48`") # noqa: E501 - if new_tasks_account is not None and len(new_tasks_account) < 2: - raise ValueError("Invalid value for `new_tasks_account`, length must be greater than or equal to `2`") # noqa: E501 - - self._new_tasks_account = new_tasks_account - - @property - def source_account_id(self): - """Gets the source_account_id of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - - Account ID of the source data storage. # noqa: E501 - - :return: The source_account_id of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - :rtype: str - """ - return self._source_account_id - - @source_account_id.setter - def source_account_id(self, source_account_id): - """Sets the source_account_id of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. - - Account ID of the source data storage. # noqa: E501 - - :param source_account_id: The source_account_id of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - :type: str - """ - if source_account_id is not None and len(source_account_id) > 48: - raise ValueError("Invalid value for `source_account_id`, length must be less than or equal to `48`") # noqa: E501 - if source_account_id is not None and len(source_account_id) < 2: - raise ValueError("Invalid value for `source_account_id`, length must be greater than or equal to `2`") # noqa: E501 - - self._source_account_id = source_account_id - - @property - def target_account_id(self): - """Gets the target_account_id of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - - Account ID of the target data storage. # noqa: E501 - - :return: The target_account_id of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - :rtype: str - """ - return self._target_account_id - - @target_account_id.setter - def target_account_id(self, target_account_id): - """Sets the target_account_id of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. - - Account ID of the target data storage. # noqa: E501 - - :param target_account_id: The target_account_id of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - :type: str - """ - if target_account_id is not None and len(target_account_id) > 48: - raise ValueError("Invalid value for `target_account_id`, length must be less than or equal to `48`") # noqa: E501 - if target_account_id is not None and len(target_account_id) < 2: - raise ValueError("Invalid value for `target_account_id`, length must be greater than or equal to `2`") # noqa: E501 - - self._target_account_id = target_account_id - - @property - def target_base_path(self): - """Gets the target_base_path of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - - Base path on the target storage system. # noqa: E501 - - :return: The target_base_path of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - :rtype: str - """ - return self._target_base_path - - @target_base_path.setter - def target_base_path(self, target_base_path): - """Sets the target_base_path of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. - - Base path on the target storage system. # noqa: E501 - - :param target_base_path: The target_base_path of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - :type: str - """ - if target_base_path is not None and len(target_base_path) > 4096: - raise ValueError("Invalid value for `target_base_path`, length must be less than or equal to `4096`") # noqa: E501 - if target_base_path is not None and len(target_base_path) < 1: - raise ValueError("Invalid value for `target_base_path`, length must be greater than or equal to `1`") # noqa: E501 - - self._target_base_path = target_base_path - - @property - def target_dataset_type(self): - """Gets the target_dataset_type of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - - Dataset type from one of these: A file system on object store in a copy format, a file system on object store in a backup format or file on file dataset. # noqa: E501 - - :return: The target_dataset_type of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - :rtype: str - """ - return self._target_dataset_type - - @target_dataset_type.setter - def target_dataset_type(self, target_dataset_type): - """Sets the target_dataset_type of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. - - Dataset type from one of these: A file system on object store in a copy format, a file system on object store in a backup format or file on file dataset. # noqa: E501 - - :param target_dataset_type: The target_dataset_type of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - :type: str - """ - allowed_values = ["FILE_ON_OBJECT_COPY", "FILE_ON_OBJECT_BACKUP", "FILE"] # noqa: E501 - if target_dataset_type not in allowed_values: - raise ValueError( - "Invalid value for `target_dataset_type` ({0}), must be one of {1}" # noqa: E501 - .format(target_dataset_type, allowed_values) - ) - - self._target_dataset_type = target_dataset_type - - @property - def base_account_name(self): - """Gets the base_account_name of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - - Account name of the system on which the policy will be created. # noqa: E501 - - :return: The base_account_name of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - :rtype: str - """ - return self._base_account_name - - @base_account_name.setter - def base_account_name(self, base_account_name): - """Sets the base_account_name of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. - - Account name of the system on which the policy will be created. # noqa: E501 - - :param base_account_name: The base_account_name of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - :type: str - """ - if base_account_name is not None and len(base_account_name) > 255: - raise ValueError("Invalid value for `base_account_name`, length must be less than or equal to `255`") # noqa: E501 - if base_account_name is not None and len(base_account_name) < 1: - raise ValueError("Invalid value for `base_account_name`, length must be greater than or equal to `1`") # noqa: E501 - - self._base_account_name = base_account_name - - @property - def new_tasks_account_name(self): - """Gets the new_tasks_account_name of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - - Account name of the system on which to create tasks. # noqa: E501 - - :return: The new_tasks_account_name of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - :rtype: str - """ - return self._new_tasks_account_name - - @new_tasks_account_name.setter - def new_tasks_account_name(self, new_tasks_account_name): - """Sets the new_tasks_account_name of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. - - Account name of the system on which to create tasks. # noqa: E501 - - :param new_tasks_account_name: The new_tasks_account_name of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - :type: str - """ - if new_tasks_account_name is not None and len(new_tasks_account_name) > 255: - raise ValueError("Invalid value for `new_tasks_account_name`, length must be less than or equal to `255`") # noqa: E501 - if new_tasks_account_name is not None and len(new_tasks_account_name) < 1: - raise ValueError("Invalid value for `new_tasks_account_name`, length must be greater than or equal to `1`") # noqa: E501 - - self._new_tasks_account_name = new_tasks_account_name - - @property - def source_account_name(self): - """Gets the source_account_name of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - - Account name of the source data storage system. # noqa: E501 - - :return: The source_account_name of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - :rtype: str - """ - return self._source_account_name - - @source_account_name.setter - def source_account_name(self, source_account_name): - """Sets the source_account_name of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. - - Account name of the source data storage system. # noqa: E501 - - :param source_account_name: The source_account_name of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - :type: str - """ - if source_account_name is not None and len(source_account_name) > 255: - raise ValueError("Invalid value for `source_account_name`, length must be less than or equal to `255`") # noqa: E501 - if source_account_name is not None and len(source_account_name) < 1: - raise ValueError("Invalid value for `source_account_name`, length must be greater than or equal to `1`") # noqa: E501 - - self._source_account_name = source_account_name - - @property - def target_account_name(self): - """Gets the target_account_name of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - - Account name of the target data storage system. # noqa: E501 - - :return: The target_account_name of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - :rtype: str - """ - return self._target_account_name - - @target_account_name.setter - def target_account_name(self, target_account_name): - """Sets the target_account_name of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. - - Account name of the target data storage system. # noqa: E501 - - :param target_account_name: The target_account_name of this DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended. # noqa: E501 - :type: str - """ - if target_account_name is not None and len(target_account_name) > 255: - raise ValueError("Invalid value for `target_account_name`, length must be less than or equal to `255`") # noqa: E501 - if target_account_name is not None and len(target_account_name) < 1: - raise ValueError("Invalid value for `target_account_name`, length must be greater than or equal to `1`") # noqa: E501 - - self._target_account_name = target_account_name - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_creation_policy_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_creation_policy_extended.py deleted file mode 100644 index 9731605c6..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_creation_policy_extended.py +++ /dev/null @@ -1,247 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class DatamoverPolicyPolicySpecificAttrCreationPolicyExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'account_id': 'str', - 'base_path': 'str', - 'retention': 'DatamoverBasePolicySrcDatasetRetention', - 'account_name': 'str', - 'dataset_version': 'str' - } - - attribute_map = { - 'account_id': 'account_id', - 'base_path': 'base_path', - 'retention': 'retention', - 'account_name': 'account_name', - 'dataset_version': 'dataset_version' - } - - def __init__(self, account_id=None, base_path=None, retention=None, account_name=None, dataset_version=None): # noqa: E501 - """DatamoverPolicyPolicySpecificAttrCreationPolicyExtended - a model defined in Swagger""" # noqa: E501 - - self._account_id = None - self._base_path = None - self._retention = None - self._account_name = None - self._dataset_version = None - self.discriminator = None - - if account_id is not None: - self.account_id = account_id - if base_path is not None: - self.base_path = base_path - if retention is not None: - self.retention = retention - if account_name is not None: - self.account_name = account_name - if dataset_version is not None: - self.dataset_version = dataset_version - - @property - def account_id(self): - """Gets the account_id of this DatamoverPolicyPolicySpecificAttrCreationPolicyExtended. # noqa: E501 - - Account ID of the source storage system, where the dataset is to be created. # noqa: E501 - - :return: The account_id of this DatamoverPolicyPolicySpecificAttrCreationPolicyExtended. # noqa: E501 - :rtype: str - """ - return self._account_id - - @account_id.setter - def account_id(self, account_id): - """Sets the account_id of this DatamoverPolicyPolicySpecificAttrCreationPolicyExtended. - - Account ID of the source storage system, where the dataset is to be created. # noqa: E501 - - :param account_id: The account_id of this DatamoverPolicyPolicySpecificAttrCreationPolicyExtended. # noqa: E501 - :type: str - """ - if account_id is not None and len(account_id) > 48: - raise ValueError("Invalid value for `account_id`, length must be less than or equal to `48`") # noqa: E501 - if account_id is not None and len(account_id) < 2: - raise ValueError("Invalid value for `account_id`, length must be greater than or equal to `2`") # noqa: E501 - - self._account_id = account_id - - @property - def base_path(self): - """Gets the base_path of this DatamoverPolicyPolicySpecificAttrCreationPolicyExtended. # noqa: E501 - - Filesystem base path which has the directories/files for which dataset has to be created. # noqa: E501 - - :return: The base_path of this DatamoverPolicyPolicySpecificAttrCreationPolicyExtended. # noqa: E501 - :rtype: str - """ - return self._base_path - - @base_path.setter - def base_path(self, base_path): - """Sets the base_path of this DatamoverPolicyPolicySpecificAttrCreationPolicyExtended. - - Filesystem base path which has the directories/files for which dataset has to be created. # noqa: E501 - - :param base_path: The base_path of this DatamoverPolicyPolicySpecificAttrCreationPolicyExtended. # noqa: E501 - :type: str - """ - if base_path is not None and len(base_path) > 4096: - raise ValueError("Invalid value for `base_path`, length must be less than or equal to `4096`") # noqa: E501 - if base_path is not None and len(base_path) < 1: - raise ValueError("Invalid value for `base_path`, length must be greater than or equal to `1`") # noqa: E501 - - self._base_path = base_path - - @property - def retention(self): - """Gets the retention of this DatamoverPolicyPolicySpecificAttrCreationPolicyExtended. # noqa: E501 - - # noqa: E501 - - :return: The retention of this DatamoverPolicyPolicySpecificAttrCreationPolicyExtended. # noqa: E501 - :rtype: DatamoverBasePolicySrcDatasetRetention - """ - return self._retention - - @retention.setter - def retention(self, retention): - """Sets the retention of this DatamoverPolicyPolicySpecificAttrCreationPolicyExtended. - - # noqa: E501 - - :param retention: The retention of this DatamoverPolicyPolicySpecificAttrCreationPolicyExtended. # noqa: E501 - :type: DatamoverBasePolicySrcDatasetRetention - """ - - self._retention = retention - - @property - def account_name(self): - """Gets the account_name of this DatamoverPolicyPolicySpecificAttrCreationPolicyExtended. # noqa: E501 - - Account name of the source storage system, where the dataset is to be created. # noqa: E501 - - :return: The account_name of this DatamoverPolicyPolicySpecificAttrCreationPolicyExtended. # noqa: E501 - :rtype: str - """ - return self._account_name - - @account_name.setter - def account_name(self, account_name): - """Sets the account_name of this DatamoverPolicyPolicySpecificAttrCreationPolicyExtended. - - Account name of the source storage system, where the dataset is to be created. # noqa: E501 - - :param account_name: The account_name of this DatamoverPolicyPolicySpecificAttrCreationPolicyExtended. # noqa: E501 - :type: str - """ - if account_name is not None and len(account_name) > 255: - raise ValueError("Invalid value for `account_name`, length must be less than or equal to `255`") # noqa: E501 - if account_name is not None and len(account_name) < 1: - raise ValueError("Invalid value for `account_name`, length must be greater than or equal to `1`") # noqa: E501 - - self._account_name = account_name - - @property - def dataset_version(self): - """Gets the dataset_version of this DatamoverPolicyPolicySpecificAttrCreationPolicyExtended. # noqa: E501 - - The version of dataset. # noqa: E501 - - :return: The dataset_version of this DatamoverPolicyPolicySpecificAttrCreationPolicyExtended. # noqa: E501 - :rtype: str - """ - return self._dataset_version - - @dataset_version.setter - def dataset_version(self, dataset_version): - """Sets the dataset_version of this DatamoverPolicyPolicySpecificAttrCreationPolicyExtended. - - The version of dataset. # noqa: E501 - - :param dataset_version: The dataset_version of this DatamoverPolicyPolicySpecificAttrCreationPolicyExtended. # noqa: E501 - :type: str - """ - allowed_values = ["1", "2"] # noqa: E501 - if dataset_version not in allowed_values: - raise ValueError( - "Invalid value for `dataset_version` ({0}), must be one of {1}" # noqa: E501 - .format(dataset_version, allowed_values) - ) - - self._dataset_version = dataset_version - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(DatamoverPolicyPolicySpecificAttrCreationPolicyExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, DatamoverPolicyPolicySpecificAttrCreationPolicyExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_expiration_policy_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_expiration_policy_extended.py deleted file mode 100644 index c9d769511..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_expiration_policy_extended.py +++ /dev/null @@ -1,153 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class DatamoverPolicyPolicySpecificAttrExpirationPolicyExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'account_id': 'str', - 'account_name': 'str' - } - - attribute_map = { - 'account_id': 'account_id', - 'account_name': 'account_name' - } - - def __init__(self, account_id=None, account_name=None): # noqa: E501 - """DatamoverPolicyPolicySpecificAttrExpirationPolicyExtended - a model defined in Swagger""" # noqa: E501 - - self._account_id = None - self._account_name = None - self.discriminator = None - - if account_id is not None: - self.account_id = account_id - if account_name is not None: - self.account_name = account_name - - @property - def account_id(self): - """Gets the account_id of this DatamoverPolicyPolicySpecificAttrExpirationPolicyExtended. # noqa: E501 - - The account where this expiration policy is to be run. # noqa: E501 - - :return: The account_id of this DatamoverPolicyPolicySpecificAttrExpirationPolicyExtended. # noqa: E501 - :rtype: str - """ - return self._account_id - - @account_id.setter - def account_id(self, account_id): - """Sets the account_id of this DatamoverPolicyPolicySpecificAttrExpirationPolicyExtended. - - The account where this expiration policy is to be run. # noqa: E501 - - :param account_id: The account_id of this DatamoverPolicyPolicySpecificAttrExpirationPolicyExtended. # noqa: E501 - :type: str - """ - if account_id is not None and len(account_id) > 48: - raise ValueError("Invalid value for `account_id`, length must be less than or equal to `48`") # noqa: E501 - if account_id is not None and len(account_id) < 2: - raise ValueError("Invalid value for `account_id`, length must be greater than or equal to `2`") # noqa: E501 - - self._account_id = account_id - - @property - def account_name(self): - """Gets the account_name of this DatamoverPolicyPolicySpecificAttrExpirationPolicyExtended. # noqa: E501 - - The account name of the system on which this expiration policy is to be run. # noqa: E501 - - :return: The account_name of this DatamoverPolicyPolicySpecificAttrExpirationPolicyExtended. # noqa: E501 - :rtype: str - """ - return self._account_name - - @account_name.setter - def account_name(self, account_name): - """Sets the account_name of this DatamoverPolicyPolicySpecificAttrExpirationPolicyExtended. - - The account name of the system on which this expiration policy is to be run. # noqa: E501 - - :param account_name: The account_name of this DatamoverPolicyPolicySpecificAttrExpirationPolicyExtended. # noqa: E501 - :type: str - """ - if account_name is not None and len(account_name) > 255: - raise ValueError("Invalid value for `account_name`, length must be less than or equal to `255`") # noqa: E501 - if account_name is not None and len(account_name) < 1: - raise ValueError("Invalid value for `account_name`, length must be greater than or equal to `1`") # noqa: E501 - - self._account_name = account_name - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(DatamoverPolicyPolicySpecificAttrExpirationPolicyExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, DatamoverPolicyPolicySpecificAttrExpirationPolicyExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_repeat_copy_policy_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_repeat_copy_policy_extended.py deleted file mode 100644 index 1ca75ec57..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_repeat_copy_policy_extended.py +++ /dev/null @@ -1,207 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'dataset_copy_policy_base': 'DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended', - 'reconnect': 'bool', - 'rpo_alert': 'int', - 'source_base_path': 'str' - } - - attribute_map = { - 'dataset_copy_policy_base': 'dataset_copy_policy_base', - 'reconnect': 'reconnect', - 'rpo_alert': 'rpo_alert', - 'source_base_path': 'source_base_path' - } - - def __init__(self, dataset_copy_policy_base=None, reconnect=None, rpo_alert=None, source_base_path=None): # noqa: E501 - """DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended - a model defined in Swagger""" # noqa: E501 - - self._dataset_copy_policy_base = None - self._reconnect = None - self._rpo_alert = None - self._source_base_path = None - self.discriminator = None - - if dataset_copy_policy_base is not None: - self.dataset_copy_policy_base = dataset_copy_policy_base - if reconnect is not None: - self.reconnect = reconnect - if rpo_alert is not None: - self.rpo_alert = rpo_alert - if source_base_path is not None: - self.source_base_path = source_base_path - - @property - def dataset_copy_policy_base(self): - """Gets the dataset_copy_policy_base of this DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended. # noqa: E501 - - # noqa: E501 - - :return: The dataset_copy_policy_base of this DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended. # noqa: E501 - :rtype: DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended - """ - return self._dataset_copy_policy_base - - @dataset_copy_policy_base.setter - def dataset_copy_policy_base(self, dataset_copy_policy_base): - """Sets the dataset_copy_policy_base of this DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended. - - # noqa: E501 - - :param dataset_copy_policy_base: The dataset_copy_policy_base of this DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended. # noqa: E501 - :type: DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended - """ - - self._dataset_copy_policy_base = dataset_copy_policy_base - - @property - def reconnect(self): - """Gets the reconnect of this DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended. # noqa: E501 - - This boolean allows starting with incremental syncs and skipping the initial baseline sync if the target base path contains a leaf dataset which is an ancestor of a source base path dataset. # noqa: E501 - - :return: The reconnect of this DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended. # noqa: E501 - :rtype: bool - """ - return self._reconnect - - @reconnect.setter - def reconnect(self, reconnect): - """Sets the reconnect of this DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended. - - This boolean allows starting with incremental syncs and skipping the initial baseline sync if the target base path contains a leaf dataset which is an ancestor of a source base path dataset. # noqa: E501 - - :param reconnect: The reconnect of this DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended. # noqa: E501 - :type: bool - """ - - self._reconnect = reconnect - - @property - def rpo_alert(self): - """Gets the rpo_alert of this DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended. # noqa: E501 - - RPO alert duration in seconds # noqa: E501 - - :return: The rpo_alert of this DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended. # noqa: E501 - :rtype: int - """ - return self._rpo_alert - - @rpo_alert.setter - def rpo_alert(self, rpo_alert): - """Sets the rpo_alert of this DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended. - - RPO alert duration in seconds # noqa: E501 - - :param rpo_alert: The rpo_alert of this DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended. # noqa: E501 - :type: int - """ - if rpo_alert is not None and rpo_alert > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `rpo_alert`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if rpo_alert is not None and rpo_alert < 0: # noqa: E501 - raise ValueError("Invalid value for `rpo_alert`, must be a value greater than or equal to `0`") # noqa: E501 - - self._rpo_alert = rpo_alert - - @property - def source_base_path(self): - """Gets the source_base_path of this DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended. # noqa: E501 - - - :return: The source_base_path of this DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended. # noqa: E501 - :rtype: str - """ - return self._source_base_path - - @source_base_path.setter - def source_base_path(self, source_base_path): - """Sets the source_base_path of this DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended. - - - :param source_base_path: The source_base_path of this DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended. # noqa: E501 - :type: str - """ - if source_base_path is not None and len(source_base_path) > 4096: - raise ValueError("Invalid value for `source_base_path`, length must be less than or equal to `4096`") # noqa: E501 - if source_base_path is not None and len(source_base_path) < 1: - raise ValueError("Invalid value for `source_base_path`, length must be greater than or equal to `1`") # noqa: E501 - - self._source_base_path = source_base_path - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_schedule.py b/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_schedule.py deleted file mode 100644 index 5b00eec95..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_schedule.py +++ /dev/null @@ -1,179 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class DatamoverPolicySchedule(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'date_times': 'list[str]', - 'recurrence': 'list[str]', - 'start_time': 'str' - } - - attribute_map = { - 'date_times': 'date_times', - 'recurrence': 'recurrence', - 'start_time': 'start_time' - } - - def __init__(self, date_times=None, recurrence=None, start_time=None): # noqa: E501 - """DatamoverPolicySchedule - a model defined in Swagger""" # noqa: E501 - - self._date_times = None - self._recurrence = None - self._start_time = None - self.discriminator = None - - if date_times is not None: - self.date_times = date_times - if recurrence is not None: - self.recurrence = recurrence - if start_time is not None: - self.start_time = start_time - - @property - def date_times(self): - """Gets the date_times of this DatamoverPolicySchedule. # noqa: E501 - - The specific date/times at which this policy should run regardless of the start_time and recurrence. # noqa: E501 - - :return: The date_times of this DatamoverPolicySchedule. # noqa: E501 - :rtype: list[str] - """ - return self._date_times - - @date_times.setter - def date_times(self, date_times): - """Sets the date_times of this DatamoverPolicySchedule. - - The specific date/times at which this policy should run regardless of the start_time and recurrence. # noqa: E501 - - :param date_times: The date_times of this DatamoverPolicySchedule. # noqa: E501 - :type: list[str] - """ - - self._date_times = date_times - - @property - def recurrence(self): - """Gets the recurrence of this DatamoverPolicySchedule. # noqa: E501 - - The cron expression to represent a repetitive schedule for the policy w.r.t. start_time. # noqa: E501 - - :return: The recurrence of this DatamoverPolicySchedule. # noqa: E501 - :rtype: list[str] - """ - return self._recurrence - - @recurrence.setter - def recurrence(self, recurrence): - """Sets the recurrence of this DatamoverPolicySchedule. - - The cron expression to represent a repetitive schedule for the policy w.r.t. start_time. # noqa: E501 - - :param recurrence: The recurrence of this DatamoverPolicySchedule. # noqa: E501 - :type: list[str] - """ - - self._recurrence = recurrence - - @property - def start_time(self): - """Gets the start_time of this DatamoverPolicySchedule. # noqa: E501 - - The date/time of the first run of the policy. It should be in 'yyyy-mm-dd hh:mn:ss' format, where year range is 2001-2099. # noqa: E501 - - :return: The start_time of this DatamoverPolicySchedule. # noqa: E501 - :rtype: str - """ - return self._start_time - - @start_time.setter - def start_time(self, start_time): - """Sets the start_time of this DatamoverPolicySchedule. - - The date/time of the first run of the policy. It should be in 'yyyy-mm-dd hh:mn:ss' format, where year range is 2001-2099. # noqa: E501 - - :param start_time: The start_time of this DatamoverPolicySchedule. # noqa: E501 - :type: str - """ - if start_time is not None and len(start_time) > 19: - raise ValueError("Invalid value for `start_time`, length must be less than or equal to `19`") # noqa: E501 - if start_time is not None and len(start_time) < 0: - raise ValueError("Invalid value for `start_time`, length must be greater than or equal to `0`") # noqa: E501 - if start_time is not None and not re.search(r'^$|20[0-9][0-9]-1[0-2]|[1-9]-3[01]|[12][0-9]|0?[1-9] 2[0-3]|1[0-9]|0?[0-9]:[0-5]?[0-9]:[0-5]?[0-9]', start_time): # noqa: E501 - raise ValueError(r"Invalid value for `start_time`, must be a follow pattern or equal to `/^$|20[0-9][0-9]-1[0-2]|[1-9]-3[01]|[12][0-9]|0?[1-9] 2[0-3]|1[0-9]|0?[0-9]:[0-5]?[0-9]:[0-5]?[0-9]/`") # noqa: E501 - - self._start_time = start_time - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(DatamoverPolicySchedule, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, DatamoverPolicySchedule): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_workload.py b/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_workload.py deleted file mode 100644 index 80fd53fac..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_workload.py +++ /dev/null @@ -1,309 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class DatasetWorkload(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'client_impact': 'int', - 'cluster_resource_impact': 'int', - 'limits': 'DatasetWorkloadLimits', - 'max_cpu_us': 'int', - 'max_disk_reads': 'int', - 'max_disk_writes': 'int', - 'name': 'str' - } - - attribute_map = { - 'client_impact': 'client_impact', - 'cluster_resource_impact': 'cluster_resource_impact', - 'limits': 'limits', - 'max_cpu_us': 'max_cpu_us', - 'max_disk_reads': 'max_disk_reads', - 'max_disk_writes': 'max_disk_writes', - 'name': 'name' - } - - def __init__(self, client_impact=None, cluster_resource_impact=None, limits=None, max_cpu_us=None, max_disk_reads=None, max_disk_writes=None, name=None): # noqa: E501 - """DatasetWorkload - a model defined in Swagger""" # noqa: E501 - - self._client_impact = None - self._cluster_resource_impact = None - self._limits = None - self._max_cpu_us = None - self._max_disk_reads = None - self._max_disk_writes = None - self._name = None - self.discriminator = None - - if client_impact is not None: - self.client_impact = client_impact - if cluster_resource_impact is not None: - self.cluster_resource_impact = cluster_resource_impact - if limits is not None: - self.limits = limits - if max_cpu_us is not None: - self.max_cpu_us = max_cpu_us - if max_disk_reads is not None: - self.max_disk_reads = max_disk_reads - if max_disk_writes is not None: - self.max_disk_writes = max_disk_writes - if name is not None: - self.name = name - - @property - def client_impact(self): - """Gets the client_impact of this DatasetWorkload. # noqa: E501 - - The desired workload's impact on the system. Specified by the Job Engine. # noqa: E501 - - :return: The client_impact of this DatasetWorkload. # noqa: E501 - :rtype: int - """ - return self._client_impact - - @client_impact.setter - def client_impact(self, client_impact): - """Sets the client_impact of this DatasetWorkload. - - The desired workload's impact on the system. Specified by the Job Engine. # noqa: E501 - - :param client_impact: The client_impact of this DatasetWorkload. # noqa: E501 - :type: int - """ - if client_impact is not None and client_impact > 10: # noqa: E501 - raise ValueError("Invalid value for `client_impact`, must be a value less than or equal to `10`") # noqa: E501 - if client_impact is not None and client_impact < 0: # noqa: E501 - raise ValueError("Invalid value for `client_impact`, must be a value greater than or equal to `0`") # noqa: E501 - - self._client_impact = client_impact - - @property - def cluster_resource_impact(self): - """Gets the cluster_resource_impact of this DatasetWorkload. # noqa: E501 - - The desired workload's impact on the system. Specified by the Job Engine. # noqa: E501 - - :return: The cluster_resource_impact of this DatasetWorkload. # noqa: E501 - :rtype: int - """ - return self._cluster_resource_impact - - @cluster_resource_impact.setter - def cluster_resource_impact(self, cluster_resource_impact): - """Sets the cluster_resource_impact of this DatasetWorkload. - - The desired workload's impact on the system. Specified by the Job Engine. # noqa: E501 - - :param cluster_resource_impact: The cluster_resource_impact of this DatasetWorkload. # noqa: E501 - :type: int - """ - if cluster_resource_impact is not None and cluster_resource_impact > 10: # noqa: E501 - raise ValueError("Invalid value for `cluster_resource_impact`, must be a value less than or equal to `10`") # noqa: E501 - if cluster_resource_impact is not None and cluster_resource_impact < 0: # noqa: E501 - raise ValueError("Invalid value for `cluster_resource_impact`, must be a value greater than or equal to `0`") # noqa: E501 - - self._cluster_resource_impact = cluster_resource_impact - - @property - def limits(self): - """Gets the limits of this DatasetWorkload. # noqa: E501 - - Performance limits for a workload # noqa: E501 - - :return: The limits of this DatasetWorkload. # noqa: E501 - :rtype: DatasetWorkloadLimits - """ - return self._limits - - @limits.setter - def limits(self, limits): - """Sets the limits of this DatasetWorkload. - - Performance limits for a workload # noqa: E501 - - :param limits: The limits of this DatasetWorkload. # noqa: E501 - :type: DatasetWorkloadLimits - """ - - self._limits = limits - - @property - def max_cpu_us(self): - """Gets the max_cpu_us of this DatasetWorkload. # noqa: E501 - - The CPU usage limit for a workload in microseconds. # noqa: E501 - - :return: The max_cpu_us of this DatasetWorkload. # noqa: E501 - :rtype: int - """ - return self._max_cpu_us - - @max_cpu_us.setter - def max_cpu_us(self, max_cpu_us): - """Sets the max_cpu_us of this DatasetWorkload. - - The CPU usage limit for a workload in microseconds. # noqa: E501 - - :param max_cpu_us: The max_cpu_us of this DatasetWorkload. # noqa: E501 - :type: int - """ - if max_cpu_us is not None and max_cpu_us > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `max_cpu_us`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if max_cpu_us is not None and max_cpu_us < 1000: # noqa: E501 - raise ValueError("Invalid value for `max_cpu_us`, must be a value greater than or equal to `1000`") # noqa: E501 - - self._max_cpu_us = max_cpu_us - - @property - def max_disk_reads(self): - """Gets the max_disk_reads of this DatasetWorkload. # noqa: E501 - - The disk read operation limit for a workload. # noqa: E501 - - :return: The max_disk_reads of this DatasetWorkload. # noqa: E501 - :rtype: int - """ - return self._max_disk_reads - - @max_disk_reads.setter - def max_disk_reads(self, max_disk_reads): - """Sets the max_disk_reads of this DatasetWorkload. - - The disk read operation limit for a workload. # noqa: E501 - - :param max_disk_reads: The max_disk_reads of this DatasetWorkload. # noqa: E501 - :type: int - """ - if max_disk_reads is not None and max_disk_reads > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `max_disk_reads`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if max_disk_reads is not None and max_disk_reads < 1000: # noqa: E501 - raise ValueError("Invalid value for `max_disk_reads`, must be a value greater than or equal to `1000`") # noqa: E501 - - self._max_disk_reads = max_disk_reads - - @property - def max_disk_writes(self): - """Gets the max_disk_writes of this DatasetWorkload. # noqa: E501 - - The disk write operation limit for a workload. # noqa: E501 - - :return: The max_disk_writes of this DatasetWorkload. # noqa: E501 - :rtype: int - """ - return self._max_disk_writes - - @max_disk_writes.setter - def max_disk_writes(self, max_disk_writes): - """Sets the max_disk_writes of this DatasetWorkload. - - The disk write operation limit for a workload. # noqa: E501 - - :param max_disk_writes: The max_disk_writes of this DatasetWorkload. # noqa: E501 - :type: int - """ - if max_disk_writes is not None and max_disk_writes > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `max_disk_writes`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if max_disk_writes is not None and max_disk_writes < 1000: # noqa: E501 - raise ValueError("Invalid value for `max_disk_writes`, must be a value greater than or equal to `1000`") # noqa: E501 - - self._max_disk_writes = max_disk_writes - - @property - def name(self): - """Gets the name of this DatasetWorkload. # noqa: E501 - - The name of the workload. User specified. # noqa: E501 - - :return: The name of this DatasetWorkload. # noqa: E501 - :rtype: str - """ - return self._name - - @name.setter - def name(self, name): - """Sets the name of this DatasetWorkload. - - The name of the workload. User specified. # noqa: E501 - - :param name: The name of this DatasetWorkload. # noqa: E501 - :type: str - """ - if name is not None and len(name) > 80: - raise ValueError("Invalid value for `name`, length must be less than or equal to `80`") # noqa: E501 - if name is not None and len(name) < 1: - raise ValueError("Invalid value for `name`, length must be greater than or equal to `1`") # noqa: E501 - - self._name = name - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(DatasetWorkload, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, DatasetWorkload): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_workload_create_params.py b/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_workload_create_params.py deleted file mode 100644 index 79af1ee7f..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_workload_create_params.py +++ /dev/null @@ -1,338 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class DatasetWorkloadCreateParams(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'client_impact': 'int', - 'cluster_resource_impact': 'int', - 'limits': 'DatasetWorkloadLimits', - 'max_cpu_us': 'int', - 'max_disk_reads': 'int', - 'max_disk_writes': 'int', - 'name': 'str', - 'metric_values': 'DatasetFilterMetricValuesCreateParams' - } - - attribute_map = { - 'client_impact': 'client_impact', - 'cluster_resource_impact': 'cluster_resource_impact', - 'limits': 'limits', - 'max_cpu_us': 'max_cpu_us', - 'max_disk_reads': 'max_disk_reads', - 'max_disk_writes': 'max_disk_writes', - 'name': 'name', - 'metric_values': 'metric_values' - } - - def __init__(self, client_impact=None, cluster_resource_impact=None, limits=None, max_cpu_us=None, max_disk_reads=None, max_disk_writes=None, name=None, metric_values=None): # noqa: E501 - """DatasetWorkloadCreateParams - a model defined in Swagger""" # noqa: E501 - - self._client_impact = None - self._cluster_resource_impact = None - self._limits = None - self._max_cpu_us = None - self._max_disk_reads = None - self._max_disk_writes = None - self._name = None - self._metric_values = None - self.discriminator = None - - if client_impact is not None: - self.client_impact = client_impact - if cluster_resource_impact is not None: - self.cluster_resource_impact = cluster_resource_impact - if limits is not None: - self.limits = limits - if max_cpu_us is not None: - self.max_cpu_us = max_cpu_us - if max_disk_reads is not None: - self.max_disk_reads = max_disk_reads - if max_disk_writes is not None: - self.max_disk_writes = max_disk_writes - if name is not None: - self.name = name - self.metric_values = metric_values - - @property - def client_impact(self): - """Gets the client_impact of this DatasetWorkloadCreateParams. # noqa: E501 - - The desired workload's impact on the system. Specified by the Job Engine. # noqa: E501 - - :return: The client_impact of this DatasetWorkloadCreateParams. # noqa: E501 - :rtype: int - """ - return self._client_impact - - @client_impact.setter - def client_impact(self, client_impact): - """Sets the client_impact of this DatasetWorkloadCreateParams. - - The desired workload's impact on the system. Specified by the Job Engine. # noqa: E501 - - :param client_impact: The client_impact of this DatasetWorkloadCreateParams. # noqa: E501 - :type: int - """ - if client_impact is not None and client_impact > 10: # noqa: E501 - raise ValueError("Invalid value for `client_impact`, must be a value less than or equal to `10`") # noqa: E501 - if client_impact is not None and client_impact < 0: # noqa: E501 - raise ValueError("Invalid value for `client_impact`, must be a value greater than or equal to `0`") # noqa: E501 - - self._client_impact = client_impact - - @property - def cluster_resource_impact(self): - """Gets the cluster_resource_impact of this DatasetWorkloadCreateParams. # noqa: E501 - - The desired workload's impact on the system. Specified by the Job Engine. # noqa: E501 - - :return: The cluster_resource_impact of this DatasetWorkloadCreateParams. # noqa: E501 - :rtype: int - """ - return self._cluster_resource_impact - - @cluster_resource_impact.setter - def cluster_resource_impact(self, cluster_resource_impact): - """Sets the cluster_resource_impact of this DatasetWorkloadCreateParams. - - The desired workload's impact on the system. Specified by the Job Engine. # noqa: E501 - - :param cluster_resource_impact: The cluster_resource_impact of this DatasetWorkloadCreateParams. # noqa: E501 - :type: int - """ - if cluster_resource_impact is not None and cluster_resource_impact > 10: # noqa: E501 - raise ValueError("Invalid value for `cluster_resource_impact`, must be a value less than or equal to `10`") # noqa: E501 - if cluster_resource_impact is not None and cluster_resource_impact < 0: # noqa: E501 - raise ValueError("Invalid value for `cluster_resource_impact`, must be a value greater than or equal to `0`") # noqa: E501 - - self._cluster_resource_impact = cluster_resource_impact - - @property - def limits(self): - """Gets the limits of this DatasetWorkloadCreateParams. # noqa: E501 - - Performance limits for a workload # noqa: E501 - - :return: The limits of this DatasetWorkloadCreateParams. # noqa: E501 - :rtype: DatasetWorkloadLimits - """ - return self._limits - - @limits.setter - def limits(self, limits): - """Sets the limits of this DatasetWorkloadCreateParams. - - Performance limits for a workload # noqa: E501 - - :param limits: The limits of this DatasetWorkloadCreateParams. # noqa: E501 - :type: DatasetWorkloadLimits - """ - - self._limits = limits - - @property - def max_cpu_us(self): - """Gets the max_cpu_us of this DatasetWorkloadCreateParams. # noqa: E501 - - The CPU usage limit for a workload in microseconds. # noqa: E501 - - :return: The max_cpu_us of this DatasetWorkloadCreateParams. # noqa: E501 - :rtype: int - """ - return self._max_cpu_us - - @max_cpu_us.setter - def max_cpu_us(self, max_cpu_us): - """Sets the max_cpu_us of this DatasetWorkloadCreateParams. - - The CPU usage limit for a workload in microseconds. # noqa: E501 - - :param max_cpu_us: The max_cpu_us of this DatasetWorkloadCreateParams. # noqa: E501 - :type: int - """ - if max_cpu_us is not None and max_cpu_us > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `max_cpu_us`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if max_cpu_us is not None and max_cpu_us < 1000: # noqa: E501 - raise ValueError("Invalid value for `max_cpu_us`, must be a value greater than or equal to `1000`") # noqa: E501 - - self._max_cpu_us = max_cpu_us - - @property - def max_disk_reads(self): - """Gets the max_disk_reads of this DatasetWorkloadCreateParams. # noqa: E501 - - The disk read operation limit for a workload. # noqa: E501 - - :return: The max_disk_reads of this DatasetWorkloadCreateParams. # noqa: E501 - :rtype: int - """ - return self._max_disk_reads - - @max_disk_reads.setter - def max_disk_reads(self, max_disk_reads): - """Sets the max_disk_reads of this DatasetWorkloadCreateParams. - - The disk read operation limit for a workload. # noqa: E501 - - :param max_disk_reads: The max_disk_reads of this DatasetWorkloadCreateParams. # noqa: E501 - :type: int - """ - if max_disk_reads is not None and max_disk_reads > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `max_disk_reads`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if max_disk_reads is not None and max_disk_reads < 1000: # noqa: E501 - raise ValueError("Invalid value for `max_disk_reads`, must be a value greater than or equal to `1000`") # noqa: E501 - - self._max_disk_reads = max_disk_reads - - @property - def max_disk_writes(self): - """Gets the max_disk_writes of this DatasetWorkloadCreateParams. # noqa: E501 - - The disk write operation limit for a workload. # noqa: E501 - - :return: The max_disk_writes of this DatasetWorkloadCreateParams. # noqa: E501 - :rtype: int - """ - return self._max_disk_writes - - @max_disk_writes.setter - def max_disk_writes(self, max_disk_writes): - """Sets the max_disk_writes of this DatasetWorkloadCreateParams. - - The disk write operation limit for a workload. # noqa: E501 - - :param max_disk_writes: The max_disk_writes of this DatasetWorkloadCreateParams. # noqa: E501 - :type: int - """ - if max_disk_writes is not None and max_disk_writes > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `max_disk_writes`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if max_disk_writes is not None and max_disk_writes < 1000: # noqa: E501 - raise ValueError("Invalid value for `max_disk_writes`, must be a value greater than or equal to `1000`") # noqa: E501 - - self._max_disk_writes = max_disk_writes - - @property - def name(self): - """Gets the name of this DatasetWorkloadCreateParams. # noqa: E501 - - The name of the workload. User specified. # noqa: E501 - - :return: The name of this DatasetWorkloadCreateParams. # noqa: E501 - :rtype: str - """ - return self._name - - @name.setter - def name(self, name): - """Sets the name of this DatasetWorkloadCreateParams. - - The name of the workload. User specified. # noqa: E501 - - :param name: The name of this DatasetWorkloadCreateParams. # noqa: E501 - :type: str - """ - if name is not None and len(name) > 80: - raise ValueError("Invalid value for `name`, length must be less than or equal to `80`") # noqa: E501 - if name is not None and len(name) < 1: - raise ValueError("Invalid value for `name`, length must be greater than or equal to `1`") # noqa: E501 - - self._name = name - - @property - def metric_values(self): - """Gets the metric_values of this DatasetWorkloadCreateParams. # noqa: E501 - - Configurable metrics. # noqa: E501 - - :return: The metric_values of this DatasetWorkloadCreateParams. # noqa: E501 - :rtype: DatasetFilterMetricValuesCreateParams - """ - return self._metric_values - - @metric_values.setter - def metric_values(self, metric_values): - """Sets the metric_values of this DatasetWorkloadCreateParams. - - Configurable metrics. # noqa: E501 - - :param metric_values: The metric_values of this DatasetWorkloadCreateParams. # noqa: E501 - :type: DatasetFilterMetricValuesCreateParams - """ - if metric_values is None: - raise ValueError("Invalid value for `metric_values`, must not be `None`") # noqa: E501 - - self._metric_values = metric_values - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(DatasetWorkloadCreateParams, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, DatasetWorkloadCreateParams): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_workload_limits.py b/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_workload_limits.py deleted file mode 100644 index 77fe53042..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_workload_limits.py +++ /dev/null @@ -1,121 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class DatasetWorkloadLimits(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'protocol_ops': 'int' - } - - attribute_map = { - 'protocol_ops': 'protocol_ops' - } - - def __init__(self, protocol_ops=None): # noqa: E501 - """DatasetWorkloadLimits - a model defined in Swagger""" # noqa: E501 - - self._protocol_ops = None - self.discriminator = None - - if protocol_ops is not None: - self.protocol_ops = protocol_ops - - @property - def protocol_ops(self): - """Gets the protocol_ops of this DatasetWorkloadLimits. # noqa: E501 - - The protocol ops limit for a workload. # noqa: E501 - - :return: The protocol_ops of this DatasetWorkloadLimits. # noqa: E501 - :rtype: int - """ - return self._protocol_ops - - @protocol_ops.setter - def protocol_ops(self, protocol_ops): - """Sets the protocol_ops of this DatasetWorkloadLimits. - - The protocol ops limit for a workload. # noqa: E501 - - :param protocol_ops: The protocol_ops of this DatasetWorkloadLimits. # noqa: E501 - :type: int - """ - if protocol_ops is not None and protocol_ops > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `protocol_ops`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if protocol_ops is not None and protocol_ops < 0: # noqa: E501 - raise ValueError("Invalid value for `protocol_ops`, must be a value greater than or equal to `0`") # noqa: E501 - - self._protocol_ops = protocol_ops - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(DatasetWorkloadLimits, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, DatasetWorkloadLimits): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather.py b/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather.py deleted file mode 100644 index 4affc7ac8..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather.py +++ /dev/null @@ -1,117 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class DiagnosticsGather(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'gather': 'DiagnosticsGatherGather' - } - - attribute_map = { - 'gather': 'gather' - } - - def __init__(self, gather=None): # noqa: E501 - """DiagnosticsGather - a model defined in Swagger""" # noqa: E501 - - self._gather = None - self.discriminator = None - - if gather is not None: - self.gather = gather - - @property - def gather(self): - """Gets the gather of this DiagnosticsGather. # noqa: E501 - - # noqa: E501 - - :return: The gather of this DiagnosticsGather. # noqa: E501 - :rtype: DiagnosticsGatherGather - """ - return self._gather - - @gather.setter - def gather(self, gather): - """Sets the gather of this DiagnosticsGather. - - # noqa: E501 - - :param gather: The gather of this DiagnosticsGather. # noqa: E501 - :type: DiagnosticsGatherGather - """ - - self._gather = gather - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(DiagnosticsGather, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, DiagnosticsGather): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_start_item.py b/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_start_item.py deleted file mode 100644 index 349c3cc19..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_start_item.py +++ /dev/null @@ -1,827 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class DiagnosticsGatherStartItem(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'connectivity': 'bool', - 'esrs': 'bool', - 'ftp_upload': 'bool', - 'ftp_upload_host': 'str', - 'ftp_upload_insecure': 'bool', - 'ftp_upload_mode': 'str', - 'ftp_upload_pass': 'str', - 'ftp_upload_path': 'str', - 'ftp_upload_proxy': 'str', - 'ftp_upload_proxy_port': 'int', - 'ftp_upload_ssl_cert': 'str', - 'ftp_upload_user': 'str', - 'ftp_upload_webui_default': 'bool', - 'gather_begin': 'str', - 'gather_mode': 'str', - 'gather_past': 'str', - 'group': 'str', - 'http_insecure_upload': 'bool', - 'http_upload': 'bool', - 'http_upload_host': 'str', - 'http_upload_path': 'str', - 'http_upload_proxy': 'str', - 'http_upload_proxy_port': 'int', - 'reference': 'str', - 'upload': 'bool' - } - - attribute_map = { - 'connectivity': 'connectivity', - 'esrs': 'esrs', - 'ftp_upload': 'ftp_upload', - 'ftp_upload_host': 'ftp_upload_host', - 'ftp_upload_insecure': 'ftp_upload_insecure', - 'ftp_upload_mode': 'ftp_upload_mode', - 'ftp_upload_pass': 'ftp_upload_pass', - 'ftp_upload_path': 'ftp_upload_path', - 'ftp_upload_proxy': 'ftp_upload_proxy', - 'ftp_upload_proxy_port': 'ftp_upload_proxy_port', - 'ftp_upload_ssl_cert': 'ftp_upload_ssl_cert', - 'ftp_upload_user': 'ftp_upload_user', - 'ftp_upload_webui_default': 'ftp_upload_webui_default', - 'gather_begin': 'gather_begin', - 'gather_mode': 'gather_mode', - 'gather_past': 'gather_past', - 'group': 'group', - 'http_insecure_upload': 'http_insecure_upload', - 'http_upload': 'http_upload', - 'http_upload_host': 'http_upload_host', - 'http_upload_path': 'http_upload_path', - 'http_upload_proxy': 'http_upload_proxy', - 'http_upload_proxy_port': 'http_upload_proxy_port', - 'reference': 'reference', - 'upload': 'upload' - } - - def __init__(self, connectivity=None, esrs=None, ftp_upload=None, ftp_upload_host=None, ftp_upload_insecure=None, ftp_upload_mode=None, ftp_upload_pass=None, ftp_upload_path=None, ftp_upload_proxy=None, ftp_upload_proxy_port=None, ftp_upload_ssl_cert=None, ftp_upload_user=None, ftp_upload_webui_default=None, gather_begin=None, gather_mode=None, gather_past=None, group=None, http_insecure_upload=None, http_upload=None, http_upload_host=None, http_upload_path=None, http_upload_proxy=None, http_upload_proxy_port=None, reference=None, upload=None): # noqa: E501 - """DiagnosticsGatherStartItem - a model defined in Swagger""" # noqa: E501 - - self._connectivity = None - self._esrs = None - self._ftp_upload = None - self._ftp_upload_host = None - self._ftp_upload_insecure = None - self._ftp_upload_mode = None - self._ftp_upload_pass = None - self._ftp_upload_path = None - self._ftp_upload_proxy = None - self._ftp_upload_proxy_port = None - self._ftp_upload_ssl_cert = None - self._ftp_upload_user = None - self._ftp_upload_webui_default = None - self._gather_begin = None - self._gather_mode = None - self._gather_past = None - self._group = None - self._http_insecure_upload = None - self._http_upload = None - self._http_upload_host = None - self._http_upload_path = None - self._http_upload_proxy = None - self._http_upload_proxy_port = None - self._reference = None - self._upload = None - self.discriminator = None - - if connectivity is not None: - self.connectivity = connectivity - if esrs is not None: - self.esrs = esrs - if ftp_upload is not None: - self.ftp_upload = ftp_upload - if ftp_upload_host is not None: - self.ftp_upload_host = ftp_upload_host - if ftp_upload_insecure is not None: - self.ftp_upload_insecure = ftp_upload_insecure - if ftp_upload_mode is not None: - self.ftp_upload_mode = ftp_upload_mode - if ftp_upload_pass is not None: - self.ftp_upload_pass = ftp_upload_pass - if ftp_upload_path is not None: - self.ftp_upload_path = ftp_upload_path - if ftp_upload_proxy is not None: - self.ftp_upload_proxy = ftp_upload_proxy - if ftp_upload_proxy_port is not None: - self.ftp_upload_proxy_port = ftp_upload_proxy_port - if ftp_upload_ssl_cert is not None: - self.ftp_upload_ssl_cert = ftp_upload_ssl_cert - if ftp_upload_user is not None: - self.ftp_upload_user = ftp_upload_user - if ftp_upload_webui_default is not None: - self.ftp_upload_webui_default = ftp_upload_webui_default - if gather_begin is not None: - self.gather_begin = gather_begin - if gather_mode is not None: - self.gather_mode = gather_mode - if gather_past is not None: - self.gather_past = gather_past - if group is not None: - self.group = group - if http_insecure_upload is not None: - self.http_insecure_upload = http_insecure_upload - if http_upload is not None: - self.http_upload = http_upload - if http_upload_host is not None: - self.http_upload_host = http_upload_host - if http_upload_path is not None: - self.http_upload_path = http_upload_path - if http_upload_proxy is not None: - self.http_upload_proxy = http_upload_proxy - if http_upload_proxy_port is not None: - self.http_upload_proxy_port = http_upload_proxy_port - if reference is not None: - self.reference = reference - if upload is not None: - self.upload = upload - - @property - def connectivity(self): - """Gets the connectivity of this DiagnosticsGatherStartItem. # noqa: E501 - - Use Dell Technologies connectivity services for upload of gather. # noqa: E501 - - :return: The connectivity of this DiagnosticsGatherStartItem. # noqa: E501 - :rtype: bool - """ - return self._connectivity - - @connectivity.setter - def connectivity(self, connectivity): - """Sets the connectivity of this DiagnosticsGatherStartItem. - - Use Dell Technologies connectivity services for upload of gather. # noqa: E501 - - :param connectivity: The connectivity of this DiagnosticsGatherStartItem. # noqa: E501 - :type: bool - """ - - self._connectivity = connectivity - - @property - def esrs(self): - """Gets the esrs of this DiagnosticsGatherStartItem. # noqa: E501 - - Use ESRS for upload of gather. # noqa: E501 - - :return: The esrs of this DiagnosticsGatherStartItem. # noqa: E501 - :rtype: bool - """ - return self._esrs - - @esrs.setter - def esrs(self, esrs): - """Sets the esrs of this DiagnosticsGatherStartItem. - - Use ESRS for upload of gather. # noqa: E501 - - :param esrs: The esrs of this DiagnosticsGatherStartItem. # noqa: E501 - :type: bool - """ - - self._esrs = esrs - - @property - def ftp_upload(self): - """Gets the ftp_upload of this DiagnosticsGatherStartItem. # noqa: E501 - - Use FTP to upload logs from the isi gather command # noqa: E501 - - :return: The ftp_upload of this DiagnosticsGatherStartItem. # noqa: E501 - :rtype: bool - """ - return self._ftp_upload - - @ftp_upload.setter - def ftp_upload(self, ftp_upload): - """Sets the ftp_upload of this DiagnosticsGatherStartItem. - - Use FTP to upload logs from the isi gather command # noqa: E501 - - :param ftp_upload: The ftp_upload of this DiagnosticsGatherStartItem. # noqa: E501 - :type: bool - """ - - self._ftp_upload = ftp_upload - - @property - def ftp_upload_host(self): - """Gets the ftp_upload_host of this DiagnosticsGatherStartItem. # noqa: E501 - - Alternate FTP host to use for FTP upload. # noqa: E501 - - :return: The ftp_upload_host of this DiagnosticsGatherStartItem. # noqa: E501 - :rtype: str - """ - return self._ftp_upload_host - - @ftp_upload_host.setter - def ftp_upload_host(self, ftp_upload_host): - """Sets the ftp_upload_host of this DiagnosticsGatherStartItem. - - Alternate FTP host to use for FTP upload. # noqa: E501 - - :param ftp_upload_host: The ftp_upload_host of this DiagnosticsGatherStartItem. # noqa: E501 - :type: str - """ - if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 - - self._ftp_upload_host = ftp_upload_host - - @property - def ftp_upload_insecure(self): - """Gets the ftp_upload_insecure of this DiagnosticsGatherStartItem. # noqa: E501 - - Whether to attempt a plain text FTP upload. # noqa: E501 - - :return: The ftp_upload_insecure of this DiagnosticsGatherStartItem. # noqa: E501 - :rtype: bool - """ - return self._ftp_upload_insecure - - @ftp_upload_insecure.setter - def ftp_upload_insecure(self, ftp_upload_insecure): - """Sets the ftp_upload_insecure of this DiagnosticsGatherStartItem. - - Whether to attempt a plain text FTP upload. # noqa: E501 - - :param ftp_upload_insecure: The ftp_upload_insecure of this DiagnosticsGatherStartItem. # noqa: E501 - :type: bool - """ - - self._ftp_upload_insecure = ftp_upload_insecure - - @property - def ftp_upload_mode(self): - """Gets the ftp_upload_mode of this DiagnosticsGatherStartItem. # noqa: E501 - - FTP upload mode. # noqa: E501 - - :return: The ftp_upload_mode of this DiagnosticsGatherStartItem. # noqa: E501 - :rtype: str - """ - return self._ftp_upload_mode - - @ftp_upload_mode.setter - def ftp_upload_mode(self, ftp_upload_mode): - """Sets the ftp_upload_mode of this DiagnosticsGatherStartItem. - - FTP upload mode. # noqa: E501 - - :param ftp_upload_mode: The ftp_upload_mode of this DiagnosticsGatherStartItem. # noqa: E501 - :type: str - """ - - self._ftp_upload_mode = ftp_upload_mode - - @property - def ftp_upload_pass(self): - """Gets the ftp_upload_pass of this DiagnosticsGatherStartItem. # noqa: E501 - - FTP password to use for FTP upload. # noqa: E501 - - :return: The ftp_upload_pass of this DiagnosticsGatherStartItem. # noqa: E501 - :rtype: str - """ - return self._ftp_upload_pass - - @ftp_upload_pass.setter - def ftp_upload_pass(self, ftp_upload_pass): - """Sets the ftp_upload_pass of this DiagnosticsGatherStartItem. - - FTP password to use for FTP upload. # noqa: E501 - - :param ftp_upload_pass: The ftp_upload_pass of this DiagnosticsGatherStartItem. # noqa: E501 - :type: str - """ - - self._ftp_upload_pass = ftp_upload_pass - - @property - def ftp_upload_path(self): - """Gets the ftp_upload_path of this DiagnosticsGatherStartItem. # noqa: E501 - - Alternate FTP path to use for FTP upload. # noqa: E501 - - :return: The ftp_upload_path of this DiagnosticsGatherStartItem. # noqa: E501 - :rtype: str - """ - return self._ftp_upload_path - - @ftp_upload_path.setter - def ftp_upload_path(self, ftp_upload_path): - """Sets the ftp_upload_path of this DiagnosticsGatherStartItem. - - Alternate FTP path to use for FTP upload. # noqa: E501 - - :param ftp_upload_path: The ftp_upload_path of this DiagnosticsGatherStartItem. # noqa: E501 - :type: str - """ - if ftp_upload_path is not None and len(ftp_upload_path) > 4096: - raise ValueError("Invalid value for `ftp_upload_path`, length must be less than or equal to `4096`") # noqa: E501 - - self._ftp_upload_path = ftp_upload_path - - @property - def ftp_upload_proxy(self): - """Gets the ftp_upload_proxy of this DiagnosticsGatherStartItem. # noqa: E501 - - Proxy server to use for FTP upload. # noqa: E501 - - :return: The ftp_upload_proxy of this DiagnosticsGatherStartItem. # noqa: E501 - :rtype: str - """ - return self._ftp_upload_proxy - - @ftp_upload_proxy.setter - def ftp_upload_proxy(self, ftp_upload_proxy): - """Sets the ftp_upload_proxy of this DiagnosticsGatherStartItem. - - Proxy server to use for FTP upload. # noqa: E501 - - :param ftp_upload_proxy: The ftp_upload_proxy of this DiagnosticsGatherStartItem. # noqa: E501 - :type: str - """ - if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 - - self._ftp_upload_proxy = ftp_upload_proxy - - @property - def ftp_upload_proxy_port(self): - """Gets the ftp_upload_proxy_port of this DiagnosticsGatherStartItem. # noqa: E501 - - Proxy server port to use for FTP upload. # noqa: E501 - - :return: The ftp_upload_proxy_port of this DiagnosticsGatherStartItem. # noqa: E501 - :rtype: int - """ - return self._ftp_upload_proxy_port - - @ftp_upload_proxy_port.setter - def ftp_upload_proxy_port(self, ftp_upload_proxy_port): - """Sets the ftp_upload_proxy_port of this DiagnosticsGatherStartItem. - - Proxy server port to use for FTP upload. # noqa: E501 - - :param ftp_upload_proxy_port: The ftp_upload_proxy_port of this DiagnosticsGatherStartItem. # noqa: E501 - :type: int - """ - if ftp_upload_proxy_port is not None and ftp_upload_proxy_port > 65535: # noqa: E501 - raise ValueError("Invalid value for `ftp_upload_proxy_port`, must be a value less than or equal to `65535`") # noqa: E501 - if ftp_upload_proxy_port is not None and ftp_upload_proxy_port < 1: # noqa: E501 - raise ValueError("Invalid value for `ftp_upload_proxy_port`, must be a value greater than or equal to `1`") # noqa: E501 - - self._ftp_upload_proxy_port = ftp_upload_proxy_port - - @property - def ftp_upload_ssl_cert(self): - """Gets the ftp_upload_ssl_cert of this DiagnosticsGatherStartItem. # noqa: E501 - - Path to certificate. Leave it blank to use root signed-CA # noqa: E501 - - :return: The ftp_upload_ssl_cert of this DiagnosticsGatherStartItem. # noqa: E501 - :rtype: str - """ - return self._ftp_upload_ssl_cert - - @ftp_upload_ssl_cert.setter - def ftp_upload_ssl_cert(self, ftp_upload_ssl_cert): - """Sets the ftp_upload_ssl_cert of this DiagnosticsGatherStartItem. - - Path to certificate. Leave it blank to use root signed-CA # noqa: E501 - - :param ftp_upload_ssl_cert: The ftp_upload_ssl_cert of this DiagnosticsGatherStartItem. # noqa: E501 - :type: str - """ - if ftp_upload_ssl_cert is not None and len(ftp_upload_ssl_cert) > 4096: - raise ValueError("Invalid value for `ftp_upload_ssl_cert`, length must be less than or equal to `4096`") # noqa: E501 - - self._ftp_upload_ssl_cert = ftp_upload_ssl_cert - - @property - def ftp_upload_user(self): - """Gets the ftp_upload_user of this DiagnosticsGatherStartItem. # noqa: E501 - - FTP user to use for FTP upload. # noqa: E501 - - :return: The ftp_upload_user of this DiagnosticsGatherStartItem. # noqa: E501 - :rtype: str - """ - return self._ftp_upload_user - - @ftp_upload_user.setter - def ftp_upload_user(self, ftp_upload_user): - """Sets the ftp_upload_user of this DiagnosticsGatherStartItem. - - FTP user to use for FTP upload. # noqa: E501 - - :param ftp_upload_user: The ftp_upload_user of this DiagnosticsGatherStartItem. # noqa: E501 - :type: str - """ - if ftp_upload_user is not None and len(ftp_upload_user) > 256: - raise ValueError("Invalid value for `ftp_upload_user`, length must be less than or equal to `256`") # noqa: E501 - - self._ftp_upload_user = ftp_upload_user - - @property - def ftp_upload_webui_default(self): - """Gets the ftp_upload_webui_default of this DiagnosticsGatherStartItem. # noqa: E501 - - Hidden key to save default checkbox in WebUI # noqa: E501 - - :return: The ftp_upload_webui_default of this DiagnosticsGatherStartItem. # noqa: E501 - :rtype: bool - """ - return self._ftp_upload_webui_default - - @ftp_upload_webui_default.setter - def ftp_upload_webui_default(self, ftp_upload_webui_default): - """Sets the ftp_upload_webui_default of this DiagnosticsGatherStartItem. - - Hidden key to save default checkbox in WebUI # noqa: E501 - - :param ftp_upload_webui_default: The ftp_upload_webui_default of this DiagnosticsGatherStartItem. # noqa: E501 - :type: bool - """ - - self._ftp_upload_webui_default = ftp_upload_webui_default - - @property - def gather_begin(self): - """Gets the gather_begin of this DiagnosticsGatherStartItem. # noqa: E501 - - Sets the starting time of files to be gathered using datetime format. The accepted datetime format should be in the form 'YYYY-MM-DD HH:MM' where time is optional. This will gather all files modified past that date. # noqa: E501 - - :return: The gather_begin of this DiagnosticsGatherStartItem. # noqa: E501 - :rtype: str - """ - return self._gather_begin - - @gather_begin.setter - def gather_begin(self, gather_begin): - """Sets the gather_begin of this DiagnosticsGatherStartItem. - - Sets the starting time of files to be gathered using datetime format. The accepted datetime format should be in the form 'YYYY-MM-DD HH:MM' where time is optional. This will gather all files modified past that date. # noqa: E501 - - :param gather_begin: The gather_begin of this DiagnosticsGatherStartItem. # noqa: E501 - :type: str - """ - if gather_begin is not None and len(gather_begin) > 255: - raise ValueError("Invalid value for `gather_begin`, length must be less than or equal to `255`") # noqa: E501 - - self._gather_begin = gather_begin - - @property - def gather_mode(self): - """Gets the gather_mode of this DiagnosticsGatherStartItem. # noqa: E501 - - Set gather to full, incremental, or partial. # noqa: E501 - - :return: The gather_mode of this DiagnosticsGatherStartItem. # noqa: E501 - :rtype: str - """ - return self._gather_mode - - @gather_mode.setter - def gather_mode(self, gather_mode): - """Sets the gather_mode of this DiagnosticsGatherStartItem. - - Set gather to full, incremental, or partial. # noqa: E501 - - :param gather_mode: The gather_mode of this DiagnosticsGatherStartItem. # noqa: E501 - :type: str - """ - allowed_values = ["full", "incremental", "partial"] # noqa: E501 - if gather_mode not in allowed_values: - raise ValueError( - "Invalid value for `gather_mode` ({0}), must be one of {1}" # noqa: E501 - .format(gather_mode, allowed_values) - ) - - self._gather_mode = gather_mode - - @property - def gather_past(self): - """Gets the gather_past of this DiagnosticsGatherStartItem. # noqa: E501 - - Gather logs modified within this time frame. Enter a number followed by a letter for the starting range of files to be gathered, eg. 1h for files last modified in the past hour. Other supported times include d and w for days and weeks respectively. # noqa: E501 - - :return: The gather_past of this DiagnosticsGatherStartItem. # noqa: E501 - :rtype: str - """ - return self._gather_past - - @gather_past.setter - def gather_past(self, gather_past): - """Sets the gather_past of this DiagnosticsGatherStartItem. - - Gather logs modified within this time frame. Enter a number followed by a letter for the starting range of files to be gathered, eg. 1h for files last modified in the past hour. Other supported times include d and w for days and weeks respectively. # noqa: E501 - - :param gather_past: The gather_past of this DiagnosticsGatherStartItem. # noqa: E501 - :type: str - """ - if gather_past is not None and len(gather_past) > 255: - raise ValueError("Invalid value for `gather_past`, length must be less than or equal to `255`") # noqa: E501 - - self._gather_past = gather_past - - @property - def group(self): - """Gets the group of this DiagnosticsGatherStartItem. # noqa: E501 - - Only gathers component groups specified by the group field. # noqa: E501 - - :return: The group of this DiagnosticsGatherStartItem. # noqa: E501 - :rtype: str - """ - return self._group - - @group.setter - def group(self, group): - """Sets the group of this DiagnosticsGatherStartItem. - - Only gathers component groups specified by the group field. # noqa: E501 - - :param group: The group of this DiagnosticsGatherStartItem. # noqa: E501 - :type: str - """ - if group is not None and len(group) > 8192: - raise ValueError("Invalid value for `group`, length must be less than or equal to `8192`") # noqa: E501 - - self._group = group - - @property - def http_insecure_upload(self): - """Gets the http_insecure_upload of this DiagnosticsGatherStartItem. # noqa: E501 - - Use insecure HTTP to upload logs from the isi gather command # noqa: E501 - - :return: The http_insecure_upload of this DiagnosticsGatherStartItem. # noqa: E501 - :rtype: bool - """ - return self._http_insecure_upload - - @http_insecure_upload.setter - def http_insecure_upload(self, http_insecure_upload): - """Sets the http_insecure_upload of this DiagnosticsGatherStartItem. - - Use insecure HTTP to upload logs from the isi gather command # noqa: E501 - - :param http_insecure_upload: The http_insecure_upload of this DiagnosticsGatherStartItem. # noqa: E501 - :type: bool - """ - - self._http_insecure_upload = http_insecure_upload - - @property - def http_upload(self): - """Gets the http_upload of this DiagnosticsGatherStartItem. # noqa: E501 - - This option is deprecated. Use the option http_insecure_upload to upload logs via insecure HTTP from the isi gather command # noqa: E501 - - :return: The http_upload of this DiagnosticsGatherStartItem. # noqa: E501 - :rtype: bool - """ - return self._http_upload - - @http_upload.setter - def http_upload(self, http_upload): - """Sets the http_upload of this DiagnosticsGatherStartItem. - - This option is deprecated. Use the option http_insecure_upload to upload logs via insecure HTTP from the isi gather command # noqa: E501 - - :param http_upload: The http_upload of this DiagnosticsGatherStartItem. # noqa: E501 - :type: bool - """ - - self._http_upload = http_upload - - @property - def http_upload_host(self): - """Gets the http_upload_host of this DiagnosticsGatherStartItem. # noqa: E501 - - Address of an alternate HTTP host used to upload logs # noqa: E501 - - :return: The http_upload_host of this DiagnosticsGatherStartItem. # noqa: E501 - :rtype: str - """ - return self._http_upload_host - - @http_upload_host.setter - def http_upload_host(self, http_upload_host): - """Sets the http_upload_host of this DiagnosticsGatherStartItem. - - Address of an alternate HTTP host used to upload logs # noqa: E501 - - :param http_upload_host: The http_upload_host of this DiagnosticsGatherStartItem. # noqa: E501 - :type: str - """ - if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 - - self._http_upload_host = http_upload_host - - @property - def http_upload_path(self): - """Gets the http_upload_path of this DiagnosticsGatherStartItem. # noqa: E501 - - Alternate path on HTTP server to use for HTTP upload. # noqa: E501 - - :return: The http_upload_path of this DiagnosticsGatherStartItem. # noqa: E501 - :rtype: str - """ - return self._http_upload_path - - @http_upload_path.setter - def http_upload_path(self, http_upload_path): - """Sets the http_upload_path of this DiagnosticsGatherStartItem. - - Alternate path on HTTP server to use for HTTP upload. # noqa: E501 - - :param http_upload_path: The http_upload_path of this DiagnosticsGatherStartItem. # noqa: E501 - :type: str - """ - if http_upload_path is not None and len(http_upload_path) > 4096: - raise ValueError("Invalid value for `http_upload_path`, length must be less than or equal to `4096`") # noqa: E501 - - self._http_upload_path = http_upload_path - - @property - def http_upload_proxy(self): - """Gets the http_upload_proxy of this DiagnosticsGatherStartItem. # noqa: E501 - - Proxy server to use for HTTP upload. # noqa: E501 - - :return: The http_upload_proxy of this DiagnosticsGatherStartItem. # noqa: E501 - :rtype: str - """ - return self._http_upload_proxy - - @http_upload_proxy.setter - def http_upload_proxy(self, http_upload_proxy): - """Sets the http_upload_proxy of this DiagnosticsGatherStartItem. - - Proxy server to use for HTTP upload. # noqa: E501 - - :param http_upload_proxy: The http_upload_proxy of this DiagnosticsGatherStartItem. # noqa: E501 - :type: str - """ - if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 - - self._http_upload_proxy = http_upload_proxy - - @property - def http_upload_proxy_port(self): - """Gets the http_upload_proxy_port of this DiagnosticsGatherStartItem. # noqa: E501 - - Proxy server port to use for HTTP upload. # noqa: E501 - - :return: The http_upload_proxy_port of this DiagnosticsGatherStartItem. # noqa: E501 - :rtype: int - """ - return self._http_upload_proxy_port - - @http_upload_proxy_port.setter - def http_upload_proxy_port(self, http_upload_proxy_port): - """Sets the http_upload_proxy_port of this DiagnosticsGatherStartItem. - - Proxy server port to use for HTTP upload. # noqa: E501 - - :param http_upload_proxy_port: The http_upload_proxy_port of this DiagnosticsGatherStartItem. # noqa: E501 - :type: int - """ - if http_upload_proxy_port is not None and http_upload_proxy_port > 65535: # noqa: E501 - raise ValueError("Invalid value for `http_upload_proxy_port`, must be a value less than or equal to `65535`") # noqa: E501 - if http_upload_proxy_port is not None and http_upload_proxy_port < 1: # noqa: E501 - raise ValueError("Invalid value for `http_upload_proxy_port`, must be a value greater than or equal to `1`") # noqa: E501 - - self._http_upload_proxy_port = http_upload_proxy_port - - @property - def reference(self): - """Gets the reference of this DiagnosticsGatherStartItem. # noqa: E501 - - Save reference file and run. # noqa: E501 - - :return: The reference of this DiagnosticsGatherStartItem. # noqa: E501 - :rtype: str - """ - return self._reference - - @reference.setter - def reference(self, reference): - """Sets the reference of this DiagnosticsGatherStartItem. - - Save reference file and run. # noqa: E501 - - :param reference: The reference of this DiagnosticsGatherStartItem. # noqa: E501 - :type: str - """ - if reference is not None and len(reference) > 255: - raise ValueError("Invalid value for `reference`, length must be less than or equal to `255`") # noqa: E501 - - self._reference = reference - - @property - def upload(self): - """Gets the upload of this DiagnosticsGatherStartItem. # noqa: E501 - - Upload gather to Dell EMC. # noqa: E501 - - :return: The upload of this DiagnosticsGatherStartItem. # noqa: E501 - :rtype: bool - """ - return self._upload - - @upload.setter - def upload(self, upload): - """Sets the upload of this DiagnosticsGatherStartItem. - - Upload gather to Dell EMC. # noqa: E501 - - :param upload: The upload of this DiagnosticsGatherStartItem. # noqa: E501 - :type: bool - """ - - self._upload = upload - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(DiagnosticsGatherStartItem, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, DiagnosticsGatherStartItem): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_status_gather.py b/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_status_gather.py deleted file mode 100644 index 82541a0fb..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_status_gather.py +++ /dev/null @@ -1,173 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class DiagnosticsGatherStatusGather(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'path': 'str', - 'reference_id': 'str', - 'status': 'str' - } - - attribute_map = { - 'path': 'path', - 'reference_id': 'reference_id', - 'status': 'status' - } - - def __init__(self, path=None, reference_id=None, status=None): # noqa: E501 - """DiagnosticsGatherStatusGather - a model defined in Swagger""" # noqa: E501 - - self._path = None - self._reference_id = None - self._status = None - self.discriminator = None - - if path is not None: - self.path = path - if reference_id is not None: - self.reference_id = reference_id - if status is not None: - self.status = status - - @property - def path(self): - """Gets the path of this DiagnosticsGatherStatusGather. # noqa: E501 - - Gather file path. # noqa: E501 - - :return: The path of this DiagnosticsGatherStatusGather. # noqa: E501 - :rtype: str - """ - return self._path - - @path.setter - def path(self, path): - """Sets the path of this DiagnosticsGatherStatusGather. - - Gather file path. # noqa: E501 - - :param path: The path of this DiagnosticsGatherStatusGather. # noqa: E501 - :type: str - """ - - self._path = path - - @property - def reference_id(self): - """Gets the reference_id of this DiagnosticsGatherStatusGather. # noqa: E501 - - Reference ID for this gather. # noqa: E501 - - :return: The reference_id of this DiagnosticsGatherStatusGather. # noqa: E501 - :rtype: str - """ - return self._reference_id - - @reference_id.setter - def reference_id(self, reference_id): - """Sets the reference_id of this DiagnosticsGatherStatusGather. - - Reference ID for this gather. # noqa: E501 - - :param reference_id: The reference_id of this DiagnosticsGatherStatusGather. # noqa: E501 - :type: str - """ - - self._reference_id = reference_id - - @property - def status(self): - """Gets the status of this DiagnosticsGatherStatusGather. # noqa: E501 - - Status of this gather. # noqa: E501 - - :return: The status of this DiagnosticsGatherStatusGather. # noqa: E501 - :rtype: str - """ - return self._status - - @status.setter - def status(self, status): - """Sets the status of this DiagnosticsGatherStatusGather. - - Status of this gather. # noqa: E501 - - :param status: The status of this DiagnosticsGatherStatusGather. # noqa: E501 - :type: str - """ - - self._status = status - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(DiagnosticsGatherStatusGather, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, DiagnosticsGatherStatusGather): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_status_gather_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_status_gather_extended.py deleted file mode 100644 index c5b670e55..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_status_gather_extended.py +++ /dev/null @@ -1,197 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class DiagnosticsGatherStatusGatherExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'gathers': 'list[DiagnosticsGatherStatusGather]', - 'item': 'str', - 'path': 'str', - 'status': 'DiagnosticsGatherStatusGatherStatus' - } - - attribute_map = { - 'gathers': 'gathers', - 'item': 'item', - 'path': 'path', - 'status': 'status' - } - - def __init__(self, gathers=None, item=None, path=None, status=None): # noqa: E501 - """DiagnosticsGatherStatusGatherExtended - a model defined in Swagger""" # noqa: E501 - - self._gathers = None - self._item = None - self._path = None - self._status = None - self.discriminator = None - - if gathers is not None: - self.gathers = gathers - if item is not None: - self.item = item - if path is not None: - self.path = path - if status is not None: - self.status = status - - @property - def gathers(self): - """Gets the gathers of this DiagnosticsGatherStatusGatherExtended. # noqa: E501 - - - :return: The gathers of this DiagnosticsGatherStatusGatherExtended. # noqa: E501 - :rtype: list[DiagnosticsGatherStatusGather] - """ - return self._gathers - - @gathers.setter - def gathers(self, gathers): - """Sets the gathers of this DiagnosticsGatherStatusGatherExtended. - - - :param gathers: The gathers of this DiagnosticsGatherStatusGatherExtended. # noqa: E501 - :type: list[DiagnosticsGatherStatusGather] - """ - - self._gathers = gathers - - @property - def item(self): - """Gets the item of this DiagnosticsGatherStatusGatherExtended. # noqa: E501 - - The item currently being gathered, if any. # noqa: E501 - - :return: The item of this DiagnosticsGatherStatusGatherExtended. # noqa: E501 - :rtype: str - """ - return self._item - - @item.setter - def item(self, item): - """Sets the item of this DiagnosticsGatherStatusGatherExtended. - - The item currently being gathered, if any. # noqa: E501 - - :param item: The item of this DiagnosticsGatherStatusGatherExtended. # noqa: E501 - :type: str - """ - - self._item = item - - @property - def path(self): - """Gets the path of this DiagnosticsGatherStatusGatherExtended. # noqa: E501 - - - :return: The path of this DiagnosticsGatherStatusGatherExtended. # noqa: E501 - :rtype: str - """ - return self._path - - @path.setter - def path(self, path): - """Sets the path of this DiagnosticsGatherStatusGatherExtended. - - - :param path: The path of this DiagnosticsGatherStatusGatherExtended. # noqa: E501 - :type: str - """ - - self._path = path - - @property - def status(self): - """Gets the status of this DiagnosticsGatherStatusGatherExtended. # noqa: E501 - - # noqa: E501 - - :return: The status of this DiagnosticsGatherStatusGatherExtended. # noqa: E501 - :rtype: DiagnosticsGatherStatusGatherStatus - """ - return self._status - - @status.setter - def status(self, status): - """Sets the status of this DiagnosticsGatherStatusGatherExtended. - - # noqa: E501 - - :param status: The status of this DiagnosticsGatherStatusGatherExtended. # noqa: E501 - :type: DiagnosticsGatherStatusGatherStatus - """ - - self._status = status - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(DiagnosticsGatherStatusGatherExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, DiagnosticsGatherStatusGatherExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_maintenance_history_item.py b/isilon_sdk/isilon_sdk/v9_11_0/models/event_maintenance_history_item.py deleted file mode 100644 index 1c58cb62b..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_maintenance_history_item.py +++ /dev/null @@ -1,153 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class EventMaintenanceHistoryItem(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'end': 'int', - 'start': 'int' - } - - attribute_map = { - 'end': 'end', - 'start': 'start' - } - - def __init__(self, end=None, start=None): # noqa: E501 - """EventMaintenanceHistoryItem - a model defined in Swagger""" # noqa: E501 - - self._end = None - self._start = None - self.discriminator = None - - if end is not None: - self.end = end - if start is not None: - self.start = start - - @property - def end(self): - """Gets the end of this EventMaintenanceHistoryItem. # noqa: E501 - - End time of CELOG maintenance mode, as a UNIX timestamp in seconds. 0 indicates that maintenance mode is still enabled. # noqa: E501 - - :return: The end of this EventMaintenanceHistoryItem. # noqa: E501 - :rtype: int - """ - return self._end - - @end.setter - def end(self, end): - """Sets the end of this EventMaintenanceHistoryItem. - - End time of CELOG maintenance mode, as a UNIX timestamp in seconds. 0 indicates that maintenance mode is still enabled. # noqa: E501 - - :param end: The end of this EventMaintenanceHistoryItem. # noqa: E501 - :type: int - """ - if end is not None and end > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `end`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if end is not None and end < 0: # noqa: E501 - raise ValueError("Invalid value for `end`, must be a value greater than or equal to `0`") # noqa: E501 - - self._end = end - - @property - def start(self): - """Gets the start of this EventMaintenanceHistoryItem. # noqa: E501 - - Start time of CELOG maintenance mode, as a UNIX timestamp in seconds. # noqa: E501 - - :return: The start of this EventMaintenanceHistoryItem. # noqa: E501 - :rtype: int - """ - return self._start - - @start.setter - def start(self, start): - """Sets the start of this EventMaintenanceHistoryItem. - - Start time of CELOG maintenance mode, as a UNIX timestamp in seconds. # noqa: E501 - - :param start: The start of this EventMaintenanceHistoryItem. # noqa: E501 - :type: int - """ - if start is not None and start > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `start`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if start is not None and start < 0: # noqa: E501 - raise ValueError("Invalid value for `start`, must be a value greater than or equal to `0`") # noqa: E501 - - self._start = start - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(EventMaintenanceHistoryItem, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, EventMaintenanceHistoryItem): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_suppress_suppression.py b/isilon_sdk/isilon_sdk/v9_11_0/models/event_suppress_suppression.py deleted file mode 100644 index f5dc6bc33..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_suppress_suppression.py +++ /dev/null @@ -1,269 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class EventSuppressSuppression(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'category': 'str', - 'description': 'str', - 'id': 'str', - 'name': 'str', - 'node': 'bool', - 'suppressed': 'bool' - } - - attribute_map = { - 'category': 'category', - 'description': 'description', - 'id': 'id', - 'name': 'name', - 'node': 'node', - 'suppressed': 'suppressed' - } - - def __init__(self, category=None, description=None, id=None, name=None, node=None, suppressed=None): # noqa: E501 - """EventSuppressSuppression - a model defined in Swagger""" # noqa: E501 - - self._category = None - self._description = None - self._id = None - self._name = None - self._node = None - self._suppressed = None - self.discriminator = None - - if category is not None: - self.category = category - if description is not None: - self.description = description - if id is not None: - self.id = id - if name is not None: - self.name = name - if node is not None: - self.node = node - if suppressed is not None: - self.suppressed = suppressed - - @property - def category(self): - """Gets the category of this EventSuppressSuppression. # noqa: E501 - - ID of eventgroup category. # noqa: E501 - - :return: The category of this EventSuppressSuppression. # noqa: E501 - :rtype: str - """ - return self._category - - @category.setter - def category(self, category): - """Sets the category of this EventSuppressSuppression. - - ID of eventgroup category. # noqa: E501 - - :param category: The category of this EventSuppressSuppression. # noqa: E501 - :type: str - """ - if category is not None and len(category) > 255: - raise ValueError("Invalid value for `category`, length must be less than or equal to `255`") # noqa: E501 - if category is not None and len(category) < 1: - raise ValueError("Invalid value for `category`, length must be greater than or equal to `1`") # noqa: E501 - - self._category = category - - @property - def description(self): - """Gets the description of this EventSuppressSuppression. # noqa: E501 - - Human readable description - may contain value placeholders. # noqa: E501 - - :return: The description of this EventSuppressSuppression. # noqa: E501 - :rtype: str - """ - return self._description - - @description.setter - def description(self, description): - """Sets the description of this EventSuppressSuppression. - - Human readable description - may contain value placeholders. # noqa: E501 - - :param description: The description of this EventSuppressSuppression. # noqa: E501 - :type: str - """ - - self._description = description - - @property - def id(self): - """Gets the id of this EventSuppressSuppression. # noqa: E501 - - Unique event identifier. # noqa: E501 - - :return: The id of this EventSuppressSuppression. # noqa: E501 - :rtype: str - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this EventSuppressSuppression. - - Unique event identifier. # noqa: E501 - - :param id: The id of this EventSuppressSuppression. # noqa: E501 - :type: str - """ - if id is not None and len(id) > 255: - raise ValueError("Invalid value for `id`, length must be less than or equal to `255`") # noqa: E501 - if id is not None and len(id) < 1: - raise ValueError("Invalid value for `id`, length must be greater than or equal to `1`") # noqa: E501 - - self._id = id - - @property - def name(self): - """Gets the name of this EventSuppressSuppression. # noqa: E501 - - Name for event. # noqa: E501 - - :return: The name of this EventSuppressSuppression. # noqa: E501 - :rtype: str - """ - return self._name - - @name.setter - def name(self, name): - """Sets the name of this EventSuppressSuppression. - - Name for event. # noqa: E501 - - :param name: The name of this EventSuppressSuppression. # noqa: E501 - :type: str - """ - if name is not None and len(name) > 255: - raise ValueError("Invalid value for `name`, length must be less than or equal to `255`") # noqa: E501 - if name is not None and len(name) < 1: - raise ValueError("Invalid value for `name`, length must be greater than or equal to `1`") # noqa: E501 - - self._name = name - - @property - def node(self): - """Gets the node of this EventSuppressSuppression. # noqa: E501 - - Indicates whether this event is node-specific or cluster-wide. # noqa: E501 - - :return: The node of this EventSuppressSuppression. # noqa: E501 - :rtype: bool - """ - return self._node - - @node.setter - def node(self, node): - """Sets the node of this EventSuppressSuppression. - - Indicates whether this event is node-specific or cluster-wide. # noqa: E501 - - :param node: The node of this EventSuppressSuppression. # noqa: E501 - :type: bool - """ - - self._node = node - - @property - def suppressed(self): - """Gets the suppressed of this EventSuppressSuppression. # noqa: E501 - - Indicates if the event is suppressed. # noqa: E501 - - :return: The suppressed of this EventSuppressSuppression. # noqa: E501 - :rtype: bool - """ - return self._suppressed - - @suppressed.setter - def suppressed(self, suppressed): - """Sets the suppressed of this EventSuppressSuppression. - - Indicates if the event is suppressed. # noqa: E501 - - :param suppressed: The suppressed of this EventSuppressSuppression. # noqa: E501 - :type: bool - """ - - self._suppressed = suppressed - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(EventSuppressSuppression, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, EventSuppressSuppression): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_default_policy_default_policy_action.py b/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_default_policy_default_policy_action.py deleted file mode 100644 index 499dfbd86..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_default_policy_default_policy_action.py +++ /dev/null @@ -1,150 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class FilepoolDefaultPolicyDefaultPolicyAction(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'action_param': 'str', - 'action_type': 'str' - } - - attribute_map = { - 'action_param': 'action_param', - 'action_type': 'action_type' - } - - def __init__(self, action_param=None, action_type=None): # noqa: E501 - """FilepoolDefaultPolicyDefaultPolicyAction - a model defined in Swagger""" # noqa: E501 - - self._action_param = None - self._action_type = None - self.discriminator = None - - if action_param is not None: - self.action_param = action_param - self.action_type = action_type - - @property - def action_param(self): - """Gets the action_param of this FilepoolDefaultPolicyDefaultPolicyAction. # noqa: E501 - - Varies according to action_type: - set_requested_protection: (default | +1 | +1n | +2:1 | +2d:1n | +2 | +2n | +3:1 | +3d:1n | +3d:1n1d | +3 | +3n | +4 | +4n | +4:1 | +4d:1n | +4:2 | +4d:2n | 2x | 3x | 4x | 5x | 6x | 7x | 8x). - set_data_access_pattern: (random | concurrency | streaming). - enable_coalescer - apply_data_storage_policy or apply_snapshot_storage_policy : -- storagepool Name of a storage pool or 'anywhere'. -- ssd_strategy (metadata | metadata-write | data | avoid). SSD strategy of diskpool policy action. 'metadata' stores a single metadata mirror on SSD; 'metadata-write' stores all metadata on SSD; 'data' stores all metadata and data on SSD and 'avoid' stores no data or metadata on SSD. - set_cloudpool_policy : -- archive_parameters : --- pool Move to the cloud pool with the given ID. --- compression Compress data moved to the cloud. --- encryption Encrypt data moved to the cloud. --- data_retention The minimum number of seconds archived data will be retained in the cloud after deletion. --- incremental_backup_retention (Used with SyncIQ and NDMP backups.) The minimum number of seconds cloud files will be retained after the creation of a SyncIQ backup or an incremental NDMP backup. --- full_backup_retention (Used with NDMP backups only. Not applicable to SyncIQ.) The minimum number of seconds cloud files will be retained after the creation of a full NDMP backup. --- writeback_frequency The minimum number of seconds to wait before updating cloud data with local changes. --- archive_snapshot_files Also include snapshots file when uploading to the cloud. --- cache : ---- type Accessibility of archived files (one of \"cached\" or \"no-cache\"). ---- read_ahead Cache read ahead strategy for cloud files (one of partial, full). ---- expiration Duration of time in seconds until the cache expires. - enable_packing (only supported in version 4 and above) - null parameter for action_param is use to clear the policy (POST). Duration expressed as [YMWDHms]. # noqa: E501 - - :return: The action_param of this FilepoolDefaultPolicyDefaultPolicyAction. # noqa: E501 - :rtype: str - """ - return self._action_param - - @action_param.setter - def action_param(self, action_param): - """Sets the action_param of this FilepoolDefaultPolicyDefaultPolicyAction. - - Varies according to action_type: - set_requested_protection: (default | +1 | +1n | +2:1 | +2d:1n | +2 | +2n | +3:1 | +3d:1n | +3d:1n1d | +3 | +3n | +4 | +4n | +4:1 | +4d:1n | +4:2 | +4d:2n | 2x | 3x | 4x | 5x | 6x | 7x | 8x). - set_data_access_pattern: (random | concurrency | streaming). - enable_coalescer - apply_data_storage_policy or apply_snapshot_storage_policy : -- storagepool Name of a storage pool or 'anywhere'. -- ssd_strategy (metadata | metadata-write | data | avoid). SSD strategy of diskpool policy action. 'metadata' stores a single metadata mirror on SSD; 'metadata-write' stores all metadata on SSD; 'data' stores all metadata and data on SSD and 'avoid' stores no data or metadata on SSD. - set_cloudpool_policy : -- archive_parameters : --- pool Move to the cloud pool with the given ID. --- compression Compress data moved to the cloud. --- encryption Encrypt data moved to the cloud. --- data_retention The minimum number of seconds archived data will be retained in the cloud after deletion. --- incremental_backup_retention (Used with SyncIQ and NDMP backups.) The minimum number of seconds cloud files will be retained after the creation of a SyncIQ backup or an incremental NDMP backup. --- full_backup_retention (Used with NDMP backups only. Not applicable to SyncIQ.) The minimum number of seconds cloud files will be retained after the creation of a full NDMP backup. --- writeback_frequency The minimum number of seconds to wait before updating cloud data with local changes. --- archive_snapshot_files Also include snapshots file when uploading to the cloud. --- cache : ---- type Accessibility of archived files (one of \"cached\" or \"no-cache\"). ---- read_ahead Cache read ahead strategy for cloud files (one of partial, full). ---- expiration Duration of time in seconds until the cache expires. - enable_packing (only supported in version 4 and above) - null parameter for action_param is use to clear the policy (POST). Duration expressed as [YMWDHms]. # noqa: E501 - - :param action_param: The action_param of this FilepoolDefaultPolicyDefaultPolicyAction. # noqa: E501 - :type: str - """ - - self._action_param = action_param - - @property - def action_type(self): - """Gets the action_type of this FilepoolDefaultPolicyDefaultPolicyAction. # noqa: E501 - - - :return: The action_type of this FilepoolDefaultPolicyDefaultPolicyAction. # noqa: E501 - :rtype: str - """ - return self._action_type - - @action_type.setter - def action_type(self, action_type): - """Sets the action_type of this FilepoolDefaultPolicyDefaultPolicyAction. - - - :param action_type: The action_type of this FilepoolDefaultPolicyDefaultPolicyAction. # noqa: E501 - :type: str - """ - if action_type is None: - raise ValueError("Invalid value for `action_type`, must not be `None`") # noqa: E501 - allowed_values = ["set_requested_protection", "set_data_access_pattern", "enable_coalescer", "apply_data_storage_policy", "apply_snapshot_storage_policy", "set_cloudpool_policy", "enable_packing"] # noqa: E501 - if action_type not in allowed_values: - raise ValueError( - "Invalid value for `action_type` ({0}), must be one of {1}" # noqa: E501 - .format(action_type, allowed_values) - ) - - self._action_type = action_type - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(FilepoolDefaultPolicyDefaultPolicyAction, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, FilepoolDefaultPolicyDefaultPolicyAction): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy_action.py b/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy_action.py deleted file mode 100644 index ca2199966..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy_action.py +++ /dev/null @@ -1,151 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class FilepoolPolicyAction(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'action_param': 'str', - 'action_type': 'str' - } - - attribute_map = { - 'action_param': 'action_param', - 'action_type': 'action_type' - } - - def __init__(self, action_param=None, action_type=None): # noqa: E501 - """FilepoolPolicyAction - a model defined in Swagger""" # noqa: E501 - - self._action_param = None - self._action_type = None - self.discriminator = None - - self.action_param = action_param - self.action_type = action_type - - @property - def action_param(self): - """Gets the action_param of this FilepoolPolicyAction. # noqa: E501 - - Varies according to action_type: - set_requested_protection: (default | +1 | +1n | +2:1 | +2d:1n | +2 | +2n | +3:1 | +3d:1n | +3d:1n1d | +3 | +3n | +4 | +4n | +4:1 | +4d:1n | +4:2 | +4d:2n | 2x | 3x | 4x | 5x | 6x | 7x | 8x). - set_data_access_pattern: (random | concurrency | streaming). - enable_coalescer - apply_data_storage_policy or apply_snapshot_storage_policy : -- storagepool Name of a storage pool or 'anywhere'. -- ssd_strategy (metadata | metadata-write | data | avoid). SSD strategy of diskpool policy action. 'metadata' stores a single metadata mirror on SSD; 'metadata-write' stores all metadata on SSD; 'data' stores all metadata and data on SSD and 'avoid' stores no data or metadata on SSD. - set_cloudpool_policy : -- archive_parameters : --- pool Move to the cloud pool with the given ID. --- compression Compress data moved to the cloud. --- encryption Encrypt data moved to the cloud. --- data_retention The minimum number of seconds archived data will be retained in the cloud after deletion. --- incremental_backup_retention (Used with SyncIQ and NDMP backups.) The minimum number of seconds cloud files will be retained after the creation of a SyncIQ backup or an incremental NDMP backup. --- full_backup_retention (Used with NDMP backups only. Not applicable to SyncIQ.) The minimum number of seconds cloud files will be retained after the creation of a full NDMP backup. --- writeback_frequency The minimum number of seconds to wait before updating cloud data with local changes. --- archive_snapshot_files Also include snapshots file when uploading to the cloud. --- cache : ---- type Accessibility of archived files (one of \"cached\" or \"no-cache\"). ---- read_ahead Cache read ahead strategy for cloud files (one of partial, full). ---- expiration Duration of time in seconds until the cache expires. - enable_packing (only supported in version 4 and above) - null parameter for action_param is use to clear the policy (POST). Duration expressed as [YMWDHms]. # noqa: E501 - - :return: The action_param of this FilepoolPolicyAction. # noqa: E501 - :rtype: str - """ - return self._action_param - - @action_param.setter - def action_param(self, action_param): - """Sets the action_param of this FilepoolPolicyAction. - - Varies according to action_type: - set_requested_protection: (default | +1 | +1n | +2:1 | +2d:1n | +2 | +2n | +3:1 | +3d:1n | +3d:1n1d | +3 | +3n | +4 | +4n | +4:1 | +4d:1n | +4:2 | +4d:2n | 2x | 3x | 4x | 5x | 6x | 7x | 8x). - set_data_access_pattern: (random | concurrency | streaming). - enable_coalescer - apply_data_storage_policy or apply_snapshot_storage_policy : -- storagepool Name of a storage pool or 'anywhere'. -- ssd_strategy (metadata | metadata-write | data | avoid). SSD strategy of diskpool policy action. 'metadata' stores a single metadata mirror on SSD; 'metadata-write' stores all metadata on SSD; 'data' stores all metadata and data on SSD and 'avoid' stores no data or metadata on SSD. - set_cloudpool_policy : -- archive_parameters : --- pool Move to the cloud pool with the given ID. --- compression Compress data moved to the cloud. --- encryption Encrypt data moved to the cloud. --- data_retention The minimum number of seconds archived data will be retained in the cloud after deletion. --- incremental_backup_retention (Used with SyncIQ and NDMP backups.) The minimum number of seconds cloud files will be retained after the creation of a SyncIQ backup or an incremental NDMP backup. --- full_backup_retention (Used with NDMP backups only. Not applicable to SyncIQ.) The minimum number of seconds cloud files will be retained after the creation of a full NDMP backup. --- writeback_frequency The minimum number of seconds to wait before updating cloud data with local changes. --- archive_snapshot_files Also include snapshots file when uploading to the cloud. --- cache : ---- type Accessibility of archived files (one of \"cached\" or \"no-cache\"). ---- read_ahead Cache read ahead strategy for cloud files (one of partial, full). ---- expiration Duration of time in seconds until the cache expires. - enable_packing (only supported in version 4 and above) - null parameter for action_param is use to clear the policy (POST). Duration expressed as [YMWDHms]. # noqa: E501 - - :param action_param: The action_param of this FilepoolPolicyAction. # noqa: E501 - :type: str - """ - if action_param is None: - raise ValueError("Invalid value for `action_param`, must not be `None`") # noqa: E501 - - self._action_param = action_param - - @property - def action_type(self): - """Gets the action_type of this FilepoolPolicyAction. # noqa: E501 - - - :return: The action_type of this FilepoolPolicyAction. # noqa: E501 - :rtype: str - """ - return self._action_type - - @action_type.setter - def action_type(self, action_type): - """Sets the action_type of this FilepoolPolicyAction. - - - :param action_type: The action_type of this FilepoolPolicyAction. # noqa: E501 - :type: str - """ - if action_type is None: - raise ValueError("Invalid value for `action_type`, must not be `None`") # noqa: E501 - allowed_values = ["set_requested_protection", "set_data_access_pattern", "enable_coalescer", "apply_data_storage_policy", "apply_snapshot_storage_policy", "set_cloudpool_policy", "enable_packing"] # noqa: E501 - if action_type not in allowed_values: - raise ValueError( - "Invalid value for `action_type` ({0}), must be one of {1}" # noqa: E501 - .format(action_type, allowed_values) - ) - - self._action_type = action_type - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(FilepoolPolicyAction, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, FilepoolPolicyAction): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy_action_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy_action_extended.py deleted file mode 100644 index ba5a505cb..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy_action_extended.py +++ /dev/null @@ -1,150 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class FilepoolPolicyActionExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'action_param': 'str', - 'action_type': 'str' - } - - attribute_map = { - 'action_param': 'action_param', - 'action_type': 'action_type' - } - - def __init__(self, action_param=None, action_type=None): # noqa: E501 - """FilepoolPolicyActionExtended - a model defined in Swagger""" # noqa: E501 - - self._action_param = None - self._action_type = None - self.discriminator = None - - if action_param is not None: - self.action_param = action_param - self.action_type = action_type - - @property - def action_param(self): - """Gets the action_param of this FilepoolPolicyActionExtended. # noqa: E501 - - Varies according to action_type: - set_requested_protection: (default | +1 | +1n | +2:1 | +2d:1n | +2 | +2n | +3:1 | +3d:1n | +3d:1n1d | +3 | +3n | +4 | +4n | +4:1 | +4d:1n | +4:2 | +4d:2n | 2x | 3x | 4x | 5x | 6x | 7x | 8x). - set_data_access_pattern: (random | concurrency | streaming). - enable_coalescer - apply_data_storage_policy or apply_snapshot_storage_policy : -- storagepool Name of a storage pool or 'anywhere'. -- ssd_strategy (metadata | metadata-write | data | avoid). SSD strategy of diskpool policy action. 'metadata' stores a single metadata mirror on SSD; 'metadata-write' stores all metadata on SSD; 'data' stores all metadata and data on SSD and 'avoid' stores no data or metadata on SSD. - set_cloudpool_policy : -- archive_parameters : --- pool Move to the cloud pool with the given ID. --- compression Compress data moved to the cloud. --- encryption Encrypt data moved to the cloud. --- data_retention The minimum number of seconds archived data will be retained in the cloud after deletion. --- incremental_backup_retention (Used with SyncIQ and NDMP backups.) The minimum number of seconds cloud files will be retained after the creation of a SyncIQ backup or an incremental NDMP backup. --- full_backup_retention (Used with NDMP backups only. Not applicable to SyncIQ.) The minimum number of seconds cloud files will be retained after the creation of a full NDMP backup. --- writeback_frequency The minimum number of seconds to wait before updating cloud data with local changes. --- archive_snapshot_files Also include snapshots file when uploading to the cloud. --- cache : ---- type Accessibility of archived files (one of \"cached\" or \"no-cache\"). ---- read_ahead Cache read ahead strategy for cloud files (one of partial, full). ---- expiration Duration of time in seconds until the cache expires. - enable_packing (only supported in version 4 and above) - null parameter for action_param is use to clear the policy (POST). Duration expressed as [YMWDHms]. # noqa: E501 - - :return: The action_param of this FilepoolPolicyActionExtended. # noqa: E501 - :rtype: str - """ - return self._action_param - - @action_param.setter - def action_param(self, action_param): - """Sets the action_param of this FilepoolPolicyActionExtended. - - Varies according to action_type: - set_requested_protection: (default | +1 | +1n | +2:1 | +2d:1n | +2 | +2n | +3:1 | +3d:1n | +3d:1n1d | +3 | +3n | +4 | +4n | +4:1 | +4d:1n | +4:2 | +4d:2n | 2x | 3x | 4x | 5x | 6x | 7x | 8x). - set_data_access_pattern: (random | concurrency | streaming). - enable_coalescer - apply_data_storage_policy or apply_snapshot_storage_policy : -- storagepool Name of a storage pool or 'anywhere'. -- ssd_strategy (metadata | metadata-write | data | avoid). SSD strategy of diskpool policy action. 'metadata' stores a single metadata mirror on SSD; 'metadata-write' stores all metadata on SSD; 'data' stores all metadata and data on SSD and 'avoid' stores no data or metadata on SSD. - set_cloudpool_policy : -- archive_parameters : --- pool Move to the cloud pool with the given ID. --- compression Compress data moved to the cloud. --- encryption Encrypt data moved to the cloud. --- data_retention The minimum number of seconds archived data will be retained in the cloud after deletion. --- incremental_backup_retention (Used with SyncIQ and NDMP backups.) The minimum number of seconds cloud files will be retained after the creation of a SyncIQ backup or an incremental NDMP backup. --- full_backup_retention (Used with NDMP backups only. Not applicable to SyncIQ.) The minimum number of seconds cloud files will be retained after the creation of a full NDMP backup. --- writeback_frequency The minimum number of seconds to wait before updating cloud data with local changes. --- archive_snapshot_files Also include snapshots file when uploading to the cloud. --- cache : ---- type Accessibility of archived files (one of \"cached\" or \"no-cache\"). ---- read_ahead Cache read ahead strategy for cloud files (one of partial, full). ---- expiration Duration of time in seconds until the cache expires. - enable_packing (only supported in version 4 and above) - null parameter for action_param is use to clear the policy (POST). Duration expressed as [YMWDHms]. # noqa: E501 - - :param action_param: The action_param of this FilepoolPolicyActionExtended. # noqa: E501 - :type: str - """ - - self._action_param = action_param - - @property - def action_type(self): - """Gets the action_type of this FilepoolPolicyActionExtended. # noqa: E501 - - - :return: The action_type of this FilepoolPolicyActionExtended. # noqa: E501 - :rtype: str - """ - return self._action_type - - @action_type.setter - def action_type(self, action_type): - """Sets the action_type of this FilepoolPolicyActionExtended. - - - :param action_type: The action_type of this FilepoolPolicyActionExtended. # noqa: E501 - :type: str - """ - if action_type is None: - raise ValueError("Invalid value for `action_type`, must not be `None`") # noqa: E501 - allowed_values = ["set_requested_protection", "set_data_access_pattern", "enable_coalescer", "apply_data_storage_policy", "apply_snapshot_storage_policy", "set_cloudpool_policy", "enable_packing"] # noqa: E501 - if action_type not in allowed_values: - raise ValueError( - "Invalid value for `action_type` ({0}), must be one of {1}" # noqa: E501 - .format(action_type, allowed_values) - ) - - self._action_type = action_type - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(FilepoolPolicyActionExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, FilepoolPolicyActionExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy_action_extended_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy_action_extended_extended.py deleted file mode 100644 index 28d33b9fe..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy_action_extended_extended.py +++ /dev/null @@ -1,150 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class FilepoolPolicyActionExtendedExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'action_param': 'str', - 'action_type': 'str' - } - - attribute_map = { - 'action_param': 'action_param', - 'action_type': 'action_type' - } - - def __init__(self, action_param=None, action_type=None): # noqa: E501 - """FilepoolPolicyActionExtendedExtended - a model defined in Swagger""" # noqa: E501 - - self._action_param = None - self._action_type = None - self.discriminator = None - - if action_param is not None: - self.action_param = action_param - self.action_type = action_type - - @property - def action_param(self): - """Gets the action_param of this FilepoolPolicyActionExtendedExtended. # noqa: E501 - - Varies according to action_type: - set_requested_protection: (default | +1 | +1n | +2:1 | +2d:1n | +2 | +2n | +3:1 | +3d:1n | +3d:1n1d | +3 | +3n | +4 | +4n | +4:1 | +4d:1n | +4:2 | +4d:2n | 2x | 3x | 4x | 5x | 6x | 7x | 8x). - set_data_access_pattern: (random | concurrency | streaming). - enable_coalescer - apply_data_storage_policy or apply_snapshot_storage_policy : -- storagepool Name of a storage pool or 'anywhere'. -- ssd_strategy (metadata | metadata-write | data | avoid). SSD strategy of diskpool policy action. 'metadata' stores a single metadata mirror on SSD; 'metadata-write' stores all metadata on SSD; 'data' stores all metadata and data on SSD and 'avoid' stores no data or metadata on SSD. - set_cloudpool_policy : -- archive_parameters : --- pool Move to the cloud pool with the given ID. --- compression Compress data moved to the cloud. --- encryption Encrypt data moved to the cloud. --- data_retention The minimum number of seconds archived data will be retained in the cloud after deletion. --- incremental_backup_retention (Used with SyncIQ and NDMP backups.) The minimum number of seconds cloud files will be retained after the creation of a SyncIQ backup or an incremental NDMP backup. --- full_backup_retention (Used with NDMP backups only. Not applicable to SyncIQ.) The minimum number of seconds cloud files will be retained after the creation of a full NDMP backup. --- writeback_frequency The minimum number of seconds to wait before updating cloud data with local changes. --- archive_snapshot_files Also include snapshots file when uploading to the cloud. --- cache : ---- type Accessibility of archived files (one of \"cached\" or \"no-cache\"). ---- read_ahead Cache read ahead strategy for cloud files (one of partial, full). ---- expiration Duration of time in seconds until the cache expires. - enable_packing (only supported in version 4 and above) - null parameter for action_param is use to clear the policy (POST). Duration expressed as [YMWDHms]. # noqa: E501 - - :return: The action_param of this FilepoolPolicyActionExtendedExtended. # noqa: E501 - :rtype: str - """ - return self._action_param - - @action_param.setter - def action_param(self, action_param): - """Sets the action_param of this FilepoolPolicyActionExtendedExtended. - - Varies according to action_type: - set_requested_protection: (default | +1 | +1n | +2:1 | +2d:1n | +2 | +2n | +3:1 | +3d:1n | +3d:1n1d | +3 | +3n | +4 | +4n | +4:1 | +4d:1n | +4:2 | +4d:2n | 2x | 3x | 4x | 5x | 6x | 7x | 8x). - set_data_access_pattern: (random | concurrency | streaming). - enable_coalescer - apply_data_storage_policy or apply_snapshot_storage_policy : -- storagepool Name of a storage pool or 'anywhere'. -- ssd_strategy (metadata | metadata-write | data | avoid). SSD strategy of diskpool policy action. 'metadata' stores a single metadata mirror on SSD; 'metadata-write' stores all metadata on SSD; 'data' stores all metadata and data on SSD and 'avoid' stores no data or metadata on SSD. - set_cloudpool_policy : -- archive_parameters : --- pool Move to the cloud pool with the given ID. --- compression Compress data moved to the cloud. --- encryption Encrypt data moved to the cloud. --- data_retention The minimum number of seconds archived data will be retained in the cloud after deletion. --- incremental_backup_retention (Used with SyncIQ and NDMP backups.) The minimum number of seconds cloud files will be retained after the creation of a SyncIQ backup or an incremental NDMP backup. --- full_backup_retention (Used with NDMP backups only. Not applicable to SyncIQ.) The minimum number of seconds cloud files will be retained after the creation of a full NDMP backup. --- writeback_frequency The minimum number of seconds to wait before updating cloud data with local changes. --- archive_snapshot_files Also include snapshots file when uploading to the cloud. --- cache : ---- type Accessibility of archived files (one of \"cached\" or \"no-cache\"). ---- read_ahead Cache read ahead strategy for cloud files (one of partial, full). ---- expiration Duration of time in seconds until the cache expires. - enable_packing (only supported in version 4 and above) - null parameter for action_param is use to clear the policy (POST). Duration expressed as [YMWDHms]. # noqa: E501 - - :param action_param: The action_param of this FilepoolPolicyActionExtendedExtended. # noqa: E501 - :type: str - """ - - self._action_param = action_param - - @property - def action_type(self): - """Gets the action_type of this FilepoolPolicyActionExtendedExtended. # noqa: E501 - - - :return: The action_type of this FilepoolPolicyActionExtendedExtended. # noqa: E501 - :rtype: str - """ - return self._action_type - - @action_type.setter - def action_type(self, action_type): - """Sets the action_type of this FilepoolPolicyActionExtendedExtended. - - - :param action_type: The action_type of this FilepoolPolicyActionExtendedExtended. # noqa: E501 - :type: str - """ - if action_type is None: - raise ValueError("Invalid value for `action_type`, must not be `None`") # noqa: E501 - allowed_values = ["set_requested_protection", "set_data_access_pattern", "enable_coalescer", "apply_data_storage_policy", "apply_snapshot_storage_policy", "set_cloudpool_policy", "enable_packing"] # noqa: E501 - if action_type not in allowed_values: - raise ValueError( - "Invalid value for `action_type` ({0}), must be one of {1}" # noqa: E501 - .format(action_type, allowed_values) - ) - - self._action_type = action_type - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(FilepoolPolicyActionExtendedExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, FilepoolPolicyActionExtendedExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_template_action.py b/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_template_action.py deleted file mode 100644 index 3bce501d4..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_template_action.py +++ /dev/null @@ -1,150 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class FilepoolTemplateAction(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'action_param': 'str', - 'action_type': 'str' - } - - attribute_map = { - 'action_param': 'action_param', - 'action_type': 'action_type' - } - - def __init__(self, action_param=None, action_type=None): # noqa: E501 - """FilepoolTemplateAction - a model defined in Swagger""" # noqa: E501 - - self._action_param = None - self._action_type = None - self.discriminator = None - - if action_param is not None: - self.action_param = action_param - self.action_type = action_type - - @property - def action_param(self): - """Gets the action_param of this FilepoolTemplateAction. # noqa: E501 - - Varies according to action_type: - set_requested_protection: (default | +1 | +1n | +2:1 | +2d:1n | +2 | +2n | +3:1 | +3d:1n | +3d:1n1d | +3 | +3n | +4 | +4n | +4:1 | +4d:1n | +4:2 | +4d:2n | 2x | 3x | 4x | 5x | 6x | 7x | 8x). - set_data_access_pattern: (random | concurrency | streaming). - enable_coalescer - apply_data_storage_policy or apply_snapshot_storage_policy : -- storagepool Name of a storage pool or 'anywhere'. -- ssd_strategy (metadata | metadata-write | data | avoid). SSD strategy of diskpool policy action. 'metadata' stores a single metadata mirror on SSD; 'metadata-write' stores all metadata on SSD; 'data' stores all metadata and data on SSD and 'avoid' stores no data or metadata on SSD. - set_cloudpool_policy : -- archive_parameters : --- pool Move to the cloud pool with the given ID. --- compression Compress data moved to the cloud. --- encryption Encrypt data moved to the cloud. --- data_retention The minimum number of seconds archived data will be retained in the cloud after deletion. --- incremental_backup_retention (Used with SyncIQ and NDMP backups.) The minimum number of seconds cloud files will be retained after the creation of a SyncIQ backup or an incremental NDMP backup. --- full_backup_retention (Used with NDMP backups only. Not applicable to SyncIQ.) The minimum number of seconds cloud files will be retained after the creation of a full NDMP backup. --- writeback_frequency The minimum number of seconds to wait before updating cloud data with local changes. --- archive_snapshot_files Also include snapshots file when uploading to the cloud. --- cache : ---- type Accessibility of archived files (one of \"cached\" or \"no-cache\"). ---- read_ahead Cache read ahead strategy for cloud files (one of partial, full). ---- expiration Duration of time in seconds until the cache expires. - enable_packing (only supported in version 4 and above) - null parameter for action_param is use to clear the policy (POST). Duration expressed as [YMWDHms]. # noqa: E501 - - :return: The action_param of this FilepoolTemplateAction. # noqa: E501 - :rtype: str - """ - return self._action_param - - @action_param.setter - def action_param(self, action_param): - """Sets the action_param of this FilepoolTemplateAction. - - Varies according to action_type: - set_requested_protection: (default | +1 | +1n | +2:1 | +2d:1n | +2 | +2n | +3:1 | +3d:1n | +3d:1n1d | +3 | +3n | +4 | +4n | +4:1 | +4d:1n | +4:2 | +4d:2n | 2x | 3x | 4x | 5x | 6x | 7x | 8x). - set_data_access_pattern: (random | concurrency | streaming). - enable_coalescer - apply_data_storage_policy or apply_snapshot_storage_policy : -- storagepool Name of a storage pool or 'anywhere'. -- ssd_strategy (metadata | metadata-write | data | avoid). SSD strategy of diskpool policy action. 'metadata' stores a single metadata mirror on SSD; 'metadata-write' stores all metadata on SSD; 'data' stores all metadata and data on SSD and 'avoid' stores no data or metadata on SSD. - set_cloudpool_policy : -- archive_parameters : --- pool Move to the cloud pool with the given ID. --- compression Compress data moved to the cloud. --- encryption Encrypt data moved to the cloud. --- data_retention The minimum number of seconds archived data will be retained in the cloud after deletion. --- incremental_backup_retention (Used with SyncIQ and NDMP backups.) The minimum number of seconds cloud files will be retained after the creation of a SyncIQ backup or an incremental NDMP backup. --- full_backup_retention (Used with NDMP backups only. Not applicable to SyncIQ.) The minimum number of seconds cloud files will be retained after the creation of a full NDMP backup. --- writeback_frequency The minimum number of seconds to wait before updating cloud data with local changes. --- archive_snapshot_files Also include snapshots file when uploading to the cloud. --- cache : ---- type Accessibility of archived files (one of \"cached\" or \"no-cache\"). ---- read_ahead Cache read ahead strategy for cloud files (one of partial, full). ---- expiration Duration of time in seconds until the cache expires. - enable_packing (only supported in version 4 and above) - null parameter for action_param is use to clear the policy (POST). Duration expressed as [YMWDHms]. # noqa: E501 - - :param action_param: The action_param of this FilepoolTemplateAction. # noqa: E501 - :type: str - """ - - self._action_param = action_param - - @property - def action_type(self): - """Gets the action_type of this FilepoolTemplateAction. # noqa: E501 - - - :return: The action_type of this FilepoolTemplateAction. # noqa: E501 - :rtype: str - """ - return self._action_type - - @action_type.setter - def action_type(self, action_type): - """Sets the action_type of this FilepoolTemplateAction. - - - :param action_type: The action_type of this FilepoolTemplateAction. # noqa: E501 - :type: str - """ - if action_type is None: - raise ValueError("Invalid value for `action_type`, must not be `None`") # noqa: E501 - allowed_values = ["set_requested_protection", "set_data_access_pattern", "enable_coalescer", "apply_data_storage_policy", "apply_snapshot_storage_policy", "set_cloudpool_policy", "enable_packing"] # noqa: E501 - if action_type not in allowed_values: - raise ValueError( - "Invalid value for `action_type` ({0}), must be one of {1}" # noqa: E501 - .format(action_type, allowed_values) - ) - - self._action_type = action_type - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(FilepoolTemplateAction, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, FilepoolTemplateAction): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_template_action_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_template_action_extended.py deleted file mode 100644 index df85640b9..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_template_action_extended.py +++ /dev/null @@ -1,150 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class FilepoolTemplateActionExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'action_param': 'str', - 'action_type': 'str' - } - - attribute_map = { - 'action_param': 'action_param', - 'action_type': 'action_type' - } - - def __init__(self, action_param=None, action_type=None): # noqa: E501 - """FilepoolTemplateActionExtended - a model defined in Swagger""" # noqa: E501 - - self._action_param = None - self._action_type = None - self.discriminator = None - - if action_param is not None: - self.action_param = action_param - self.action_type = action_type - - @property - def action_param(self): - """Gets the action_param of this FilepoolTemplateActionExtended. # noqa: E501 - - Varies according to action_type: - set_requested_protection: (default | +1 | +1n | +2:1 | +2d:1n | +2 | +2n | +3:1 | +3d:1n | +3d:1n1d | +3 | +3n | +4 | +4n | +4:1 | +4d:1n | +4:2 | +4d:2n | 2x | 3x | 4x | 5x | 6x | 7x | 8x). - set_data_access_pattern: (random | concurrency | streaming). - enable_coalescer - apply_data_storage_policy or apply_snapshot_storage_policy : -- storagepool Name of a storage pool or 'anywhere'. -- ssd_strategy (metadata | metadata-write | data | avoid). SSD strategy of diskpool policy action. 'metadata' stores a single metadata mirror on SSD; 'metadata-write' stores all metadata on SSD; 'data' stores all metadata and data on SSD and 'avoid' stores no data or metadata on SSD. - set_cloudpool_policy : -- archive_parameters : --- pool Move to the cloud pool with the given ID. --- compression Compress data moved to the cloud. --- encryption Encrypt data moved to the cloud. --- data_retention The minimum number of seconds archived data will be retained in the cloud after deletion. --- incremental_backup_retention (Used with SyncIQ and NDMP backups.) The minimum number of seconds cloud files will be retained after the creation of a SyncIQ backup or an incremental NDMP backup. --- full_backup_retention (Used with NDMP backups only. Not applicable to SyncIQ.) The minimum number of seconds cloud files will be retained after the creation of a full NDMP backup. --- writeback_frequency The minimum number of seconds to wait before updating cloud data with local changes. --- archive_snapshot_files Also include snapshots file when uploading to the cloud. --- cache : ---- type Accessibility of archived files (one of \"cached\" or \"no-cache\"). ---- read_ahead Cache read ahead strategy for cloud files (one of partial, full). ---- expiration Duration of time in seconds until the cache expires. - enable_packing (only supported in version 4 and above) - null parameter for action_param is use to clear the policy (POST). Duration expressed as [YMWDHms]. # noqa: E501 - - :return: The action_param of this FilepoolTemplateActionExtended. # noqa: E501 - :rtype: str - """ - return self._action_param - - @action_param.setter - def action_param(self, action_param): - """Sets the action_param of this FilepoolTemplateActionExtended. - - Varies according to action_type: - set_requested_protection: (default | +1 | +1n | +2:1 | +2d:1n | +2 | +2n | +3:1 | +3d:1n | +3d:1n1d | +3 | +3n | +4 | +4n | +4:1 | +4d:1n | +4:2 | +4d:2n | 2x | 3x | 4x | 5x | 6x | 7x | 8x). - set_data_access_pattern: (random | concurrency | streaming). - enable_coalescer - apply_data_storage_policy or apply_snapshot_storage_policy : -- storagepool Name of a storage pool or 'anywhere'. -- ssd_strategy (metadata | metadata-write | data | avoid). SSD strategy of diskpool policy action. 'metadata' stores a single metadata mirror on SSD; 'metadata-write' stores all metadata on SSD; 'data' stores all metadata and data on SSD and 'avoid' stores no data or metadata on SSD. - set_cloudpool_policy : -- archive_parameters : --- pool Move to the cloud pool with the given ID. --- compression Compress data moved to the cloud. --- encryption Encrypt data moved to the cloud. --- data_retention The minimum number of seconds archived data will be retained in the cloud after deletion. --- incremental_backup_retention (Used with SyncIQ and NDMP backups.) The minimum number of seconds cloud files will be retained after the creation of a SyncIQ backup or an incremental NDMP backup. --- full_backup_retention (Used with NDMP backups only. Not applicable to SyncIQ.) The minimum number of seconds cloud files will be retained after the creation of a full NDMP backup. --- writeback_frequency The minimum number of seconds to wait before updating cloud data with local changes. --- archive_snapshot_files Also include snapshots file when uploading to the cloud. --- cache : ---- type Accessibility of archived files (one of \"cached\" or \"no-cache\"). ---- read_ahead Cache read ahead strategy for cloud files (one of partial, full). ---- expiration Duration of time in seconds until the cache expires. - enable_packing (only supported in version 4 and above) - null parameter for action_param is use to clear the policy (POST). Duration expressed as [YMWDHms]. # noqa: E501 - - :param action_param: The action_param of this FilepoolTemplateActionExtended. # noqa: E501 - :type: str - """ - - self._action_param = action_param - - @property - def action_type(self): - """Gets the action_type of this FilepoolTemplateActionExtended. # noqa: E501 - - - :return: The action_type of this FilepoolTemplateActionExtended. # noqa: E501 - :rtype: str - """ - return self._action_type - - @action_type.setter - def action_type(self, action_type): - """Sets the action_type of this FilepoolTemplateActionExtended. - - - :param action_type: The action_type of this FilepoolTemplateActionExtended. # noqa: E501 - :type: str - """ - if action_type is None: - raise ValueError("Invalid value for `action_type`, must not be `None`") # noqa: E501 - allowed_values = ["set_requested_protection", "set_data_access_pattern", "enable_coalescer", "apply_data_storage_policy", "apply_snapshot_storage_policy", "set_cloudpool_policy", "enable_packing"] # noqa: E501 - if action_type not in allowed_values: - raise ValueError( - "Invalid value for `action_type` ({0}), must be one of {1}" # noqa: E501 - .format(action_type, allowed_values) - ) - - self._action_type = action_type - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(FilepoolTemplateActionExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, FilepoolTemplateActionExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_dscp.py b/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_dscp.py deleted file mode 100644 index e74bddb1c..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_dscp.py +++ /dev/null @@ -1,115 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class FirewallDscp(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'rules': 'list[FirewallDscpRule]' - } - - attribute_map = { - 'rules': 'rules' - } - - def __init__(self, rules=None): # noqa: E501 - """FirewallDscp - a model defined in Swagger""" # noqa: E501 - - self._rules = None - self.discriminator = None - - if rules is not None: - self.rules = rules - - @property - def rules(self): - """Gets the rules of this FirewallDscp. # noqa: E501 - - - :return: The rules of this FirewallDscp. # noqa: E501 - :rtype: list[FirewallDscpRule] - """ - return self._rules - - @rules.setter - def rules(self, rules): - """Sets the rules of this FirewallDscp. - - - :param rules: The rules of this FirewallDscp. # noqa: E501 - :type: list[FirewallDscpRule] - """ - - self._rules = rules - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(FirewallDscp, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, FirewallDscp): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_dscp_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_dscp_extended.py deleted file mode 100644 index a2967a8a3..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_dscp_extended.py +++ /dev/null @@ -1,147 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class FirewallDscpExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'rules': 'list[FirewallDscpRuleExtended]', - 'total': 'int' - } - - attribute_map = { - 'rules': 'rules', - 'total': 'total' - } - - def __init__(self, rules=None, total=None): # noqa: E501 - """FirewallDscpExtended - a model defined in Swagger""" # noqa: E501 - - self._rules = None - self._total = None - self.discriminator = None - - if rules is not None: - self.rules = rules - if total is not None: - self.total = total - - @property - def rules(self): - """Gets the rules of this FirewallDscpExtended. # noqa: E501 - - - :return: The rules of this FirewallDscpExtended. # noqa: E501 - :rtype: list[FirewallDscpRuleExtended] - """ - return self._rules - - @rules.setter - def rules(self, rules): - """Sets the rules of this FirewallDscpExtended. - - - :param rules: The rules of this FirewallDscpExtended. # noqa: E501 - :type: list[FirewallDscpRuleExtended] - """ - - self._rules = rules - - @property - def total(self): - """Gets the total of this FirewallDscpExtended. # noqa: E501 - - Total number of items available. # noqa: E501 - - :return: The total of this FirewallDscpExtended. # noqa: E501 - :rtype: int - """ - return self._total - - @total.setter - def total(self, total): - """Sets the total of this FirewallDscpExtended. - - Total number of items available. # noqa: E501 - - :param total: The total of this FirewallDscpExtended. # noqa: E501 - :type: int - """ - if total is not None and total > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `total`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if total is not None and total < 0: # noqa: E501 - raise ValueError("Invalid value for `total`, must be a value greater than or equal to `0`") # noqa: E501 - - self._total = total - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(FirewallDscpExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, FirewallDscpExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_dscp_rule.py b/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_dscp_rule.py deleted file mode 100644 index 6750e6b79..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_dscp_rule.py +++ /dev/null @@ -1,277 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class FirewallDscpRule(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'description': 'str', - 'dscp_value': 'int', - 'dst_ports': 'FirewallDscpRuleParamsDstPorts', - 'id': 'str', - 'name': 'str', - 'src_ports': 'FirewallDscpRuleParamsDstPorts' - } - - attribute_map = { - 'description': 'description', - 'dscp_value': 'dscp_value', - 'dst_ports': 'dst_ports', - 'id': 'id', - 'name': 'name', - 'src_ports': 'src_ports' - } - - def __init__(self, description=None, dscp_value=None, dst_ports=None, id=None, name=None, src_ports=None): # noqa: E501 - """FirewallDscpRule - a model defined in Swagger""" # noqa: E501 - - self._description = None - self._dscp_value = None - self._dst_ports = None - self._id = None - self._name = None - self._src_ports = None - self.discriminator = None - - if description is not None: - self.description = description - if dscp_value is not None: - self.dscp_value = dscp_value - if dst_ports is not None: - self.dst_ports = dst_ports - if id is not None: - self.id = id - if name is not None: - self.name = name - if src_ports is not None: - self.src_ports = src_ports - - @property - def description(self): - """Gets the description of this FirewallDscpRule. # noqa: E501 - - A description of the DSCP rule. # noqa: E501 - - :return: The description of this FirewallDscpRule. # noqa: E501 - :rtype: str - """ - return self._description - - @description.setter - def description(self, description): - """Sets the description of this FirewallDscpRule. - - A description of the DSCP rule. # noqa: E501 - - :param description: The description of this FirewallDscpRule. # noqa: E501 - :type: str - """ - if description is not None and len(description) > 128: - raise ValueError("Invalid value for `description`, length must be less than or equal to `128`") # noqa: E501 - if description is not None and len(description) < 0: - raise ValueError("Invalid value for `description`, length must be greater than or equal to `0`") # noqa: E501 - - self._description = description - - @property - def dscp_value(self): - """Gets the dscp_value of this FirewallDscpRule. # noqa: E501 - - The DSCP value of the DSCP rule # noqa: E501 - - :return: The dscp_value of this FirewallDscpRule. # noqa: E501 - :rtype: int - """ - return self._dscp_value - - @dscp_value.setter - def dscp_value(self, dscp_value): - """Sets the dscp_value of this FirewallDscpRule. - - The DSCP value of the DSCP rule # noqa: E501 - - :param dscp_value: The dscp_value of this FirewallDscpRule. # noqa: E501 - :type: int - """ - if dscp_value is not None and dscp_value > 65535: # noqa: E501 - raise ValueError("Invalid value for `dscp_value`, must be a value less than or equal to `65535`") # noqa: E501 - if dscp_value is not None and dscp_value < 0: # noqa: E501 - raise ValueError("Invalid value for `dscp_value`, must be a value greater than or equal to `0`") # noqa: E501 - - self._dscp_value = dscp_value - - @property - def dst_ports(self): - """Gets the dst_ports of this FirewallDscpRule. # noqa: E501 - - Specified port number for destination control. # noqa: E501 - - :return: The dst_ports of this FirewallDscpRule. # noqa: E501 - :rtype: FirewallDscpRuleParamsDstPorts - """ - return self._dst_ports - - @dst_ports.setter - def dst_ports(self, dst_ports): - """Sets the dst_ports of this FirewallDscpRule. - - Specified port number for destination control. # noqa: E501 - - :param dst_ports: The dst_ports of this FirewallDscpRule. # noqa: E501 - :type: FirewallDscpRuleParamsDstPorts - """ - - self._dst_ports = dst_ports - - @property - def id(self): - """Gets the id of this FirewallDscpRule. # noqa: E501 - - Unique DSCP rule ID # noqa: E501 - - :return: The id of this FirewallDscpRule. # noqa: E501 - :rtype: str - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this FirewallDscpRule. - - Unique DSCP rule ID # noqa: E501 - - :param id: The id of this FirewallDscpRule. # noqa: E501 - :type: str - """ - if id is not None and len(id) > 32: - raise ValueError("Invalid value for `id`, length must be less than or equal to `32`") # noqa: E501 - if id is not None and len(id) < 1: - raise ValueError("Invalid value for `id`, length must be greater than or equal to `1`") # noqa: E501 - if id is not None and not re.search(r'^[0-9a-zA-Z_-]*$', id): # noqa: E501 - raise ValueError(r"Invalid value for `id`, must be a follow pattern or equal to `/^[0-9a-zA-Z_-]*$/`") # noqa: E501 - - self._id = id - - @property - def name(self): - """Gets the name of this FirewallDscpRule. # noqa: E501 - - The name of the DSCP rule. # noqa: E501 - - :return: The name of this FirewallDscpRule. # noqa: E501 - :rtype: str - """ - return self._name - - @name.setter - def name(self, name): - """Sets the name of this FirewallDscpRule. - - The name of the DSCP rule. # noqa: E501 - - :param name: The name of this FirewallDscpRule. # noqa: E501 - :type: str - """ - if name is not None and len(name) > 32: - raise ValueError("Invalid value for `name`, length must be less than or equal to `32`") # noqa: E501 - if name is not None and len(name) < 1: - raise ValueError("Invalid value for `name`, length must be greater than or equal to `1`") # noqa: E501 - if name is not None and not re.search(r'^[0-9a-zA-Z_-]*$', name): # noqa: E501 - raise ValueError(r"Invalid value for `name`, must be a follow pattern or equal to `/^[0-9a-zA-Z_-]*$/`") # noqa: E501 - - self._name = name - - @property - def src_ports(self): - """Gets the src_ports of this FirewallDscpRule. # noqa: E501 - - Specified port number for source control. # noqa: E501 - - :return: The src_ports of this FirewallDscpRule. # noqa: E501 - :rtype: FirewallDscpRuleParamsDstPorts - """ - return self._src_ports - - @src_ports.setter - def src_ports(self, src_ports): - """Sets the src_ports of this FirewallDscpRule. - - Specified port number for source control. # noqa: E501 - - :param src_ports: The src_ports of this FirewallDscpRule. # noqa: E501 - :type: FirewallDscpRuleParamsDstPorts - """ - - self._src_ports = src_ports - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(FirewallDscpRule, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, FirewallDscpRule): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_dscp_rule_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_dscp_rule_extended.py deleted file mode 100644 index a7ab14330..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_dscp_rule_extended.py +++ /dev/null @@ -1,283 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class FirewallDscpRuleExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'description': 'str', - 'dscp_value': 'int', - 'dst_ports': 'FirewallDscpRuleParamsDstPorts', - 'id': 'str', - 'name': 'str', - 'src_ports': 'FirewallDscpRuleParamsDstPorts' - } - - attribute_map = { - 'description': 'description', - 'dscp_value': 'dscp_value', - 'dst_ports': 'dst_ports', - 'id': 'id', - 'name': 'name', - 'src_ports': 'src_ports' - } - - def __init__(self, description=None, dscp_value=None, dst_ports=None, id=None, name=None, src_ports=None): # noqa: E501 - """FirewallDscpRuleExtended - a model defined in Swagger""" # noqa: E501 - - self._description = None - self._dscp_value = None - self._dst_ports = None - self._id = None - self._name = None - self._src_ports = None - self.discriminator = None - - self.description = description - self.dscp_value = dscp_value - self.dst_ports = dst_ports - self.id = id - self.name = name - self.src_ports = src_ports - - @property - def description(self): - """Gets the description of this FirewallDscpRuleExtended. # noqa: E501 - - A description of the DSCP rule. # noqa: E501 - - :return: The description of this FirewallDscpRuleExtended. # noqa: E501 - :rtype: str - """ - return self._description - - @description.setter - def description(self, description): - """Sets the description of this FirewallDscpRuleExtended. - - A description of the DSCP rule. # noqa: E501 - - :param description: The description of this FirewallDscpRuleExtended. # noqa: E501 - :type: str - """ - if description is None: - raise ValueError("Invalid value for `description`, must not be `None`") # noqa: E501 - if description is not None and len(description) > 128: - raise ValueError("Invalid value for `description`, length must be less than or equal to `128`") # noqa: E501 - if description is not None and len(description) < 0: - raise ValueError("Invalid value for `description`, length must be greater than or equal to `0`") # noqa: E501 - - self._description = description - - @property - def dscp_value(self): - """Gets the dscp_value of this FirewallDscpRuleExtended. # noqa: E501 - - The DSCP value of the DSCP rule # noqa: E501 - - :return: The dscp_value of this FirewallDscpRuleExtended. # noqa: E501 - :rtype: int - """ - return self._dscp_value - - @dscp_value.setter - def dscp_value(self, dscp_value): - """Sets the dscp_value of this FirewallDscpRuleExtended. - - The DSCP value of the DSCP rule # noqa: E501 - - :param dscp_value: The dscp_value of this FirewallDscpRuleExtended. # noqa: E501 - :type: int - """ - if dscp_value is None: - raise ValueError("Invalid value for `dscp_value`, must not be `None`") # noqa: E501 - if dscp_value is not None and dscp_value > 65535: # noqa: E501 - raise ValueError("Invalid value for `dscp_value`, must be a value less than or equal to `65535`") # noqa: E501 - if dscp_value is not None and dscp_value < 0: # noqa: E501 - raise ValueError("Invalid value for `dscp_value`, must be a value greater than or equal to `0`") # noqa: E501 - - self._dscp_value = dscp_value - - @property - def dst_ports(self): - """Gets the dst_ports of this FirewallDscpRuleExtended. # noqa: E501 - - Specified port number for destination control. # noqa: E501 - - :return: The dst_ports of this FirewallDscpRuleExtended. # noqa: E501 - :rtype: FirewallDscpRuleParamsDstPorts - """ - return self._dst_ports - - @dst_ports.setter - def dst_ports(self, dst_ports): - """Sets the dst_ports of this FirewallDscpRuleExtended. - - Specified port number for destination control. # noqa: E501 - - :param dst_ports: The dst_ports of this FirewallDscpRuleExtended. # noqa: E501 - :type: FirewallDscpRuleParamsDstPorts - """ - if dst_ports is None: - raise ValueError("Invalid value for `dst_ports`, must not be `None`") # noqa: E501 - - self._dst_ports = dst_ports - - @property - def id(self): - """Gets the id of this FirewallDscpRuleExtended. # noqa: E501 - - Unique DSCP rule ID # noqa: E501 - - :return: The id of this FirewallDscpRuleExtended. # noqa: E501 - :rtype: str - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this FirewallDscpRuleExtended. - - Unique DSCP rule ID # noqa: E501 - - :param id: The id of this FirewallDscpRuleExtended. # noqa: E501 - :type: str - """ - if id is None: - raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 - if id is not None and len(id) > 32: - raise ValueError("Invalid value for `id`, length must be less than or equal to `32`") # noqa: E501 - if id is not None and len(id) < 1: - raise ValueError("Invalid value for `id`, length must be greater than or equal to `1`") # noqa: E501 - if id is not None and not re.search(r'^[0-9a-zA-Z_-]*$', id): # noqa: E501 - raise ValueError(r"Invalid value for `id`, must be a follow pattern or equal to `/^[0-9a-zA-Z_-]*$/`") # noqa: E501 - - self._id = id - - @property - def name(self): - """Gets the name of this FirewallDscpRuleExtended. # noqa: E501 - - The name of the DSCP rule. # noqa: E501 - - :return: The name of this FirewallDscpRuleExtended. # noqa: E501 - :rtype: str - """ - return self._name - - @name.setter - def name(self, name): - """Sets the name of this FirewallDscpRuleExtended. - - The name of the DSCP rule. # noqa: E501 - - :param name: The name of this FirewallDscpRuleExtended. # noqa: E501 - :type: str - """ - if name is None: - raise ValueError("Invalid value for `name`, must not be `None`") # noqa: E501 - if name is not None and len(name) > 32: - raise ValueError("Invalid value for `name`, length must be less than or equal to `32`") # noqa: E501 - if name is not None and len(name) < 1: - raise ValueError("Invalid value for `name`, length must be greater than or equal to `1`") # noqa: E501 - if name is not None and not re.search(r'^[0-9a-zA-Z_-]*$', name): # noqa: E501 - raise ValueError(r"Invalid value for `name`, must be a follow pattern or equal to `/^[0-9a-zA-Z_-]*$/`") # noqa: E501 - - self._name = name - - @property - def src_ports(self): - """Gets the src_ports of this FirewallDscpRuleExtended. # noqa: E501 - - Specified port number for source control. # noqa: E501 - - :return: The src_ports of this FirewallDscpRuleExtended. # noqa: E501 - :rtype: FirewallDscpRuleParamsDstPorts - """ - return self._src_ports - - @src_ports.setter - def src_ports(self, src_ports): - """Sets the src_ports of this FirewallDscpRuleExtended. - - Specified port number for source control. # noqa: E501 - - :param src_ports: The src_ports of this FirewallDscpRuleExtended. # noqa: E501 - :type: FirewallDscpRuleParamsDstPorts - """ - if src_ports is None: - raise ValueError("Invalid value for `src_ports`, must not be `None`") # noqa: E501 - - self._src_ports = src_ports - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(FirewallDscpRuleExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, FirewallDscpRuleExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_dscp_rule_params.py b/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_dscp_rule_params.py deleted file mode 100644 index d168a65c6..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_dscp_rule_params.py +++ /dev/null @@ -1,177 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class FirewallDscpRuleParams(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'dscp_value': 'int', - 'dst_ports': 'FirewallDscpRuleParamsDstPorts', - 'src_ports': 'FirewallDscpRuleParamsDstPorts' - } - - attribute_map = { - 'dscp_value': 'dscp_value', - 'dst_ports': 'dst_ports', - 'src_ports': 'src_ports' - } - - def __init__(self, dscp_value=None, dst_ports=None, src_ports=None): # noqa: E501 - """FirewallDscpRuleParams - a model defined in Swagger""" # noqa: E501 - - self._dscp_value = None - self._dst_ports = None - self._src_ports = None - self.discriminator = None - - if dscp_value is not None: - self.dscp_value = dscp_value - if dst_ports is not None: - self.dst_ports = dst_ports - if src_ports is not None: - self.src_ports = src_ports - - @property - def dscp_value(self): - """Gets the dscp_value of this FirewallDscpRuleParams. # noqa: E501 - - The DSCP value of the DSCP rule # noqa: E501 - - :return: The dscp_value of this FirewallDscpRuleParams. # noqa: E501 - :rtype: int - """ - return self._dscp_value - - @dscp_value.setter - def dscp_value(self, dscp_value): - """Sets the dscp_value of this FirewallDscpRuleParams. - - The DSCP value of the DSCP rule # noqa: E501 - - :param dscp_value: The dscp_value of this FirewallDscpRuleParams. # noqa: E501 - :type: int - """ - if dscp_value is not None and dscp_value > 65535: # noqa: E501 - raise ValueError("Invalid value for `dscp_value`, must be a value less than or equal to `65535`") # noqa: E501 - if dscp_value is not None and dscp_value < 0: # noqa: E501 - raise ValueError("Invalid value for `dscp_value`, must be a value greater than or equal to `0`") # noqa: E501 - - self._dscp_value = dscp_value - - @property - def dst_ports(self): - """Gets the dst_ports of this FirewallDscpRuleParams. # noqa: E501 - - Specified port number for destination control. # noqa: E501 - - :return: The dst_ports of this FirewallDscpRuleParams. # noqa: E501 - :rtype: FirewallDscpRuleParamsDstPorts - """ - return self._dst_ports - - @dst_ports.setter - def dst_ports(self, dst_ports): - """Sets the dst_ports of this FirewallDscpRuleParams. - - Specified port number for destination control. # noqa: E501 - - :param dst_ports: The dst_ports of this FirewallDscpRuleParams. # noqa: E501 - :type: FirewallDscpRuleParamsDstPorts - """ - - self._dst_ports = dst_ports - - @property - def src_ports(self): - """Gets the src_ports of this FirewallDscpRuleParams. # noqa: E501 - - Specified port number for source control. # noqa: E501 - - :return: The src_ports of this FirewallDscpRuleParams. # noqa: E501 - :rtype: FirewallDscpRuleParamsDstPorts - """ - return self._src_ports - - @src_ports.setter - def src_ports(self, src_ports): - """Sets the src_ports of this FirewallDscpRuleParams. - - Specified port number for source control. # noqa: E501 - - :param src_ports: The src_ports of this FirewallDscpRuleParams. # noqa: E501 - :type: FirewallDscpRuleParamsDstPorts - """ - - self._src_ports = src_ports - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(FirewallDscpRuleParams, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, FirewallDscpRuleParams): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_dscp_rule_params_dst_ports.py b/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_dscp_rule_params_dst_ports.py deleted file mode 100644 index 402bdc772..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_dscp_rule_params_dst_ports.py +++ /dev/null @@ -1,145 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class FirewallDscpRuleParamsDstPorts(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'all_ports': 'bool', - 'port_numbers': 'list[int]' - } - - attribute_map = { - 'all_ports': 'all_ports', - 'port_numbers': 'port_numbers' - } - - def __init__(self, all_ports=None, port_numbers=None): # noqa: E501 - """FirewallDscpRuleParamsDstPorts - a model defined in Swagger""" # noqa: E501 - - self._all_ports = None - self._port_numbers = None - self.discriminator = None - - if all_ports is not None: - self.all_ports = all_ports - if port_numbers is not None: - self.port_numbers = port_numbers - - @property - def all_ports(self): - """Gets the all_ports of this FirewallDscpRuleParamsDstPorts. # noqa: E501 - - Indicates whether this rule applies to all ports # noqa: E501 - - :return: The all_ports of this FirewallDscpRuleParamsDstPorts. # noqa: E501 - :rtype: bool - """ - return self._all_ports - - @all_ports.setter - def all_ports(self, all_ports): - """Sets the all_ports of this FirewallDscpRuleParamsDstPorts. - - Indicates whether this rule applies to all ports # noqa: E501 - - :param all_ports: The all_ports of this FirewallDscpRuleParamsDstPorts. # noqa: E501 - :type: bool - """ - - self._all_ports = all_ports - - @property - def port_numbers(self): - """Gets the port_numbers of this FirewallDscpRuleParamsDstPorts. # noqa: E501 - - List of ports to which DSCP rule is applied. # noqa: E501 - - :return: The port_numbers of this FirewallDscpRuleParamsDstPorts. # noqa: E501 - :rtype: list[int] - """ - return self._port_numbers - - @port_numbers.setter - def port_numbers(self, port_numbers): - """Sets the port_numbers of this FirewallDscpRuleParamsDstPorts. - - List of ports to which DSCP rule is applied. # noqa: E501 - - :param port_numbers: The port_numbers of this FirewallDscpRuleParamsDstPorts. # noqa: E501 - :type: list[int] - """ - - self._port_numbers = port_numbers - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(FirewallDscpRuleParamsDstPorts, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, FirewallDscpRuleParamsDstPorts): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_policies.py b/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_policies.py deleted file mode 100644 index 0efa86ddf..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_policies.py +++ /dev/null @@ -1,115 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class FirewallPolicies(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'policies': 'list[FirewallPolicyExtended]' - } - - attribute_map = { - 'policies': 'policies' - } - - def __init__(self, policies=None): # noqa: E501 - """FirewallPolicies - a model defined in Swagger""" # noqa: E501 - - self._policies = None - self.discriminator = None - - if policies is not None: - self.policies = policies - - @property - def policies(self): - """Gets the policies of this FirewallPolicies. # noqa: E501 - - - :return: The policies of this FirewallPolicies. # noqa: E501 - :rtype: list[FirewallPolicyExtended] - """ - return self._policies - - @policies.setter - def policies(self, policies): - """Sets the policies of this FirewallPolicies. - - - :param policies: The policies of this FirewallPolicies. # noqa: E501 - :type: list[FirewallPolicyExtended] - """ - - self._policies = policies - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(FirewallPolicies, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, FirewallPolicies): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_policy.py b/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_policy.py deleted file mode 100644 index 20236bde6..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_policy.py +++ /dev/null @@ -1,277 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class FirewallPolicy(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'default_action': 'str', - 'description': 'str', - 'max_rules': 'int', - 'name': 'str', - 'pools': 'list[str]', - 'subnets': 'list[str]' - } - - attribute_map = { - 'default_action': 'default_action', - 'description': 'description', - 'max_rules': 'max_rules', - 'name': 'name', - 'pools': 'pools', - 'subnets': 'subnets' - } - - def __init__(self, default_action=None, description=None, max_rules=None, name=None, pools=None, subnets=None): # noqa: E501 - """FirewallPolicy - a model defined in Swagger""" # noqa: E501 - - self._default_action = None - self._description = None - self._max_rules = None - self._name = None - self._pools = None - self._subnets = None - self.discriminator = None - - if default_action is not None: - self.default_action = default_action - if description is not None: - self.description = description - if max_rules is not None: - self.max_rules = max_rules - if name is not None: - self.name = name - if pools is not None: - self.pools = pools - if subnets is not None: - self.subnets = subnets - - @property - def default_action(self): - """Gets the default_action of this FirewallPolicy. # noqa: E501 - - Policy default action # noqa: E501 - - :return: The default_action of this FirewallPolicy. # noqa: E501 - :rtype: str - """ - return self._default_action - - @default_action.setter - def default_action(self, default_action): - """Sets the default_action of this FirewallPolicy. - - Policy default action # noqa: E501 - - :param default_action: The default_action of this FirewallPolicy. # noqa: E501 - :type: str - """ - allowed_values = ["allow", "deny"] # noqa: E501 - if default_action not in allowed_values: - raise ValueError( - "Invalid value for `default_action` ({0}), must be one of {1}" # noqa: E501 - .format(default_action, allowed_values) - ) - - self._default_action = default_action - - @property - def description(self): - """Gets the description of this FirewallPolicy. # noqa: E501 - - A description of the firewall policy. # noqa: E501 - - :return: The description of this FirewallPolicy. # noqa: E501 - :rtype: str - """ - return self._description - - @description.setter - def description(self, description): - """Sets the description of this FirewallPolicy. - - A description of the firewall policy. # noqa: E501 - - :param description: The description of this FirewallPolicy. # noqa: E501 - :type: str - """ - if description is not None and len(description) > 128: - raise ValueError("Invalid value for `description`, length must be less than or equal to `128`") # noqa: E501 - if description is not None and len(description) < 0: - raise ValueError("Invalid value for `description`, length must be greater than or equal to `0`") # noqa: E501 - - self._description = description - - @property - def max_rules(self): - """Gets the max_rules of this FirewallPolicy. # noqa: E501 - - Maximum rule counts in one policy # noqa: E501 - - :return: The max_rules of this FirewallPolicy. # noqa: E501 - :rtype: int - """ - return self._max_rules - - @max_rules.setter - def max_rules(self, max_rules): - """Sets the max_rules of this FirewallPolicy. - - Maximum rule counts in one policy # noqa: E501 - - :param max_rules: The max_rules of this FirewallPolicy. # noqa: E501 - :type: int - """ - if max_rules is not None and max_rules > 200: # noqa: E501 - raise ValueError("Invalid value for `max_rules`, must be a value less than or equal to `200`") # noqa: E501 - if max_rules is not None and max_rules < 100: # noqa: E501 - raise ValueError("Invalid value for `max_rules`, must be a value greater than or equal to `100`") # noqa: E501 - - self._max_rules = max_rules - - @property - def name(self): - """Gets the name of this FirewallPolicy. # noqa: E501 - - The name of the firewall policy. # noqa: E501 - - :return: The name of this FirewallPolicy. # noqa: E501 - :rtype: str - """ - return self._name - - @name.setter - def name(self, name): - """Sets the name of this FirewallPolicy. - - The name of the firewall policy. # noqa: E501 - - :param name: The name of this FirewallPolicy. # noqa: E501 - :type: str - """ - if name is not None and len(name) > 32: - raise ValueError("Invalid value for `name`, length must be less than or equal to `32`") # noqa: E501 - if name is not None and len(name) < 1: - raise ValueError("Invalid value for `name`, length must be greater than or equal to `1`") # noqa: E501 - if name is not None and not re.search(r'^[0-9a-zA-Z_-]*$', name): # noqa: E501 - raise ValueError(r"Invalid value for `name`, must be a follow pattern or equal to `/^[0-9a-zA-Z_-]*$/`") # noqa: E501 - - self._name = name - - @property - def pools(self): - """Gets the pools of this FirewallPolicy. # noqa: E501 - - List of Network Pools this policy is currently applied to. # noqa: E501 - - :return: The pools of this FirewallPolicy. # noqa: E501 - :rtype: list[str] - """ - return self._pools - - @pools.setter - def pools(self, pools): - """Sets the pools of this FirewallPolicy. - - List of Network Pools this policy is currently applied to. # noqa: E501 - - :param pools: The pools of this FirewallPolicy. # noqa: E501 - :type: list[str] - """ - - self._pools = pools - - @property - def subnets(self): - """Gets the subnets of this FirewallPolicy. # noqa: E501 - - List of Network Subnets this policy is currently applied for SSIP service. # noqa: E501 - - :return: The subnets of this FirewallPolicy. # noqa: E501 - :rtype: list[str] - """ - return self._subnets - - @subnets.setter - def subnets(self, subnets): - """Sets the subnets of this FirewallPolicy. - - List of Network Subnets this policy is currently applied for SSIP service. # noqa: E501 - - :param subnets: The subnets of this FirewallPolicy. # noqa: E501 - :type: list[str] - """ - - self._subnets = subnets - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(FirewallPolicy, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, FirewallPolicy): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_policy_create_params.py b/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_policy_create_params.py deleted file mode 100644 index ea2a88c46..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_policy_create_params.py +++ /dev/null @@ -1,256 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class FirewallPolicyCreateParams(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'default_action': 'str', - 'description': 'str', - 'id': 'str', - 'max_rules': 'int', - 'name': 'str' - } - - attribute_map = { - 'default_action': 'default_action', - 'description': 'description', - 'id': 'id', - 'max_rules': 'max_rules', - 'name': 'name' - } - - def __init__(self, default_action=None, description=None, id=None, max_rules=None, name=None): # noqa: E501 - """FirewallPolicyCreateParams - a model defined in Swagger""" # noqa: E501 - - self._default_action = None - self._description = None - self._id = None - self._max_rules = None - self._name = None - self.discriminator = None - - if default_action is not None: - self.default_action = default_action - if description is not None: - self.description = description - if id is not None: - self.id = id - if max_rules is not None: - self.max_rules = max_rules - self.name = name - - @property - def default_action(self): - """Gets the default_action of this FirewallPolicyCreateParams. # noqa: E501 - - Policy default action # noqa: E501 - - :return: The default_action of this FirewallPolicyCreateParams. # noqa: E501 - :rtype: str - """ - return self._default_action - - @default_action.setter - def default_action(self, default_action): - """Sets the default_action of this FirewallPolicyCreateParams. - - Policy default action # noqa: E501 - - :param default_action: The default_action of this FirewallPolicyCreateParams. # noqa: E501 - :type: str - """ - allowed_values = ["allow", "deny"] # noqa: E501 - if default_action not in allowed_values: - raise ValueError( - "Invalid value for `default_action` ({0}), must be one of {1}" # noqa: E501 - .format(default_action, allowed_values) - ) - - self._default_action = default_action - - @property - def description(self): - """Gets the description of this FirewallPolicyCreateParams. # noqa: E501 - - A description of the firewall policy. # noqa: E501 - - :return: The description of this FirewallPolicyCreateParams. # noqa: E501 - :rtype: str - """ - return self._description - - @description.setter - def description(self, description): - """Sets the description of this FirewallPolicyCreateParams. - - A description of the firewall policy. # noqa: E501 - - :param description: The description of this FirewallPolicyCreateParams. # noqa: E501 - :type: str - """ - if description is not None and len(description) > 128: - raise ValueError("Invalid value for `description`, length must be less than or equal to `128`") # noqa: E501 - if description is not None and len(description) < 0: - raise ValueError("Invalid value for `description`, length must be greater than or equal to `0`") # noqa: E501 - - self._description = description - - @property - def id(self): - """Gets the id of this FirewallPolicyCreateParams. # noqa: E501 - - Unique firewall policy ID. # noqa: E501 - - :return: The id of this FirewallPolicyCreateParams. # noqa: E501 - :rtype: str - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this FirewallPolicyCreateParams. - - Unique firewall policy ID. # noqa: E501 - - :param id: The id of this FirewallPolicyCreateParams. # noqa: E501 - :type: str - """ - if id is not None and len(id) > 32: - raise ValueError("Invalid value for `id`, length must be less than or equal to `32`") # noqa: E501 - if id is not None and len(id) < 1: - raise ValueError("Invalid value for `id`, length must be greater than or equal to `1`") # noqa: E501 - if id is not None and not re.search(r'^[0-9a-zA-Z_-]*$', id): # noqa: E501 - raise ValueError(r"Invalid value for `id`, must be a follow pattern or equal to `/^[0-9a-zA-Z_-]*$/`") # noqa: E501 - - self._id = id - - @property - def max_rules(self): - """Gets the max_rules of this FirewallPolicyCreateParams. # noqa: E501 - - Maximum rule counts in one policy # noqa: E501 - - :return: The max_rules of this FirewallPolicyCreateParams. # noqa: E501 - :rtype: int - """ - return self._max_rules - - @max_rules.setter - def max_rules(self, max_rules): - """Sets the max_rules of this FirewallPolicyCreateParams. - - Maximum rule counts in one policy # noqa: E501 - - :param max_rules: The max_rules of this FirewallPolicyCreateParams. # noqa: E501 - :type: int - """ - if max_rules is not None and max_rules > 200: # noqa: E501 - raise ValueError("Invalid value for `max_rules`, must be a value less than or equal to `200`") # noqa: E501 - if max_rules is not None and max_rules < 100: # noqa: E501 - raise ValueError("Invalid value for `max_rules`, must be a value greater than or equal to `100`") # noqa: E501 - - self._max_rules = max_rules - - @property - def name(self): - """Gets the name of this FirewallPolicyCreateParams. # noqa: E501 - - The name of the firewall policy. # noqa: E501 - - :return: The name of this FirewallPolicyCreateParams. # noqa: E501 - :rtype: str - """ - return self._name - - @name.setter - def name(self, name): - """Sets the name of this FirewallPolicyCreateParams. - - The name of the firewall policy. # noqa: E501 - - :param name: The name of this FirewallPolicyCreateParams. # noqa: E501 - :type: str - """ - if name is None: - raise ValueError("Invalid value for `name`, must not be `None`") # noqa: E501 - if name is not None and len(name) > 32: - raise ValueError("Invalid value for `name`, length must be less than or equal to `32`") # noqa: E501 - if name is not None and len(name) < 1: - raise ValueError("Invalid value for `name`, length must be greater than or equal to `1`") # noqa: E501 - if name is not None and not re.search(r'^[0-9a-zA-Z_-]*$', name): # noqa: E501 - raise ValueError(r"Invalid value for `name`, must be a follow pattern or equal to `/^[0-9a-zA-Z_-]*$/`") # noqa: E501 - - self._name = name - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(FirewallPolicyCreateParams, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, FirewallPolicyCreateParams): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_policy_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_policy_extended.py deleted file mode 100644 index 8896737c2..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_policy_extended.py +++ /dev/null @@ -1,339 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class FirewallPolicyExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'default_action': 'str', - 'description': 'str', - 'max_rules': 'int', - 'name': 'str', - 'pools': 'list[str]', - 'subnets': 'list[str]', - 'id': 'str', - 'rules': 'list[str]' - } - - attribute_map = { - 'default_action': 'default_action', - 'description': 'description', - 'max_rules': 'max_rules', - 'name': 'name', - 'pools': 'pools', - 'subnets': 'subnets', - 'id': 'id', - 'rules': 'rules' - } - - def __init__(self, default_action=None, description=None, max_rules=None, name=None, pools=None, subnets=None, id=None, rules=None): # noqa: E501 - """FirewallPolicyExtended - a model defined in Swagger""" # noqa: E501 - - self._default_action = None - self._description = None - self._max_rules = None - self._name = None - self._pools = None - self._subnets = None - self._id = None - self._rules = None - self.discriminator = None - - if default_action is not None: - self.default_action = default_action - if description is not None: - self.description = description - if max_rules is not None: - self.max_rules = max_rules - if name is not None: - self.name = name - if pools is not None: - self.pools = pools - if subnets is not None: - self.subnets = subnets - if id is not None: - self.id = id - if rules is not None: - self.rules = rules - - @property - def default_action(self): - """Gets the default_action of this FirewallPolicyExtended. # noqa: E501 - - Policy default action # noqa: E501 - - :return: The default_action of this FirewallPolicyExtended. # noqa: E501 - :rtype: str - """ - return self._default_action - - @default_action.setter - def default_action(self, default_action): - """Sets the default_action of this FirewallPolicyExtended. - - Policy default action # noqa: E501 - - :param default_action: The default_action of this FirewallPolicyExtended. # noqa: E501 - :type: str - """ - allowed_values = ["allow", "deny"] # noqa: E501 - if default_action not in allowed_values: - raise ValueError( - "Invalid value for `default_action` ({0}), must be one of {1}" # noqa: E501 - .format(default_action, allowed_values) - ) - - self._default_action = default_action - - @property - def description(self): - """Gets the description of this FirewallPolicyExtended. # noqa: E501 - - A description of the firewall policy. # noqa: E501 - - :return: The description of this FirewallPolicyExtended. # noqa: E501 - :rtype: str - """ - return self._description - - @description.setter - def description(self, description): - """Sets the description of this FirewallPolicyExtended. - - A description of the firewall policy. # noqa: E501 - - :param description: The description of this FirewallPolicyExtended. # noqa: E501 - :type: str - """ - if description is not None and len(description) > 128: - raise ValueError("Invalid value for `description`, length must be less than or equal to `128`") # noqa: E501 - if description is not None and len(description) < 0: - raise ValueError("Invalid value for `description`, length must be greater than or equal to `0`") # noqa: E501 - - self._description = description - - @property - def max_rules(self): - """Gets the max_rules of this FirewallPolicyExtended. # noqa: E501 - - Maximum rule counts in one policy # noqa: E501 - - :return: The max_rules of this FirewallPolicyExtended. # noqa: E501 - :rtype: int - """ - return self._max_rules - - @max_rules.setter - def max_rules(self, max_rules): - """Sets the max_rules of this FirewallPolicyExtended. - - Maximum rule counts in one policy # noqa: E501 - - :param max_rules: The max_rules of this FirewallPolicyExtended. # noqa: E501 - :type: int - """ - if max_rules is not None and max_rules > 200: # noqa: E501 - raise ValueError("Invalid value for `max_rules`, must be a value less than or equal to `200`") # noqa: E501 - if max_rules is not None and max_rules < 100: # noqa: E501 - raise ValueError("Invalid value for `max_rules`, must be a value greater than or equal to `100`") # noqa: E501 - - self._max_rules = max_rules - - @property - def name(self): - """Gets the name of this FirewallPolicyExtended. # noqa: E501 - - The name of the firewall policy. # noqa: E501 - - :return: The name of this FirewallPolicyExtended. # noqa: E501 - :rtype: str - """ - return self._name - - @name.setter - def name(self, name): - """Sets the name of this FirewallPolicyExtended. - - The name of the firewall policy. # noqa: E501 - - :param name: The name of this FirewallPolicyExtended. # noqa: E501 - :type: str - """ - if name is not None and len(name) > 32: - raise ValueError("Invalid value for `name`, length must be less than or equal to `32`") # noqa: E501 - if name is not None and len(name) < 1: - raise ValueError("Invalid value for `name`, length must be greater than or equal to `1`") # noqa: E501 - if name is not None and not re.search(r'^[0-9a-zA-Z_-]*$', name): # noqa: E501 - raise ValueError(r"Invalid value for `name`, must be a follow pattern or equal to `/^[0-9a-zA-Z_-]*$/`") # noqa: E501 - - self._name = name - - @property - def pools(self): - """Gets the pools of this FirewallPolicyExtended. # noqa: E501 - - List of Network Pools this policy is currently applied to. # noqa: E501 - - :return: The pools of this FirewallPolicyExtended. # noqa: E501 - :rtype: list[str] - """ - return self._pools - - @pools.setter - def pools(self, pools): - """Sets the pools of this FirewallPolicyExtended. - - List of Network Pools this policy is currently applied to. # noqa: E501 - - :param pools: The pools of this FirewallPolicyExtended. # noqa: E501 - :type: list[str] - """ - - self._pools = pools - - @property - def subnets(self): - """Gets the subnets of this FirewallPolicyExtended. # noqa: E501 - - List of Network Subnets this policy is currently applied for SSIP service. # noqa: E501 - - :return: The subnets of this FirewallPolicyExtended. # noqa: E501 - :rtype: list[str] - """ - return self._subnets - - @subnets.setter - def subnets(self, subnets): - """Sets the subnets of this FirewallPolicyExtended. - - List of Network Subnets this policy is currently applied for SSIP service. # noqa: E501 - - :param subnets: The subnets of this FirewallPolicyExtended. # noqa: E501 - :type: list[str] - """ - - self._subnets = subnets - - @property - def id(self): - """Gets the id of this FirewallPolicyExtended. # noqa: E501 - - Unique firewall policy ID. # noqa: E501 - - :return: The id of this FirewallPolicyExtended. # noqa: E501 - :rtype: str - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this FirewallPolicyExtended. - - Unique firewall policy ID. # noqa: E501 - - :param id: The id of this FirewallPolicyExtended. # noqa: E501 - :type: str - """ - if id is not None and len(id) > 32: - raise ValueError("Invalid value for `id`, length must be less than or equal to `32`") # noqa: E501 - if id is not None and len(id) < 1: - raise ValueError("Invalid value for `id`, length must be greater than or equal to `1`") # noqa: E501 - if id is not None and not re.search(r'^[0-9a-zA-Z_-]*$', id): # noqa: E501 - raise ValueError(r"Invalid value for `id`, must be a follow pattern or equal to `/^[0-9a-zA-Z_-]*$/`") # noqa: E501 - - self._id = id - - @property - def rules(self): - """Gets the rules of this FirewallPolicyExtended. # noqa: E501 - - Name of the rules inside policy. # noqa: E501 - - :return: The rules of this FirewallPolicyExtended. # noqa: E501 - :rtype: list[str] - """ - return self._rules - - @rules.setter - def rules(self, rules): - """Sets the rules of this FirewallPolicyExtended. - - Name of the rules inside policy. # noqa: E501 - - :param rules: The rules of this FirewallPolicyExtended. # noqa: E501 - :type: list[str] - """ - - self._rules = rules - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(FirewallPolicyExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, FirewallPolicyExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_policy_extended_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_policy_extended_extended.py deleted file mode 100644 index e659e4874..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_policy_extended_extended.py +++ /dev/null @@ -1,347 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class FirewallPolicyExtendedExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'default_action': 'str', - 'description': 'str', - 'max_rules': 'int', - 'name': 'str', - 'pools': 'list[str]', - 'subnets': 'list[str]', - 'id': 'str', - 'rules': 'list[str]' - } - - attribute_map = { - 'default_action': 'default_action', - 'description': 'description', - 'max_rules': 'max_rules', - 'name': 'name', - 'pools': 'pools', - 'subnets': 'subnets', - 'id': 'id', - 'rules': 'rules' - } - - def __init__(self, default_action=None, description=None, max_rules=None, name=None, pools=None, subnets=None, id=None, rules=None): # noqa: E501 - """FirewallPolicyExtendedExtended - a model defined in Swagger""" # noqa: E501 - - self._default_action = None - self._description = None - self._max_rules = None - self._name = None - self._pools = None - self._subnets = None - self._id = None - self._rules = None - self.discriminator = None - - self.default_action = default_action - self.description = description - self.max_rules = max_rules - self.name = name - self.pools = pools - self.subnets = subnets - self.id = id - self.rules = rules - - @property - def default_action(self): - """Gets the default_action of this FirewallPolicyExtendedExtended. # noqa: E501 - - Policy default action # noqa: E501 - - :return: The default_action of this FirewallPolicyExtendedExtended. # noqa: E501 - :rtype: str - """ - return self._default_action - - @default_action.setter - def default_action(self, default_action): - """Sets the default_action of this FirewallPolicyExtendedExtended. - - Policy default action # noqa: E501 - - :param default_action: The default_action of this FirewallPolicyExtendedExtended. # noqa: E501 - :type: str - """ - if default_action is None: - raise ValueError("Invalid value for `default_action`, must not be `None`") # noqa: E501 - allowed_values = ["allow", "deny"] # noqa: E501 - if default_action not in allowed_values: - raise ValueError( - "Invalid value for `default_action` ({0}), must be one of {1}" # noqa: E501 - .format(default_action, allowed_values) - ) - - self._default_action = default_action - - @property - def description(self): - """Gets the description of this FirewallPolicyExtendedExtended. # noqa: E501 - - A description of the firewall policy. # noqa: E501 - - :return: The description of this FirewallPolicyExtendedExtended. # noqa: E501 - :rtype: str - """ - return self._description - - @description.setter - def description(self, description): - """Sets the description of this FirewallPolicyExtendedExtended. - - A description of the firewall policy. # noqa: E501 - - :param description: The description of this FirewallPolicyExtendedExtended. # noqa: E501 - :type: str - """ - if description is None: - raise ValueError("Invalid value for `description`, must not be `None`") # noqa: E501 - if description is not None and len(description) > 128: - raise ValueError("Invalid value for `description`, length must be less than or equal to `128`") # noqa: E501 - if description is not None and len(description) < 0: - raise ValueError("Invalid value for `description`, length must be greater than or equal to `0`") # noqa: E501 - - self._description = description - - @property - def max_rules(self): - """Gets the max_rules of this FirewallPolicyExtendedExtended. # noqa: E501 - - Maximum rule counts in one policy # noqa: E501 - - :return: The max_rules of this FirewallPolicyExtendedExtended. # noqa: E501 - :rtype: int - """ - return self._max_rules - - @max_rules.setter - def max_rules(self, max_rules): - """Sets the max_rules of this FirewallPolicyExtendedExtended. - - Maximum rule counts in one policy # noqa: E501 - - :param max_rules: The max_rules of this FirewallPolicyExtendedExtended. # noqa: E501 - :type: int - """ - if max_rules is None: - raise ValueError("Invalid value for `max_rules`, must not be `None`") # noqa: E501 - if max_rules is not None and max_rules > 200: # noqa: E501 - raise ValueError("Invalid value for `max_rules`, must be a value less than or equal to `200`") # noqa: E501 - if max_rules is not None and max_rules < 100: # noqa: E501 - raise ValueError("Invalid value for `max_rules`, must be a value greater than or equal to `100`") # noqa: E501 - - self._max_rules = max_rules - - @property - def name(self): - """Gets the name of this FirewallPolicyExtendedExtended. # noqa: E501 - - The name of the firewall policy. # noqa: E501 - - :return: The name of this FirewallPolicyExtendedExtended. # noqa: E501 - :rtype: str - """ - return self._name - - @name.setter - def name(self, name): - """Sets the name of this FirewallPolicyExtendedExtended. - - The name of the firewall policy. # noqa: E501 - - :param name: The name of this FirewallPolicyExtendedExtended. # noqa: E501 - :type: str - """ - if name is None: - raise ValueError("Invalid value for `name`, must not be `None`") # noqa: E501 - if name is not None and len(name) > 32: - raise ValueError("Invalid value for `name`, length must be less than or equal to `32`") # noqa: E501 - if name is not None and len(name) < 1: - raise ValueError("Invalid value for `name`, length must be greater than or equal to `1`") # noqa: E501 - if name is not None and not re.search(r'^[0-9a-zA-Z_-]*$', name): # noqa: E501 - raise ValueError(r"Invalid value for `name`, must be a follow pattern or equal to `/^[0-9a-zA-Z_-]*$/`") # noqa: E501 - - self._name = name - - @property - def pools(self): - """Gets the pools of this FirewallPolicyExtendedExtended. # noqa: E501 - - List of Network Pools this policy is currently applied to. # noqa: E501 - - :return: The pools of this FirewallPolicyExtendedExtended. # noqa: E501 - :rtype: list[str] - """ - return self._pools - - @pools.setter - def pools(self, pools): - """Sets the pools of this FirewallPolicyExtendedExtended. - - List of Network Pools this policy is currently applied to. # noqa: E501 - - :param pools: The pools of this FirewallPolicyExtendedExtended. # noqa: E501 - :type: list[str] - """ - if pools is None: - raise ValueError("Invalid value for `pools`, must not be `None`") # noqa: E501 - - self._pools = pools - - @property - def subnets(self): - """Gets the subnets of this FirewallPolicyExtendedExtended. # noqa: E501 - - List of Network Subnets this policy is currently applied for SSIP service. # noqa: E501 - - :return: The subnets of this FirewallPolicyExtendedExtended. # noqa: E501 - :rtype: list[str] - """ - return self._subnets - - @subnets.setter - def subnets(self, subnets): - """Sets the subnets of this FirewallPolicyExtendedExtended. - - List of Network Subnets this policy is currently applied for SSIP service. # noqa: E501 - - :param subnets: The subnets of this FirewallPolicyExtendedExtended. # noqa: E501 - :type: list[str] - """ - if subnets is None: - raise ValueError("Invalid value for `subnets`, must not be `None`") # noqa: E501 - - self._subnets = subnets - - @property - def id(self): - """Gets the id of this FirewallPolicyExtendedExtended. # noqa: E501 - - Unique firewall policy ID. # noqa: E501 - - :return: The id of this FirewallPolicyExtendedExtended. # noqa: E501 - :rtype: str - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this FirewallPolicyExtendedExtended. - - Unique firewall policy ID. # noqa: E501 - - :param id: The id of this FirewallPolicyExtendedExtended. # noqa: E501 - :type: str - """ - if id is None: - raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 - if id is not None and len(id) > 32: - raise ValueError("Invalid value for `id`, length must be less than or equal to `32`") # noqa: E501 - if id is not None and len(id) < 1: - raise ValueError("Invalid value for `id`, length must be greater than or equal to `1`") # noqa: E501 - if id is not None and not re.search(r'^[0-9a-zA-Z_-]*$', id): # noqa: E501 - raise ValueError(r"Invalid value for `id`, must be a follow pattern or equal to `/^[0-9a-zA-Z_-]*$/`") # noqa: E501 - - self._id = id - - @property - def rules(self): - """Gets the rules of this FirewallPolicyExtendedExtended. # noqa: E501 - - Name of the rules inside policy. # noqa: E501 - - :return: The rules of this FirewallPolicyExtendedExtended. # noqa: E501 - :rtype: list[str] - """ - return self._rules - - @rules.setter - def rules(self, rules): - """Sets the rules of this FirewallPolicyExtendedExtended. - - Name of the rules inside policy. # noqa: E501 - - :param rules: The rules of this FirewallPolicyExtendedExtended. # noqa: E501 - :type: list[str] - """ - if rules is None: - raise ValueError("Invalid value for `rules`, must not be `None`") # noqa: E501 - - self._rules = rules - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(FirewallPolicyExtendedExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, FirewallPolicyExtendedExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_rule.py b/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_rule.py deleted file mode 100644 index 77b5adacb..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_rule.py +++ /dev/null @@ -1,380 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class FirewallRule(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'action': 'str', - 'description': 'str', - 'dst_ports': 'PoliciesPolicyRuleDstPorts', - 'id': 'str', - 'index': 'int', - 'name': 'str', - 'protocol': 'str', - 'src_networks': 'list[str]', - 'src_ports': 'PoliciesPolicyRuleDstPorts' - } - - attribute_map = { - 'action': 'action', - 'description': 'description', - 'dst_ports': 'dst_ports', - 'id': 'id', - 'index': 'index', - 'name': 'name', - 'protocol': 'protocol', - 'src_networks': 'src_networks', - 'src_ports': 'src_ports' - } - - def __init__(self, action=None, description=None, dst_ports=None, id=None, index=None, name=None, protocol=None, src_networks=None, src_ports=None): # noqa: E501 - """FirewallRule - a model defined in Swagger""" # noqa: E501 - - self._action = None - self._description = None - self._dst_ports = None - self._id = None - self._index = None - self._name = None - self._protocol = None - self._src_networks = None - self._src_ports = None - self.discriminator = None - - self.action = action - self.description = description - self.dst_ports = dst_ports - self.id = id - self.index = index - self.name = name - self.protocol = protocol - self.src_networks = src_networks - self.src_ports = src_ports - - @property - def action(self): - """Gets the action of this FirewallRule. # noqa: E501 - - Rule action # noqa: E501 - - :return: The action of this FirewallRule. # noqa: E501 - :rtype: str - """ - return self._action - - @action.setter - def action(self, action): - """Sets the action of this FirewallRule. - - Rule action # noqa: E501 - - :param action: The action of this FirewallRule. # noqa: E501 - :type: str - """ - if action is None: - raise ValueError("Invalid value for `action`, must not be `None`") # noqa: E501 - allowed_values = ["allow", "deny", "reject"] # noqa: E501 - if action not in allowed_values: - raise ValueError( - "Invalid value for `action` ({0}), must be one of {1}" # noqa: E501 - .format(action, allowed_values) - ) - - self._action = action - - @property - def description(self): - """Gets the description of this FirewallRule. # noqa: E501 - - A description of the firewall rule. # noqa: E501 - - :return: The description of this FirewallRule. # noqa: E501 - :rtype: str - """ - return self._description - - @description.setter - def description(self, description): - """Sets the description of this FirewallRule. - - A description of the firewall rule. # noqa: E501 - - :param description: The description of this FirewallRule. # noqa: E501 - :type: str - """ - if description is None: - raise ValueError("Invalid value for `description`, must not be `None`") # noqa: E501 - if description is not None and len(description) > 128: - raise ValueError("Invalid value for `description`, length must be less than or equal to `128`") # noqa: E501 - if description is not None and len(description) < 0: - raise ValueError("Invalid value for `description`, length must be greater than or equal to `0`") # noqa: E501 - - self._description = description - - @property - def dst_ports(self): - """Gets the dst_ports of this FirewallRule. # noqa: E501 - - Customer specified protocols or OneFS default services's protocols for destination control # noqa: E501 - - :return: The dst_ports of this FirewallRule. # noqa: E501 - :rtype: PoliciesPolicyRuleDstPorts - """ - return self._dst_ports - - @dst_ports.setter - def dst_ports(self, dst_ports): - """Sets the dst_ports of this FirewallRule. - - Customer specified protocols or OneFS default services's protocols for destination control # noqa: E501 - - :param dst_ports: The dst_ports of this FirewallRule. # noqa: E501 - :type: PoliciesPolicyRuleDstPorts - """ - if dst_ports is None: - raise ValueError("Invalid value for `dst_ports`, must not be `None`") # noqa: E501 - - self._dst_ports = dst_ports - - @property - def id(self): - """Gets the id of this FirewallRule. # noqa: E501 - - Unique firewall rule ID # noqa: E501 - - :return: The id of this FirewallRule. # noqa: E501 - :rtype: str - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this FirewallRule. - - Unique firewall rule ID # noqa: E501 - - :param id: The id of this FirewallRule. # noqa: E501 - :type: str - """ - if id is None: - raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 - if id is not None and len(id) > 66: - raise ValueError("Invalid value for `id`, length must be less than or equal to `66`") # noqa: E501 - if id is not None and len(id) < 1: - raise ValueError("Invalid value for `id`, length must be greater than or equal to `1`") # noqa: E501 - - self._id = id - - @property - def index(self): - """Gets the index of this FirewallRule. # noqa: E501 - - Firewall rule index in policy # noqa: E501 - - :return: The index of this FirewallRule. # noqa: E501 - :rtype: int - """ - return self._index - - @index.setter - def index(self, index): - """Sets the index of this FirewallRule. - - Firewall rule index in policy # noqa: E501 - - :param index: The index of this FirewallRule. # noqa: E501 - :type: int - """ - if index is None: - raise ValueError("Invalid value for `index`, must not be `None`") # noqa: E501 - if index is not None and index > 200: # noqa: E501 - raise ValueError("Invalid value for `index`, must be a value less than or equal to `200`") # noqa: E501 - if index is not None and index < 1: # noqa: E501 - raise ValueError("Invalid value for `index`, must be a value greater than or equal to `1`") # noqa: E501 - - self._index = index - - @property - def name(self): - """Gets the name of this FirewallRule. # noqa: E501 - - The name of the firewall rule. # noqa: E501 - - :return: The name of this FirewallRule. # noqa: E501 - :rtype: str - """ - return self._name - - @name.setter - def name(self, name): - """Sets the name of this FirewallRule. - - The name of the firewall rule. # noqa: E501 - - :param name: The name of this FirewallRule. # noqa: E501 - :type: str - """ - if name is None: - raise ValueError("Invalid value for `name`, must not be `None`") # noqa: E501 - if name is not None and len(name) > 32: - raise ValueError("Invalid value for `name`, length must be less than or equal to `32`") # noqa: E501 - if name is not None and len(name) < 1: - raise ValueError("Invalid value for `name`, length must be greater than or equal to `1`") # noqa: E501 - if name is not None and not re.search(r'^[0-9a-zA-Z_-]*$', name): # noqa: E501 - raise ValueError(r"Invalid value for `name`, must be a follow pattern or equal to `/^[0-9a-zA-Z_-]*$/`") # noqa: E501 - - self._name = name - - @property - def protocol(self): - """Gets the protocol of this FirewallRule. # noqa: E501 - - Firewall rule set on protocol # noqa: E501 - - :return: The protocol of this FirewallRule. # noqa: E501 - :rtype: str - """ - return self._protocol - - @protocol.setter - def protocol(self, protocol): - """Sets the protocol of this FirewallRule. - - Firewall rule set on protocol # noqa: E501 - - :param protocol: The protocol of this FirewallRule. # noqa: E501 - :type: str - """ - if protocol is None: - raise ValueError("Invalid value for `protocol`, must not be `None`") # noqa: E501 - allowed_values = ["ALL", "TCP", "UDP", "ICMP", "ICMP6"] # noqa: E501 - if protocol not in allowed_values: - raise ValueError( - "Invalid value for `protocol` ({0}), must be one of {1}" # noqa: E501 - .format(protocol, allowed_values) - ) - - self._protocol = protocol - - @property - def src_networks(self): - """Gets the src_networks of this FirewallRule. # noqa: E501 - - Source Networks # noqa: E501 - - :return: The src_networks of this FirewallRule. # noqa: E501 - :rtype: list[str] - """ - return self._src_networks - - @src_networks.setter - def src_networks(self, src_networks): - """Sets the src_networks of this FirewallRule. - - Source Networks # noqa: E501 - - :param src_networks: The src_networks of this FirewallRule. # noqa: E501 - :type: list[str] - """ - if src_networks is None: - raise ValueError("Invalid value for `src_networks`, must not be `None`") # noqa: E501 - - self._src_networks = src_networks - - @property - def src_ports(self): - """Gets the src_ports of this FirewallRule. # noqa: E501 - - Customer specified protocols or OneFS default services's protocols for source control # noqa: E501 - - :return: The src_ports of this FirewallRule. # noqa: E501 - :rtype: PoliciesPolicyRuleDstPorts - """ - return self._src_ports - - @src_ports.setter - def src_ports(self, src_ports): - """Sets the src_ports of this FirewallRule. - - Customer specified protocols or OneFS default services's protocols for source control # noqa: E501 - - :param src_ports: The src_ports of this FirewallRule. # noqa: E501 - :type: PoliciesPolicyRuleDstPorts - """ - if src_ports is None: - raise ValueError("Invalid value for `src_ports`, must not be `None`") # noqa: E501 - - self._src_ports = src_ports - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(FirewallRule, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, FirewallRule): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_rules.py b/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_rules.py deleted file mode 100644 index e6aa5866c..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_rules.py +++ /dev/null @@ -1,179 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class FirewallRules(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'resume': 'str', - 'rules': 'list[FirewallRule]', - 'total': 'int' - } - - attribute_map = { - 'resume': 'resume', - 'rules': 'rules', - 'total': 'total' - } - - def __init__(self, resume=None, rules=None, total=None): # noqa: E501 - """FirewallRules - a model defined in Swagger""" # noqa: E501 - - self._resume = None - self._rules = None - self._total = None - self.discriminator = None - - if resume is not None: - self.resume = resume - if rules is not None: - self.rules = rules - if total is not None: - self.total = total - - @property - def resume(self): - """Gets the resume of this FirewallRules. # noqa: E501 - - Provide this token as the 'resume' query argument to continue listing results. # noqa: E501 - - :return: The resume of this FirewallRules. # noqa: E501 - :rtype: str - """ - return self._resume - - @resume.setter - def resume(self, resume): - """Sets the resume of this FirewallRules. - - Provide this token as the 'resume' query argument to continue listing results. # noqa: E501 - - :param resume: The resume of this FirewallRules. # noqa: E501 - :type: str - """ - if resume is not None and len(resume) > 8192: - raise ValueError("Invalid value for `resume`, length must be less than or equal to `8192`") # noqa: E501 - if resume is not None and len(resume) < 0: - raise ValueError("Invalid value for `resume`, length must be greater than or equal to `0`") # noqa: E501 - - self._resume = resume - - @property - def rules(self): - """Gets the rules of this FirewallRules. # noqa: E501 - - - :return: The rules of this FirewallRules. # noqa: E501 - :rtype: list[FirewallRule] - """ - return self._rules - - @rules.setter - def rules(self, rules): - """Sets the rules of this FirewallRules. - - - :param rules: The rules of this FirewallRules. # noqa: E501 - :type: list[FirewallRule] - """ - - self._rules = rules - - @property - def total(self): - """Gets the total of this FirewallRules. # noqa: E501 - - Total number of items available. # noqa: E501 - - :return: The total of this FirewallRules. # noqa: E501 - :rtype: int - """ - return self._total - - @total.setter - def total(self, total): - """Sets the total of this FirewallRules. - - Total number of items available. # noqa: E501 - - :param total: The total of this FirewallRules. # noqa: E501 - :type: int - """ - if total is not None and total > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `total`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if total is not None and total < 0: # noqa: E501 - raise ValueError("Invalid value for `total`, must be a value greater than or equal to `0`") # noqa: E501 - - self._total = total - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(FirewallRules, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, FirewallRules): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_service.py b/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_service.py deleted file mode 100644 index b499d6ace..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_service.py +++ /dev/null @@ -1,222 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class FirewallService(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'aliases': 'list[str]', - 'port': 'int', - 'protocol': 'list[str]', - 'service_name': 'str' - } - - attribute_map = { - 'aliases': 'aliases', - 'port': 'port', - 'protocol': 'protocol', - 'service_name': 'service_name' - } - - def __init__(self, aliases=None, port=None, protocol=None, service_name=None): # noqa: E501 - """FirewallService - a model defined in Swagger""" # noqa: E501 - - self._aliases = None - self._port = None - self._protocol = None - self._service_name = None - self.discriminator = None - - self.aliases = aliases - self.port = port - self.protocol = protocol - self.service_name = service_name - - @property - def aliases(self): - """Gets the aliases of this FirewallService. # noqa: E501 - - Aliases of the service name # noqa: E501 - - :return: The aliases of this FirewallService. # noqa: E501 - :rtype: list[str] - """ - return self._aliases - - @aliases.setter - def aliases(self, aliases): - """Sets the aliases of this FirewallService. - - Aliases of the service name # noqa: E501 - - :param aliases: The aliases of this FirewallService. # noqa: E501 - :type: list[str] - """ - if aliases is None: - raise ValueError("Invalid value for `aliases`, must not be `None`") # noqa: E501 - - self._aliases = aliases - - @property - def port(self): - """Gets the port of this FirewallService. # noqa: E501 - - Port number of the service # noqa: E501 - - :return: The port of this FirewallService. # noqa: E501 - :rtype: int - """ - return self._port - - @port.setter - def port(self, port): - """Sets the port of this FirewallService. - - Port number of the service # noqa: E501 - - :param port: The port of this FirewallService. # noqa: E501 - :type: int - """ - if port is None: - raise ValueError("Invalid value for `port`, must not be `None`") # noqa: E501 - if port is not None and port > 65535: # noqa: E501 - raise ValueError("Invalid value for `port`, must be a value less than or equal to `65535`") # noqa: E501 - if port is not None and port < 0: # noqa: E501 - raise ValueError("Invalid value for `port`, must be a value greater than or equal to `0`") # noqa: E501 - - self._port = port - - @property - def protocol(self): - """Gets the protocol of this FirewallService. # noqa: E501 - - Protocol associated with the service # noqa: E501 - - :return: The protocol of this FirewallService. # noqa: E501 - :rtype: list[str] - """ - return self._protocol - - @protocol.setter - def protocol(self, protocol): - """Sets the protocol of this FirewallService. - - Protocol associated with the service # noqa: E501 - - :param protocol: The protocol of this FirewallService. # noqa: E501 - :type: list[str] - """ - if protocol is None: - raise ValueError("Invalid value for `protocol`, must not be `None`") # noqa: E501 - allowed_values = ["ALL", "TCP", "UDP", "ICMP", "ICMP6"] # noqa: E501 - if not set(protocol).issubset(set(allowed_values)): - raise ValueError( - "Invalid values for `protocol` [{0}], must be a subset of [{1}]" # noqa: E501 - .format(", ".join(map(str, set(protocol) - set(allowed_values))), # noqa: E501 - ", ".join(map(str, allowed_values))) - ) - - self._protocol = protocol - - @property - def service_name(self): - """Gets the service_name of this FirewallService. # noqa: E501 - - The name of the firewall service. # noqa: E501 - - :return: The service_name of this FirewallService. # noqa: E501 - :rtype: str - """ - return self._service_name - - @service_name.setter - def service_name(self, service_name): - """Sets the service_name of this FirewallService. - - The name of the firewall service. # noqa: E501 - - :param service_name: The service_name of this FirewallService. # noqa: E501 - :type: str - """ - if service_name is None: - raise ValueError("Invalid value for `service_name`, must not be `None`") # noqa: E501 - if service_name is not None and len(service_name) > 32: - raise ValueError("Invalid value for `service_name`, length must be less than or equal to `32`") # noqa: E501 - if service_name is not None and len(service_name) < 1: - raise ValueError("Invalid value for `service_name`, length must be greater than or equal to `1`") # noqa: E501 - if service_name is not None and not re.search(r'^[^-][0-9a-zA-Z_-]*[^-]$', service_name): # noqa: E501 - raise ValueError(r"Invalid value for `service_name`, must be a follow pattern or equal to `/^[^-][0-9a-zA-Z_-]*[^-]$/`") # noqa: E501 - - self._service_name = service_name - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(FirewallService, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, FirewallService): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_services.py b/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_services.py deleted file mode 100644 index c92751840..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_services.py +++ /dev/null @@ -1,179 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class FirewallServices(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'resume': 'str', - 'services': 'list[FirewallService]', - 'total': 'int' - } - - attribute_map = { - 'resume': 'resume', - 'services': 'services', - 'total': 'total' - } - - def __init__(self, resume=None, services=None, total=None): # noqa: E501 - """FirewallServices - a model defined in Swagger""" # noqa: E501 - - self._resume = None - self._services = None - self._total = None - self.discriminator = None - - if resume is not None: - self.resume = resume - if services is not None: - self.services = services - if total is not None: - self.total = total - - @property - def resume(self): - """Gets the resume of this FirewallServices. # noqa: E501 - - Provide this token as the 'resume' query argument to continue listing results. # noqa: E501 - - :return: The resume of this FirewallServices. # noqa: E501 - :rtype: str - """ - return self._resume - - @resume.setter - def resume(self, resume): - """Sets the resume of this FirewallServices. - - Provide this token as the 'resume' query argument to continue listing results. # noqa: E501 - - :param resume: The resume of this FirewallServices. # noqa: E501 - :type: str - """ - if resume is not None and len(resume) > 8192: - raise ValueError("Invalid value for `resume`, length must be less than or equal to `8192`") # noqa: E501 - if resume is not None and len(resume) < 0: - raise ValueError("Invalid value for `resume`, length must be greater than or equal to `0`") # noqa: E501 - - self._resume = resume - - @property - def services(self): - """Gets the services of this FirewallServices. # noqa: E501 - - - :return: The services of this FirewallServices. # noqa: E501 - :rtype: list[FirewallService] - """ - return self._services - - @services.setter - def services(self, services): - """Sets the services of this FirewallServices. - - - :param services: The services of this FirewallServices. # noqa: E501 - :type: list[FirewallService] - """ - - self._services = services - - @property - def total(self): - """Gets the total of this FirewallServices. # noqa: E501 - - Total number of items available. # noqa: E501 - - :return: The total of this FirewallServices. # noqa: E501 - :rtype: int - """ - return self._total - - @total.setter - def total(self, total): - """Sets the total of this FirewallServices. - - Total number of items available. # noqa: E501 - - :param total: The total of this FirewallServices. # noqa: E501 - :type: int - """ - if total is not None and total > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `total`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if total is not None and total < 0: # noqa: E501 - raise ValueError("Invalid value for `total`, must be a value greater than or equal to `0`") # noqa: E501 - - self._total = total - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(FirewallServices, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, FirewallServices): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_settings_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_settings_extended.py deleted file mode 100644 index 0458f7c44..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_settings_extended.py +++ /dev/null @@ -1,145 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class FirewallSettingsExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'dscp_enabled': 'bool', - 'enabled': 'bool' - } - - attribute_map = { - 'dscp_enabled': 'dscp_enabled', - 'enabled': 'enabled' - } - - def __init__(self, dscp_enabled=None, enabled=None): # noqa: E501 - """FirewallSettingsExtended - a model defined in Swagger""" # noqa: E501 - - self._dscp_enabled = None - self._enabled = None - self.discriminator = None - - if dscp_enabled is not None: - self.dscp_enabled = dscp_enabled - if enabled is not None: - self.enabled = enabled - - @property - def dscp_enabled(self): - """Gets the dscp_enabled of this FirewallSettingsExtended. # noqa: E501 - - Indicates whether DSCP rules are enabled. # noqa: E501 - - :return: The dscp_enabled of this FirewallSettingsExtended. # noqa: E501 - :rtype: bool - """ - return self._dscp_enabled - - @dscp_enabled.setter - def dscp_enabled(self, dscp_enabled): - """Sets the dscp_enabled of this FirewallSettingsExtended. - - Indicates whether DSCP rules are enabled. # noqa: E501 - - :param dscp_enabled: The dscp_enabled of this FirewallSettingsExtended. # noqa: E501 - :type: bool - """ - - self._dscp_enabled = dscp_enabled - - @property - def enabled(self): - """Gets the enabled of this FirewallSettingsExtended. # noqa: E501 - - View the network firewall status, Enabled or Disabled # noqa: E501 - - :return: The enabled of this FirewallSettingsExtended. # noqa: E501 - :rtype: bool - """ - return self._enabled - - @enabled.setter - def enabled(self, enabled): - """Sets the enabled of this FirewallSettingsExtended. - - View the network firewall status, Enabled or Disabled # noqa: E501 - - :param enabled: The enabled of this FirewallSettingsExtended. # noqa: E501 - :type: bool - """ - - self._enabled = enabled - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(FirewallSettingsExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, FirewallSettingsExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_settings_settings.py b/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_settings_settings.py deleted file mode 100644 index 2da055c68..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_settings_settings.py +++ /dev/null @@ -1,147 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class FirewallSettingsSettings(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'dscp_enabled': 'bool', - 'enabled': 'bool' - } - - attribute_map = { - 'dscp_enabled': 'dscp_enabled', - 'enabled': 'enabled' - } - - def __init__(self, dscp_enabled=None, enabled=None): # noqa: E501 - """FirewallSettingsSettings - a model defined in Swagger""" # noqa: E501 - - self._dscp_enabled = None - self._enabled = None - self.discriminator = None - - self.dscp_enabled = dscp_enabled - self.enabled = enabled - - @property - def dscp_enabled(self): - """Gets the dscp_enabled of this FirewallSettingsSettings. # noqa: E501 - - Indicates whether DSCP rules are enabled. # noqa: E501 - - :return: The dscp_enabled of this FirewallSettingsSettings. # noqa: E501 - :rtype: bool - """ - return self._dscp_enabled - - @dscp_enabled.setter - def dscp_enabled(self, dscp_enabled): - """Sets the dscp_enabled of this FirewallSettingsSettings. - - Indicates whether DSCP rules are enabled. # noqa: E501 - - :param dscp_enabled: The dscp_enabled of this FirewallSettingsSettings. # noqa: E501 - :type: bool - """ - if dscp_enabled is None: - raise ValueError("Invalid value for `dscp_enabled`, must not be `None`") # noqa: E501 - - self._dscp_enabled = dscp_enabled - - @property - def enabled(self): - """Gets the enabled of this FirewallSettingsSettings. # noqa: E501 - - View the network firewall status, Enabled or Disabled # noqa: E501 - - :return: The enabled of this FirewallSettingsSettings. # noqa: E501 - :rtype: bool - """ - return self._enabled - - @enabled.setter - def enabled(self, enabled): - """Sets the enabled of this FirewallSettingsSettings. - - View the network firewall status, Enabled or Disabled # noqa: E501 - - :param enabled: The enabled of this FirewallSettingsSettings. # noqa: E501 - :type: bool - """ - if enabled is None: - raise ValueError("Invalid value for `enabled`, must not be `None`") # noqa: E501 - - self._enabled = enabled - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(FirewallSettingsSettings, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, FirewallSettingsSettings): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_list.py b/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_list.py deleted file mode 100644 index 188dc7059..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_list.py +++ /dev/null @@ -1,117 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class HardeningList(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'profiles': 'list[HardeningListProfile]' - } - - attribute_map = { - 'profiles': 'profiles' - } - - def __init__(self, profiles=None): # noqa: E501 - """HardeningList - a model defined in Swagger""" # noqa: E501 - - self._profiles = None - self.discriminator = None - - if profiles is not None: - self.profiles = profiles - - @property - def profiles(self): - """Gets the profiles of this HardeningList. # noqa: E501 - - List of hardening engine profile entries # noqa: E501 - - :return: The profiles of this HardeningList. # noqa: E501 - :rtype: list[HardeningListProfile] - """ - return self._profiles - - @profiles.setter - def profiles(self, profiles): - """Sets the profiles of this HardeningList. - - List of hardening engine profile entries # noqa: E501 - - :param profiles: The profiles of this HardeningList. # noqa: E501 - :type: list[HardeningListProfile] - """ - - self._profiles = profiles - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(HardeningList, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, HardeningList): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_reports_report.py b/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_reports_report.py deleted file mode 100644 index 47919174a..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_reports_report.py +++ /dev/null @@ -1,147 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class HardeningReportsReport(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'profiles': 'list[HardeningReportsReportProfile]', - 'status': 'str' - } - - attribute_map = { - 'profiles': 'profiles', - 'status': 'status' - } - - def __init__(self, profiles=None, status=None): # noqa: E501 - """HardeningReportsReport - a model defined in Swagger""" # noqa: E501 - - self._profiles = None - self._status = None - self.discriminator = None - - if profiles is not None: - self.profiles = profiles - if status is not None: - self.status = status - - @property - def profiles(self): - """Gets the profiles of this HardeningReportsReport. # noqa: E501 - - List of reports for each profile. # noqa: E501 - - :return: The profiles of this HardeningReportsReport. # noqa: E501 - :rtype: list[HardeningReportsReportProfile] - """ - return self._profiles - - @profiles.setter - def profiles(self, profiles): - """Sets the profiles of this HardeningReportsReport. - - List of reports for each profile. # noqa: E501 - - :param profiles: The profiles of this HardeningReportsReport. # noqa: E501 - :type: list[HardeningReportsReportProfile] - """ - - self._profiles = profiles - - @property - def status(self): - """Gets the status of this HardeningReportsReport. # noqa: E501 - - - :return: The status of this HardeningReportsReport. # noqa: E501 - :rtype: str - """ - return self._status - - @status.setter - def status(self, status): - """Sets the status of this HardeningReportsReport. - - - :param status: The status of this HardeningReportsReport. # noqa: E501 - :type: str - """ - if status is not None and len(status) > 255: - raise ValueError("Invalid value for `status`, length must be less than or equal to `255`") # noqa: E501 - if status is not None and len(status) < 0: - raise ValueError("Invalid value for `status`, length must be greater than or equal to `0`") # noqa: E501 - - self._status = status - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(HardeningReportsReport, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, HardeningReportsReport): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_reports_report_profile.py b/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_reports_report_profile.py deleted file mode 100644 index 9e7658d9b..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_reports_report_profile.py +++ /dev/null @@ -1,231 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class HardeningReportsReportProfile(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'applied': 'bool', - 'cluster_wide': 'HardeningReportsReportProfileClusterWide', - 'name': 'str', - 'nodes': 'list[HardeningReportsReportProfileNode]', - 'status': 'str' - } - - attribute_map = { - 'applied': 'applied', - 'cluster_wide': 'cluster_wide', - 'name': 'name', - 'nodes': 'nodes', - 'status': 'status' - } - - def __init__(self, applied=None, cluster_wide=None, name=None, nodes=None, status=None): # noqa: E501 - """HardeningReportsReportProfile - a model defined in Swagger""" # noqa: E501 - - self._applied = None - self._cluster_wide = None - self._name = None - self._nodes = None - self._status = None - self.discriminator = None - - if applied is not None: - self.applied = applied - if cluster_wide is not None: - self.cluster_wide = cluster_wide - if name is not None: - self.name = name - if nodes is not None: - self.nodes = nodes - if status is not None: - self.status = status - - @property - def applied(self): - """Gets the applied of this HardeningReportsReportProfile. # noqa: E501 - - - :return: The applied of this HardeningReportsReportProfile. # noqa: E501 - :rtype: bool - """ - return self._applied - - @applied.setter - def applied(self, applied): - """Sets the applied of this HardeningReportsReportProfile. - - - :param applied: The applied of this HardeningReportsReportProfile. # noqa: E501 - :type: bool - """ - - self._applied = applied - - @property - def cluster_wide(self): - """Gets the cluster_wide of this HardeningReportsReportProfile. # noqa: E501 - - Report for cluster wide rules. # noqa: E501 - - :return: The cluster_wide of this HardeningReportsReportProfile. # noqa: E501 - :rtype: HardeningReportsReportProfileClusterWide - """ - return self._cluster_wide - - @cluster_wide.setter - def cluster_wide(self, cluster_wide): - """Sets the cluster_wide of this HardeningReportsReportProfile. - - Report for cluster wide rules. # noqa: E501 - - :param cluster_wide: The cluster_wide of this HardeningReportsReportProfile. # noqa: E501 - :type: HardeningReportsReportProfileClusterWide - """ - - self._cluster_wide = cluster_wide - - @property - def name(self): - """Gets the name of this HardeningReportsReportProfile. # noqa: E501 - - - :return: The name of this HardeningReportsReportProfile. # noqa: E501 - :rtype: str - """ - return self._name - - @name.setter - def name(self, name): - """Sets the name of this HardeningReportsReportProfile. - - - :param name: The name of this HardeningReportsReportProfile. # noqa: E501 - :type: str - """ - if name is not None and len(name) > 255: - raise ValueError("Invalid value for `name`, length must be less than or equal to `255`") # noqa: E501 - if name is not None and len(name) < 0: - raise ValueError("Invalid value for `name`, length must be greater than or equal to `0`") # noqa: E501 - - self._name = name - - @property - def nodes(self): - """Gets the nodes of this HardeningReportsReportProfile. # noqa: E501 - - List of reports for each node. # noqa: E501 - - :return: The nodes of this HardeningReportsReportProfile. # noqa: E501 - :rtype: list[HardeningReportsReportProfileNode] - """ - return self._nodes - - @nodes.setter - def nodes(self, nodes): - """Sets the nodes of this HardeningReportsReportProfile. - - List of reports for each node. # noqa: E501 - - :param nodes: The nodes of this HardeningReportsReportProfile. # noqa: E501 - :type: list[HardeningReportsReportProfileNode] - """ - - self._nodes = nodes - - @property - def status(self): - """Gets the status of this HardeningReportsReportProfile. # noqa: E501 - - - :return: The status of this HardeningReportsReportProfile. # noqa: E501 - :rtype: str - """ - return self._status - - @status.setter - def status(self, status): - """Sets the status of this HardeningReportsReportProfile. - - - :param status: The status of this HardeningReportsReportProfile. # noqa: E501 - :type: str - """ - if status is not None and len(status) > 255: - raise ValueError("Invalid value for `status`, length must be less than or equal to `255`") # noqa: E501 - if status is not None and len(status) < 0: - raise ValueError("Invalid value for `status`, length must be greater than or equal to `0`") # noqa: E501 - - self._status = status - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(HardeningReportsReportProfile, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, HardeningReportsReportProfile): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_reports_report_profile_cluster_wide.py b/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_reports_report_profile_cluster_wide.py deleted file mode 100644 index 421954ef0..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_reports_report_profile_cluster_wide.py +++ /dev/null @@ -1,173 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class HardeningReportsReportProfileClusterWide(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'rules': 'list[HardeningReportsReportProfileClusterWideRule]', - 'status': 'str', - 'time': 'int' - } - - attribute_map = { - 'rules': 'rules', - 'status': 'status', - 'time': 'time' - } - - def __init__(self, rules=None, status=None, time=None): # noqa: E501 - """HardeningReportsReportProfileClusterWide - a model defined in Swagger""" # noqa: E501 - - self._rules = None - self._status = None - self._time = None - self.discriminator = None - - if rules is not None: - self.rules = rules - if status is not None: - self.status = status - if time is not None: - self.time = time - - @property - def rules(self): - """Gets the rules of this HardeningReportsReportProfileClusterWide. # noqa: E501 - - List of rules in the report. # noqa: E501 - - :return: The rules of this HardeningReportsReportProfileClusterWide. # noqa: E501 - :rtype: list[HardeningReportsReportProfileClusterWideRule] - """ - return self._rules - - @rules.setter - def rules(self, rules): - """Sets the rules of this HardeningReportsReportProfileClusterWide. - - List of rules in the report. # noqa: E501 - - :param rules: The rules of this HardeningReportsReportProfileClusterWide. # noqa: E501 - :type: list[HardeningReportsReportProfileClusterWideRule] - """ - - self._rules = rules - - @property - def status(self): - """Gets the status of this HardeningReportsReportProfileClusterWide. # noqa: E501 - - - :return: The status of this HardeningReportsReportProfileClusterWide. # noqa: E501 - :rtype: str - """ - return self._status - - @status.setter - def status(self, status): - """Sets the status of this HardeningReportsReportProfileClusterWide. - - - :param status: The status of this HardeningReportsReportProfileClusterWide. # noqa: E501 - :type: str - """ - if status is not None and len(status) > 255: - raise ValueError("Invalid value for `status`, length must be less than or equal to `255`") # noqa: E501 - if status is not None and len(status) < 0: - raise ValueError("Invalid value for `status`, length must be greater than or equal to `0`") # noqa: E501 - - self._status = status - - @property - def time(self): - """Gets the time of this HardeningReportsReportProfileClusterWide. # noqa: E501 - - - :return: The time of this HardeningReportsReportProfileClusterWide. # noqa: E501 - :rtype: int - """ - return self._time - - @time.setter - def time(self, time): - """Sets the time of this HardeningReportsReportProfileClusterWide. - - - :param time: The time of this HardeningReportsReportProfileClusterWide. # noqa: E501 - :type: int - """ - - self._time = time - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(HardeningReportsReportProfileClusterWide, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, HardeningReportsReportProfileClusterWide): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_reports_report_profile_cluster_wide_rule.py b/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_reports_report_profile_cluster_wide_rule.py deleted file mode 100644 index 7b51943d1..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_reports_report_profile_cluster_wide_rule.py +++ /dev/null @@ -1,237 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class HardeningReportsReportProfileClusterWideRule(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'description': 'str', - 'error_message': 'str', - 'name': 'str', - 'settings_comparisons_list': 'list[HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItem]', - 'status': 'str' - } - - attribute_map = { - 'description': 'description', - 'error_message': 'error_message', - 'name': 'name', - 'settings_comparisons_list': 'settings_comparisons_list', - 'status': 'status' - } - - def __init__(self, description=None, error_message=None, name=None, settings_comparisons_list=None, status=None): # noqa: E501 - """HardeningReportsReportProfileClusterWideRule - a model defined in Swagger""" # noqa: E501 - - self._description = None - self._error_message = None - self._name = None - self._settings_comparisons_list = None - self._status = None - self.discriminator = None - - if description is not None: - self.description = description - if error_message is not None: - self.error_message = error_message - if name is not None: - self.name = name - if settings_comparisons_list is not None: - self.settings_comparisons_list = settings_comparisons_list - if status is not None: - self.status = status - - @property - def description(self): - """Gets the description of this HardeningReportsReportProfileClusterWideRule. # noqa: E501 - - - :return: The description of this HardeningReportsReportProfileClusterWideRule. # noqa: E501 - :rtype: str - """ - return self._description - - @description.setter - def description(self, description): - """Sets the description of this HardeningReportsReportProfileClusterWideRule. - - - :param description: The description of this HardeningReportsReportProfileClusterWideRule. # noqa: E501 - :type: str - """ - if description is not None and len(description) > 255: - raise ValueError("Invalid value for `description`, length must be less than or equal to `255`") # noqa: E501 - if description is not None and len(description) < 0: - raise ValueError("Invalid value for `description`, length must be greater than or equal to `0`") # noqa: E501 - - self._description = description - - @property - def error_message(self): - """Gets the error_message of this HardeningReportsReportProfileClusterWideRule. # noqa: E501 - - - :return: The error_message of this HardeningReportsReportProfileClusterWideRule. # noqa: E501 - :rtype: str - """ - return self._error_message - - @error_message.setter - def error_message(self, error_message): - """Sets the error_message of this HardeningReportsReportProfileClusterWideRule. - - - :param error_message: The error_message of this HardeningReportsReportProfileClusterWideRule. # noqa: E501 - :type: str - """ - if error_message is not None and len(error_message) > 8192: - raise ValueError("Invalid value for `error_message`, length must be less than or equal to `8192`") # noqa: E501 - if error_message is not None and len(error_message) < 0: - raise ValueError("Invalid value for `error_message`, length must be greater than or equal to `0`") # noqa: E501 - - self._error_message = error_message - - @property - def name(self): - """Gets the name of this HardeningReportsReportProfileClusterWideRule. # noqa: E501 - - - :return: The name of this HardeningReportsReportProfileClusterWideRule. # noqa: E501 - :rtype: str - """ - return self._name - - @name.setter - def name(self, name): - """Sets the name of this HardeningReportsReportProfileClusterWideRule. - - - :param name: The name of this HardeningReportsReportProfileClusterWideRule. # noqa: E501 - :type: str - """ - if name is not None and len(name) > 255: - raise ValueError("Invalid value for `name`, length must be less than or equal to `255`") # noqa: E501 - if name is not None and len(name) < 0: - raise ValueError("Invalid value for `name`, length must be greater than or equal to `0`") # noqa: E501 - - self._name = name - - @property - def settings_comparisons_list(self): - """Gets the settings_comparisons_list of this HardeningReportsReportProfileClusterWideRule. # noqa: E501 - - Comparison values for settings. # noqa: E501 - - :return: The settings_comparisons_list of this HardeningReportsReportProfileClusterWideRule. # noqa: E501 - :rtype: list[HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItem] - """ - return self._settings_comparisons_list - - @settings_comparisons_list.setter - def settings_comparisons_list(self, settings_comparisons_list): - """Sets the settings_comparisons_list of this HardeningReportsReportProfileClusterWideRule. - - Comparison values for settings. # noqa: E501 - - :param settings_comparisons_list: The settings_comparisons_list of this HardeningReportsReportProfileClusterWideRule. # noqa: E501 - :type: list[HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItem] - """ - - self._settings_comparisons_list = settings_comparisons_list - - @property - def status(self): - """Gets the status of this HardeningReportsReportProfileClusterWideRule. # noqa: E501 - - - :return: The status of this HardeningReportsReportProfileClusterWideRule. # noqa: E501 - :rtype: str - """ - return self._status - - @status.setter - def status(self, status): - """Sets the status of this HardeningReportsReportProfileClusterWideRule. - - - :param status: The status of this HardeningReportsReportProfileClusterWideRule. # noqa: E501 - :type: str - """ - if status is not None and len(status) > 255: - raise ValueError("Invalid value for `status`, length must be less than or equal to `255`") # noqa: E501 - if status is not None and len(status) < 0: - raise ValueError("Invalid value for `status`, length must be greater than or equal to `0`") # noqa: E501 - - self._status = status - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(HardeningReportsReportProfileClusterWideRule, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, HardeningReportsReportProfileClusterWideRule): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_reports_report_profile_cluster_wide_rule_settings_comparisons_list_item.py b/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_reports_report_profile_cluster_wide_rule_settings_comparisons_list_item.py deleted file mode 100644 index 9682fb76f..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_reports_report_profile_cluster_wide_rule_settings_comparisons_list_item.py +++ /dev/null @@ -1,147 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItem(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'comparison': 'HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison', - 'setting': 'str' - } - - attribute_map = { - 'comparison': 'comparison', - 'setting': 'setting' - } - - def __init__(self, comparison=None, setting=None): # noqa: E501 - """HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItem - a model defined in Swagger""" # noqa: E501 - - self._comparison = None - self._setting = None - self.discriminator = None - - if comparison is not None: - self.comparison = comparison - if setting is not None: - self.setting = setting - - @property - def comparison(self): - """Gets the comparison of this HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItem. # noqa: E501 - - Comparison values. # noqa: E501 - - :return: The comparison of this HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItem. # noqa: E501 - :rtype: HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison - """ - return self._comparison - - @comparison.setter - def comparison(self, comparison): - """Sets the comparison of this HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItem. - - Comparison values. # noqa: E501 - - :param comparison: The comparison of this HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItem. # noqa: E501 - :type: HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison - """ - - self._comparison = comparison - - @property - def setting(self): - """Gets the setting of this HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItem. # noqa: E501 - - - :return: The setting of this HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItem. # noqa: E501 - :rtype: str - """ - return self._setting - - @setting.setter - def setting(self, setting): - """Sets the setting of this HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItem. - - - :param setting: The setting of this HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItem. # noqa: E501 - :type: str - """ - if setting is not None and len(setting) > 255: - raise ValueError("Invalid value for `setting`, length must be less than or equal to `255`") # noqa: E501 - if setting is not None and len(setting) < 0: - raise ValueError("Invalid value for `setting`, length must be greater than or equal to `0`") # noqa: E501 - - self._setting = setting - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItem, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItem): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_reports_report_profile_cluster_wide_rule_settings_comparisons_list_item_comparison.py b/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_reports_report_profile_cluster_wide_rule_settings_comparisons_list_item_comparison.py deleted file mode 100644 index 49996f3d5..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_reports_report_profile_cluster_wide_rule_settings_comparisons_list_item_comparison.py +++ /dev/null @@ -1,171 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'current': 'list[str]', - 'operator': 'str', - 'prescribed': 'list[str]' - } - - attribute_map = { - 'current': 'current', - 'operator': 'operator', - 'prescribed': 'prescribed' - } - - def __init__(self, current=None, operator=None, prescribed=None): # noqa: E501 - """HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison - a model defined in Swagger""" # noqa: E501 - - self._current = None - self._operator = None - self._prescribed = None - self.discriminator = None - - if current is not None: - self.current = current - if operator is not None: - self.operator = operator - if prescribed is not None: - self.prescribed = prescribed - - @property - def current(self): - """Gets the current of this HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison. # noqa: E501 - - - :return: The current of this HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison. # noqa: E501 - :rtype: list[str] - """ - return self._current - - @current.setter - def current(self, current): - """Sets the current of this HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison. - - - :param current: The current of this HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison. # noqa: E501 - :type: list[str] - """ - - self._current = current - - @property - def operator(self): - """Gets the operator of this HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison. # noqa: E501 - - - :return: The operator of this HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison. # noqa: E501 - :rtype: str - """ - return self._operator - - @operator.setter - def operator(self, operator): - """Sets the operator of this HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison. - - - :param operator: The operator of this HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison. # noqa: E501 - :type: str - """ - if operator is not None and len(operator) > 255: - raise ValueError("Invalid value for `operator`, length must be less than or equal to `255`") # noqa: E501 - if operator is not None and len(operator) < 0: - raise ValueError("Invalid value for `operator`, length must be greater than or equal to `0`") # noqa: E501 - - self._operator = operator - - @property - def prescribed(self): - """Gets the prescribed of this HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison. # noqa: E501 - - - :return: The prescribed of this HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison. # noqa: E501 - :rtype: list[str] - """ - return self._prescribed - - @prescribed.setter - def prescribed(self, prescribed): - """Sets the prescribed of this HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison. - - - :param prescribed: The prescribed of this HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison. # noqa: E501 - :type: list[str] - """ - - self._prescribed = prescribed - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_reports_report_profile_node.py b/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_reports_report_profile_node.py deleted file mode 100644 index a28c4d0f2..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_reports_report_profile_node.py +++ /dev/null @@ -1,229 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class HardeningReportsReportProfileNode(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'lnn': 'int', - 'name': 'str', - 'rules': 'list[HardeningReportsReportProfileClusterWideRule]', - 'status': 'str', - 'time': 'int' - } - - attribute_map = { - 'lnn': 'lnn', - 'name': 'name', - 'rules': 'rules', - 'status': 'status', - 'time': 'time' - } - - def __init__(self, lnn=None, name=None, rules=None, status=None, time=None): # noqa: E501 - """HardeningReportsReportProfileNode - a model defined in Swagger""" # noqa: E501 - - self._lnn = None - self._name = None - self._rules = None - self._status = None - self._time = None - self.discriminator = None - - if lnn is not None: - self.lnn = lnn - if name is not None: - self.name = name - if rules is not None: - self.rules = rules - if status is not None: - self.status = status - if time is not None: - self.time = time - - @property - def lnn(self): - """Gets the lnn of this HardeningReportsReportProfileNode. # noqa: E501 - - - :return: The lnn of this HardeningReportsReportProfileNode. # noqa: E501 - :rtype: int - """ - return self._lnn - - @lnn.setter - def lnn(self, lnn): - """Sets the lnn of this HardeningReportsReportProfileNode. - - - :param lnn: The lnn of this HardeningReportsReportProfileNode. # noqa: E501 - :type: int - """ - - self._lnn = lnn - - @property - def name(self): - """Gets the name of this HardeningReportsReportProfileNode. # noqa: E501 - - - :return: The name of this HardeningReportsReportProfileNode. # noqa: E501 - :rtype: str - """ - return self._name - - @name.setter - def name(self, name): - """Sets the name of this HardeningReportsReportProfileNode. - - - :param name: The name of this HardeningReportsReportProfileNode. # noqa: E501 - :type: str - """ - if name is not None and len(name) > 255: - raise ValueError("Invalid value for `name`, length must be less than or equal to `255`") # noqa: E501 - if name is not None and len(name) < 0: - raise ValueError("Invalid value for `name`, length must be greater than or equal to `0`") # noqa: E501 - - self._name = name - - @property - def rules(self): - """Gets the rules of this HardeningReportsReportProfileNode. # noqa: E501 - - List of rules in the report. # noqa: E501 - - :return: The rules of this HardeningReportsReportProfileNode. # noqa: E501 - :rtype: list[HardeningReportsReportProfileClusterWideRule] - """ - return self._rules - - @rules.setter - def rules(self, rules): - """Sets the rules of this HardeningReportsReportProfileNode. - - List of rules in the report. # noqa: E501 - - :param rules: The rules of this HardeningReportsReportProfileNode. # noqa: E501 - :type: list[HardeningReportsReportProfileClusterWideRule] - """ - - self._rules = rules - - @property - def status(self): - """Gets the status of this HardeningReportsReportProfileNode. # noqa: E501 - - - :return: The status of this HardeningReportsReportProfileNode. # noqa: E501 - :rtype: str - """ - return self._status - - @status.setter - def status(self, status): - """Sets the status of this HardeningReportsReportProfileNode. - - - :param status: The status of this HardeningReportsReportProfileNode. # noqa: E501 - :type: str - """ - if status is not None and len(status) > 255: - raise ValueError("Invalid value for `status`, length must be less than or equal to `255`") # noqa: E501 - if status is not None and len(status) < 0: - raise ValueError("Invalid value for `status`, length must be greater than or equal to `0`") # noqa: E501 - - self._status = status - - @property - def time(self): - """Gets the time of this HardeningReportsReportProfileNode. # noqa: E501 - - - :return: The time of this HardeningReportsReportProfileNode. # noqa: E501 - :rtype: int - """ - return self._time - - @time.setter - def time(self, time): - """Sets the time of this HardeningReportsReportProfileNode. - - - :param time: The time of this HardeningReportsReportProfileNode. # noqa: E501 - :type: int - """ - - self._time = time - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(HardeningReportsReportProfileNode, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, HardeningReportsReportProfileNode): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_crypto_encryption_zones.py b/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_crypto_encryption_zones.py deleted file mode 100644 index 48cf620c2..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_crypto_encryption_zones.py +++ /dev/null @@ -1,179 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class HdfsCryptoEncryptionZones(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'encryption_zones': 'list[HdfsCryptoEncryptionZonesEncryptionZone]', - 'resume': 'str', - 'total': 'int' - } - - attribute_map = { - 'encryption_zones': 'encryption_zones', - 'resume': 'resume', - 'total': 'total' - } - - def __init__(self, encryption_zones=None, resume=None, total=None): # noqa: E501 - """HdfsCryptoEncryptionZones - a model defined in Swagger""" # noqa: E501 - - self._encryption_zones = None - self._resume = None - self._total = None - self.discriminator = None - - if encryption_zones is not None: - self.encryption_zones = encryption_zones - if resume is not None: - self.resume = resume - if total is not None: - self.total = total - - @property - def encryption_zones(self): - """Gets the encryption_zones of this HdfsCryptoEncryptionZones. # noqa: E501 - - - :return: The encryption_zones of this HdfsCryptoEncryptionZones. # noqa: E501 - :rtype: list[HdfsCryptoEncryptionZonesEncryptionZone] - """ - return self._encryption_zones - - @encryption_zones.setter - def encryption_zones(self, encryption_zones): - """Sets the encryption_zones of this HdfsCryptoEncryptionZones. - - - :param encryption_zones: The encryption_zones of this HdfsCryptoEncryptionZones. # noqa: E501 - :type: list[HdfsCryptoEncryptionZonesEncryptionZone] - """ - - self._encryption_zones = encryption_zones - - @property - def resume(self): - """Gets the resume of this HdfsCryptoEncryptionZones. # noqa: E501 - - Provide this token as the 'resume' query argument to continue listing results. # noqa: E501 - - :return: The resume of this HdfsCryptoEncryptionZones. # noqa: E501 - :rtype: str - """ - return self._resume - - @resume.setter - def resume(self, resume): - """Sets the resume of this HdfsCryptoEncryptionZones. - - Provide this token as the 'resume' query argument to continue listing results. # noqa: E501 - - :param resume: The resume of this HdfsCryptoEncryptionZones. # noqa: E501 - :type: str - """ - if resume is not None and len(resume) > 8192: - raise ValueError("Invalid value for `resume`, length must be less than or equal to `8192`") # noqa: E501 - if resume is not None and len(resume) < 0: - raise ValueError("Invalid value for `resume`, length must be greater than or equal to `0`") # noqa: E501 - - self._resume = resume - - @property - def total(self): - """Gets the total of this HdfsCryptoEncryptionZones. # noqa: E501 - - Total number of items available. # noqa: E501 - - :return: The total of this HdfsCryptoEncryptionZones. # noqa: E501 - :rtype: int - """ - return self._total - - @total.setter - def total(self, total): - """Sets the total of this HdfsCryptoEncryptionZones. - - Total number of items available. # noqa: E501 - - :param total: The total of this HdfsCryptoEncryptionZones. # noqa: E501 - :type: int - """ - if total is not None and total > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `total`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if total is not None and total < 0: # noqa: E501 - raise ValueError("Invalid value for `total`, must be a value greater than or equal to `0`") # noqa: E501 - - self._total = total - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(HdfsCryptoEncryptionZones, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, HdfsCryptoEncryptionZones): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_definition.py b/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_definition.py deleted file mode 100644 index f3fac8b68..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_definition.py +++ /dev/null @@ -1,389 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class HealthcheckDefinition(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'comment': 'str', - 'conflicts': 'list[str]', - 'dependencies': 'list[str]', - 'description': 'str', - 'files': 'list[HealthcheckDefinitionFile]', - 'id': 'str', - 'name': 'str', - 'nodes': 'list[int]', - 'services': 'list[HealthcheckDefinitionService]', - 'status': 'str' - } - - attribute_map = { - 'comment': 'comment', - 'conflicts': 'conflicts', - 'dependencies': 'dependencies', - 'description': 'description', - 'files': 'files', - 'id': 'id', - 'name': 'name', - 'nodes': 'nodes', - 'services': 'services', - 'status': 'status' - } - - def __init__(self, comment=None, conflicts=None, dependencies=None, description=None, files=None, id=None, name=None, nodes=None, services=None, status=None): # noqa: E501 - """HealthcheckDefinition - a model defined in Swagger""" # noqa: E501 - - self._comment = None - self._conflicts = None - self._dependencies = None - self._description = None - self._files = None - self._id = None - self._name = None - self._nodes = None - self._services = None - self._status = None - self.discriminator = None - - if comment is not None: - self.comment = comment - if conflicts is not None: - self.conflicts = conflicts - if dependencies is not None: - self.dependencies = dependencies - if description is not None: - self.description = description - if files is not None: - self.files = files - if id is not None: - self.id = id - if name is not None: - self.name = name - if nodes is not None: - self.nodes = nodes - if services is not None: - self.services = services - if status is not None: - self.status = status - - @property - def comment(self): - """Gets the comment of this HealthcheckDefinition. # noqa: E501 - - A long comment about the definition. # noqa: E501 - - :return: The comment of this HealthcheckDefinition. # noqa: E501 - :rtype: str - """ - return self._comment - - @comment.setter - def comment(self, comment): - """Sets the comment of this HealthcheckDefinition. - - A long comment about the definition. # noqa: E501 - - :param comment: The comment of this HealthcheckDefinition. # noqa: E501 - :type: str - """ - if comment is not None and len(comment) > 8192: - raise ValueError("Invalid value for `comment`, length must be less than or equal to `8192`") # noqa: E501 - if comment is not None and len(comment) < 0: - raise ValueError("Invalid value for `comment`, length must be greater than or equal to `0`") # noqa: E501 - - self._comment = comment - - @property - def conflicts(self): - """Gets the conflicts of this HealthcheckDefinition. # noqa: E501 - - Other definitions that this definition conflicts with. # noqa: E501 - - :return: The conflicts of this HealthcheckDefinition. # noqa: E501 - :rtype: list[str] - """ - return self._conflicts - - @conflicts.setter - def conflicts(self, conflicts): - """Sets the conflicts of this HealthcheckDefinition. - - Other definitions that this definition conflicts with. # noqa: E501 - - :param conflicts: The conflicts of this HealthcheckDefinition. # noqa: E501 - :type: list[str] - """ - - self._conflicts = conflicts - - @property - def dependencies(self): - """Gets the dependencies of this HealthcheckDefinition. # noqa: E501 - - Other definitions that this definition depends on. # noqa: E501 - - :return: The dependencies of this HealthcheckDefinition. # noqa: E501 - :rtype: list[str] - """ - return self._dependencies - - @dependencies.setter - def dependencies(self, dependencies): - """Sets the dependencies of this HealthcheckDefinition. - - Other definitions that this definition depends on. # noqa: E501 - - :param dependencies: The dependencies of this HealthcheckDefinition. # noqa: E501 - :type: list[str] - """ - - self._dependencies = dependencies - - @property - def description(self): - """Gets the description of this HealthcheckDefinition. # noqa: E501 - - A short description of the definition. # noqa: E501 - - :return: The description of this HealthcheckDefinition. # noqa: E501 - :rtype: str - """ - return self._description - - @description.setter - def description(self, description): - """Sets the description of this HealthcheckDefinition. - - A short description of the definition. # noqa: E501 - - :param description: The description of this HealthcheckDefinition. # noqa: E501 - :type: str - """ - if description is not None and len(description) > 255: - raise ValueError("Invalid value for `description`, length must be less than or equal to `255`") # noqa: E501 - if description is not None and len(description) < 0: - raise ValueError("Invalid value for `description`, length must be greater than or equal to `0`") # noqa: E501 - - self._description = description - - @property - def files(self): - """Gets the files of this HealthcheckDefinition. # noqa: E501 - - The files contained in this definition. # noqa: E501 - - :return: The files of this HealthcheckDefinition. # noqa: E501 - :rtype: list[HealthcheckDefinitionFile] - """ - return self._files - - @files.setter - def files(self, files): - """Sets the files of this HealthcheckDefinition. - - The files contained in this definition. # noqa: E501 - - :param files: The files of this HealthcheckDefinition. # noqa: E501 - :type: list[HealthcheckDefinitionFile] - """ - - self._files = files - - @property - def id(self): - """Gets the id of this HealthcheckDefinition. # noqa: E501 - - A unique identifier for the definition. # noqa: E501 - - :return: The id of this HealthcheckDefinition. # noqa: E501 - :rtype: str - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this HealthcheckDefinition. - - A unique identifier for the definition. # noqa: E501 - - :param id: The id of this HealthcheckDefinition. # noqa: E501 - :type: str - """ - if id is not None and len(id) > 255: - raise ValueError("Invalid value for `id`, length must be less than or equal to `255`") # noqa: E501 - if id is not None and len(id) < 0: - raise ValueError("Invalid value for `id`, length must be greater than or equal to `0`") # noqa: E501 - - self._id = id - - @property - def name(self): - """Gets the name of this HealthcheckDefinition. # noqa: E501 - - The name of the definition. # noqa: E501 - - :return: The name of this HealthcheckDefinition. # noqa: E501 - :rtype: str - """ - return self._name - - @name.setter - def name(self, name): - """Sets the name of this HealthcheckDefinition. - - The name of the definition. # noqa: E501 - - :param name: The name of this HealthcheckDefinition. # noqa: E501 - :type: str - """ - if name is not None and len(name) > 255: - raise ValueError("Invalid value for `name`, length must be less than or equal to `255`") # noqa: E501 - if name is not None and len(name) < 0: - raise ValueError("Invalid value for `name`, length must be greater than or equal to `0`") # noqa: E501 - - self._name = name - - @property - def nodes(self): - """Gets the nodes of this HealthcheckDefinition. # noqa: E501 - - The nodes that this definition is installed on. # noqa: E501 - - :return: The nodes of this HealthcheckDefinition. # noqa: E501 - :rtype: list[int] - """ - return self._nodes - - @nodes.setter - def nodes(self, nodes): - """Sets the nodes of this HealthcheckDefinition. - - The nodes that this definition is installed on. # noqa: E501 - - :param nodes: The nodes of this HealthcheckDefinition. # noqa: E501 - :type: list[int] - """ - - self._nodes = nodes - - @property - def services(self): - """Gets the services of this HealthcheckDefinition. # noqa: E501 - - The services affected during the definition deployment # noqa: E501 - - :return: The services of this HealthcheckDefinition. # noqa: E501 - :rtype: list[HealthcheckDefinitionService] - """ - return self._services - - @services.setter - def services(self, services): - """Sets the services of this HealthcheckDefinition. - - The services affected during the definition deployment # noqa: E501 - - :param services: The services of this HealthcheckDefinition. # noqa: E501 - :type: list[HealthcheckDefinitionService] - """ - - self._services = services - - @property - def status(self): - """Gets the status of this HealthcheckDefinition. # noqa: E501 - - The installation status of this definition on the cluster. # noqa: E501 - - :return: The status of this HealthcheckDefinition. # noqa: E501 - :rtype: str - """ - return self._status - - @status.setter - def status(self, status): - """Sets the status of this HealthcheckDefinition. - - The installation status of this definition on the cluster. # noqa: E501 - - :param status: The status of this HealthcheckDefinition. # noqa: E501 - :type: str - """ - if status is not None and len(status) > 255: - raise ValueError("Invalid value for `status`, length must be less than or equal to `255`") # noqa: E501 - if status is not None and len(status) < 0: - raise ValueError("Invalid value for `status`, length must be greater than or equal to `0`") # noqa: E501 - - self._status = status - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(HealthcheckDefinition, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, HealthcheckDefinition): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_definition_create_params.py b/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_definition_create_params.py deleted file mode 100644 index 6128b8226..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_definition_create_params.py +++ /dev/null @@ -1,154 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class HealthcheckDefinitionCreateParams(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'definition': 'str', - 'process_type': 'str' - } - - attribute_map = { - 'definition': 'definition', - 'process_type': 'process_type' - } - - def __init__(self, definition=None, process_type=None): # noqa: E501 - """HealthcheckDefinitionCreateParams - a model defined in Swagger""" # noqa: E501 - - self._definition = None - self._process_type = None - self.discriminator = None - - self.definition = definition - if process_type is not None: - self.process_type = process_type - - @property - def definition(self): - """Gets the definition of this HealthcheckDefinitionCreateParams. # noqa: E501 - - The path of the definition file. # noqa: E501 - - :return: The definition of this HealthcheckDefinitionCreateParams. # noqa: E501 - :rtype: str - """ - return self._definition - - @definition.setter - def definition(self, definition): - """Sets the definition of this HealthcheckDefinitionCreateParams. - - The path of the definition file. # noqa: E501 - - :param definition: The definition of this HealthcheckDefinitionCreateParams. # noqa: E501 - :type: str - """ - if definition is None: - raise ValueError("Invalid value for `definition`, must not be `None`") # noqa: E501 - if definition is not None and len(definition) > 4096: - raise ValueError("Invalid value for `definition`, length must be less than or equal to `4096`") # noqa: E501 - if definition is not None and len(definition) < 0: - raise ValueError("Invalid value for `definition`, length must be greater than or equal to `0`") # noqa: E501 - - self._definition = definition - - @property - def process_type(self): - """Gets the process_type of this HealthcheckDefinitionCreateParams. # noqa: E501 - - Process type can be 'simultaneous', 'rolling', or 'parallel' # noqa: E501 - - :return: The process_type of this HealthcheckDefinitionCreateParams. # noqa: E501 - :rtype: str - """ - return self._process_type - - @process_type.setter - def process_type(self, process_type): - """Sets the process_type of this HealthcheckDefinitionCreateParams. - - Process type can be 'simultaneous', 'rolling', or 'parallel' # noqa: E501 - - :param process_type: The process_type of this HealthcheckDefinitionCreateParams. # noqa: E501 - :type: str - """ - if process_type is not None and len(process_type) > 255: - raise ValueError("Invalid value for `process_type`, length must be less than or equal to `255`") # noqa: E501 - if process_type is not None and len(process_type) < 6: - raise ValueError("Invalid value for `process_type`, length must be greater than or equal to `6`") # noqa: E501 - - self._process_type = process_type - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(HealthcheckDefinitionCreateParams, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, HealthcheckDefinitionCreateParams): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_definitions.py b/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_definitions.py deleted file mode 100644 index d533cc2a0..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_definitions.py +++ /dev/null @@ -1,179 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class HealthcheckDefinitions(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'definitions': 'list[HealthcheckDefinition]', - 'resume': 'str', - 'total': 'int' - } - - attribute_map = { - 'definitions': 'definitions', - 'resume': 'resume', - 'total': 'total' - } - - def __init__(self, definitions=None, resume=None, total=None): # noqa: E501 - """HealthcheckDefinitions - a model defined in Swagger""" # noqa: E501 - - self._definitions = None - self._resume = None - self._total = None - self.discriminator = None - - if definitions is not None: - self.definitions = definitions - if resume is not None: - self.resume = resume - if total is not None: - self.total = total - - @property - def definitions(self): - """Gets the definitions of this HealthcheckDefinitions. # noqa: E501 - - - :return: The definitions of this HealthcheckDefinitions. # noqa: E501 - :rtype: list[HealthcheckDefinition] - """ - return self._definitions - - @definitions.setter - def definitions(self, definitions): - """Sets the definitions of this HealthcheckDefinitions. - - - :param definitions: The definitions of this HealthcheckDefinitions. # noqa: E501 - :type: list[HealthcheckDefinition] - """ - - self._definitions = definitions - - @property - def resume(self): - """Gets the resume of this HealthcheckDefinitions. # noqa: E501 - - Provide this token as the 'resume' query argument to continue listing results. # noqa: E501 - - :return: The resume of this HealthcheckDefinitions. # noqa: E501 - :rtype: str - """ - return self._resume - - @resume.setter - def resume(self, resume): - """Sets the resume of this HealthcheckDefinitions. - - Provide this token as the 'resume' query argument to continue listing results. # noqa: E501 - - :param resume: The resume of this HealthcheckDefinitions. # noqa: E501 - :type: str - """ - if resume is not None and len(resume) > 8192: - raise ValueError("Invalid value for `resume`, length must be less than or equal to `8192`") # noqa: E501 - if resume is not None and len(resume) < 0: - raise ValueError("Invalid value for `resume`, length must be greater than or equal to `0`") # noqa: E501 - - self._resume = resume - - @property - def total(self): - """Gets the total of this HealthcheckDefinitions. # noqa: E501 - - Total number of items available. # noqa: E501 - - :return: The total of this HealthcheckDefinitions. # noqa: E501 - :rtype: int - """ - return self._total - - @total.setter - def total(self, total): - """Sets the total of this HealthcheckDefinitions. - - Total number of items available. # noqa: E501 - - :param total: The total of this HealthcheckDefinitions. # noqa: E501 - :type: int - """ - if total is not None and total > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `total`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if total is not None and total < 0: # noqa: E501 - raise ValueError("Invalid value for `total`, must be a value greater than or equal to `0`") # noqa: E501 - - self._total = total - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(HealthcheckDefinitions, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, HealthcheckDefinitions): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_evaluation_smartlog.py b/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_evaluation_smartlog.py deleted file mode 100644 index d55d1b6e0..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_evaluation_smartlog.py +++ /dev/null @@ -1,156 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class HealthcheckEvaluationSmartlog(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'failure_begin_time': 'str', - 'ref_groups': 'str' - } - - attribute_map = { - 'failure_begin_time': 'failure_begin_time', - 'ref_groups': 'ref_groups' - } - - def __init__(self, failure_begin_time=None, ref_groups=None): # noqa: E501 - """HealthcheckEvaluationSmartlog - a model defined in Swagger""" # noqa: E501 - - self._failure_begin_time = None - self._ref_groups = None - self.discriminator = None - - if failure_begin_time is not None: - self.failure_begin_time = failure_begin_time - self.ref_groups = ref_groups - - @property - def failure_begin_time(self): - """Gets the failure_begin_time of this HealthcheckEvaluationSmartlog. # noqa: E501 - - An ISO 8601 point in time immediately before the relevant failures, in the cluster timezone. Format is YYYY-MM-DD HH:MM. If no such point in time can be found, will be null. # noqa: E501 - - :return: The failure_begin_time of this HealthcheckEvaluationSmartlog. # noqa: E501 - :rtype: str - """ - return self._failure_begin_time - - @failure_begin_time.setter - def failure_begin_time(self, failure_begin_time): - """Sets the failure_begin_time of this HealthcheckEvaluationSmartlog. - - An ISO 8601 point in time immediately before the relevant failures, in the cluster timezone. Format is YYYY-MM-DD HH:MM. If no such point in time can be found, will be null. # noqa: E501 - - :param failure_begin_time: The failure_begin_time of this HealthcheckEvaluationSmartlog. # noqa: E501 - :type: str - """ - if failure_begin_time is not None and len(failure_begin_time) > 16: - raise ValueError("Invalid value for `failure_begin_time`, length must be less than or equal to `16`") # noqa: E501 - if failure_begin_time is not None and len(failure_begin_time) < 16: - raise ValueError("Invalid value for `failure_begin_time`, length must be greater than or equal to `16`") # noqa: E501 - if failure_begin_time is not None and not re.search(r'^[0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$', failure_begin_time): # noqa: E501 - raise ValueError(r"Invalid value for `failure_begin_time`, must be a follow pattern or equal to `/^[0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$/`") # noqa: E501 - - self._failure_begin_time = failure_begin_time - - @property - def ref_groups(self): - """Gets the ref_groups of this HealthcheckEvaluationSmartlog. # noqa: E501 - - Comma separated list of relevant log gather groups. # noqa: E501 - - :return: The ref_groups of this HealthcheckEvaluationSmartlog. # noqa: E501 - :rtype: str - """ - return self._ref_groups - - @ref_groups.setter - def ref_groups(self, ref_groups): - """Sets the ref_groups of this HealthcheckEvaluationSmartlog. - - Comma separated list of relevant log gather groups. # noqa: E501 - - :param ref_groups: The ref_groups of this HealthcheckEvaluationSmartlog. # noqa: E501 - :type: str - """ - if ref_groups is None: - raise ValueError("Invalid value for `ref_groups`, must not be `None`") # noqa: E501 - if ref_groups is not None and len(ref_groups) > 255: - raise ValueError("Invalid value for `ref_groups`, length must be less than or equal to `255`") # noqa: E501 - if ref_groups is not None and len(ref_groups) < 0: - raise ValueError("Invalid value for `ref_groups`, length must be greater than or equal to `0`") # noqa: E501 - - self._ref_groups = ref_groups - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(HealthcheckEvaluationSmartlog, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, HealthcheckEvaluationSmartlog): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/http_settings_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/http_settings_extended.py deleted file mode 100644 index d2c2715e4..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/http_settings_extended.py +++ /dev/null @@ -1,479 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class HttpSettingsExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'access_control': 'bool', - 'basic_authentication': 'bool', - 'dav': 'bool', - 'enable_access_log': 'bool', - 'httpd_controlpath_redirect': 'bool', - 'https': 'bool', - 'inactive_timeout': 'int', - 'integrated_authentication': 'bool', - 'server_root': 'str', - 'service': 'str', - 'service_timeout': 'int', - 'session_max_age': 'int', - 'webhdfs_ran_https_port': 'int' - } - - attribute_map = { - 'access_control': 'access_control', - 'basic_authentication': 'basic_authentication', - 'dav': 'dav', - 'enable_access_log': 'enable_access_log', - 'httpd_controlpath_redirect': 'httpd_controlpath_redirect', - 'https': 'https', - 'inactive_timeout': 'inactive_timeout', - 'integrated_authentication': 'integrated_authentication', - 'server_root': 'server_root', - 'service': 'service', - 'service_timeout': 'service_timeout', - 'session_max_age': 'session_max_age', - 'webhdfs_ran_https_port': 'webhdfs_ran_https_port' - } - - def __init__(self, access_control=None, basic_authentication=None, dav=None, enable_access_log=None, httpd_controlpath_redirect=None, https=None, inactive_timeout=None, integrated_authentication=None, server_root=None, service=None, service_timeout=None, session_max_age=None, webhdfs_ran_https_port=None): # noqa: E501 - """HttpSettingsExtended - a model defined in Swagger""" # noqa: E501 - - self._access_control = None - self._basic_authentication = None - self._dav = None - self._enable_access_log = None - self._httpd_controlpath_redirect = None - self._https = None - self._inactive_timeout = None - self._integrated_authentication = None - self._server_root = None - self._service = None - self._service_timeout = None - self._session_max_age = None - self._webhdfs_ran_https_port = None - self.discriminator = None - - if access_control is not None: - self.access_control = access_control - if basic_authentication is not None: - self.basic_authentication = basic_authentication - if dav is not None: - self.dav = dav - if enable_access_log is not None: - self.enable_access_log = enable_access_log - if httpd_controlpath_redirect is not None: - self.httpd_controlpath_redirect = httpd_controlpath_redirect - if https is not None: - self.https = https - if inactive_timeout is not None: - self.inactive_timeout = inactive_timeout - if integrated_authentication is not None: - self.integrated_authentication = integrated_authentication - if server_root is not None: - self.server_root = server_root - if service is not None: - self.service = service - if service_timeout is not None: - self.service_timeout = service_timeout - if session_max_age is not None: - self.session_max_age = session_max_age - if webhdfs_ran_https_port is not None: - self.webhdfs_ran_https_port = webhdfs_ran_https_port - - @property - def access_control(self): - """Gets the access_control of this HttpSettingsExtended. # noqa: E501 - - Enable Access Control Authentication for HTTP service. # noqa: E501 - - :return: The access_control of this HttpSettingsExtended. # noqa: E501 - :rtype: bool - """ - return self._access_control - - @access_control.setter - def access_control(self, access_control): - """Sets the access_control of this HttpSettingsExtended. - - Enable Access Control Authentication for HTTP service. # noqa: E501 - - :param access_control: The access_control of this HttpSettingsExtended. # noqa: E501 - :type: bool - """ - - self._access_control = access_control - - @property - def basic_authentication(self): - """Gets the basic_authentication of this HttpSettingsExtended. # noqa: E501 - - Enable Basic Authentication for HTTP service. # noqa: E501 - - :return: The basic_authentication of this HttpSettingsExtended. # noqa: E501 - :rtype: bool - """ - return self._basic_authentication - - @basic_authentication.setter - def basic_authentication(self, basic_authentication): - """Sets the basic_authentication of this HttpSettingsExtended. - - Enable Basic Authentication for HTTP service. # noqa: E501 - - :param basic_authentication: The basic_authentication of this HttpSettingsExtended. # noqa: E501 - :type: bool - """ - - self._basic_authentication = basic_authentication - - @property - def dav(self): - """Gets the dav of this HttpSettingsExtended. # noqa: E501 - - Enable DAV specification for HTTP service. # noqa: E501 - - :return: The dav of this HttpSettingsExtended. # noqa: E501 - :rtype: bool - """ - return self._dav - - @dav.setter - def dav(self, dav): - """Sets the dav of this HttpSettingsExtended. - - Enable DAV specification for HTTP service. # noqa: E501 - - :param dav: The dav of this HttpSettingsExtended. # noqa: E501 - :type: bool - """ - - self._dav = dav - - @property - def enable_access_log(self): - """Gets the enable_access_log of this HttpSettingsExtended. # noqa: E501 - - Enable HTTP access logging for HTTP service. # noqa: E501 - - :return: The enable_access_log of this HttpSettingsExtended. # noqa: E501 - :rtype: bool - """ - return self._enable_access_log - - @enable_access_log.setter - def enable_access_log(self, enable_access_log): - """Sets the enable_access_log of this HttpSettingsExtended. - - Enable HTTP access logging for HTTP service. # noqa: E501 - - :param enable_access_log: The enable_access_log of this HttpSettingsExtended. # noqa: E501 - :type: bool - """ - - self._enable_access_log = enable_access_log - - @property - def httpd_controlpath_redirect(self): - """Gets the httpd_controlpath_redirect of this HttpSettingsExtended. # noqa: E501 - - Enable or disable WebUI redirect to HTTP service. # noqa: E501 - - :return: The httpd_controlpath_redirect of this HttpSettingsExtended. # noqa: E501 - :rtype: bool - """ - return self._httpd_controlpath_redirect - - @httpd_controlpath_redirect.setter - def httpd_controlpath_redirect(self, httpd_controlpath_redirect): - """Sets the httpd_controlpath_redirect of this HttpSettingsExtended. - - Enable or disable WebUI redirect to HTTP service. # noqa: E501 - - :param httpd_controlpath_redirect: The httpd_controlpath_redirect of this HttpSettingsExtended. # noqa: E501 - :type: bool - """ - - self._httpd_controlpath_redirect = httpd_controlpath_redirect - - @property - def https(self): - """Gets the https of this HttpSettingsExtended. # noqa: E501 - - Use HTTPS transport for HTTP service. # noqa: E501 - - :return: The https of this HttpSettingsExtended. # noqa: E501 - :rtype: bool - """ - return self._https - - @https.setter - def https(self, https): - """Sets the https of this HttpSettingsExtended. - - Use HTTPS transport for HTTP service. # noqa: E501 - - :param https: The https of this HttpSettingsExtended. # noqa: E501 - :type: bool - """ - - self._https = https - - @property - def inactive_timeout(self): - """Gets the inactive_timeout of this HttpSettingsExtended. # noqa: E501 - - Get the HTTP Session inactivity timeout (in seconds). # noqa: E501 - - :return: The inactive_timeout of this HttpSettingsExtended. # noqa: E501 - :rtype: int - """ - return self._inactive_timeout - - @inactive_timeout.setter - def inactive_timeout(self, inactive_timeout): - """Sets the inactive_timeout of this HttpSettingsExtended. - - Get the HTTP Session inactivity timeout (in seconds). # noqa: E501 - - :param inactive_timeout: The inactive_timeout of this HttpSettingsExtended. # noqa: E501 - :type: int - """ - if inactive_timeout is not None and inactive_timeout > 31536000: # noqa: E501 - raise ValueError("Invalid value for `inactive_timeout`, must be a value less than or equal to `31536000`") # noqa: E501 - if inactive_timeout is not None and inactive_timeout < 0: # noqa: E501 - raise ValueError("Invalid value for `inactive_timeout`, must be a value greater than or equal to `0`") # noqa: E501 - - self._inactive_timeout = inactive_timeout - - @property - def integrated_authentication(self): - """Gets the integrated_authentication of this HttpSettingsExtended. # noqa: E501 - - Enable Integrated Authentication for HTTP service. # noqa: E501 - - :return: The integrated_authentication of this HttpSettingsExtended. # noqa: E501 - :rtype: bool - """ - return self._integrated_authentication - - @integrated_authentication.setter - def integrated_authentication(self, integrated_authentication): - """Sets the integrated_authentication of this HttpSettingsExtended. - - Enable Integrated Authentication for HTTP service. # noqa: E501 - - :param integrated_authentication: The integrated_authentication of this HttpSettingsExtended. # noqa: E501 - :type: bool - """ - - self._integrated_authentication = integrated_authentication - - @property - def server_root(self): - """Gets the server_root of this HttpSettingsExtended. # noqa: E501 - - Document root directory for HTTP service. Must be within /ifs. # noqa: E501 - - :return: The server_root of this HttpSettingsExtended. # noqa: E501 - :rtype: str - """ - return self._server_root - - @server_root.setter - def server_root(self, server_root): - """Sets the server_root of this HttpSettingsExtended. - - Document root directory for HTTP service. Must be within /ifs. # noqa: E501 - - :param server_root: The server_root of this HttpSettingsExtended. # noqa: E501 - :type: str - """ - if server_root is not None and len(server_root) > 4096: - raise ValueError("Invalid value for `server_root`, length must be less than or equal to `4096`") # noqa: E501 - if server_root is not None and len(server_root) < 4: - raise ValueError("Invalid value for `server_root`, length must be greater than or equal to `4`") # noqa: E501 - - self._server_root = server_root - - @property - def service(self): - """Gets the service of this HttpSettingsExtended. # noqa: E501 - - Enable/disable the HTTP service or redirect to WebUI or disabled BasicFileAccess. # noqa: E501 - - :return: The service of this HttpSettingsExtended. # noqa: E501 - :rtype: str - """ - return self._service - - @service.setter - def service(self, service): - """Sets the service of this HttpSettingsExtended. - - Enable/disable the HTTP service or redirect to WebUI or disabled BasicFileAccess. # noqa: E501 - - :param service: The service of this HttpSettingsExtended. # noqa: E501 - :type: str - """ - allowed_values = ["enabled", "disabled", "redirect", "disabled_basicfile"] # noqa: E501 - if service not in allowed_values: - raise ValueError( - "Invalid value for `service` ({0}), must be one of {1}" # noqa: E501 - .format(service, allowed_values) - ) - - self._service = service - - @property - def service_timeout(self): - """Gets the service_timeout of this HttpSettingsExtended. # noqa: E501 - - Get the HTTP Timeout directive from Apache. Value 0 means service timeout is disabled. # noqa: E501 - - :return: The service_timeout of this HttpSettingsExtended. # noqa: E501 - :rtype: int - """ - return self._service_timeout - - @service_timeout.setter - def service_timeout(self, service_timeout): - """Sets the service_timeout of this HttpSettingsExtended. - - Get the HTTP Timeout directive from Apache. Value 0 means service timeout is disabled. # noqa: E501 - - :param service_timeout: The service_timeout of this HttpSettingsExtended. # noqa: E501 - :type: int - """ - if service_timeout is not None and service_timeout > 2147483647: # noqa: E501 - raise ValueError("Invalid value for `service_timeout`, must be a value less than or equal to `2147483647`") # noqa: E501 - if service_timeout is not None and service_timeout < 0: # noqa: E501 - raise ValueError("Invalid value for `service_timeout`, must be a value greater than or equal to `0`") # noqa: E501 - - self._service_timeout = service_timeout - - @property - def session_max_age(self): - """Gets the session_max_age of this HttpSettingsExtended. # noqa: E501 - - Get the HTTP Session absolute timeout (in seconds). # noqa: E501 - - :return: The session_max_age of this HttpSettingsExtended. # noqa: E501 - :rtype: int - """ - return self._session_max_age - - @session_max_age.setter - def session_max_age(self, session_max_age): - """Sets the session_max_age of this HttpSettingsExtended. - - Get the HTTP Session absolute timeout (in seconds). # noqa: E501 - - :param session_max_age: The session_max_age of this HttpSettingsExtended. # noqa: E501 - :type: int - """ - if session_max_age is not None and session_max_age > 31536000: # noqa: E501 - raise ValueError("Invalid value for `session_max_age`, must be a value less than or equal to `31536000`") # noqa: E501 - if session_max_age is not None and session_max_age < 60: # noqa: E501 - raise ValueError("Invalid value for `session_max_age`, must be a value greater than or equal to `60`") # noqa: E501 - - self._session_max_age = session_max_age - - @property - def webhdfs_ran_https_port(self): - """Gets the webhdfs_ran_https_port of this HttpSettingsExtended. # noqa: E501 - - Configure Data Services Port for HTTP service. # noqa: E501 - - :return: The webhdfs_ran_https_port of this HttpSettingsExtended. # noqa: E501 - :rtype: int - """ - return self._webhdfs_ran_https_port - - @webhdfs_ran_https_port.setter - def webhdfs_ran_https_port(self, webhdfs_ran_https_port): - """Sets the webhdfs_ran_https_port of this HttpSettingsExtended. - - Configure Data Services Port for HTTP service. # noqa: E501 - - :param webhdfs_ran_https_port: The webhdfs_ran_https_port of this HttpSettingsExtended. # noqa: E501 - :type: int - """ - if webhdfs_ran_https_port is not None and webhdfs_ran_https_port > 65535: # noqa: E501 - raise ValueError("Invalid value for `webhdfs_ran_https_port`, must be a value less than or equal to `65535`") # noqa: E501 - if webhdfs_ran_https_port is not None and webhdfs_ran_https_port < 1025: # noqa: E501 - raise ValueError("Invalid value for `webhdfs_ran_https_port`, must be a value greater than or equal to `1025`") # noqa: E501 - - self._webhdfs_ran_https_port = webhdfs_ran_https_port - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(HttpSettingsExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, HttpSettingsExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/http_settings_settings.py b/isilon_sdk/isilon_sdk/v9_11_0/models/http_settings_settings.py deleted file mode 100644 index 8fde2ba57..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/http_settings_settings.py +++ /dev/null @@ -1,483 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class HttpSettingsSettings(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'access_control': 'bool', - 'basic_authentication': 'bool', - 'dav': 'bool', - 'enable_access_log': 'bool', - 'httpd_controlpath_redirect': 'bool', - 'https': 'bool', - 'inactive_timeout': 'int', - 'integrated_authentication': 'bool', - 'server_root': 'str', - 'service': 'str', - 'service_timeout': 'int', - 'session_max_age': 'int', - 'webhdfs_ran_https_port': 'int' - } - - attribute_map = { - 'access_control': 'access_control', - 'basic_authentication': 'basic_authentication', - 'dav': 'dav', - 'enable_access_log': 'enable_access_log', - 'httpd_controlpath_redirect': 'httpd_controlpath_redirect', - 'https': 'https', - 'inactive_timeout': 'inactive_timeout', - 'integrated_authentication': 'integrated_authentication', - 'server_root': 'server_root', - 'service': 'service', - 'service_timeout': 'service_timeout', - 'session_max_age': 'session_max_age', - 'webhdfs_ran_https_port': 'webhdfs_ran_https_port' - } - - def __init__(self, access_control=None, basic_authentication=None, dav=None, enable_access_log=None, httpd_controlpath_redirect=None, https=None, inactive_timeout=None, integrated_authentication=None, server_root=None, service=None, service_timeout=None, session_max_age=None, webhdfs_ran_https_port=None): # noqa: E501 - """HttpSettingsSettings - a model defined in Swagger""" # noqa: E501 - - self._access_control = None - self._basic_authentication = None - self._dav = None - self._enable_access_log = None - self._httpd_controlpath_redirect = None - self._https = None - self._inactive_timeout = None - self._integrated_authentication = None - self._server_root = None - self._service = None - self._service_timeout = None - self._session_max_age = None - self._webhdfs_ran_https_port = None - self.discriminator = None - - if access_control is not None: - self.access_control = access_control - if basic_authentication is not None: - self.basic_authentication = basic_authentication - if dav is not None: - self.dav = dav - if enable_access_log is not None: - self.enable_access_log = enable_access_log - if httpd_controlpath_redirect is not None: - self.httpd_controlpath_redirect = httpd_controlpath_redirect - if https is not None: - self.https = https - self.inactive_timeout = inactive_timeout - if integrated_authentication is not None: - self.integrated_authentication = integrated_authentication - if server_root is not None: - self.server_root = server_root - if service is not None: - self.service = service - self.service_timeout = service_timeout - self.session_max_age = session_max_age - self.webhdfs_ran_https_port = webhdfs_ran_https_port - - @property - def access_control(self): - """Gets the access_control of this HttpSettingsSettings. # noqa: E501 - - Enable Access Control Authentication for HTTP service. # noqa: E501 - - :return: The access_control of this HttpSettingsSettings. # noqa: E501 - :rtype: bool - """ - return self._access_control - - @access_control.setter - def access_control(self, access_control): - """Sets the access_control of this HttpSettingsSettings. - - Enable Access Control Authentication for HTTP service. # noqa: E501 - - :param access_control: The access_control of this HttpSettingsSettings. # noqa: E501 - :type: bool - """ - - self._access_control = access_control - - @property - def basic_authentication(self): - """Gets the basic_authentication of this HttpSettingsSettings. # noqa: E501 - - Enable Basic Authentication for HTTP service. # noqa: E501 - - :return: The basic_authentication of this HttpSettingsSettings. # noqa: E501 - :rtype: bool - """ - return self._basic_authentication - - @basic_authentication.setter - def basic_authentication(self, basic_authentication): - """Sets the basic_authentication of this HttpSettingsSettings. - - Enable Basic Authentication for HTTP service. # noqa: E501 - - :param basic_authentication: The basic_authentication of this HttpSettingsSettings. # noqa: E501 - :type: bool - """ - - self._basic_authentication = basic_authentication - - @property - def dav(self): - """Gets the dav of this HttpSettingsSettings. # noqa: E501 - - Enable DAV specification for HTTP service. # noqa: E501 - - :return: The dav of this HttpSettingsSettings. # noqa: E501 - :rtype: bool - """ - return self._dav - - @dav.setter - def dav(self, dav): - """Sets the dav of this HttpSettingsSettings. - - Enable DAV specification for HTTP service. # noqa: E501 - - :param dav: The dav of this HttpSettingsSettings. # noqa: E501 - :type: bool - """ - - self._dav = dav - - @property - def enable_access_log(self): - """Gets the enable_access_log of this HttpSettingsSettings. # noqa: E501 - - Enable HTTP access logging for HTTP service. # noqa: E501 - - :return: The enable_access_log of this HttpSettingsSettings. # noqa: E501 - :rtype: bool - """ - return self._enable_access_log - - @enable_access_log.setter - def enable_access_log(self, enable_access_log): - """Sets the enable_access_log of this HttpSettingsSettings. - - Enable HTTP access logging for HTTP service. # noqa: E501 - - :param enable_access_log: The enable_access_log of this HttpSettingsSettings. # noqa: E501 - :type: bool - """ - - self._enable_access_log = enable_access_log - - @property - def httpd_controlpath_redirect(self): - """Gets the httpd_controlpath_redirect of this HttpSettingsSettings. # noqa: E501 - - Enable or disable WebUI redirect to HTTP service. # noqa: E501 - - :return: The httpd_controlpath_redirect of this HttpSettingsSettings. # noqa: E501 - :rtype: bool - """ - return self._httpd_controlpath_redirect - - @httpd_controlpath_redirect.setter - def httpd_controlpath_redirect(self, httpd_controlpath_redirect): - """Sets the httpd_controlpath_redirect of this HttpSettingsSettings. - - Enable or disable WebUI redirect to HTTP service. # noqa: E501 - - :param httpd_controlpath_redirect: The httpd_controlpath_redirect of this HttpSettingsSettings. # noqa: E501 - :type: bool - """ - - self._httpd_controlpath_redirect = httpd_controlpath_redirect - - @property - def https(self): - """Gets the https of this HttpSettingsSettings. # noqa: E501 - - Use HTTPS transport for HTTP service. # noqa: E501 - - :return: The https of this HttpSettingsSettings. # noqa: E501 - :rtype: bool - """ - return self._https - - @https.setter - def https(self, https): - """Sets the https of this HttpSettingsSettings. - - Use HTTPS transport for HTTP service. # noqa: E501 - - :param https: The https of this HttpSettingsSettings. # noqa: E501 - :type: bool - """ - - self._https = https - - @property - def inactive_timeout(self): - """Gets the inactive_timeout of this HttpSettingsSettings. # noqa: E501 - - Get the HTTP Session inactivity timeout (in seconds). # noqa: E501 - - :return: The inactive_timeout of this HttpSettingsSettings. # noqa: E501 - :rtype: int - """ - return self._inactive_timeout - - @inactive_timeout.setter - def inactive_timeout(self, inactive_timeout): - """Sets the inactive_timeout of this HttpSettingsSettings. - - Get the HTTP Session inactivity timeout (in seconds). # noqa: E501 - - :param inactive_timeout: The inactive_timeout of this HttpSettingsSettings. # noqa: E501 - :type: int - """ - if inactive_timeout is None: - raise ValueError("Invalid value for `inactive_timeout`, must not be `None`") # noqa: E501 - if inactive_timeout is not None and inactive_timeout > 31536000: # noqa: E501 - raise ValueError("Invalid value for `inactive_timeout`, must be a value less than or equal to `31536000`") # noqa: E501 - if inactive_timeout is not None and inactive_timeout < 0: # noqa: E501 - raise ValueError("Invalid value for `inactive_timeout`, must be a value greater than or equal to `0`") # noqa: E501 - - self._inactive_timeout = inactive_timeout - - @property - def integrated_authentication(self): - """Gets the integrated_authentication of this HttpSettingsSettings. # noqa: E501 - - Enable Integrated Authentication for HTTP service. # noqa: E501 - - :return: The integrated_authentication of this HttpSettingsSettings. # noqa: E501 - :rtype: bool - """ - return self._integrated_authentication - - @integrated_authentication.setter - def integrated_authentication(self, integrated_authentication): - """Sets the integrated_authentication of this HttpSettingsSettings. - - Enable Integrated Authentication for HTTP service. # noqa: E501 - - :param integrated_authentication: The integrated_authentication of this HttpSettingsSettings. # noqa: E501 - :type: bool - """ - - self._integrated_authentication = integrated_authentication - - @property - def server_root(self): - """Gets the server_root of this HttpSettingsSettings. # noqa: E501 - - Document root directory for HTTP service. Must be within /ifs. # noqa: E501 - - :return: The server_root of this HttpSettingsSettings. # noqa: E501 - :rtype: str - """ - return self._server_root - - @server_root.setter - def server_root(self, server_root): - """Sets the server_root of this HttpSettingsSettings. - - Document root directory for HTTP service. Must be within /ifs. # noqa: E501 - - :param server_root: The server_root of this HttpSettingsSettings. # noqa: E501 - :type: str - """ - if server_root is not None and len(server_root) > 4096: - raise ValueError("Invalid value for `server_root`, length must be less than or equal to `4096`") # noqa: E501 - if server_root is not None and len(server_root) < 4: - raise ValueError("Invalid value for `server_root`, length must be greater than or equal to `4`") # noqa: E501 - - self._server_root = server_root - - @property - def service(self): - """Gets the service of this HttpSettingsSettings. # noqa: E501 - - Enable/disable the HTTP service or redirect to WebUI or disabled BasicFileAccess. # noqa: E501 - - :return: The service of this HttpSettingsSettings. # noqa: E501 - :rtype: str - """ - return self._service - - @service.setter - def service(self, service): - """Sets the service of this HttpSettingsSettings. - - Enable/disable the HTTP service or redirect to WebUI or disabled BasicFileAccess. # noqa: E501 - - :param service: The service of this HttpSettingsSettings. # noqa: E501 - :type: str - """ - allowed_values = ["enabled", "disabled", "redirect", "disabled_basicfile"] # noqa: E501 - if service not in allowed_values: - raise ValueError( - "Invalid value for `service` ({0}), must be one of {1}" # noqa: E501 - .format(service, allowed_values) - ) - - self._service = service - - @property - def service_timeout(self): - """Gets the service_timeout of this HttpSettingsSettings. # noqa: E501 - - Get the HTTP Timeout directive from Apache. Value 0 means service timeout is disabled. # noqa: E501 - - :return: The service_timeout of this HttpSettingsSettings. # noqa: E501 - :rtype: int - """ - return self._service_timeout - - @service_timeout.setter - def service_timeout(self, service_timeout): - """Sets the service_timeout of this HttpSettingsSettings. - - Get the HTTP Timeout directive from Apache. Value 0 means service timeout is disabled. # noqa: E501 - - :param service_timeout: The service_timeout of this HttpSettingsSettings. # noqa: E501 - :type: int - """ - if service_timeout is None: - raise ValueError("Invalid value for `service_timeout`, must not be `None`") # noqa: E501 - if service_timeout is not None and service_timeout > 2147483647: # noqa: E501 - raise ValueError("Invalid value for `service_timeout`, must be a value less than or equal to `2147483647`") # noqa: E501 - if service_timeout is not None and service_timeout < 0: # noqa: E501 - raise ValueError("Invalid value for `service_timeout`, must be a value greater than or equal to `0`") # noqa: E501 - - self._service_timeout = service_timeout - - @property - def session_max_age(self): - """Gets the session_max_age of this HttpSettingsSettings. # noqa: E501 - - Get the HTTP Session absolute timeout (in seconds). # noqa: E501 - - :return: The session_max_age of this HttpSettingsSettings. # noqa: E501 - :rtype: int - """ - return self._session_max_age - - @session_max_age.setter - def session_max_age(self, session_max_age): - """Sets the session_max_age of this HttpSettingsSettings. - - Get the HTTP Session absolute timeout (in seconds). # noqa: E501 - - :param session_max_age: The session_max_age of this HttpSettingsSettings. # noqa: E501 - :type: int - """ - if session_max_age is None: - raise ValueError("Invalid value for `session_max_age`, must not be `None`") # noqa: E501 - if session_max_age is not None and session_max_age > 31536000: # noqa: E501 - raise ValueError("Invalid value for `session_max_age`, must be a value less than or equal to `31536000`") # noqa: E501 - if session_max_age is not None and session_max_age < 60: # noqa: E501 - raise ValueError("Invalid value for `session_max_age`, must be a value greater than or equal to `60`") # noqa: E501 - - self._session_max_age = session_max_age - - @property - def webhdfs_ran_https_port(self): - """Gets the webhdfs_ran_https_port of this HttpSettingsSettings. # noqa: E501 - - Configure Data Services Port for HTTP service. # noqa: E501 - - :return: The webhdfs_ran_https_port of this HttpSettingsSettings. # noqa: E501 - :rtype: int - """ - return self._webhdfs_ran_https_port - - @webhdfs_ran_https_port.setter - def webhdfs_ran_https_port(self, webhdfs_ran_https_port): - """Sets the webhdfs_ran_https_port of this HttpSettingsSettings. - - Configure Data Services Port for HTTP service. # noqa: E501 - - :param webhdfs_ran_https_port: The webhdfs_ran_https_port of this HttpSettingsSettings. # noqa: E501 - :type: int - """ - if webhdfs_ran_https_port is None: - raise ValueError("Invalid value for `webhdfs_ran_https_port`, must not be `None`") # noqa: E501 - if webhdfs_ran_https_port is not None and webhdfs_ran_https_port > 65535: # noqa: E501 - raise ValueError("Invalid value for `webhdfs_ran_https_port`, must be a value less than or equal to `65535`") # noqa: E501 - if webhdfs_ran_https_port is not None and webhdfs_ran_https_port < 1025: # noqa: E501 - raise ValueError("Invalid value for `webhdfs_ran_https_port`, must be a value greater than or equal to `1025`") # noqa: E501 - - self._webhdfs_ran_https_port = webhdfs_ran_https_port - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(HttpSettingsSettings, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, HttpSettingsSettings): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/iceage_settings.py b/isilon_sdk/isilon_sdk/v9_11_0/models/iceage_settings.py deleted file mode 100644 index b4612a1af..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/iceage_settings.py +++ /dev/null @@ -1,117 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class IceageSettings(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'settings': 'IceageSettingsSettings' - } - - attribute_map = { - 'settings': 'settings' - } - - def __init__(self, settings=None): # noqa: E501 - """IceageSettings - a model defined in Swagger""" # noqa: E501 - - self._settings = None - self.discriminator = None - - if settings is not None: - self.settings = settings - - @property - def settings(self): - """Gets the settings of this IceageSettings. # noqa: E501 - - # noqa: E501 - - :return: The settings of this IceageSettings. # noqa: E501 - :rtype: IceageSettingsSettings - """ - return self._settings - - @settings.setter - def settings(self, settings): - """Sets the settings of this IceageSettings. - - # noqa: E501 - - :param settings: The settings of this IceageSettings. # noqa: E501 - :type: IceageSettingsSettings - """ - - self._settings = settings - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(IceageSettings, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, IceageSettings): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/iceage_settings_settings.py b/isilon_sdk/isilon_sdk/v9_11_0/models/iceage_settings_settings.py deleted file mode 100644 index 9d5a8e884..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/iceage_settings_settings.py +++ /dev/null @@ -1,153 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class IceageSettingsSettings(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'core_queue_size': 'int', - 'retention': 'int' - } - - attribute_map = { - 'core_queue_size': 'core_queue_size', - 'retention': 'retention' - } - - def __init__(self, core_queue_size=None, retention=None): # noqa: E501 - """IceageSettingsSettings - a model defined in Swagger""" # noqa: E501 - - self._core_queue_size = None - self._retention = None - self.discriminator = None - - if core_queue_size is not None: - self.core_queue_size = core_queue_size - if retention is not None: - self.retention = retention - - @property - def core_queue_size(self): - """Gets the core_queue_size of this IceageSettingsSettings. # noqa: E501 - - Max total size of the core files in GBs which can be copied into the queue directory to be processed. Default is 20G. # noqa: E501 - - :return: The core_queue_size of this IceageSettingsSettings. # noqa: E501 - :rtype: int - """ - return self._core_queue_size - - @core_queue_size.setter - def core_queue_size(self, core_queue_size): - """Sets the core_queue_size of this IceageSettingsSettings. - - Max total size of the core files in GBs which can be copied into the queue directory to be processed. Default is 20G. # noqa: E501 - - :param core_queue_size: The core_queue_size of this IceageSettingsSettings. # noqa: E501 - :type: int - """ - if core_queue_size is not None and core_queue_size > 255: # noqa: E501 - raise ValueError("Invalid value for `core_queue_size`, must be a value less than or equal to `255`") # noqa: E501 - if core_queue_size is not None and core_queue_size < 0: # noqa: E501 - raise ValueError("Invalid value for `core_queue_size`, must be a value greater than or equal to `0`") # noqa: E501 - - self._core_queue_size = core_queue_size - - @property - def retention(self): - """Gets the retention of this IceageSettingsSettings. # noqa: E501 - - Retention period of IceAge reports and headers in DAYS. Defaults to 1 month. # noqa: E501 - - :return: The retention of this IceageSettingsSettings. # noqa: E501 - :rtype: int - """ - return self._retention - - @retention.setter - def retention(self, retention): - """Sets the retention of this IceageSettingsSettings. - - Retention period of IceAge reports and headers in DAYS. Defaults to 1 month. # noqa: E501 - - :param retention: The retention of this IceageSettingsSettings. # noqa: E501 - :type: int - """ - if retention is not None and retention > 36500: # noqa: E501 - raise ValueError("Invalid value for `retention`, must be a value less than or equal to `36500`") # noqa: E501 - if retention is not None and retention < 0: # noqa: E501 - raise ValueError("Invalid value for `retention`, must be a value greater than or equal to `0`") # noqa: E501 - - self._retention = retention - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(IceageSettingsSettings, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, IceageSettingsSettings): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_settings.py b/isilon_sdk/isilon_sdk/v9_11_0/models/job_settings.py deleted file mode 100644 index 8c81ef6cb..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_settings.py +++ /dev/null @@ -1,117 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class JobSettings(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'settings': 'JobSettingsSettings' - } - - attribute_map = { - 'settings': 'settings' - } - - def __init__(self, settings=None): # noqa: E501 - """JobSettings - a model defined in Swagger""" # noqa: E501 - - self._settings = None - self.discriminator = None - - if settings is not None: - self.settings = settings - - @property - def settings(self): - """Gets the settings of this JobSettings. # noqa: E501 - - Job Engine general settings modifiable from REST API. # noqa: E501 - - :return: The settings of this JobSettings. # noqa: E501 - :rtype: JobSettingsSettings - """ - return self._settings - - @settings.setter - def settings(self, settings): - """Sets the settings of this JobSettings. - - Job Engine general settings modifiable from REST API. # noqa: E501 - - :param settings: The settings of this JobSettings. # noqa: E501 - :type: JobSettingsSettings - """ - - self._settings = settings - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(JobSettings, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, JobSettings): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_settings_settings.py b/isilon_sdk/isilon_sdk/v9_11_0/models/job_settings_settings.py deleted file mode 100644 index f1658ace9..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_settings_settings.py +++ /dev/null @@ -1,151 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class JobSettingsSettings(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'parallel_restriper_mode': 'str', - 'smartthrottling': 'bool' - } - - attribute_map = { - 'parallel_restriper_mode': 'parallel_restriper_mode', - 'smartthrottling': 'smartthrottling' - } - - def __init__(self, parallel_restriper_mode=None, smartthrottling=None): # noqa: E501 - """JobSettingsSettings - a model defined in Swagger""" # noqa: E501 - - self._parallel_restriper_mode = None - self._smartthrottling = None - self.discriminator = None - - if parallel_restriper_mode is not None: - self.parallel_restriper_mode = parallel_restriper_mode - if smartthrottling is not None: - self.smartthrottling = smartthrottling - - @property - def parallel_restriper_mode(self): - """Gets the parallel_restriper_mode of this JobSettingsSettings. # noqa: E501 - - Specify how restriper exclusion in the job engine is relaxed. Off means not relaxed. Partial keeps FlexProtect family jobs running alone from other restriper jobs. All relaxes all exclusions between restriper jobs. # noqa: E501 - - :return: The parallel_restriper_mode of this JobSettingsSettings. # noqa: E501 - :rtype: str - """ - return self._parallel_restriper_mode - - @parallel_restriper_mode.setter - def parallel_restriper_mode(self, parallel_restriper_mode): - """Sets the parallel_restriper_mode of this JobSettingsSettings. - - Specify how restriper exclusion in the job engine is relaxed. Off means not relaxed. Partial keeps FlexProtect family jobs running alone from other restriper jobs. All relaxes all exclusions between restriper jobs. # noqa: E501 - - :param parallel_restriper_mode: The parallel_restriper_mode of this JobSettingsSettings. # noqa: E501 - :type: str - """ - allowed_values = ["Off", "Partial", "All"] # noqa: E501 - if parallel_restriper_mode not in allowed_values: - raise ValueError( - "Invalid value for `parallel_restriper_mode` ({0}), must be one of {1}" # noqa: E501 - .format(parallel_restriper_mode, allowed_values) - ) - - self._parallel_restriper_mode = parallel_restriper_mode - - @property - def smartthrottling(self): - """Gets the smartthrottling of this JobSettingsSettings. # noqa: E501 - - Use SmartThrottling to control Job Engine job resources and maintain front end Quality of Service. # noqa: E501 - - :return: The smartthrottling of this JobSettingsSettings. # noqa: E501 - :rtype: bool - """ - return self._smartthrottling - - @smartthrottling.setter - def smartthrottling(self, smartthrottling): - """Sets the smartthrottling of this JobSettingsSettings. - - Use SmartThrottling to control Job Engine job resources and maintain front end Quality of Service. # noqa: E501 - - :param smartthrottling: The smartthrottling of this JobSettingsSettings. # noqa: E501 - :type: bool - """ - - self._smartthrottling = smartthrottling - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(JobSettingsSettings, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, JobSettingsSettings): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/keymanager_cluster.py b/isilon_sdk/isilon_sdk/v9_11_0/models/keymanager_cluster.py deleted file mode 100644 index 808610ba9..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/keymanager_cluster.py +++ /dev/null @@ -1,181 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class KeymanagerCluster(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'domains': 'list[KeymanagerClusterDomain]', - 'resume': 'str', - 'total': 'int' - } - - attribute_map = { - 'domains': 'domains', - 'resume': 'resume', - 'total': 'total' - } - - def __init__(self, domains=None, resume=None, total=None): # noqa: E501 - """KeymanagerCluster - a model defined in Swagger""" # noqa: E501 - - self._domains = None - self._resume = None - self._total = None - self.discriminator = None - - self.domains = domains - if resume is not None: - self.resume = resume - self.total = total - - @property - def domains(self): - """Gets the domains of this KeymanagerCluster. # noqa: E501 - - - :return: The domains of this KeymanagerCluster. # noqa: E501 - :rtype: list[KeymanagerClusterDomain] - """ - return self._domains - - @domains.setter - def domains(self, domains): - """Sets the domains of this KeymanagerCluster. - - - :param domains: The domains of this KeymanagerCluster. # noqa: E501 - :type: list[KeymanagerClusterDomain] - """ - if domains is None: - raise ValueError("Invalid value for `domains`, must not be `None`") # noqa: E501 - - self._domains = domains - - @property - def resume(self): - """Gets the resume of this KeymanagerCluster. # noqa: E501 - - Provide this token as the 'resume' query argument to continue listing results. # noqa: E501 - - :return: The resume of this KeymanagerCluster. # noqa: E501 - :rtype: str - """ - return self._resume - - @resume.setter - def resume(self, resume): - """Sets the resume of this KeymanagerCluster. - - Provide this token as the 'resume' query argument to continue listing results. # noqa: E501 - - :param resume: The resume of this KeymanagerCluster. # noqa: E501 - :type: str - """ - if resume is not None and len(resume) > 8192: - raise ValueError("Invalid value for `resume`, length must be less than or equal to `8192`") # noqa: E501 - if resume is not None and len(resume) < 0: - raise ValueError("Invalid value for `resume`, length must be greater than or equal to `0`") # noqa: E501 - - self._resume = resume - - @property - def total(self): - """Gets the total of this KeymanagerCluster. # noqa: E501 - - Total number of items available. # noqa: E501 - - :return: The total of this KeymanagerCluster. # noqa: E501 - :rtype: int - """ - return self._total - - @total.setter - def total(self, total): - """Sets the total of this KeymanagerCluster. - - Total number of items available. # noqa: E501 - - :param total: The total of this KeymanagerCluster. # noqa: E501 - :type: int - """ - if total is None: - raise ValueError("Invalid value for `total`, must not be `None`") # noqa: E501 - if total is not None and total > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `total`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if total is not None and total < 0: # noqa: E501 - raise ValueError("Invalid value for `total`, must be a value greater than or equal to `0`") # noqa: E501 - - self._total = total - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(KeymanagerCluster, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, KeymanagerCluster): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/maintenance_settings.py b/isilon_sdk/isilon_sdk/v9_11_0/models/maintenance_settings.py deleted file mode 100644 index 22ff12dd7..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/maintenance_settings.py +++ /dev/null @@ -1,298 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class MaintenanceSettings(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'active': 'bool', - 'auto_enable': 'bool', - 'components': 'list[MaintenanceSettingsComponent]', - 'history': 'list[MaintenanceSettingsHistoryItem]', - 'manual_window_enabled': 'bool', - 'manual_window_hours': 'int', - 'manual_window_start': 'int' - } - - attribute_map = { - 'active': 'active', - 'auto_enable': 'auto_enable', - 'components': 'components', - 'history': 'history', - 'manual_window_enabled': 'manual_window_enabled', - 'manual_window_hours': 'manual_window_hours', - 'manual_window_start': 'manual_window_start' - } - - def __init__(self, active=None, auto_enable=None, components=None, history=None, manual_window_enabled=None, manual_window_hours=None, manual_window_start=None): # noqa: E501 - """MaintenanceSettings - a model defined in Swagger""" # noqa: E501 - - self._active = None - self._auto_enable = None - self._components = None - self._history = None - self._manual_window_enabled = None - self._manual_window_hours = None - self._manual_window_start = None - self.discriminator = None - - self.active = active - self.auto_enable = auto_enable - if components is not None: - self.components = components - if history is not None: - self.history = history - self.manual_window_enabled = manual_window_enabled - self.manual_window_hours = manual_window_hours - self.manual_window_start = manual_window_start - - @property - def active(self): - """Gets the active of this MaintenanceSettings. # noqa: E501 - - Indicates whether maintenance mode is active. # noqa: E501 - - :return: The active of this MaintenanceSettings. # noqa: E501 - :rtype: bool - """ - return self._active - - @active.setter - def active(self, active): - """Sets the active of this MaintenanceSettings. - - Indicates whether maintenance mode is active. # noqa: E501 - - :param active: The active of this MaintenanceSettings. # noqa: E501 - :type: bool - """ - if active is None: - raise ValueError("Invalid value for `active`, must not be `None`") # noqa: E501 - - self._active = active - - @property - def auto_enable(self): - """Gets the auto_enable of this MaintenanceSettings. # noqa: E501 - - Indicates whether auto maintenance mode is enabled. # noqa: E501 - - :return: The auto_enable of this MaintenanceSettings. # noqa: E501 - :rtype: bool - """ - return self._auto_enable - - @auto_enable.setter - def auto_enable(self, auto_enable): - """Sets the auto_enable of this MaintenanceSettings. - - Indicates whether auto maintenance mode is enabled. # noqa: E501 - - :param auto_enable: The auto_enable of this MaintenanceSettings. # noqa: E501 - :type: bool - """ - if auto_enable is None: - raise ValueError("Invalid value for `auto_enable`, must not be `None`") # noqa: E501 - - self._auto_enable = auto_enable - - @property - def components(self): - """Gets the components of this MaintenanceSettings. # noqa: E501 - - Maintenance mode status of individual components. # noqa: E501 - - :return: The components of this MaintenanceSettings. # noqa: E501 - :rtype: list[MaintenanceSettingsComponent] - """ - return self._components - - @components.setter - def components(self, components): - """Sets the components of this MaintenanceSettings. - - Maintenance mode status of individual components. # noqa: E501 - - :param components: The components of this MaintenanceSettings. # noqa: E501 - :type: list[MaintenanceSettingsComponent] - """ - - self._components = components - - @property - def history(self): - """Gets the history of this MaintenanceSettings. # noqa: E501 - - History list of maintenance mode windows. # noqa: E501 - - :return: The history of this MaintenanceSettings. # noqa: E501 - :rtype: list[MaintenanceSettingsHistoryItem] - """ - return self._history - - @history.setter - def history(self, history): - """Sets the history of this MaintenanceSettings. - - History list of maintenance mode windows. # noqa: E501 - - :param history: The history of this MaintenanceSettings. # noqa: E501 - :type: list[MaintenanceSettingsHistoryItem] - """ - - self._history = history - - @property - def manual_window_enabled(self): - """Gets the manual_window_enabled of this MaintenanceSettings. # noqa: E501 - - Indicates whether the manual maintenance window enabled. # noqa: E501 - - :return: The manual_window_enabled of this MaintenanceSettings. # noqa: E501 - :rtype: bool - """ - return self._manual_window_enabled - - @manual_window_enabled.setter - def manual_window_enabled(self, manual_window_enabled): - """Sets the manual_window_enabled of this MaintenanceSettings. - - Indicates whether the manual maintenance window enabled. # noqa: E501 - - :param manual_window_enabled: The manual_window_enabled of this MaintenanceSettings. # noqa: E501 - :type: bool - """ - if manual_window_enabled is None: - raise ValueError("Invalid value for `manual_window_enabled`, must not be `None`") # noqa: E501 - - self._manual_window_enabled = manual_window_enabled - - @property - def manual_window_hours(self): - """Gets the manual_window_hours of this MaintenanceSettings. # noqa: E501 - - When the manual maintenance window is enabled, the duration of the window in hours. # noqa: E501 - - :return: The manual_window_hours of this MaintenanceSettings. # noqa: E501 - :rtype: int - """ - return self._manual_window_hours - - @manual_window_hours.setter - def manual_window_hours(self, manual_window_hours): - """Sets the manual_window_hours of this MaintenanceSettings. - - When the manual maintenance window is enabled, the duration of the window in hours. # noqa: E501 - - :param manual_window_hours: The manual_window_hours of this MaintenanceSettings. # noqa: E501 - :type: int - """ - if manual_window_hours is None: - raise ValueError("Invalid value for `manual_window_hours`, must not be `None`") # noqa: E501 - if manual_window_hours is not None and manual_window_hours > 199: # noqa: E501 - raise ValueError("Invalid value for `manual_window_hours`, must be a value less than or equal to `199`") # noqa: E501 - if manual_window_hours is not None and manual_window_hours < 1: # noqa: E501 - raise ValueError("Invalid value for `manual_window_hours`, must be a value greater than or equal to `1`") # noqa: E501 - - self._manual_window_hours = manual_window_hours - - @property - def manual_window_start(self): - """Gets the manual_window_start of this MaintenanceSettings. # noqa: E501 - - When the manual maintenance window is enabled, the time when the maintenance window will start. # noqa: E501 - - :return: The manual_window_start of this MaintenanceSettings. # noqa: E501 - :rtype: int - """ - return self._manual_window_start - - @manual_window_start.setter - def manual_window_start(self, manual_window_start): - """Sets the manual_window_start of this MaintenanceSettings. - - When the manual maintenance window is enabled, the time when the maintenance window will start. # noqa: E501 - - :param manual_window_start: The manual_window_start of this MaintenanceSettings. # noqa: E501 - :type: int - """ - if manual_window_start is None: - raise ValueError("Invalid value for `manual_window_start`, must not be `None`") # noqa: E501 - if manual_window_start is not None and manual_window_start > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `manual_window_start`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if manual_window_start is not None and manual_window_start < 0: # noqa: E501 - raise ValueError("Invalid value for `manual_window_start`, must be a value greater than or equal to `0`") # noqa: E501 - - self._manual_window_start = manual_window_start - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(MaintenanceSettings, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, MaintenanceSettings): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/maintenance_settings_component.py b/isilon_sdk/isilon_sdk/v9_11_0/models/maintenance_settings_component.py deleted file mode 100644 index 3e5355dab..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/maintenance_settings_component.py +++ /dev/null @@ -1,180 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class MaintenanceSettingsComponent(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'active': 'bool', - 'enabled': 'bool', - 'name': 'str' - } - - attribute_map = { - 'active': 'active', - 'enabled': 'enabled', - 'name': 'name' - } - - def __init__(self, active=None, enabled=None, name=None): # noqa: E501 - """MaintenanceSettingsComponent - a model defined in Swagger""" # noqa: E501 - - self._active = None - self._enabled = None - self._name = None - self.discriminator = None - - self.active = active - self.enabled = enabled - self.name = name - - @property - def active(self): - """Gets the active of this MaintenanceSettingsComponent. # noqa: E501 - - Indicates whether maintenance mode is active for the component. # noqa: E501 - - :return: The active of this MaintenanceSettingsComponent. # noqa: E501 - :rtype: bool - """ - return self._active - - @active.setter - def active(self, active): - """Sets the active of this MaintenanceSettingsComponent. - - Indicates whether maintenance mode is active for the component. # noqa: E501 - - :param active: The active of this MaintenanceSettingsComponent. # noqa: E501 - :type: bool - """ - if active is None: - raise ValueError("Invalid value for `active`, must not be `None`") # noqa: E501 - - self._active = active - - @property - def enabled(self): - """Gets the enabled of this MaintenanceSettingsComponent. # noqa: E501 - - Indicates whether maintenance mode is enabled for the component. # noqa: E501 - - :return: The enabled of this MaintenanceSettingsComponent. # noqa: E501 - :rtype: bool - """ - return self._enabled - - @enabled.setter - def enabled(self, enabled): - """Sets the enabled of this MaintenanceSettingsComponent. - - Indicates whether maintenance mode is enabled for the component. # noqa: E501 - - :param enabled: The enabled of this MaintenanceSettingsComponent. # noqa: E501 - :type: bool - """ - if enabled is None: - raise ValueError("Invalid value for `enabled`, must not be `None`") # noqa: E501 - - self._enabled = enabled - - @property - def name(self): - """Gets the name of this MaintenanceSettingsComponent. # noqa: E501 - - The maintenance mode component name. # noqa: E501 - - :return: The name of this MaintenanceSettingsComponent. # noqa: E501 - :rtype: str - """ - return self._name - - @name.setter - def name(self, name): - """Sets the name of this MaintenanceSettingsComponent. - - The maintenance mode component name. # noqa: E501 - - :param name: The name of this MaintenanceSettingsComponent. # noqa: E501 - :type: str - """ - if name is None: - raise ValueError("Invalid value for `name`, must not be `None`") # noqa: E501 - if name is not None and len(name) > 255: - raise ValueError("Invalid value for `name`, length must be less than or equal to `255`") # noqa: E501 - if name is not None and len(name) < 1: - raise ValueError("Invalid value for `name`, length must be greater than or equal to `1`") # noqa: E501 - - self._name = name - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(MaintenanceSettingsComponent, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, MaintenanceSettingsComponent): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/maintenance_settings_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/maintenance_settings_extended.py deleted file mode 100644 index c4a0c489b..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/maintenance_settings_extended.py +++ /dev/null @@ -1,299 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class MaintenanceSettingsExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'active': 'bool', - 'auto_enable': 'bool', - 'manual_window_enabled': 'bool', - 'manual_window_hours': 'int', - 'manual_window_start': 'int', - 'mode': 'str', - 'node_level_maintenance': 'bool' - } - - attribute_map = { - 'active': 'active', - 'auto_enable': 'auto_enable', - 'manual_window_enabled': 'manual_window_enabled', - 'manual_window_hours': 'manual_window_hours', - 'manual_window_start': 'manual_window_start', - 'mode': 'mode', - 'node_level_maintenance': 'node_level_maintenance' - } - - def __init__(self, active=None, auto_enable=None, manual_window_enabled=None, manual_window_hours=None, manual_window_start=None, mode=None, node_level_maintenance=False): # noqa: E501 - """MaintenanceSettingsExtended - a model defined in Swagger""" # noqa: E501 - - self._active = None - self._auto_enable = None - self._manual_window_enabled = None - self._manual_window_hours = None - self._manual_window_start = None - self._mode = None - self._node_level_maintenance = None - self.discriminator = None - - if active is not None: - self.active = active - if auto_enable is not None: - self.auto_enable = auto_enable - if manual_window_enabled is not None: - self.manual_window_enabled = manual_window_enabled - if manual_window_hours is not None: - self.manual_window_hours = manual_window_hours - if manual_window_start is not None: - self.manual_window_start = manual_window_start - if mode is not None: - self.mode = mode - if node_level_maintenance is not None: - self.node_level_maintenance = node_level_maintenance - - @property - def active(self): - """Gets the active of this MaintenanceSettingsExtended. # noqa: E501 - - Indicates whether maintenance mode is active. # noqa: E501 - - :return: The active of this MaintenanceSettingsExtended. # noqa: E501 - :rtype: bool - """ - return self._active - - @active.setter - def active(self, active): - """Sets the active of this MaintenanceSettingsExtended. - - Indicates whether maintenance mode is active. # noqa: E501 - - :param active: The active of this MaintenanceSettingsExtended. # noqa: E501 - :type: bool - """ - - self._active = active - - @property - def auto_enable(self): - """Gets the auto_enable of this MaintenanceSettingsExtended. # noqa: E501 - - Indicates whether auto maintenance mode is enabled. # noqa: E501 - - :return: The auto_enable of this MaintenanceSettingsExtended. # noqa: E501 - :rtype: bool - """ - return self._auto_enable - - @auto_enable.setter - def auto_enable(self, auto_enable): - """Sets the auto_enable of this MaintenanceSettingsExtended. - - Indicates whether auto maintenance mode is enabled. # noqa: E501 - - :param auto_enable: The auto_enable of this MaintenanceSettingsExtended. # noqa: E501 - :type: bool - """ - - self._auto_enable = auto_enable - - @property - def manual_window_enabled(self): - """Gets the manual_window_enabled of this MaintenanceSettingsExtended. # noqa: E501 - - Indicates whether the manual maintenance window enabled. # noqa: E501 - - :return: The manual_window_enabled of this MaintenanceSettingsExtended. # noqa: E501 - :rtype: bool - """ - return self._manual_window_enabled - - @manual_window_enabled.setter - def manual_window_enabled(self, manual_window_enabled): - """Sets the manual_window_enabled of this MaintenanceSettingsExtended. - - Indicates whether the manual maintenance window enabled. # noqa: E501 - - :param manual_window_enabled: The manual_window_enabled of this MaintenanceSettingsExtended. # noqa: E501 - :type: bool - """ - - self._manual_window_enabled = manual_window_enabled - - @property - def manual_window_hours(self): - """Gets the manual_window_hours of this MaintenanceSettingsExtended. # noqa: E501 - - When the manual maintenance window is enabled, the duration of the window in hours. # noqa: E501 - - :return: The manual_window_hours of this MaintenanceSettingsExtended. # noqa: E501 - :rtype: int - """ - return self._manual_window_hours - - @manual_window_hours.setter - def manual_window_hours(self, manual_window_hours): - """Sets the manual_window_hours of this MaintenanceSettingsExtended. - - When the manual maintenance window is enabled, the duration of the window in hours. # noqa: E501 - - :param manual_window_hours: The manual_window_hours of this MaintenanceSettingsExtended. # noqa: E501 - :type: int - """ - if manual_window_hours is not None and manual_window_hours > 199: # noqa: E501 - raise ValueError("Invalid value for `manual_window_hours`, must be a value less than or equal to `199`") # noqa: E501 - if manual_window_hours is not None and manual_window_hours < 1: # noqa: E501 - raise ValueError("Invalid value for `manual_window_hours`, must be a value greater than or equal to `1`") # noqa: E501 - - self._manual_window_hours = manual_window_hours - - @property - def manual_window_start(self): - """Gets the manual_window_start of this MaintenanceSettingsExtended. # noqa: E501 - - When the manual maintenance window is enabled, the time when the maintenance window will start. # noqa: E501 - - :return: The manual_window_start of this MaintenanceSettingsExtended. # noqa: E501 - :rtype: int - """ - return self._manual_window_start - - @manual_window_start.setter - def manual_window_start(self, manual_window_start): - """Sets the manual_window_start of this MaintenanceSettingsExtended. - - When the manual maintenance window is enabled, the time when the maintenance window will start. # noqa: E501 - - :param manual_window_start: The manual_window_start of this MaintenanceSettingsExtended. # noqa: E501 - :type: int - """ - if manual_window_start is not None and manual_window_start > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `manual_window_start`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if manual_window_start is not None and manual_window_start < 0: # noqa: E501 - raise ValueError("Invalid value for `manual_window_start`, must be a value greater than or equal to `0`") # noqa: E501 - - self._manual_window_start = manual_window_start - - @property - def mode(self): - """Gets the mode of this MaintenanceSettingsExtended. # noqa: E501 - - Whether this maintenance window was activated manually or automatically. # noqa: E501 - - :return: The mode of this MaintenanceSettingsExtended. # noqa: E501 - :rtype: str - """ - return self._mode - - @mode.setter - def mode(self, mode): - """Sets the mode of this MaintenanceSettingsExtended. - - Whether this maintenance window was activated manually or automatically. # noqa: E501 - - :param mode: The mode of this MaintenanceSettingsExtended. # noqa: E501 - :type: str - """ - allowed_values = ["auto", "manual"] # noqa: E501 - if mode not in allowed_values: - raise ValueError( - "Invalid value for `mode` ({0}), must be one of {1}" # noqa: E501 - .format(mode, allowed_values) - ) - - self._mode = mode - - @property - def node_level_maintenance(self): - """Gets the node_level_maintenance of this MaintenanceSettingsExtended. # noqa: E501 - - Indicates whether this enable command is only for a node. # noqa: E501 - - :return: The node_level_maintenance of this MaintenanceSettingsExtended. # noqa: E501 - :rtype: bool - """ - return self._node_level_maintenance - - @node_level_maintenance.setter - def node_level_maintenance(self, node_level_maintenance): - """Sets the node_level_maintenance of this MaintenanceSettingsExtended. - - Indicates whether this enable command is only for a node. # noqa: E501 - - :param node_level_maintenance: The node_level_maintenance of this MaintenanceSettingsExtended. # noqa: E501 - :type: bool - """ - - self._node_level_maintenance = node_level_maintenance - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(MaintenanceSettingsExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, MaintenanceSettingsExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/maintenance_settings_history_item.py b/isilon_sdk/isilon_sdk/v9_11_0/models/maintenance_settings_history_item.py deleted file mode 100644 index f8ee4d144..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/maintenance_settings_history_item.py +++ /dev/null @@ -1,187 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class MaintenanceSettingsHistoryItem(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'end': 'int', - 'mode': 'str', - 'start': 'int' - } - - attribute_map = { - 'end': 'end', - 'mode': 'mode', - 'start': 'start' - } - - def __init__(self, end=None, mode=None, start=None): # noqa: E501 - """MaintenanceSettingsHistoryItem - a model defined in Swagger""" # noqa: E501 - - self._end = None - self._mode = None - self._start = None - self.discriminator = None - - if end is not None: - self.end = end - self.mode = mode - self.start = start - - @property - def end(self): - """Gets the end of this MaintenanceSettingsHistoryItem. # noqa: E501 - - The end time of maintenance mode, as a UNIX timestamp in seconds. Null if maintenance is ongoing. # noqa: E501 - - :return: The end of this MaintenanceSettingsHistoryItem. # noqa: E501 - :rtype: int - """ - return self._end - - @end.setter - def end(self, end): - """Sets the end of this MaintenanceSettingsHistoryItem. - - The end time of maintenance mode, as a UNIX timestamp in seconds. Null if maintenance is ongoing. # noqa: E501 - - :param end: The end of this MaintenanceSettingsHistoryItem. # noqa: E501 - :type: int - """ - if end is not None and end > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `end`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - - self._end = end - - @property - def mode(self): - """Gets the mode of this MaintenanceSettingsHistoryItem. # noqa: E501 - - Whether this maintenance window was set manually or automatically. # noqa: E501 - - :return: The mode of this MaintenanceSettingsHistoryItem. # noqa: E501 - :rtype: str - """ - return self._mode - - @mode.setter - def mode(self, mode): - """Sets the mode of this MaintenanceSettingsHistoryItem. - - Whether this maintenance window was set manually or automatically. # noqa: E501 - - :param mode: The mode of this MaintenanceSettingsHistoryItem. # noqa: E501 - :type: str - """ - if mode is None: - raise ValueError("Invalid value for `mode`, must not be `None`") # noqa: E501 - allowed_values = ["auto", "manual"] # noqa: E501 - if mode not in allowed_values: - raise ValueError( - "Invalid value for `mode` ({0}), must be one of {1}" # noqa: E501 - .format(mode, allowed_values) - ) - - self._mode = mode - - @property - def start(self): - """Gets the start of this MaintenanceSettingsHistoryItem. # noqa: E501 - - Start time of maintenance mode, as a UNIX timestamp in seconds. # noqa: E501 - - :return: The start of this MaintenanceSettingsHistoryItem. # noqa: E501 - :rtype: int - """ - return self._start - - @start.setter - def start(self, start): - """Sets the start of this MaintenanceSettingsHistoryItem. - - Start time of maintenance mode, as a UNIX timestamp in seconds. # noqa: E501 - - :param start: The start of this MaintenanceSettingsHistoryItem. # noqa: E501 - :type: int - """ - if start is None: - raise ValueError("Invalid value for `start`, must not be `None`") # noqa: E501 - if start is not None and start > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `start`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if start is not None and start < 0: # noqa: E501 - raise ValueError("Invalid value for `start`, must be a value greater than or equal to `0`") # noqa: E501 - - self._start = start - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(MaintenanceSettingsHistoryItem, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, MaintenanceSettingsHistoryItem): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_certificate.py b/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_certificate.py deleted file mode 100644 index 6d3918dae..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_certificate.py +++ /dev/null @@ -1,118 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class MetadataiqCertificate(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'certificates': 'CertificatesSyslogCertificate' - } - - attribute_map = { - 'certificates': 'certificates' - } - - def __init__(self, certificates=None): # noqa: E501 - """MetadataiqCertificate - a model defined in Swagger""" # noqa: E501 - - self._certificates = None - self.discriminator = None - - self.certificates = certificates - - @property - def certificates(self): - """Gets the certificates of this MetadataiqCertificate. # noqa: E501 - - # noqa: E501 - - :return: The certificates of this MetadataiqCertificate. # noqa: E501 - :rtype: CertificatesSyslogCertificate - """ - return self._certificates - - @certificates.setter - def certificates(self, certificates): - """Sets the certificates of this MetadataiqCertificate. - - # noqa: E501 - - :param certificates: The certificates of this MetadataiqCertificate. # noqa: E501 - :type: CertificatesSyslogCertificate - """ - if certificates is None: - raise ValueError("Invalid value for `certificates`, must not be `None`") # noqa: E501 - - self._certificates = certificates - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(MetadataiqCertificate, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, MetadataiqCertificate): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_settings.py b/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_settings.py deleted file mode 100644 index 84be5d8b8..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_settings.py +++ /dev/null @@ -1,118 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class MetadataiqSettings(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'settings': 'MetadataiqSettingsSettings' - } - - attribute_map = { - 'settings': 'settings' - } - - def __init__(self, settings=None): # noqa: E501 - """MetadataiqSettings - a model defined in Swagger""" # noqa: E501 - - self._settings = None - self.discriminator = None - - self.settings = settings - - @property - def settings(self): - """Gets the settings of this MetadataiqSettings. # noqa: E501 - - MetadataIQ general Consumer and Producer settings. # noqa: E501 - - :return: The settings of this MetadataiqSettings. # noqa: E501 - :rtype: MetadataiqSettingsSettings - """ - return self._settings - - @settings.setter - def settings(self, settings): - """Sets the settings of this MetadataiqSettings. - - MetadataIQ general Consumer and Producer settings. # noqa: E501 - - :param settings: The settings of this MetadataiqSettings. # noqa: E501 - :type: MetadataiqSettingsSettings - """ - if settings is None: - raise ValueError("Invalid value for `settings`, must not be `None`") # noqa: E501 - - self._settings = settings - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(MetadataiqSettings, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, MetadataiqSettings): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_settings_settings.py b/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_settings_settings.py deleted file mode 100644 index 004469e67..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_settings_settings.py +++ /dev/null @@ -1,145 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class MetadataiqSettingsSettings(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'consumer': 'MetadataiqSettingsSettingsConsumer', - 'producer': 'MetadataiqSettingsSettingsProducer' - } - - attribute_map = { - 'consumer': 'consumer', - 'producer': 'producer' - } - - def __init__(self, consumer=None, producer=None): # noqa: E501 - """MetadataiqSettingsSettings - a model defined in Swagger""" # noqa: E501 - - self._consumer = None - self._producer = None - self.discriminator = None - - if consumer is not None: - self.consumer = consumer - if producer is not None: - self.producer = producer - - @property - def consumer(self): - """Gets the consumer of this MetadataiqSettingsSettings. # noqa: E501 - - MetadataIQ general Consumer (data uploader)settings. # noqa: E501 - - :return: The consumer of this MetadataiqSettingsSettings. # noqa: E501 - :rtype: MetadataiqSettingsSettingsConsumer - """ - return self._consumer - - @consumer.setter - def consumer(self, consumer): - """Sets the consumer of this MetadataiqSettingsSettings. - - MetadataIQ general Consumer (data uploader)settings. # noqa: E501 - - :param consumer: The consumer of this MetadataiqSettingsSettings. # noqa: E501 - :type: MetadataiqSettingsSettingsConsumer - """ - - self._consumer = consumer - - @property - def producer(self): - """Gets the producer of this MetadataiqSettingsSettings. # noqa: E501 - - MetadataIQ general Producer (metadata analyzer) settings. # noqa: E501 - - :return: The producer of this MetadataiqSettingsSettings. # noqa: E501 - :rtype: MetadataiqSettingsSettingsProducer - """ - return self._producer - - @producer.setter - def producer(self, producer): - """Sets the producer of this MetadataiqSettingsSettings. - - MetadataIQ general Producer (metadata analyzer) settings. # noqa: E501 - - :param producer: The producer of this MetadataiqSettingsSettings. # noqa: E501 - :type: MetadataiqSettingsSettingsProducer - """ - - self._producer = producer - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(MetadataiqSettingsSettings, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, MetadataiqSettingsSettings): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_settings_settings_consumer.py b/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_settings_settings_consumer.py deleted file mode 100644 index f51b0c064..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_settings_settings_consumer.py +++ /dev/null @@ -1,273 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class MetadataiqSettingsSettingsConsumer(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'database_info': 'MetadataiqSettingsSettingsConsumerDatabaseInfo', - 'excluded_lnns': 'list[int]', - 'fetch_size': 'int', - 'max_threads': 'int', - 'number_shards': 'int', - 'work_queue_size': 'int' - } - - attribute_map = { - 'database_info': 'database_info', - 'excluded_lnns': 'excluded_lnns', - 'fetch_size': 'fetch_size', - 'max_threads': 'max_threads', - 'number_shards': 'number_shards', - 'work_queue_size': 'work_queue_size' - } - - def __init__(self, database_info=None, excluded_lnns=None, fetch_size=None, max_threads=None, number_shards=None, work_queue_size=None): # noqa: E501 - """MetadataiqSettingsSettingsConsumer - a model defined in Swagger""" # noqa: E501 - - self._database_info = None - self._excluded_lnns = None - self._fetch_size = None - self._max_threads = None - self._number_shards = None - self._work_queue_size = None - self.discriminator = None - - if database_info is not None: - self.database_info = database_info - if excluded_lnns is not None: - self.excluded_lnns = excluded_lnns - if fetch_size is not None: - self.fetch_size = fetch_size - if max_threads is not None: - self.max_threads = max_threads - if number_shards is not None: - self.number_shards = number_shards - if work_queue_size is not None: - self.work_queue_size = work_queue_size - - @property - def database_info(self): - """Gets the database_info of this MetadataiqSettingsSettingsConsumer. # noqa: E501 - - MetadataIQ database information settings for the script that transfers the ChangelistCreate information to the remote database. Note that this includes fake databases or even terminal output. # noqa: E501 - - :return: The database_info of this MetadataiqSettingsSettingsConsumer. # noqa: E501 - :rtype: MetadataiqSettingsSettingsConsumerDatabaseInfo - """ - return self._database_info - - @database_info.setter - def database_info(self, database_info): - """Sets the database_info of this MetadataiqSettingsSettingsConsumer. - - MetadataIQ database information settings for the script that transfers the ChangelistCreate information to the remote database. Note that this includes fake databases or even terminal output. # noqa: E501 - - :param database_info: The database_info of this MetadataiqSettingsSettingsConsumer. # noqa: E501 - :type: MetadataiqSettingsSettingsConsumerDatabaseInfo - """ - - self._database_info = database_info - - @property - def excluded_lnns(self): - """Gets the excluded_lnns of this MetadataiqSettingsSettingsConsumer. # noqa: E501 - - List of LNNs the system should not use to upload data to database. # noqa: E501 - - :return: The excluded_lnns of this MetadataiqSettingsSettingsConsumer. # noqa: E501 - :rtype: list[int] - """ - return self._excluded_lnns - - @excluded_lnns.setter - def excluded_lnns(self, excluded_lnns): - """Sets the excluded_lnns of this MetadataiqSettingsSettingsConsumer. - - List of LNNs the system should not use to upload data to database. # noqa: E501 - - :param excluded_lnns: The excluded_lnns of this MetadataiqSettingsSettingsConsumer. # noqa: E501 - :type: list[int] - """ - - self._excluded_lnns = excluded_lnns - - @property - def fetch_size(self): - """Gets the fetch_size of this MetadataiqSettingsSettingsConsumer. # noqa: E501 - - Minimum number of ChangelistCreate entries the script should fetch at a time. Default is 2048. # noqa: E501 - - :return: The fetch_size of this MetadataiqSettingsSettingsConsumer. # noqa: E501 - :rtype: int - """ - return self._fetch_size - - @fetch_size.setter - def fetch_size(self, fetch_size): - """Sets the fetch_size of this MetadataiqSettingsSettingsConsumer. - - Minimum number of ChangelistCreate entries the script should fetch at a time. Default is 2048. # noqa: E501 - - :param fetch_size: The fetch_size of this MetadataiqSettingsSettingsConsumer. # noqa: E501 - :type: int - """ - if fetch_size is not None and fetch_size > 65535: # noqa: E501 - raise ValueError("Invalid value for `fetch_size`, must be a value less than or equal to `65535`") # noqa: E501 - if fetch_size is not None and fetch_size < 1: # noqa: E501 - raise ValueError("Invalid value for `fetch_size`, must be a value greater than or equal to `1`") # noqa: E501 - - self._fetch_size = fetch_size - - @property - def max_threads(self): - """Gets the max_threads of this MetadataiqSettingsSettingsConsumer. # noqa: E501 - - Maximum number of threads used to upload metadata to the database. The default is 8. # noqa: E501 - - :return: The max_threads of this MetadataiqSettingsSettingsConsumer. # noqa: E501 - :rtype: int - """ - return self._max_threads - - @max_threads.setter - def max_threads(self, max_threads): - """Sets the max_threads of this MetadataiqSettingsSettingsConsumer. - - Maximum number of threads used to upload metadata to the database. The default is 8. # noqa: E501 - - :param max_threads: The max_threads of this MetadataiqSettingsSettingsConsumer. # noqa: E501 - :type: int - """ - if max_threads is not None and max_threads > 65535: # noqa: E501 - raise ValueError("Invalid value for `max_threads`, must be a value less than or equal to `65535`") # noqa: E501 - if max_threads is not None and max_threads < 1: # noqa: E501 - raise ValueError("Invalid value for `max_threads`, must be a value greater than or equal to `1`") # noqa: E501 - - self._max_threads = max_threads - - @property - def number_shards(self): - """Gets the number_shards of this MetadataiqSettingsSettingsConsumer. # noqa: E501 - - The number of primary shards that an index should have. The default is 8. # noqa: E501 - - :return: The number_shards of this MetadataiqSettingsSettingsConsumer. # noqa: E501 - :rtype: int - """ - return self._number_shards - - @number_shards.setter - def number_shards(self, number_shards): - """Sets the number_shards of this MetadataiqSettingsSettingsConsumer. - - The number of primary shards that an index should have. The default is 8. # noqa: E501 - - :param number_shards: The number_shards of this MetadataiqSettingsSettingsConsumer. # noqa: E501 - :type: int - """ - if number_shards is not None and number_shards > 65535: # noqa: E501 - raise ValueError("Invalid value for `number_shards`, must be a value less than or equal to `65535`") # noqa: E501 - if number_shards is not None and number_shards < 1: # noqa: E501 - raise ValueError("Invalid value for `number_shards`, must be a value greater than or equal to `1`") # noqa: E501 - - self._number_shards = number_shards - - @property - def work_queue_size(self): - """Gets the work_queue_size of this MetadataiqSettingsSettingsConsumer. # noqa: E501 - - Transfer script's work queue size. Default is 16. # noqa: E501 - - :return: The work_queue_size of this MetadataiqSettingsSettingsConsumer. # noqa: E501 - :rtype: int - """ - return self._work_queue_size - - @work_queue_size.setter - def work_queue_size(self, work_queue_size): - """Sets the work_queue_size of this MetadataiqSettingsSettingsConsumer. - - Transfer script's work queue size. Default is 16. # noqa: E501 - - :param work_queue_size: The work_queue_size of this MetadataiqSettingsSettingsConsumer. # noqa: E501 - :type: int - """ - if work_queue_size is not None and work_queue_size > 65535: # noqa: E501 - raise ValueError("Invalid value for `work_queue_size`, must be a value less than or equal to `65535`") # noqa: E501 - if work_queue_size is not None and work_queue_size < 0: # noqa: E501 - raise ValueError("Invalid value for `work_queue_size`, must be a value greater than or equal to `0`") # noqa: E501 - - self._work_queue_size = work_queue_size - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(MetadataiqSettingsSettingsConsumer, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, MetadataiqSettingsSettingsConsumer): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_settings_settings_consumer_database_info.py b/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_settings_settings_consumer_database_info.py deleted file mode 100644 index 204950530..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_settings_settings_consumer_database_info.py +++ /dev/null @@ -1,279 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class MetadataiqSettingsSettingsConsumerDatabaseInfo(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'api_key': 'str', - 'certificate_path': 'str', - 'database_type': 'str', - 'host_port': 'int', - 'hostname': 'str', - 'verify_certificate': 'bool' - } - - attribute_map = { - 'api_key': 'api_key', - 'certificate_path': 'certificate_path', - 'database_type': 'database_type', - 'host_port': 'host_port', - 'hostname': 'hostname', - 'verify_certificate': 'verify_certificate' - } - - def __init__(self, api_key=None, certificate_path=None, database_type=None, host_port=None, hostname=None, verify_certificate=None): # noqa: E501 - """MetadataiqSettingsSettingsConsumerDatabaseInfo - a model defined in Swagger""" # noqa: E501 - - self._api_key = None - self._certificate_path = None - self._database_type = None - self._host_port = None - self._hostname = None - self._verify_certificate = None - self.discriminator = None - - if api_key is not None: - self.api_key = api_key - if certificate_path is not None: - self.certificate_path = certificate_path - if database_type is not None: - self.database_type = database_type - if host_port is not None: - self.host_port = host_port - if hostname is not None: - self.hostname = hostname - if verify_certificate is not None: - self.verify_certificate = verify_certificate - - @property - def api_key(self): - """Gets the api_key of this MetadataiqSettingsSettingsConsumerDatabaseInfo. # noqa: E501 - - API key to securely connect the database. The default is ''. # noqa: E501 - - :return: The api_key of this MetadataiqSettingsSettingsConsumerDatabaseInfo. # noqa: E501 - :rtype: str - """ - return self._api_key - - @api_key.setter - def api_key(self, api_key): - """Sets the api_key of this MetadataiqSettingsSettingsConsumerDatabaseInfo. - - API key to securely connect the database. The default is ''. # noqa: E501 - - :param api_key: The api_key of this MetadataiqSettingsSettingsConsumerDatabaseInfo. # noqa: E501 - :type: str - """ - if api_key is not None and len(api_key) > 2000: - raise ValueError("Invalid value for `api_key`, length must be less than or equal to `2000`") # noqa: E501 - if api_key is not None and len(api_key) < 0: - raise ValueError("Invalid value for `api_key`, length must be greater than or equal to `0`") # noqa: E501 - - self._api_key = api_key - - @property - def certificate_path(self): - """Gets the certificate_path of this MetadataiqSettingsSettingsConsumerDatabaseInfo. # noqa: E501 - - Path to the CA certificate to use to ensure the authenticity of the remote database. The path must be under /ifs or empty. Default is ''. # noqa: E501 - - :return: The certificate_path of this MetadataiqSettingsSettingsConsumerDatabaseInfo. # noqa: E501 - :rtype: str - """ - return self._certificate_path - - @certificate_path.setter - def certificate_path(self, certificate_path): - """Sets the certificate_path of this MetadataiqSettingsSettingsConsumerDatabaseInfo. - - Path to the CA certificate to use to ensure the authenticity of the remote database. The path must be under /ifs or empty. Default is ''. # noqa: E501 - - :param certificate_path: The certificate_path of this MetadataiqSettingsSettingsConsumerDatabaseInfo. # noqa: E501 - :type: str - """ - if certificate_path is not None and len(certificate_path) > 4096: - raise ValueError("Invalid value for `certificate_path`, length must be less than or equal to `4096`") # noqa: E501 - if certificate_path is not None and len(certificate_path) < 0: - raise ValueError("Invalid value for `certificate_path`, length must be greater than or equal to `0`") # noqa: E501 - - self._certificate_path = certificate_path - - @property - def database_type(self): - """Gets the database_type of this MetadataiqSettingsSettingsConsumerDatabaseInfo. # noqa: E501 - - Type of database to write. The default is 'ELK database'. # noqa: E501 - - :return: The database_type of this MetadataiqSettingsSettingsConsumerDatabaseInfo. # noqa: E501 - :rtype: str - """ - return self._database_type - - @database_type.setter - def database_type(self, database_type): - """Sets the database_type of this MetadataiqSettingsSettingsConsumerDatabaseInfo. - - Type of database to write. The default is 'ELK database'. # noqa: E501 - - :param database_type: The database_type of this MetadataiqSettingsSettingsConsumerDatabaseInfo. # noqa: E501 - :type: str - """ - allowed_values = ["ELK database", "Other"] # noqa: E501 - if database_type not in allowed_values: - raise ValueError( - "Invalid value for `database_type` ({0}), must be one of {1}" # noqa: E501 - .format(database_type, allowed_values) - ) - - self._database_type = database_type - - @property - def host_port(self): - """Gets the host_port of this MetadataiqSettingsSettingsConsumerDatabaseInfo. # noqa: E501 - - Port to the database. The default is 9200. # noqa: E501 - - :return: The host_port of this MetadataiqSettingsSettingsConsumerDatabaseInfo. # noqa: E501 - :rtype: int - """ - return self._host_port - - @host_port.setter - def host_port(self, host_port): - """Sets the host_port of this MetadataiqSettingsSettingsConsumerDatabaseInfo. - - Port to the database. The default is 9200. # noqa: E501 - - :param host_port: The host_port of this MetadataiqSettingsSettingsConsumerDatabaseInfo. # noqa: E501 - :type: int - """ - if host_port is not None and host_port > 65535: # noqa: E501 - raise ValueError("Invalid value for `host_port`, must be a value less than or equal to `65535`") # noqa: E501 - if host_port is not None and host_port < 1: # noqa: E501 - raise ValueError("Invalid value for `host_port`, must be a value greater than or equal to `1`") # noqa: E501 - - self._host_port = host_port - - @property - def hostname(self): - """Gets the hostname of this MetadataiqSettingsSettingsConsumerDatabaseInfo. # noqa: E501 - - Name of the remote ELK database host. The default is ''. # noqa: E501 - - :return: The hostname of this MetadataiqSettingsSettingsConsumerDatabaseInfo. # noqa: E501 - :rtype: str - """ - return self._hostname - - @hostname.setter - def hostname(self, hostname): - """Sets the hostname of this MetadataiqSettingsSettingsConsumerDatabaseInfo. - - Name of the remote ELK database host. The default is ''. # noqa: E501 - - :param hostname: The hostname of this MetadataiqSettingsSettingsConsumerDatabaseInfo. # noqa: E501 - :type: str - """ - if hostname is not None and len(hostname) > 2000: - raise ValueError("Invalid value for `hostname`, length must be less than or equal to `2000`") # noqa: E501 - if hostname is not None and len(hostname) < 0: - raise ValueError("Invalid value for `hostname`, length must be greater than or equal to `0`") # noqa: E501 - - self._hostname = hostname - - @property - def verify_certificate(self): - """Gets the verify_certificate of this MetadataiqSettingsSettingsConsumerDatabaseInfo. # noqa: E501 - - Use the certificate under the certificate key from the OneFS certificate store to verify the authenticity of the database. The default is True. # noqa: E501 - - :return: The verify_certificate of this MetadataiqSettingsSettingsConsumerDatabaseInfo. # noqa: E501 - :rtype: bool - """ - return self._verify_certificate - - @verify_certificate.setter - def verify_certificate(self, verify_certificate): - """Sets the verify_certificate of this MetadataiqSettingsSettingsConsumerDatabaseInfo. - - Use the certificate under the certificate key from the OneFS certificate store to verify the authenticity of the database. The default is True. # noqa: E501 - - :param verify_certificate: The verify_certificate of this MetadataiqSettingsSettingsConsumerDatabaseInfo. # noqa: E501 - :type: bool - """ - - self._verify_certificate = verify_certificate - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(MetadataiqSettingsSettingsConsumerDatabaseInfo, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, MetadataiqSettingsSettingsConsumerDatabaseInfo): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_settings_settings_producer.py b/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_settings_settings_producer.py deleted file mode 100644 index 62d732147..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_settings_settings_producer.py +++ /dev/null @@ -1,249 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class MetadataiqSettingsSettingsProducer(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'changelist_job_retries': 'int', - 'changelist_job_tolerable_pause_hours': 'int', - 'changelist_job_tolerable_state_request_failures': 'int', - 'path': 'str', - 'schedule': 'str' - } - - attribute_map = { - 'changelist_job_retries': 'changelist_job_retries', - 'changelist_job_tolerable_pause_hours': 'changelist_job_tolerable_pause_hours', - 'changelist_job_tolerable_state_request_failures': 'changelist_job_tolerable_state_request_failures', - 'path': 'path', - 'schedule': 'schedule' - } - - def __init__(self, changelist_job_retries=None, changelist_job_tolerable_pause_hours=None, changelist_job_tolerable_state_request_failures=None, path=None, schedule=None): # noqa: E501 - """MetadataiqSettingsSettingsProducer - a model defined in Swagger""" # noqa: E501 - - self._changelist_job_retries = None - self._changelist_job_tolerable_pause_hours = None - self._changelist_job_tolerable_state_request_failures = None - self._path = None - self._schedule = None - self.discriminator = None - - if changelist_job_retries is not None: - self.changelist_job_retries = changelist_job_retries - if changelist_job_tolerable_pause_hours is not None: - self.changelist_job_tolerable_pause_hours = changelist_job_tolerable_pause_hours - if changelist_job_tolerable_state_request_failures is not None: - self.changelist_job_tolerable_state_request_failures = changelist_job_tolerable_state_request_failures - if path is not None: - self.path = path - if schedule is not None: - self.schedule = schedule - - @property - def changelist_job_retries(self): - """Gets the changelist_job_retries of this MetadataiqSettingsSettingsProducer. # noqa: E501 - - Number of additional times, after the first failure, that MetadataIQ retries the ChangelistCreate job on a given pair of snapshots. Default is 2. # noqa: E501 - - :return: The changelist_job_retries of this MetadataiqSettingsSettingsProducer. # noqa: E501 - :rtype: int - """ - return self._changelist_job_retries - - @changelist_job_retries.setter - def changelist_job_retries(self, changelist_job_retries): - """Sets the changelist_job_retries of this MetadataiqSettingsSettingsProducer. - - Number of additional times, after the first failure, that MetadataIQ retries the ChangelistCreate job on a given pair of snapshots. Default is 2. # noqa: E501 - - :param changelist_job_retries: The changelist_job_retries of this MetadataiqSettingsSettingsProducer. # noqa: E501 - :type: int - """ - if changelist_job_retries is not None and changelist_job_retries > 255: # noqa: E501 - raise ValueError("Invalid value for `changelist_job_retries`, must be a value less than or equal to `255`") # noqa: E501 - if changelist_job_retries is not None and changelist_job_retries < 0: # noqa: E501 - raise ValueError("Invalid value for `changelist_job_retries`, must be a value greater than or equal to `0`") # noqa: E501 - - self._changelist_job_retries = changelist_job_retries - - @property - def changelist_job_tolerable_pause_hours(self): - """Gets the changelist_job_tolerable_pause_hours of this MetadataiqSettingsSettingsProducer. # noqa: E501 - - Amount of time the Metadataiq system tolerates a MetadataIQ-driven ChangelistCreate job being paused, in hours, before warning. Default is 24. # noqa: E501 - - :return: The changelist_job_tolerable_pause_hours of this MetadataiqSettingsSettingsProducer. # noqa: E501 - :rtype: int - """ - return self._changelist_job_tolerable_pause_hours - - @changelist_job_tolerable_pause_hours.setter - def changelist_job_tolerable_pause_hours(self, changelist_job_tolerable_pause_hours): - """Sets the changelist_job_tolerable_pause_hours of this MetadataiqSettingsSettingsProducer. - - Amount of time the Metadataiq system tolerates a MetadataIQ-driven ChangelistCreate job being paused, in hours, before warning. Default is 24. # noqa: E501 - - :param changelist_job_tolerable_pause_hours: The changelist_job_tolerable_pause_hours of this MetadataiqSettingsSettingsProducer. # noqa: E501 - :type: int - """ - if changelist_job_tolerable_pause_hours is not None and changelist_job_tolerable_pause_hours > 255: # noqa: E501 - raise ValueError("Invalid value for `changelist_job_tolerable_pause_hours`, must be a value less than or equal to `255`") # noqa: E501 - if changelist_job_tolerable_pause_hours is not None and changelist_job_tolerable_pause_hours < 0: # noqa: E501 - raise ValueError("Invalid value for `changelist_job_tolerable_pause_hours`, must be a value greater than or equal to `0`") # noqa: E501 - - self._changelist_job_tolerable_pause_hours = changelist_job_tolerable_pause_hours - - @property - def changelist_job_tolerable_state_request_failures(self): - """Gets the changelist_job_tolerable_state_request_failures of this MetadataiqSettingsSettingsProducer. # noqa: E501 - - Number of times the Metadataiq System can fail to get the ChangelistCreate job's status before it gives up. Default is 720. # noqa: E501 - - :return: The changelist_job_tolerable_state_request_failures of this MetadataiqSettingsSettingsProducer. # noqa: E501 - :rtype: int - """ - return self._changelist_job_tolerable_state_request_failures - - @changelist_job_tolerable_state_request_failures.setter - def changelist_job_tolerable_state_request_failures(self, changelist_job_tolerable_state_request_failures): - """Sets the changelist_job_tolerable_state_request_failures of this MetadataiqSettingsSettingsProducer. - - Number of times the Metadataiq System can fail to get the ChangelistCreate job's status before it gives up. Default is 720. # noqa: E501 - - :param changelist_job_tolerable_state_request_failures: The changelist_job_tolerable_state_request_failures of this MetadataiqSettingsSettingsProducer. # noqa: E501 - :type: int - """ - if changelist_job_tolerable_state_request_failures is not None and changelist_job_tolerable_state_request_failures > 65535: # noqa: E501 - raise ValueError("Invalid value for `changelist_job_tolerable_state_request_failures`, must be a value less than or equal to `65535`") # noqa: E501 - if changelist_job_tolerable_state_request_failures is not None and changelist_job_tolerable_state_request_failures < 0: # noqa: E501 - raise ValueError("Invalid value for `changelist_job_tolerable_state_request_failures`, must be a value greater than or equal to `0`") # noqa: E501 - - self._changelist_job_tolerable_state_request_failures = changelist_job_tolerable_state_request_failures - - @property - def path(self): - """Gets the path of this MetadataiqSettingsSettingsProducer. # noqa: E501 - - - :return: The path of this MetadataiqSettingsSettingsProducer. # noqa: E501 - :rtype: str - """ - return self._path - - @path.setter - def path(self, path): - """Sets the path of this MetadataiqSettingsSettingsProducer. - - - :param path: The path of this MetadataiqSettingsSettingsProducer. # noqa: E501 - :type: str - """ - if path is not None and len(path) > 4096: - raise ValueError("Invalid value for `path`, length must be less than or equal to `4096`") # noqa: E501 - if path is not None and len(path) < 4: - raise ValueError("Invalid value for `path`, length must be greater than or equal to `4`") # noqa: E501 - if path is not None and not re.search(r'^\/ifs$|^\/ifs\/', path): # noqa: E501 - raise ValueError(r"Invalid value for `path`, must be a follow pattern or equal to `/^\/ifs$|^\/ifs\//`") # noqa: E501 - - self._path = path - - @property - def schedule(self): - """Gets the schedule of this MetadataiqSettingsSettingsProducer. # noqa: E501 - - Schedule at which a metadata cycle of analysis and upload occurs. The syntax must be isi-date compatible. Default is ''. # noqa: E501 - - :return: The schedule of this MetadataiqSettingsSettingsProducer. # noqa: E501 - :rtype: str - """ - return self._schedule - - @schedule.setter - def schedule(self, schedule): - """Sets the schedule of this MetadataiqSettingsSettingsProducer. - - Schedule at which a metadata cycle of analysis and upload occurs. The syntax must be isi-date compatible. Default is ''. # noqa: E501 - - :param schedule: The schedule of this MetadataiqSettingsSettingsProducer. # noqa: E501 - :type: str - """ - if schedule is not None and len(schedule) > 255: - raise ValueError("Invalid value for `schedule`, length must be less than or equal to `255`") # noqa: E501 - if schedule is not None and len(schedule) < 0: - raise ValueError("Invalid value for `schedule`, length must be greater than or equal to `0`") # noqa: E501 - - self._schedule = schedule - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(MetadataiqSettingsSettingsProducer, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, MetadataiqSettingsSettingsProducer): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_status.py b/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_status.py deleted file mode 100644 index df72fc70c..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_status.py +++ /dev/null @@ -1,118 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class MetadataiqStatus(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'status': 'MetadataiqStatusStatus' - } - - attribute_map = { - 'status': 'status' - } - - def __init__(self, status=None): # noqa: E501 - """MetadataiqStatus - a model defined in Swagger""" # noqa: E501 - - self._status = None - self.discriminator = None - - self.status = status - - @property - def status(self): - """Gets the status of this MetadataiqStatus. # noqa: E501 - - MetadataIQ current Cycle Producer and Consumer Status. # noqa: E501 - - :return: The status of this MetadataiqStatus. # noqa: E501 - :rtype: MetadataiqStatusStatus - """ - return self._status - - @status.setter - def status(self, status): - """Sets the status of this MetadataiqStatus. - - MetadataIQ current Cycle Producer and Consumer Status. # noqa: E501 - - :param status: The status of this MetadataiqStatus. # noqa: E501 - :type: MetadataiqStatusStatus - """ - if status is None: - raise ValueError("Invalid value for `status`, must not be `None`") # noqa: E501 - - self._status = status - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(MetadataiqStatus, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, MetadataiqStatus): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_status_status.py b/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_status_status.py deleted file mode 100644 index c9eb4d03e..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_status_status.py +++ /dev/null @@ -1,145 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class MetadataiqStatusStatus(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'consumer': 'MetadataiqStatusStatusConsumer', - 'producer': 'MetadataiqStatusStatusProducer' - } - - attribute_map = { - 'consumer': 'consumer', - 'producer': 'producer' - } - - def __init__(self, consumer=None, producer=None): # noqa: E501 - """MetadataiqStatusStatus - a model defined in Swagger""" # noqa: E501 - - self._consumer = None - self._producer = None - self.discriminator = None - - if consumer is not None: - self.consumer = consumer - if producer is not None: - self.producer = producer - - @property - def consumer(self): - """Gets the consumer of this MetadataiqStatusStatus. # noqa: E501 - - MetadataIQ Current Consumer Status. # noqa: E501 - - :return: The consumer of this MetadataiqStatusStatus. # noqa: E501 - :rtype: MetadataiqStatusStatusConsumer - """ - return self._consumer - - @consumer.setter - def consumer(self, consumer): - """Sets the consumer of this MetadataiqStatusStatus. - - MetadataIQ Current Consumer Status. # noqa: E501 - - :param consumer: The consumer of this MetadataiqStatusStatus. # noqa: E501 - :type: MetadataiqStatusStatusConsumer - """ - - self._consumer = consumer - - @property - def producer(self): - """Gets the producer of this MetadataiqStatusStatus. # noqa: E501 - - MetadataIQ current Producer Status. # noqa: E501 - - :return: The producer of this MetadataiqStatusStatus. # noqa: E501 - :rtype: MetadataiqStatusStatusProducer - """ - return self._producer - - @producer.setter - def producer(self, producer): - """Sets the producer of this MetadataiqStatusStatus. - - MetadataIQ current Producer Status. # noqa: E501 - - :param producer: The producer of this MetadataiqStatusStatus. # noqa: E501 - :type: MetadataiqStatusStatusProducer - """ - - self._producer = producer - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(MetadataiqStatusStatus, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, MetadataiqStatusStatus): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_status_status_consumer.py b/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_status_status_consumer.py deleted file mode 100644 index e3e19e12f..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_status_status_consumer.py +++ /dev/null @@ -1,439 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class MetadataiqStatusStatusConsumer(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'average_network_latency': 'int', - 'average_transfer_time': 'int', - 'cpu_usage_pct': 'int', - 'end_time': 'int', - 'maximum_network_latency': 'int', - 'rss': 'int', - 'running_lnn': 'str', - 'start_time': 'int', - 'state': 'str', - 'transfer_size': 'int', - 'transfer_time': 'int' - } - - attribute_map = { - 'average_network_latency': 'average_network_latency', - 'average_transfer_time': 'average_transfer_time', - 'cpu_usage_pct': 'cpu_usage_pct', - 'end_time': 'end_time', - 'maximum_network_latency': 'maximum_network_latency', - 'rss': 'rss', - 'running_lnn': 'running_lnn', - 'start_time': 'start_time', - 'state': 'state', - 'transfer_size': 'transfer_size', - 'transfer_time': 'transfer_time' - } - - def __init__(self, average_network_latency=None, average_transfer_time=None, cpu_usage_pct=None, end_time=None, maximum_network_latency=None, rss=None, running_lnn=None, start_time=None, state=None, transfer_size=None, transfer_time=None): # noqa: E501 - """MetadataiqStatusStatusConsumer - a model defined in Swagger""" # noqa: E501 - - self._average_network_latency = None - self._average_transfer_time = None - self._cpu_usage_pct = None - self._end_time = None - self._maximum_network_latency = None - self._rss = None - self._running_lnn = None - self._start_time = None - self._state = None - self._transfer_size = None - self._transfer_time = None - self.discriminator = None - - if average_network_latency is not None: - self.average_network_latency = average_network_latency - if average_transfer_time is not None: - self.average_transfer_time = average_transfer_time - if cpu_usage_pct is not None: - self.cpu_usage_pct = cpu_usage_pct - if end_time is not None: - self.end_time = end_time - if maximum_network_latency is not None: - self.maximum_network_latency = maximum_network_latency - if rss is not None: - self.rss = rss - if running_lnn is not None: - self.running_lnn = running_lnn - if start_time is not None: - self.start_time = start_time - if state is not None: - self.state = state - if transfer_size is not None: - self.transfer_size = transfer_size - if transfer_time is not None: - self.transfer_time = transfer_time - - @property - def average_network_latency(self): - """Gets the average_network_latency of this MetadataiqStatusStatusConsumer. # noqa: E501 - - Average network latency (in milliseconds) with remote host during last data transfer. Default is 0. # noqa: E501 - - :return: The average_network_latency of this MetadataiqStatusStatusConsumer. # noqa: E501 - :rtype: int - """ - return self._average_network_latency - - @average_network_latency.setter - def average_network_latency(self, average_network_latency): - """Sets the average_network_latency of this MetadataiqStatusStatusConsumer. - - Average network latency (in milliseconds) with remote host during last data transfer. Default is 0. # noqa: E501 - - :param average_network_latency: The average_network_latency of this MetadataiqStatusStatusConsumer. # noqa: E501 - :type: int - """ - if average_network_latency is not None and average_network_latency > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `average_network_latency`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if average_network_latency is not None and average_network_latency < 0: # noqa: E501 - raise ValueError("Invalid value for `average_network_latency`, must be a value greater than or equal to `0`") # noqa: E501 - - self._average_network_latency = average_network_latency - - @property - def average_transfer_time(self): - """Gets the average_transfer_time of this MetadataiqStatusStatusConsumer. # noqa: E501 - - Average transfer time (in milliseconds) with remote host during last data transfer. Default is 0. # noqa: E501 - - :return: The average_transfer_time of this MetadataiqStatusStatusConsumer. # noqa: E501 - :rtype: int - """ - return self._average_transfer_time - - @average_transfer_time.setter - def average_transfer_time(self, average_transfer_time): - """Sets the average_transfer_time of this MetadataiqStatusStatusConsumer. - - Average transfer time (in milliseconds) with remote host during last data transfer. Default is 0. # noqa: E501 - - :param average_transfer_time: The average_transfer_time of this MetadataiqStatusStatusConsumer. # noqa: E501 - :type: int - """ - if average_transfer_time is not None and average_transfer_time > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `average_transfer_time`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if average_transfer_time is not None and average_transfer_time < 0: # noqa: E501 - raise ValueError("Invalid value for `average_transfer_time`, must be a value greater than or equal to `0`") # noqa: E501 - - self._average_transfer_time = average_transfer_time - - @property - def cpu_usage_pct(self): - """Gets the cpu_usage_pct of this MetadataiqStatusStatusConsumer. # noqa: E501 - - The CPU usage percentage that the MetadataIQ current Consumer Cycle consumed while transferring data to the database. Default is 0. # noqa: E501 - - :return: The cpu_usage_pct of this MetadataiqStatusStatusConsumer. # noqa: E501 - :rtype: int - """ - return self._cpu_usage_pct - - @cpu_usage_pct.setter - def cpu_usage_pct(self, cpu_usage_pct): - """Sets the cpu_usage_pct of this MetadataiqStatusStatusConsumer. - - The CPU usage percentage that the MetadataIQ current Consumer Cycle consumed while transferring data to the database. Default is 0. # noqa: E501 - - :param cpu_usage_pct: The cpu_usage_pct of this MetadataiqStatusStatusConsumer. # noqa: E501 - :type: int - """ - if cpu_usage_pct is not None and cpu_usage_pct > 100: # noqa: E501 - raise ValueError("Invalid value for `cpu_usage_pct`, must be a value less than or equal to `100`") # noqa: E501 - if cpu_usage_pct is not None and cpu_usage_pct < 0: # noqa: E501 - raise ValueError("Invalid value for `cpu_usage_pct`, must be a value greater than or equal to `0`") # noqa: E501 - - self._cpu_usage_pct = cpu_usage_pct - - @property - def end_time(self): - """Gets the end_time of this MetadataiqStatusStatusConsumer. # noqa: E501 - - Time when the MetadataIQ current Consumer Cycle ended. # noqa: E501 - - :return: The end_time of this MetadataiqStatusStatusConsumer. # noqa: E501 - :rtype: int - """ - return self._end_time - - @end_time.setter - def end_time(self, end_time): - """Sets the end_time of this MetadataiqStatusStatusConsumer. - - Time when the MetadataIQ current Consumer Cycle ended. # noqa: E501 - - :param end_time: The end_time of this MetadataiqStatusStatusConsumer. # noqa: E501 - :type: int - """ - if end_time is not None and end_time > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `end_time`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if end_time is not None and end_time < 0: # noqa: E501 - raise ValueError("Invalid value for `end_time`, must be a value greater than or equal to `0`") # noqa: E501 - - self._end_time = end_time - - @property - def maximum_network_latency(self): - """Gets the maximum_network_latency of this MetadataiqStatusStatusConsumer. # noqa: E501 - - Maximum network latency (in milliseconds) with remote host during last data transfer. Default is 0. # noqa: E501 - - :return: The maximum_network_latency of this MetadataiqStatusStatusConsumer. # noqa: E501 - :rtype: int - """ - return self._maximum_network_latency - - @maximum_network_latency.setter - def maximum_network_latency(self, maximum_network_latency): - """Sets the maximum_network_latency of this MetadataiqStatusStatusConsumer. - - Maximum network latency (in milliseconds) with remote host during last data transfer. Default is 0. # noqa: E501 - - :param maximum_network_latency: The maximum_network_latency of this MetadataiqStatusStatusConsumer. # noqa: E501 - :type: int - """ - if maximum_network_latency is not None and maximum_network_latency > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `maximum_network_latency`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if maximum_network_latency is not None and maximum_network_latency < 0: # noqa: E501 - raise ValueError("Invalid value for `maximum_network_latency`, must be a value greater than or equal to `0`") # noqa: E501 - - self._maximum_network_latency = maximum_network_latency - - @property - def rss(self): - """Gets the rss of this MetadataiqStatusStatusConsumer. # noqa: E501 - - The RSS (Resident Set Size) that the MetadataIQ current Consumer Cycle consumed while transferring data to the database in bytes. Default is 0. # noqa: E501 - - :return: The rss of this MetadataiqStatusStatusConsumer. # noqa: E501 - :rtype: int - """ - return self._rss - - @rss.setter - def rss(self, rss): - """Sets the rss of this MetadataiqStatusStatusConsumer. - - The RSS (Resident Set Size) that the MetadataIQ current Consumer Cycle consumed while transferring data to the database in bytes. Default is 0. # noqa: E501 - - :param rss: The rss of this MetadataiqStatusStatusConsumer. # noqa: E501 - :type: int - """ - if rss is not None and rss > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `rss`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if rss is not None and rss < 0: # noqa: E501 - raise ValueError("Invalid value for `rss`, must be a value greater than or equal to `0`") # noqa: E501 - - self._rss = rss - - @property - def running_lnn(self): - """Gets the running_lnn of this MetadataiqStatusStatusConsumer. # noqa: E501 - - The LNN on which the MetadataIQ Producer is currently running. # noqa: E501 - - :return: The running_lnn of this MetadataiqStatusStatusConsumer. # noqa: E501 - :rtype: str - """ - return self._running_lnn - - @running_lnn.setter - def running_lnn(self, running_lnn): - """Sets the running_lnn of this MetadataiqStatusStatusConsumer. - - The LNN on which the MetadataIQ Producer is currently running. # noqa: E501 - - :param running_lnn: The running_lnn of this MetadataiqStatusStatusConsumer. # noqa: E501 - :type: str - """ - - self._running_lnn = running_lnn - - @property - def start_time(self): - """Gets the start_time of this MetadataiqStatusStatusConsumer. # noqa: E501 - - Time when the MetadataIQ Current Consumer Cycle started. Default is 0. # noqa: E501 - - :return: The start_time of this MetadataiqStatusStatusConsumer. # noqa: E501 - :rtype: int - """ - return self._start_time - - @start_time.setter - def start_time(self, start_time): - """Sets the start_time of this MetadataiqStatusStatusConsumer. - - Time when the MetadataIQ Current Consumer Cycle started. Default is 0. # noqa: E501 - - :param start_time: The start_time of this MetadataiqStatusStatusConsumer. # noqa: E501 - :type: int - """ - if start_time is not None and start_time > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `start_time`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if start_time is not None and start_time < 0: # noqa: E501 - raise ValueError("Invalid value for `start_time`, must be a value greater than or equal to `0`") # noqa: E501 - - self._start_time = start_time - - @property - def state(self): - """Gets the state of this MetadataiqStatusStatusConsumer. # noqa: E501 - - State of the MetadataIQ current Consumer Cycle. # noqa: E501 - - :return: The state of this MetadataiqStatusStatusConsumer. # noqa: E501 - :rtype: str - """ - return self._state - - @state.setter - def state(self, state): - """Sets the state of this MetadataiqStatusStatusConsumer. - - State of the MetadataIQ current Consumer Cycle. # noqa: E501 - - :param state: The state of this MetadataiqStatusStatusConsumer. # noqa: E501 - :type: str - """ - allowed_values = ["Waiting for Data", "Exporting Data"] # noqa: E501 - if state not in allowed_values: - raise ValueError( - "Invalid value for `state` ({0}), must be one of {1}" # noqa: E501 - .format(state, allowed_values) - ) - - self._state = state - - @property - def transfer_size(self): - """Gets the transfer_size of this MetadataiqStatusStatusConsumer. # noqa: E501 - - The size (in bytes) that the MetadataIQ current Consumer Cycle transferred to the database. Default is 0. # noqa: E501 - - :return: The transfer_size of this MetadataiqStatusStatusConsumer. # noqa: E501 - :rtype: int - """ - return self._transfer_size - - @transfer_size.setter - def transfer_size(self, transfer_size): - """Sets the transfer_size of this MetadataiqStatusStatusConsumer. - - The size (in bytes) that the MetadataIQ current Consumer Cycle transferred to the database. Default is 0. # noqa: E501 - - :param transfer_size: The transfer_size of this MetadataiqStatusStatusConsumer. # noqa: E501 - :type: int - """ - if transfer_size is not None and transfer_size > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `transfer_size`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if transfer_size is not None and transfer_size < 0: # noqa: E501 - raise ValueError("Invalid value for `transfer_size`, must be a value greater than or equal to `0`") # noqa: E501 - - self._transfer_size = transfer_size - - @property - def transfer_time(self): - """Gets the transfer_time of this MetadataiqStatusStatusConsumer. # noqa: E501 - - Time it took for the MetadataIQ current Consumer Cycle to transfer data to the database in milliseconds. Default is 0. # noqa: E501 - - :return: The transfer_time of this MetadataiqStatusStatusConsumer. # noqa: E501 - :rtype: int - """ - return self._transfer_time - - @transfer_time.setter - def transfer_time(self, transfer_time): - """Sets the transfer_time of this MetadataiqStatusStatusConsumer. - - Time it took for the MetadataIQ current Consumer Cycle to transfer data to the database in milliseconds. Default is 0. # noqa: E501 - - :param transfer_time: The transfer_time of this MetadataiqStatusStatusConsumer. # noqa: E501 - :type: int - """ - if transfer_time is not None and transfer_time > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `transfer_time`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if transfer_time is not None and transfer_time < 0: # noqa: E501 - raise ValueError("Invalid value for `transfer_time`, must be a value greater than or equal to `0`") # noqa: E501 - - self._transfer_time = transfer_time - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(MetadataiqStatusStatusConsumer, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, MetadataiqStatusStatusConsumer): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_status_status_producer.py b/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_status_status_producer.py deleted file mode 100644 index c999f6226..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/metadataiq_status_status_producer.py +++ /dev/null @@ -1,439 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class MetadataiqStatusStatusProducer(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'changelistcreate_job_id': 'int', - 'end_time': 'int', - 'error_count': 'int', - 'job_failures': 'int', - 'new_snapshot_id': 'int', - 'new_snapshot_lock_id': 'int', - 'old_snapshot_id': 'int', - 'old_snapshot_lock_id': 'int', - 'running_lnn': 'str', - 'start_time': 'int', - 'state': 'str' - } - - attribute_map = { - 'changelistcreate_job_id': 'changelistcreate_job_id', - 'end_time': 'end_time', - 'error_count': 'error_count', - 'job_failures': 'job_failures', - 'new_snapshot_id': 'new_snapshot_id', - 'new_snapshot_lock_id': 'new_snapshot_lock_id', - 'old_snapshot_id': 'old_snapshot_id', - 'old_snapshot_lock_id': 'old_snapshot_lock_id', - 'running_lnn': 'running_lnn', - 'start_time': 'start_time', - 'state': 'state' - } - - def __init__(self, changelistcreate_job_id=None, end_time=None, error_count=None, job_failures=None, new_snapshot_id=None, new_snapshot_lock_id=None, old_snapshot_id=None, old_snapshot_lock_id=None, running_lnn=None, start_time=None, state=None): # noqa: E501 - """MetadataiqStatusStatusProducer - a model defined in Swagger""" # noqa: E501 - - self._changelistcreate_job_id = None - self._end_time = None - self._error_count = None - self._job_failures = None - self._new_snapshot_id = None - self._new_snapshot_lock_id = None - self._old_snapshot_id = None - self._old_snapshot_lock_id = None - self._running_lnn = None - self._start_time = None - self._state = None - self.discriminator = None - - if changelistcreate_job_id is not None: - self.changelistcreate_job_id = changelistcreate_job_id - if end_time is not None: - self.end_time = end_time - if error_count is not None: - self.error_count = error_count - if job_failures is not None: - self.job_failures = job_failures - if new_snapshot_id is not None: - self.new_snapshot_id = new_snapshot_id - if new_snapshot_lock_id is not None: - self.new_snapshot_lock_id = new_snapshot_lock_id - if old_snapshot_id is not None: - self.old_snapshot_id = old_snapshot_id - if old_snapshot_lock_id is not None: - self.old_snapshot_lock_id = old_snapshot_lock_id - if running_lnn is not None: - self.running_lnn = running_lnn - if start_time is not None: - self.start_time = start_time - if state is not None: - self.state = state - - @property - def changelistcreate_job_id(self): - """Gets the changelistcreate_job_id of this MetadataiqStatusStatusProducer. # noqa: E501 - - The ChangelistCreate Job ID for the current snapid pair. # noqa: E501 - - :return: The changelistcreate_job_id of this MetadataiqStatusStatusProducer. # noqa: E501 - :rtype: int - """ - return self._changelistcreate_job_id - - @changelistcreate_job_id.setter - def changelistcreate_job_id(self, changelistcreate_job_id): - """Sets the changelistcreate_job_id of this MetadataiqStatusStatusProducer. - - The ChangelistCreate Job ID for the current snapid pair. # noqa: E501 - - :param changelistcreate_job_id: The changelistcreate_job_id of this MetadataiqStatusStatusProducer. # noqa: E501 - :type: int - """ - if changelistcreate_job_id is not None and changelistcreate_job_id > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `changelistcreate_job_id`, must be a value less than or equal to `4294967295`") # noqa: E501 - if changelistcreate_job_id is not None and changelistcreate_job_id < 0: # noqa: E501 - raise ValueError("Invalid value for `changelistcreate_job_id`, must be a value greater than or equal to `0`") # noqa: E501 - - self._changelistcreate_job_id = changelistcreate_job_id - - @property - def end_time(self): - """Gets the end_time of this MetadataiqStatusStatusProducer. # noqa: E501 - - Time when the MetadataIQ current Producer Cycle ended. # noqa: E501 - - :return: The end_time of this MetadataiqStatusStatusProducer. # noqa: E501 - :rtype: int - """ - return self._end_time - - @end_time.setter - def end_time(self, end_time): - """Sets the end_time of this MetadataiqStatusStatusProducer. - - Time when the MetadataIQ current Producer Cycle ended. # noqa: E501 - - :param end_time: The end_time of this MetadataiqStatusStatusProducer. # noqa: E501 - :type: int - """ - if end_time is not None and end_time > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `end_time`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if end_time is not None and end_time < 0: # noqa: E501 - raise ValueError("Invalid value for `end_time`, must be a value greater than or equal to `0`") # noqa: E501 - - self._end_time = end_time - - @property - def error_count(self): - """Gets the error_count of this MetadataiqStatusStatusProducer. # noqa: E501 - - Number of errors encountered during the MetadataIQ current Producer Cycle. # noqa: E501 - - :return: The error_count of this MetadataiqStatusStatusProducer. # noqa: E501 - :rtype: int - """ - return self._error_count - - @error_count.setter - def error_count(self, error_count): - """Sets the error_count of this MetadataiqStatusStatusProducer. - - Number of errors encountered during the MetadataIQ current Producer Cycle. # noqa: E501 - - :param error_count: The error_count of this MetadataiqStatusStatusProducer. # noqa: E501 - :type: int - """ - if error_count is not None and error_count > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `error_count`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if error_count is not None and error_count < 0: # noqa: E501 - raise ValueError("Invalid value for `error_count`, must be a value greater than or equal to `0`") # noqa: E501 - - self._error_count = error_count - - @property - def job_failures(self): - """Gets the job_failures of this MetadataiqStatusStatusProducer. # noqa: E501 - - Consecutive failed jobs for the current snapid pair. # noqa: E501 - - :return: The job_failures of this MetadataiqStatusStatusProducer. # noqa: E501 - :rtype: int - """ - return self._job_failures - - @job_failures.setter - def job_failures(self, job_failures): - """Sets the job_failures of this MetadataiqStatusStatusProducer. - - Consecutive failed jobs for the current snapid pair. # noqa: E501 - - :param job_failures: The job_failures of this MetadataiqStatusStatusProducer. # noqa: E501 - :type: int - """ - if job_failures is not None and job_failures > 255: # noqa: E501 - raise ValueError("Invalid value for `job_failures`, must be a value less than or equal to `255`") # noqa: E501 - if job_failures is not None and job_failures < 0: # noqa: E501 - raise ValueError("Invalid value for `job_failures`, must be a value greater than or equal to `0`") # noqa: E501 - - self._job_failures = job_failures - - @property - def new_snapshot_id(self): - """Gets the new_snapshot_id of this MetadataiqStatusStatusProducer. # noqa: E501 - - The new snapshot ID of the current MetadataIQ cycle. # noqa: E501 - - :return: The new_snapshot_id of this MetadataiqStatusStatusProducer. # noqa: E501 - :rtype: int - """ - return self._new_snapshot_id - - @new_snapshot_id.setter - def new_snapshot_id(self, new_snapshot_id): - """Sets the new_snapshot_id of this MetadataiqStatusStatusProducer. - - The new snapshot ID of the current MetadataIQ cycle. # noqa: E501 - - :param new_snapshot_id: The new_snapshot_id of this MetadataiqStatusStatusProducer. # noqa: E501 - :type: int - """ - if new_snapshot_id is not None and new_snapshot_id > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `new_snapshot_id`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if new_snapshot_id is not None and new_snapshot_id < 0: # noqa: E501 - raise ValueError("Invalid value for `new_snapshot_id`, must be a value greater than or equal to `0`") # noqa: E501 - - self._new_snapshot_id = new_snapshot_id - - @property - def new_snapshot_lock_id(self): - """Gets the new_snapshot_lock_id of this MetadataiqStatusStatusProducer. # noqa: E501 - - The new snapshot lock ID of the new snapshot from the current MetadataIQ cycle. # noqa: E501 - - :return: The new_snapshot_lock_id of this MetadataiqStatusStatusProducer. # noqa: E501 - :rtype: int - """ - return self._new_snapshot_lock_id - - @new_snapshot_lock_id.setter - def new_snapshot_lock_id(self, new_snapshot_lock_id): - """Sets the new_snapshot_lock_id of this MetadataiqStatusStatusProducer. - - The new snapshot lock ID of the new snapshot from the current MetadataIQ cycle. # noqa: E501 - - :param new_snapshot_lock_id: The new_snapshot_lock_id of this MetadataiqStatusStatusProducer. # noqa: E501 - :type: int - """ - if new_snapshot_lock_id is not None and new_snapshot_lock_id > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `new_snapshot_lock_id`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if new_snapshot_lock_id is not None and new_snapshot_lock_id < 0: # noqa: E501 - raise ValueError("Invalid value for `new_snapshot_lock_id`, must be a value greater than or equal to `0`") # noqa: E501 - - self._new_snapshot_lock_id = new_snapshot_lock_id - - @property - def old_snapshot_id(self): - """Gets the old_snapshot_id of this MetadataiqStatusStatusProducer. # noqa: E501 - - The ID of the snapshot created at the start of the previous MetadataIQ cycle. First instance will be Invalid Snapid. # noqa: E501 - - :return: The old_snapshot_id of this MetadataiqStatusStatusProducer. # noqa: E501 - :rtype: int - """ - return self._old_snapshot_id - - @old_snapshot_id.setter - def old_snapshot_id(self, old_snapshot_id): - """Sets the old_snapshot_id of this MetadataiqStatusStatusProducer. - - The ID of the snapshot created at the start of the previous MetadataIQ cycle. First instance will be Invalid Snapid. # noqa: E501 - - :param old_snapshot_id: The old_snapshot_id of this MetadataiqStatusStatusProducer. # noqa: E501 - :type: int - """ - if old_snapshot_id is not None and old_snapshot_id > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `old_snapshot_id`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if old_snapshot_id is not None and old_snapshot_id < 0: # noqa: E501 - raise ValueError("Invalid value for `old_snapshot_id`, must be a value greater than or equal to `0`") # noqa: E501 - - self._old_snapshot_id = old_snapshot_id - - @property - def old_snapshot_lock_id(self): - """Gets the old_snapshot_lock_id of this MetadataiqStatusStatusProducer. # noqa: E501 - - The lock ID of the snapshot created at the start of the previous MetadataIQ Cycle. First instance will be Invalid Lock ID. # noqa: E501 - - :return: The old_snapshot_lock_id of this MetadataiqStatusStatusProducer. # noqa: E501 - :rtype: int - """ - return self._old_snapshot_lock_id - - @old_snapshot_lock_id.setter - def old_snapshot_lock_id(self, old_snapshot_lock_id): - """Sets the old_snapshot_lock_id of this MetadataiqStatusStatusProducer. - - The lock ID of the snapshot created at the start of the previous MetadataIQ Cycle. First instance will be Invalid Lock ID. # noqa: E501 - - :param old_snapshot_lock_id: The old_snapshot_lock_id of this MetadataiqStatusStatusProducer. # noqa: E501 - :type: int - """ - if old_snapshot_lock_id is not None and old_snapshot_lock_id > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `old_snapshot_lock_id`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if old_snapshot_lock_id is not None and old_snapshot_lock_id < 0: # noqa: E501 - raise ValueError("Invalid value for `old_snapshot_lock_id`, must be a value greater than or equal to `0`") # noqa: E501 - - self._old_snapshot_lock_id = old_snapshot_lock_id - - @property - def running_lnn(self): - """Gets the running_lnn of this MetadataiqStatusStatusProducer. # noqa: E501 - - The LNN on which the MetadataIQ Producer is currently running. # noqa: E501 - - :return: The running_lnn of this MetadataiqStatusStatusProducer. # noqa: E501 - :rtype: str - """ - return self._running_lnn - - @running_lnn.setter - def running_lnn(self, running_lnn): - """Sets the running_lnn of this MetadataiqStatusStatusProducer. - - The LNN on which the MetadataIQ Producer is currently running. # noqa: E501 - - :param running_lnn: The running_lnn of this MetadataiqStatusStatusProducer. # noqa: E501 - :type: str - """ - - self._running_lnn = running_lnn - - @property - def start_time(self): - """Gets the start_time of this MetadataiqStatusStatusProducer. # noqa: E501 - - Time when the MetadataIQ current Producer Cycle started. Default is 0 (0 means never) # noqa: E501 - - :return: The start_time of this MetadataiqStatusStatusProducer. # noqa: E501 - :rtype: int - """ - return self._start_time - - @start_time.setter - def start_time(self, start_time): - """Sets the start_time of this MetadataiqStatusStatusProducer. - - Time when the MetadataIQ current Producer Cycle started. Default is 0 (0 means never) # noqa: E501 - - :param start_time: The start_time of this MetadataiqStatusStatusProducer. # noqa: E501 - :type: int - """ - if start_time is not None and start_time > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `start_time`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if start_time is not None and start_time < 0: # noqa: E501 - raise ValueError("Invalid value for `start_time`, must be a value greater than or equal to `0`") # noqa: E501 - - self._start_time = start_time - - @property - def state(self): - """Gets the state of this MetadataiqStatusStatusProducer. # noqa: E501 - - State of the MetadataIQ current Producer Cycle. # noqa: E501 - - :return: The state of this MetadataiqStatusStatusProducer. # noqa: E501 - :rtype: str - """ - return self._state - - @state.setter - def state(self, state): - """Sets the state of this MetadataiqStatusStatusProducer. - - State of the MetadataIQ current Producer Cycle. # noqa: E501 - - :param state: The state of this MetadataiqStatusStatusProducer. # noqa: E501 - :type: str - """ - allowed_values = ["Waiting For Next Schedule", "Running ChangelistCreate Job", "Paused ChangelistCreate Job", "ChangelistCreate Job result Ready", "Cycle Failed", "Fatal Error"] # noqa: E501 - if state not in allowed_values: - raise ValueError( - "Invalid value for `state` ({0}), must be one of {1}" # noqa: E501 - .format(state, allowed_values) - ) - - self._state = state - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(MetadataiqStatusStatusProducer, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, MetadataiqStatusStatusProducer): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/network_discover.py b/isilon_sdk/isilon_sdk/v9_11_0/models/network_discover.py deleted file mode 100644 index d6cf41592..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/network_discover.py +++ /dev/null @@ -1,115 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class NetworkDiscover(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'discover': 'NetworkDiscoverDiscover' - } - - attribute_map = { - 'discover': 'discover' - } - - def __init__(self, discover=None): # noqa: E501 - """NetworkDiscover - a model defined in Swagger""" # noqa: E501 - - self._discover = None - self.discriminator = None - - if discover is not None: - self.discover = discover - - @property - def discover(self): - """Gets the discover of this NetworkDiscover. # noqa: E501 - - - :return: The discover of this NetworkDiscover. # noqa: E501 - :rtype: NetworkDiscoverDiscover - """ - return self._discover - - @discover.setter - def discover(self, discover): - """Sets the discover of this NetworkDiscover. - - - :param discover: The discover of this NetworkDiscover. # noqa: E501 - :type: NetworkDiscoverDiscover - """ - - self._discover = discover - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(NetworkDiscover, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, NetworkDiscover): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/network_discover_discover.py b/isilon_sdk/isilon_sdk/v9_11_0/models/network_discover_discover.py deleted file mode 100644 index a140bfc4b..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/network_discover_discover.py +++ /dev/null @@ -1,153 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class NetworkDiscoverDiscover(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'id': 'int', - 'uri': 'str' - } - - attribute_map = { - 'id': 'id', - 'uri': 'uri' - } - - def __init__(self, id=None, uri=None): # noqa: E501 - """NetworkDiscoverDiscover - a model defined in Swagger""" # noqa: E501 - - self._id = None - self._uri = None - self.discriminator = None - - if id is not None: - self.id = id - if uri is not None: - self.uri = uri - - @property - def id(self): - """Gets the id of this NetworkDiscoverDiscover. # noqa: E501 - - Discover result identifier # noqa: E501 - - :return: The id of this NetworkDiscoverDiscover. # noqa: E501 - :rtype: int - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this NetworkDiscoverDiscover. - - Discover result identifier # noqa: E501 - - :param id: The id of this NetworkDiscoverDiscover. # noqa: E501 - :type: int - """ - if id is not None and id > -1: # noqa: E501 - raise ValueError("Invalid value for `id`, must be a value less than or equal to `-1`") # noqa: E501 - if id is not None and id < 1: # noqa: E501 - raise ValueError("Invalid value for `id`, must be a value greater than or equal to `1`") # noqa: E501 - - self._id = id - - @property - def uri(self): - """Gets the uri of this NetworkDiscoverDiscover. # noqa: E501 - - A valid URI pointing to the data storage # noqa: E501 - - :return: The uri of this NetworkDiscoverDiscover. # noqa: E501 - :rtype: str - """ - return self._uri - - @uri.setter - def uri(self, uri): - """Sets the uri of this NetworkDiscoverDiscover. - - A valid URI pointing to the data storage # noqa: E501 - - :param uri: The uri of this NetworkDiscoverDiscover. # noqa: E501 - :type: str - """ - if uri is not None and len(uri) > 2048: - raise ValueError("Invalid value for `uri`, length must be less than or equal to `2048`") # noqa: E501 - if uri is not None and len(uri) < 1: - raise ValueError("Invalid value for `uri`, length must be greater than or equal to `1`") # noqa: E501 - - self._uri = uri - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(NetworkDiscoverDiscover, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, NetworkDiscoverDiscover): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/network_external_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/network_external_extended.py deleted file mode 100644 index 4bb347d5d..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/network_external_extended.py +++ /dev/null @@ -1,409 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class NetworkExternalExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'ipv6_accept_redirects': 'bool', - 'ipv6_auto_config_enabled': 'bool', - 'ipv6_dad_enabled': 'bool', - 'ipv6_dad_timeout': 'int', - 'ipv6_enabled': 'bool', - 'ipv6_generate_link_local': 'bool', - 'ipv6_ssip_perform_dad': 'bool', - 'sbr': 'bool', - 'sc_rebalance_delay': 'int', - 'sc_server_ttl': 'int', - 'tcp_ports': 'list[int]' - } - - attribute_map = { - 'ipv6_accept_redirects': 'ipv6_accept_redirects', - 'ipv6_auto_config_enabled': 'ipv6_auto_config_enabled', - 'ipv6_dad_enabled': 'ipv6_dad_enabled', - 'ipv6_dad_timeout': 'ipv6_dad_timeout', - 'ipv6_enabled': 'ipv6_enabled', - 'ipv6_generate_link_local': 'ipv6_generate_link_local', - 'ipv6_ssip_perform_dad': 'ipv6_ssip_perform_dad', - 'sbr': 'sbr', - 'sc_rebalance_delay': 'sc_rebalance_delay', - 'sc_server_ttl': 'sc_server_ttl', - 'tcp_ports': 'tcp_ports' - } - - def __init__(self, ipv6_accept_redirects=None, ipv6_auto_config_enabled=None, ipv6_dad_enabled=None, ipv6_dad_timeout=None, ipv6_enabled=None, ipv6_generate_link_local=None, ipv6_ssip_perform_dad=None, sbr=None, sc_rebalance_delay=None, sc_server_ttl=None, tcp_ports=None): # noqa: E501 - """NetworkExternalExtended - a model defined in Swagger""" # noqa: E501 - - self._ipv6_accept_redirects = None - self._ipv6_auto_config_enabled = None - self._ipv6_dad_enabled = None - self._ipv6_dad_timeout = None - self._ipv6_enabled = None - self._ipv6_generate_link_local = None - self._ipv6_ssip_perform_dad = None - self._sbr = None - self._sc_rebalance_delay = None - self._sc_server_ttl = None - self._tcp_ports = None - self.discriminator = None - - if ipv6_accept_redirects is not None: - self.ipv6_accept_redirects = ipv6_accept_redirects - if ipv6_auto_config_enabled is not None: - self.ipv6_auto_config_enabled = ipv6_auto_config_enabled - if ipv6_dad_enabled is not None: - self.ipv6_dad_enabled = ipv6_dad_enabled - if ipv6_dad_timeout is not None: - self.ipv6_dad_timeout = ipv6_dad_timeout - if ipv6_enabled is not None: - self.ipv6_enabled = ipv6_enabled - if ipv6_generate_link_local is not None: - self.ipv6_generate_link_local = ipv6_generate_link_local - if ipv6_ssip_perform_dad is not None: - self.ipv6_ssip_perform_dad = ipv6_ssip_perform_dad - if sbr is not None: - self.sbr = sbr - if sc_rebalance_delay is not None: - self.sc_rebalance_delay = sc_rebalance_delay - if sc_server_ttl is not None: - self.sc_server_ttl = sc_server_ttl - if tcp_ports is not None: - self.tcp_ports = tcp_ports - - @property - def ipv6_accept_redirects(self): - """Gets the ipv6_accept_redirects of this NetworkExternalExtended. # noqa: E501 - - If disabled, OneFS will stop processing ICMPv6 Redirect messages. # noqa: E501 - - :return: The ipv6_accept_redirects of this NetworkExternalExtended. # noqa: E501 - :rtype: bool - """ - return self._ipv6_accept_redirects - - @ipv6_accept_redirects.setter - def ipv6_accept_redirects(self, ipv6_accept_redirects): - """Sets the ipv6_accept_redirects of this NetworkExternalExtended. - - If disabled, OneFS will stop processing ICMPv6 Redirect messages. # noqa: E501 - - :param ipv6_accept_redirects: The ipv6_accept_redirects of this NetworkExternalExtended. # noqa: E501 - :type: bool - """ - - self._ipv6_accept_redirects = ipv6_accept_redirects - - @property - def ipv6_auto_config_enabled(self): - """Gets the ipv6_auto_config_enabled of this NetworkExternalExtended. # noqa: E501 - - True if rtsold daemon is enabled. When set to false, the rtsold service is disabled, and IPv6 auto configuration is disabled # noqa: E501 - - :return: The ipv6_auto_config_enabled of this NetworkExternalExtended. # noqa: E501 - :rtype: bool - """ - return self._ipv6_auto_config_enabled - - @ipv6_auto_config_enabled.setter - def ipv6_auto_config_enabled(self, ipv6_auto_config_enabled): - """Sets the ipv6_auto_config_enabled of this NetworkExternalExtended. - - True if rtsold daemon is enabled. When set to false, the rtsold service is disabled, and IPv6 auto configuration is disabled # noqa: E501 - - :param ipv6_auto_config_enabled: The ipv6_auto_config_enabled of this NetworkExternalExtended. # noqa: E501 - :type: bool - """ - - self._ipv6_auto_config_enabled = ipv6_auto_config_enabled - - @property - def ipv6_dad_enabled(self): - """Gets the ipv6_dad_enabled of this NetworkExternalExtended. # noqa: E501 - - Indicates if OneFS will perform Duplicate Address Detection on designated Network Pools and, optionally, SmartConnect Service IPs. # noqa: E501 - - :return: The ipv6_dad_enabled of this NetworkExternalExtended. # noqa: E501 - :rtype: bool - """ - return self._ipv6_dad_enabled - - @ipv6_dad_enabled.setter - def ipv6_dad_enabled(self, ipv6_dad_enabled): - """Sets the ipv6_dad_enabled of this NetworkExternalExtended. - - Indicates if OneFS will perform Duplicate Address Detection on designated Network Pools and, optionally, SmartConnect Service IPs. # noqa: E501 - - :param ipv6_dad_enabled: The ipv6_dad_enabled of this NetworkExternalExtended. # noqa: E501 - :type: bool - """ - - self._ipv6_dad_enabled = ipv6_dad_enabled - - @property - def ipv6_dad_timeout(self): - """Gets the ipv6_dad_timeout of this NetworkExternalExtended. # noqa: E501 - - Denotes the number of seconds it takes for IPv6 Duplicate Address Detection to occur. During this time, the IP Addresses will not be usable. # noqa: E501 - - :return: The ipv6_dad_timeout of this NetworkExternalExtended. # noqa: E501 - :rtype: int - """ - return self._ipv6_dad_timeout - - @ipv6_dad_timeout.setter - def ipv6_dad_timeout(self, ipv6_dad_timeout): - """Sets the ipv6_dad_timeout of this NetworkExternalExtended. - - Denotes the number of seconds it takes for IPv6 Duplicate Address Detection to occur. During this time, the IP Addresses will not be usable. # noqa: E501 - - :param ipv6_dad_timeout: The ipv6_dad_timeout of this NetworkExternalExtended. # noqa: E501 - :type: int - """ - if ipv6_dad_timeout is not None and ipv6_dad_timeout > 10: # noqa: E501 - raise ValueError("Invalid value for `ipv6_dad_timeout`, must be a value less than or equal to `10`") # noqa: E501 - if ipv6_dad_timeout is not None and ipv6_dad_timeout < 1: # noqa: E501 - raise ValueError("Invalid value for `ipv6_dad_timeout`, must be a value greater than or equal to `1`") # noqa: E501 - - self._ipv6_dad_timeout = ipv6_dad_timeout - - @property - def ipv6_enabled(self): - """Gets the ipv6_enabled of this NetworkExternalExtended. # noqa: E501 - - Indicates if Front End interfaces are configured to support IPv6. # noqa: E501 - - :return: The ipv6_enabled of this NetworkExternalExtended. # noqa: E501 - :rtype: bool - """ - return self._ipv6_enabled - - @ipv6_enabled.setter - def ipv6_enabled(self, ipv6_enabled): - """Sets the ipv6_enabled of this NetworkExternalExtended. - - Indicates if Front End interfaces are configured to support IPv6. # noqa: E501 - - :param ipv6_enabled: The ipv6_enabled of this NetworkExternalExtended. # noqa: E501 - :type: bool - """ - - self._ipv6_enabled = ipv6_enabled - - @property - def ipv6_generate_link_local(self): - """Gets the ipv6_generate_link_local of this NetworkExternalExtended. # noqa: E501 - - Configure if OneFS should generate IPv6 Link Local IPs on the Front End Network. # noqa: E501 - - :return: The ipv6_generate_link_local of this NetworkExternalExtended. # noqa: E501 - :rtype: bool - """ - return self._ipv6_generate_link_local - - @ipv6_generate_link_local.setter - def ipv6_generate_link_local(self, ipv6_generate_link_local): - """Sets the ipv6_generate_link_local of this NetworkExternalExtended. - - Configure if OneFS should generate IPv6 Link Local IPs on the Front End Network. # noqa: E501 - - :param ipv6_generate_link_local: The ipv6_generate_link_local of this NetworkExternalExtended. # noqa: E501 - :type: bool - """ - - self._ipv6_generate_link_local = ipv6_generate_link_local - - @property - def ipv6_ssip_perform_dad(self): - """Gets the ipv6_ssip_perform_dad of this NetworkExternalExtended. # noqa: E501 - - Enable Duplicate Address Detection on SmartConnect Service IPs. # noqa: E501 - - :return: The ipv6_ssip_perform_dad of this NetworkExternalExtended. # noqa: E501 - :rtype: bool - """ - return self._ipv6_ssip_perform_dad - - @ipv6_ssip_perform_dad.setter - def ipv6_ssip_perform_dad(self, ipv6_ssip_perform_dad): - """Sets the ipv6_ssip_perform_dad of this NetworkExternalExtended. - - Enable Duplicate Address Detection on SmartConnect Service IPs. # noqa: E501 - - :param ipv6_ssip_perform_dad: The ipv6_ssip_perform_dad of this NetworkExternalExtended. # noqa: E501 - :type: bool - """ - - self._ipv6_ssip_perform_dad = ipv6_ssip_perform_dad - - @property - def sbr(self): - """Gets the sbr of this NetworkExternalExtended. # noqa: E501 - - Enable or disable Source Based Routing (Defaults to true) # noqa: E501 - - :return: The sbr of this NetworkExternalExtended. # noqa: E501 - :rtype: bool - """ - return self._sbr - - @sbr.setter - def sbr(self, sbr): - """Sets the sbr of this NetworkExternalExtended. - - Enable or disable Source Based Routing (Defaults to true) # noqa: E501 - - :param sbr: The sbr of this NetworkExternalExtended. # noqa: E501 - :type: bool - """ - - self._sbr = sbr - - @property - def sc_rebalance_delay(self): - """Gets the sc_rebalance_delay of this NetworkExternalExtended. # noqa: E501 - - Delay in seconds for IP rebalance. # noqa: E501 - - :return: The sc_rebalance_delay of this NetworkExternalExtended. # noqa: E501 - :rtype: int - """ - return self._sc_rebalance_delay - - @sc_rebalance_delay.setter - def sc_rebalance_delay(self, sc_rebalance_delay): - """Sets the sc_rebalance_delay of this NetworkExternalExtended. - - Delay in seconds for IP rebalance. # noqa: E501 - - :param sc_rebalance_delay: The sc_rebalance_delay of this NetworkExternalExtended. # noqa: E501 - :type: int - """ - if sc_rebalance_delay is not None and sc_rebalance_delay > 10: # noqa: E501 - raise ValueError("Invalid value for `sc_rebalance_delay`, must be a value less than or equal to `10`") # noqa: E501 - if sc_rebalance_delay is not None and sc_rebalance_delay < 0: # noqa: E501 - raise ValueError("Invalid value for `sc_rebalance_delay`, must be a value greater than or equal to `0`") # noqa: E501 - - self._sc_rebalance_delay = sc_rebalance_delay - - @property - def sc_server_ttl(self): - """Gets the sc_server_ttl of this NetworkExternalExtended. # noqa: E501 - - Sets the TTL on NS and SOA records # noqa: E501 - - :return: The sc_server_ttl of this NetworkExternalExtended. # noqa: E501 - :rtype: int - """ - return self._sc_server_ttl - - @sc_server_ttl.setter - def sc_server_ttl(self, sc_server_ttl): - """Sets the sc_server_ttl of this NetworkExternalExtended. - - Sets the TTL on NS and SOA records # noqa: E501 - - :param sc_server_ttl: The sc_server_ttl of this NetworkExternalExtended. # noqa: E501 - :type: int - """ - if sc_server_ttl is not None and sc_server_ttl > 2147483647: # noqa: E501 - raise ValueError("Invalid value for `sc_server_ttl`, must be a value less than or equal to `2147483647`") # noqa: E501 - if sc_server_ttl is not None and sc_server_ttl < 0: # noqa: E501 - raise ValueError("Invalid value for `sc_server_ttl`, must be a value greater than or equal to `0`") # noqa: E501 - - self._sc_server_ttl = sc_server_ttl - - @property - def tcp_ports(self): - """Gets the tcp_ports of this NetworkExternalExtended. # noqa: E501 - - List of client TCP ports. # noqa: E501 - - :return: The tcp_ports of this NetworkExternalExtended. # noqa: E501 - :rtype: list[int] - """ - return self._tcp_ports - - @tcp_ports.setter - def tcp_ports(self, tcp_ports): - """Sets the tcp_ports of this NetworkExternalExtended. - - List of client TCP ports. # noqa: E501 - - :param tcp_ports: The tcp_ports of this NetworkExternalExtended. # noqa: E501 - :type: list[int] - """ - - self._tcp_ports = tcp_ports - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(NetworkExternalExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, NetworkExternalExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/network_external_settings.py b/isilon_sdk/isilon_sdk/v9_11_0/models/network_external_settings.py deleted file mode 100644 index 25a06e7dc..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/network_external_settings.py +++ /dev/null @@ -1,453 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class NetworkExternalSettings(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'default_groupnet': 'str', - 'ipv6_accept_redirects': 'bool', - 'ipv6_auto_config_enabled': 'bool', - 'ipv6_dad_enabled': 'bool', - 'ipv6_dad_timeout': 'int', - 'ipv6_enabled': 'bool', - 'ipv6_generate_link_local': 'bool', - 'ipv6_ssip_perform_dad': 'bool', - 'sbr': 'bool', - 'sc_rebalance_delay': 'int', - 'sc_server_ttl': 'int', - 'tcp_ports': 'list[int]' - } - - attribute_map = { - 'default_groupnet': 'default_groupnet', - 'ipv6_accept_redirects': 'ipv6_accept_redirects', - 'ipv6_auto_config_enabled': 'ipv6_auto_config_enabled', - 'ipv6_dad_enabled': 'ipv6_dad_enabled', - 'ipv6_dad_timeout': 'ipv6_dad_timeout', - 'ipv6_enabled': 'ipv6_enabled', - 'ipv6_generate_link_local': 'ipv6_generate_link_local', - 'ipv6_ssip_perform_dad': 'ipv6_ssip_perform_dad', - 'sbr': 'sbr', - 'sc_rebalance_delay': 'sc_rebalance_delay', - 'sc_server_ttl': 'sc_server_ttl', - 'tcp_ports': 'tcp_ports' - } - - def __init__(self, default_groupnet=None, ipv6_accept_redirects=None, ipv6_auto_config_enabled=None, ipv6_dad_enabled=None, ipv6_dad_timeout=None, ipv6_enabled=None, ipv6_generate_link_local=None, ipv6_ssip_perform_dad=None, sbr=None, sc_rebalance_delay=None, sc_server_ttl=None, tcp_ports=None): # noqa: E501 - """NetworkExternalSettings - a model defined in Swagger""" # noqa: E501 - - self._default_groupnet = None - self._ipv6_accept_redirects = None - self._ipv6_auto_config_enabled = None - self._ipv6_dad_enabled = None - self._ipv6_dad_timeout = None - self._ipv6_enabled = None - self._ipv6_generate_link_local = None - self._ipv6_ssip_perform_dad = None - self._sbr = None - self._sc_rebalance_delay = None - self._sc_server_ttl = None - self._tcp_ports = None - self.discriminator = None - - self.default_groupnet = default_groupnet - self.ipv6_accept_redirects = ipv6_accept_redirects - self.ipv6_auto_config_enabled = ipv6_auto_config_enabled - self.ipv6_dad_enabled = ipv6_dad_enabled - self.ipv6_dad_timeout = ipv6_dad_timeout - self.ipv6_enabled = ipv6_enabled - self.ipv6_generate_link_local = ipv6_generate_link_local - self.ipv6_ssip_perform_dad = ipv6_ssip_perform_dad - self.sbr = sbr - self.sc_rebalance_delay = sc_rebalance_delay - self.sc_server_ttl = sc_server_ttl - self.tcp_ports = tcp_ports - - @property - def default_groupnet(self): - """Gets the default_groupnet of this NetworkExternalSettings. # noqa: E501 - - Default client-side DNS settings for non-multitenancy aware programs # noqa: E501 - - :return: The default_groupnet of this NetworkExternalSettings. # noqa: E501 - :rtype: str - """ - return self._default_groupnet - - @default_groupnet.setter - def default_groupnet(self, default_groupnet): - """Sets the default_groupnet of this NetworkExternalSettings. - - Default client-side DNS settings for non-multitenancy aware programs # noqa: E501 - - :param default_groupnet: The default_groupnet of this NetworkExternalSettings. # noqa: E501 - :type: str - """ - if default_groupnet is None: - raise ValueError("Invalid value for `default_groupnet`, must not be `None`") # noqa: E501 - if default_groupnet is not None and len(default_groupnet) > 32: - raise ValueError("Invalid value for `default_groupnet`, length must be less than or equal to `32`") # noqa: E501 - if default_groupnet is not None and len(default_groupnet) < 0: - raise ValueError("Invalid value for `default_groupnet`, length must be greater than or equal to `0`") # noqa: E501 - - self._default_groupnet = default_groupnet - - @property - def ipv6_accept_redirects(self): - """Gets the ipv6_accept_redirects of this NetworkExternalSettings. # noqa: E501 - - If disabled, OneFS will stop processing ICMPv6 Redirect messages. # noqa: E501 - - :return: The ipv6_accept_redirects of this NetworkExternalSettings. # noqa: E501 - :rtype: bool - """ - return self._ipv6_accept_redirects - - @ipv6_accept_redirects.setter - def ipv6_accept_redirects(self, ipv6_accept_redirects): - """Sets the ipv6_accept_redirects of this NetworkExternalSettings. - - If disabled, OneFS will stop processing ICMPv6 Redirect messages. # noqa: E501 - - :param ipv6_accept_redirects: The ipv6_accept_redirects of this NetworkExternalSettings. # noqa: E501 - :type: bool - """ - if ipv6_accept_redirects is None: - raise ValueError("Invalid value for `ipv6_accept_redirects`, must not be `None`") # noqa: E501 - - self._ipv6_accept_redirects = ipv6_accept_redirects - - @property - def ipv6_auto_config_enabled(self): - """Gets the ipv6_auto_config_enabled of this NetworkExternalSettings. # noqa: E501 - - True if rtsold daemon is enabled. When set to false, the rtsold service is disabled, and IPv6 auto configuration is disabled # noqa: E501 - - :return: The ipv6_auto_config_enabled of this NetworkExternalSettings. # noqa: E501 - :rtype: bool - """ - return self._ipv6_auto_config_enabled - - @ipv6_auto_config_enabled.setter - def ipv6_auto_config_enabled(self, ipv6_auto_config_enabled): - """Sets the ipv6_auto_config_enabled of this NetworkExternalSettings. - - True if rtsold daemon is enabled. When set to false, the rtsold service is disabled, and IPv6 auto configuration is disabled # noqa: E501 - - :param ipv6_auto_config_enabled: The ipv6_auto_config_enabled of this NetworkExternalSettings. # noqa: E501 - :type: bool - """ - if ipv6_auto_config_enabled is None: - raise ValueError("Invalid value for `ipv6_auto_config_enabled`, must not be `None`") # noqa: E501 - - self._ipv6_auto_config_enabled = ipv6_auto_config_enabled - - @property - def ipv6_dad_enabled(self): - """Gets the ipv6_dad_enabled of this NetworkExternalSettings. # noqa: E501 - - Indicates if OneFS will perform Duplicate Address Detection on designated Network Pools and, optionally, SmartConnect Service IPs. # noqa: E501 - - :return: The ipv6_dad_enabled of this NetworkExternalSettings. # noqa: E501 - :rtype: bool - """ - return self._ipv6_dad_enabled - - @ipv6_dad_enabled.setter - def ipv6_dad_enabled(self, ipv6_dad_enabled): - """Sets the ipv6_dad_enabled of this NetworkExternalSettings. - - Indicates if OneFS will perform Duplicate Address Detection on designated Network Pools and, optionally, SmartConnect Service IPs. # noqa: E501 - - :param ipv6_dad_enabled: The ipv6_dad_enabled of this NetworkExternalSettings. # noqa: E501 - :type: bool - """ - if ipv6_dad_enabled is None: - raise ValueError("Invalid value for `ipv6_dad_enabled`, must not be `None`") # noqa: E501 - - self._ipv6_dad_enabled = ipv6_dad_enabled - - @property - def ipv6_dad_timeout(self): - """Gets the ipv6_dad_timeout of this NetworkExternalSettings. # noqa: E501 - - Denotes the number of seconds it takes for IPv6 Duplicate Address Detection to occur. During this time, the IP Addresses will not be usable. # noqa: E501 - - :return: The ipv6_dad_timeout of this NetworkExternalSettings. # noqa: E501 - :rtype: int - """ - return self._ipv6_dad_timeout - - @ipv6_dad_timeout.setter - def ipv6_dad_timeout(self, ipv6_dad_timeout): - """Sets the ipv6_dad_timeout of this NetworkExternalSettings. - - Denotes the number of seconds it takes for IPv6 Duplicate Address Detection to occur. During this time, the IP Addresses will not be usable. # noqa: E501 - - :param ipv6_dad_timeout: The ipv6_dad_timeout of this NetworkExternalSettings. # noqa: E501 - :type: int - """ - if ipv6_dad_timeout is None: - raise ValueError("Invalid value for `ipv6_dad_timeout`, must not be `None`") # noqa: E501 - if ipv6_dad_timeout is not None and ipv6_dad_timeout > 10: # noqa: E501 - raise ValueError("Invalid value for `ipv6_dad_timeout`, must be a value less than or equal to `10`") # noqa: E501 - if ipv6_dad_timeout is not None and ipv6_dad_timeout < 1: # noqa: E501 - raise ValueError("Invalid value for `ipv6_dad_timeout`, must be a value greater than or equal to `1`") # noqa: E501 - - self._ipv6_dad_timeout = ipv6_dad_timeout - - @property - def ipv6_enabled(self): - """Gets the ipv6_enabled of this NetworkExternalSettings. # noqa: E501 - - Indicates if Front End interfaces are configured to support IPv6. # noqa: E501 - - :return: The ipv6_enabled of this NetworkExternalSettings. # noqa: E501 - :rtype: bool - """ - return self._ipv6_enabled - - @ipv6_enabled.setter - def ipv6_enabled(self, ipv6_enabled): - """Sets the ipv6_enabled of this NetworkExternalSettings. - - Indicates if Front End interfaces are configured to support IPv6. # noqa: E501 - - :param ipv6_enabled: The ipv6_enabled of this NetworkExternalSettings. # noqa: E501 - :type: bool - """ - if ipv6_enabled is None: - raise ValueError("Invalid value for `ipv6_enabled`, must not be `None`") # noqa: E501 - - self._ipv6_enabled = ipv6_enabled - - @property - def ipv6_generate_link_local(self): - """Gets the ipv6_generate_link_local of this NetworkExternalSettings. # noqa: E501 - - Configure if OneFS should generate IPv6 Link Local IPs on the Front End Network. # noqa: E501 - - :return: The ipv6_generate_link_local of this NetworkExternalSettings. # noqa: E501 - :rtype: bool - """ - return self._ipv6_generate_link_local - - @ipv6_generate_link_local.setter - def ipv6_generate_link_local(self, ipv6_generate_link_local): - """Sets the ipv6_generate_link_local of this NetworkExternalSettings. - - Configure if OneFS should generate IPv6 Link Local IPs on the Front End Network. # noqa: E501 - - :param ipv6_generate_link_local: The ipv6_generate_link_local of this NetworkExternalSettings. # noqa: E501 - :type: bool - """ - if ipv6_generate_link_local is None: - raise ValueError("Invalid value for `ipv6_generate_link_local`, must not be `None`") # noqa: E501 - - self._ipv6_generate_link_local = ipv6_generate_link_local - - @property - def ipv6_ssip_perform_dad(self): - """Gets the ipv6_ssip_perform_dad of this NetworkExternalSettings. # noqa: E501 - - Enable Duplicate Address Detection on SmartConnect Service IPs. # noqa: E501 - - :return: The ipv6_ssip_perform_dad of this NetworkExternalSettings. # noqa: E501 - :rtype: bool - """ - return self._ipv6_ssip_perform_dad - - @ipv6_ssip_perform_dad.setter - def ipv6_ssip_perform_dad(self, ipv6_ssip_perform_dad): - """Sets the ipv6_ssip_perform_dad of this NetworkExternalSettings. - - Enable Duplicate Address Detection on SmartConnect Service IPs. # noqa: E501 - - :param ipv6_ssip_perform_dad: The ipv6_ssip_perform_dad of this NetworkExternalSettings. # noqa: E501 - :type: bool - """ - if ipv6_ssip_perform_dad is None: - raise ValueError("Invalid value for `ipv6_ssip_perform_dad`, must not be `None`") # noqa: E501 - - self._ipv6_ssip_perform_dad = ipv6_ssip_perform_dad - - @property - def sbr(self): - """Gets the sbr of this NetworkExternalSettings. # noqa: E501 - - Enable or disable Source Based Routing (Defaults to true) # noqa: E501 - - :return: The sbr of this NetworkExternalSettings. # noqa: E501 - :rtype: bool - """ - return self._sbr - - @sbr.setter - def sbr(self, sbr): - """Sets the sbr of this NetworkExternalSettings. - - Enable or disable Source Based Routing (Defaults to true) # noqa: E501 - - :param sbr: The sbr of this NetworkExternalSettings. # noqa: E501 - :type: bool - """ - if sbr is None: - raise ValueError("Invalid value for `sbr`, must not be `None`") # noqa: E501 - - self._sbr = sbr - - @property - def sc_rebalance_delay(self): - """Gets the sc_rebalance_delay of this NetworkExternalSettings. # noqa: E501 - - Delay in seconds for IP rebalance. # noqa: E501 - - :return: The sc_rebalance_delay of this NetworkExternalSettings. # noqa: E501 - :rtype: int - """ - return self._sc_rebalance_delay - - @sc_rebalance_delay.setter - def sc_rebalance_delay(self, sc_rebalance_delay): - """Sets the sc_rebalance_delay of this NetworkExternalSettings. - - Delay in seconds for IP rebalance. # noqa: E501 - - :param sc_rebalance_delay: The sc_rebalance_delay of this NetworkExternalSettings. # noqa: E501 - :type: int - """ - if sc_rebalance_delay is None: - raise ValueError("Invalid value for `sc_rebalance_delay`, must not be `None`") # noqa: E501 - if sc_rebalance_delay is not None and sc_rebalance_delay > 10: # noqa: E501 - raise ValueError("Invalid value for `sc_rebalance_delay`, must be a value less than or equal to `10`") # noqa: E501 - if sc_rebalance_delay is not None and sc_rebalance_delay < 0: # noqa: E501 - raise ValueError("Invalid value for `sc_rebalance_delay`, must be a value greater than or equal to `0`") # noqa: E501 - - self._sc_rebalance_delay = sc_rebalance_delay - - @property - def sc_server_ttl(self): - """Gets the sc_server_ttl of this NetworkExternalSettings. # noqa: E501 - - Sets the TTL on NS and SOA records # noqa: E501 - - :return: The sc_server_ttl of this NetworkExternalSettings. # noqa: E501 - :rtype: int - """ - return self._sc_server_ttl - - @sc_server_ttl.setter - def sc_server_ttl(self, sc_server_ttl): - """Sets the sc_server_ttl of this NetworkExternalSettings. - - Sets the TTL on NS and SOA records # noqa: E501 - - :param sc_server_ttl: The sc_server_ttl of this NetworkExternalSettings. # noqa: E501 - :type: int - """ - if sc_server_ttl is None: - raise ValueError("Invalid value for `sc_server_ttl`, must not be `None`") # noqa: E501 - if sc_server_ttl is not None and sc_server_ttl > 2147483647: # noqa: E501 - raise ValueError("Invalid value for `sc_server_ttl`, must be a value less than or equal to `2147483647`") # noqa: E501 - if sc_server_ttl is not None and sc_server_ttl < 0: # noqa: E501 - raise ValueError("Invalid value for `sc_server_ttl`, must be a value greater than or equal to `0`") # noqa: E501 - - self._sc_server_ttl = sc_server_ttl - - @property - def tcp_ports(self): - """Gets the tcp_ports of this NetworkExternalSettings. # noqa: E501 - - List of client TCP ports. # noqa: E501 - - :return: The tcp_ports of this NetworkExternalSettings. # noqa: E501 - :rtype: list[int] - """ - return self._tcp_ports - - @tcp_ports.setter - def tcp_ports(self, tcp_ports): - """Sets the tcp_ports of this NetworkExternalSettings. - - List of client TCP ports. # noqa: E501 - - :param tcp_ports: The tcp_ports of this NetworkExternalSettings. # noqa: E501 - :type: list[int] - """ - if tcp_ports is None: - raise ValueError("Invalid value for `tcp_ports`, must not be `None`") # noqa: E501 - - self._tcp_ports = tcp_ports - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(NetworkExternalSettings, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, NetworkExternalSettings): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/network_interface_names.py b/isilon_sdk/isilon_sdk/v9_11_0/models/network_interface_names.py deleted file mode 100644 index de046f7de..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/network_interface_names.py +++ /dev/null @@ -1,147 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class NetworkInterfaceNames(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'interface_names': 'list[NetworkInterfaceName]', - 'total': 'int' - } - - attribute_map = { - 'interface_names': 'interface_names', - 'total': 'total' - } - - def __init__(self, interface_names=None, total=None): # noqa: E501 - """NetworkInterfaceNames - a model defined in Swagger""" # noqa: E501 - - self._interface_names = None - self._total = None - self.discriminator = None - - if interface_names is not None: - self.interface_names = interface_names - if total is not None: - self.total = total - - @property - def interface_names(self): - """Gets the interface_names of this NetworkInterfaceNames. # noqa: E501 - - - :return: The interface_names of this NetworkInterfaceNames. # noqa: E501 - :rtype: list[NetworkInterfaceName] - """ - return self._interface_names - - @interface_names.setter - def interface_names(self, interface_names): - """Sets the interface_names of this NetworkInterfaceNames. - - - :param interface_names: The interface_names of this NetworkInterfaceNames. # noqa: E501 - :type: list[NetworkInterfaceName] - """ - - self._interface_names = interface_names - - @property - def total(self): - """Gets the total of this NetworkInterfaceNames. # noqa: E501 - - Total number of items available. # noqa: E501 - - :return: The total of this NetworkInterfaceNames. # noqa: E501 - :rtype: int - """ - return self._total - - @total.setter - def total(self, total): - """Sets the total of this NetworkInterfaceNames. - - Total number of items available. # noqa: E501 - - :param total: The total of this NetworkInterfaceNames. # noqa: E501 - :type: int - """ - if total is not None and total > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `total`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if total is not None and total < 0: # noqa: E501 - raise ValueError("Invalid value for `total`, must be a value greater than or equal to `0`") # noqa: E501 - - self._total = total - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(NetworkInterfaceNames, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, NetworkInterfaceNames): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/network_ping.py b/isilon_sdk/isilon_sdk/v9_11_0/models/network_ping.py deleted file mode 100644 index 62036683c..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/network_ping.py +++ /dev/null @@ -1,115 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class NetworkPing(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'ping': 'NetworkPingPing' - } - - attribute_map = { - 'ping': 'ping' - } - - def __init__(self, ping=None): # noqa: E501 - """NetworkPing - a model defined in Swagger""" # noqa: E501 - - self._ping = None - self.discriminator = None - - if ping is not None: - self.ping = ping - - @property - def ping(self): - """Gets the ping of this NetworkPing. # noqa: E501 - - - :return: The ping of this NetworkPing. # noqa: E501 - :rtype: NetworkPingPing - """ - return self._ping - - @ping.setter - def ping(self, ping): - """Sets the ping of this NetworkPing. - - - :param ping: The ping of this NetworkPing. # noqa: E501 - :type: NetworkPingPing - """ - - self._ping = ping - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(NetworkPing, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, NetworkPing): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/network_ping_ping.py b/isilon_sdk/isilon_sdk/v9_11_0/models/network_ping_ping.py deleted file mode 100644 index e56a8d689..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/network_ping_ping.py +++ /dev/null @@ -1,213 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class NetworkPingPing(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'error': 'str', - 'id': 'int', - 'pong': 'bool', - 'uri': 'str' - } - - attribute_map = { - 'error': 'error', - 'id': 'id', - 'pong': 'pong', - 'uri': 'uri' - } - - def __init__(self, error=None, id=None, pong=None, uri=None): # noqa: E501 - """NetworkPingPing - a model defined in Swagger""" # noqa: E501 - - self._error = None - self._id = None - self._pong = None - self._uri = None - self.discriminator = None - - if error is not None: - self.error = error - if id is not None: - self.id = id - if pong is not None: - self.pong = pong - if uri is not None: - self.uri = uri - - @property - def error(self): - """Gets the error of this NetworkPingPing. # noqa: E501 - - Error message from the ping action if failed # noqa: E501 - - :return: The error of this NetworkPingPing. # noqa: E501 - :rtype: str - """ - return self._error - - @error.setter - def error(self, error): - """Sets the error of this NetworkPingPing. - - Error message from the ping action if failed # noqa: E501 - - :param error: The error of this NetworkPingPing. # noqa: E501 - :type: str - """ - if error is not None and len(error) > 255: - raise ValueError("Invalid value for `error`, length must be less than or equal to `255`") # noqa: E501 - if error is not None and len(error) < 0: - raise ValueError("Invalid value for `error`, length must be greater than or equal to `0`") # noqa: E501 - - self._error = error - - @property - def id(self): - """Gets the id of this NetworkPingPing. # noqa: E501 - - Ping result identifier # noqa: E501 - - :return: The id of this NetworkPingPing. # noqa: E501 - :rtype: int - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this NetworkPingPing. - - Ping result identifier # noqa: E501 - - :param id: The id of this NetworkPingPing. # noqa: E501 - :type: int - """ - if id is not None and id > -1: # noqa: E501 - raise ValueError("Invalid value for `id`, must be a value less than or equal to `-1`") # noqa: E501 - if id is not None and id < 1: # noqa: E501 - raise ValueError("Invalid value for `id`, must be a value greater than or equal to `1`") # noqa: E501 - - self._id = id - - @property - def pong(self): - """Gets the pong of this NetworkPingPing. # noqa: E501 - - Result of the ping action # noqa: E501 - - :return: The pong of this NetworkPingPing. # noqa: E501 - :rtype: bool - """ - return self._pong - - @pong.setter - def pong(self, pong): - """Sets the pong of this NetworkPingPing. - - Result of the ping action # noqa: E501 - - :param pong: The pong of this NetworkPingPing. # noqa: E501 - :type: bool - """ - - self._pong = pong - - @property - def uri(self): - """Gets the uri of this NetworkPingPing. # noqa: E501 - - A valid URI pointing to the data storage # noqa: E501 - - :return: The uri of this NetworkPingPing. # noqa: E501 - :rtype: str - """ - return self._uri - - @uri.setter - def uri(self, uri): - """Sets the uri of this NetworkPingPing. - - A valid URI pointing to the data storage # noqa: E501 - - :param uri: The uri of this NetworkPingPing. # noqa: E501 - :type: str - """ - if uri is not None and len(uri) > 2048: - raise ValueError("Invalid value for `uri`, length must be less than or equal to `2048`") # noqa: E501 - if uri is not None and len(uri) < 1: - raise ValueError("Invalid value for `uri`, length must be greater than or equal to `1`") # noqa: E501 - - self._uri = uri - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(NetworkPingPing, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, NetworkPingPing): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_lock.py b/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_lock.py deleted file mode 100644 index fbd056475..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_lock.py +++ /dev/null @@ -1,375 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class NfsLock(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'client': 'str', - 'client_id': 'int', - 'created': 'int', - 'id': 'str', - 'lin': 'int', - 'lock_type': 'str', - 'path': 'str', - 'range': 'list[int]', - 'version': 'str' - } - - attribute_map = { - 'client': 'client', - 'client_id': 'client_id', - 'created': 'created', - 'id': 'id', - 'lin': 'lin', - 'lock_type': 'lock_type', - 'path': 'path', - 'range': 'range', - 'version': 'version' - } - - def __init__(self, client=None, client_id=None, created=None, id=None, lin=None, lock_type=None, path=None, range=None, version=None): # noqa: E501 - """NfsLock - a model defined in Swagger""" # noqa: E501 - - self._client = None - self._client_id = None - self._created = None - self._id = None - self._lin = None - self._lock_type = None - self._path = None - self._range = None - self._version = None - self.discriminator = None - - if client is not None: - self.client = client - if client_id is not None: - self.client_id = client_id - if created is not None: - self.created = created - if id is not None: - self.id = id - if lin is not None: - self.lin = lin - if lock_type is not None: - self.lock_type = lock_type - if path is not None: - self.path = path - if range is not None: - self.range = range - if version is not None: - self.version = version - - @property - def client(self): - """Gets the client of this NfsLock. # noqa: E501 - - The client host name, FQDN, or IP. # noqa: E501 - - :return: The client of this NfsLock. # noqa: E501 - :rtype: str - """ - return self._client - - @client.setter - def client(self, client): - """Sets the client of this NfsLock. - - The client host name, FQDN, or IP. # noqa: E501 - - :param client: The client of this NfsLock. # noqa: E501 - :type: str - """ - if client is not None and len(client) > 255: - raise ValueError("Invalid value for `client`, length must be less than or equal to `255`") # noqa: E501 - if client is not None and len(client) < 1: - raise ValueError("Invalid value for `client`, length must be greater than or equal to `1`") # noqa: E501 - - self._client = client - - @property - def client_id(self): - """Gets the client_id of this NfsLock. # noqa: E501 - - The client ID. # noqa: E501 - - :return: The client_id of this NfsLock. # noqa: E501 - :rtype: int - """ - return self._client_id - - @client_id.setter - def client_id(self, client_id): - """Sets the client_id of this NfsLock. - - The client ID. # noqa: E501 - - :param client_id: The client_id of this NfsLock. # noqa: E501 - :type: int - """ - if client_id is not None and client_id > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `client_id`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if client_id is not None and client_id < 0: # noqa: E501 - raise ValueError("Invalid value for `client_id`, must be a value greater than or equal to `0`") # noqa: E501 - - self._client_id = client_id - - @property - def created(self): - """Gets the created of this NfsLock. # noqa: E501 - - Specifies the UNIX Epoch time that the lock was created. # noqa: E501 - - :return: The created of this NfsLock. # noqa: E501 - :rtype: int - """ - return self._created - - @created.setter - def created(self, created): - """Sets the created of this NfsLock. - - Specifies the UNIX Epoch time that the lock was created. # noqa: E501 - - :param created: The created of this NfsLock. # noqa: E501 - :type: int - """ - if created is not None and created > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `created`, must be a value less than or equal to `4294967295`") # noqa: E501 - if created is not None and created < 0: # noqa: E501 - raise ValueError("Invalid value for `created`, must be a value greater than or equal to `0`") # noqa: E501 - - self._created = created - - @property - def id(self): - """Gets the id of this NfsLock. # noqa: E501 - - The lock ID. # noqa: E501 - - :return: The id of this NfsLock. # noqa: E501 - :rtype: str - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this NfsLock. - - The lock ID. # noqa: E501 - - :param id: The id of this NfsLock. # noqa: E501 - :type: str - """ - if id is not None and len(id) > 8192: - raise ValueError("Invalid value for `id`, length must be less than or equal to `8192`") # noqa: E501 - if id is not None and len(id) < 0: - raise ValueError("Invalid value for `id`, length must be greater than or equal to `0`") # noqa: E501 - - self._id = id - - @property - def lin(self): - """Gets the lin of this NfsLock. # noqa: E501 - - The logical inode number (LIN) of the locked resource. # noqa: E501 - - :return: The lin of this NfsLock. # noqa: E501 - :rtype: int - """ - return self._lin - - @lin.setter - def lin(self, lin): - """Sets the lin of this NfsLock. - - The logical inode number (LIN) of the locked resource. # noqa: E501 - - :param lin: The lin of this NfsLock. # noqa: E501 - :type: int - """ - if lin is not None and lin > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `lin`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if lin is not None and lin < 0: # noqa: E501 - raise ValueError("Invalid value for `lin`, must be a value greater than or equal to `0`") # noqa: E501 - - self._lin = lin - - @property - def lock_type(self): - """Gets the lock_type of this NfsLock. # noqa: E501 - - The type of lock. # noqa: E501 - - :return: The lock_type of this NfsLock. # noqa: E501 - :rtype: str - """ - return self._lock_type - - @lock_type.setter - def lock_type(self, lock_type): - """Sets the lock_type of this NfsLock. - - The type of lock. # noqa: E501 - - :param lock_type: The lock_type of this NfsLock. # noqa: E501 - :type: str - """ - allowed_values = ["exclusive", "shared", "none"] # noqa: E501 - if lock_type not in allowed_values: - raise ValueError( - "Invalid value for `lock_type` ({0}), must be one of {1}" # noqa: E501 - .format(lock_type, allowed_values) - ) - - self._lock_type = lock_type - - @property - def path(self): - """Gets the path of this NfsLock. # noqa: E501 - - - :return: The path of this NfsLock. # noqa: E501 - :rtype: str - """ - return self._path - - @path.setter - def path(self, path): - """Sets the path of this NfsLock. - - - :param path: The path of this NfsLock. # noqa: E501 - :type: str - """ - if path is not None and len(path) > 4096: - raise ValueError("Invalid value for `path`, length must be less than or equal to `4096`") # noqa: E501 - if path is not None and len(path) < 4: - raise ValueError("Invalid value for `path`, length must be greater than or equal to `4`") # noqa: E501 - if path is not None and not re.search(r'^\/ifs$|^\/ifs\/', path): # noqa: E501 - raise ValueError(r"Invalid value for `path`, must be a follow pattern or equal to `/^\/ifs$|^\/ifs\//`") # noqa: E501 - - self._path = path - - @property - def range(self): - """Gets the range of this NfsLock. # noqa: E501 - - The byte range within the file that is locked. # noqa: E501 - - :return: The range of this NfsLock. # noqa: E501 - :rtype: list[int] - """ - return self._range - - @range.setter - def range(self, range): - """Sets the range of this NfsLock. - - The byte range within the file that is locked. # noqa: E501 - - :param range: The range of this NfsLock. # noqa: E501 - :type: list[int] - """ - - self._range = range - - @property - def version(self): - """Gets the version of this NfsLock. # noqa: E501 - - NFS major version: v3 or v4 # noqa: E501 - - :return: The version of this NfsLock. # noqa: E501 - :rtype: str - """ - return self._version - - @version.setter - def version(self, version): - """Sets the version of this NfsLock. - - NFS major version: v3 or v4 # noqa: E501 - - :param version: The version of this NfsLock. # noqa: E501 - :type: str - """ - if version is not None and len(version) > 5: - raise ValueError("Invalid value for `version`, length must be less than or equal to `5`") # noqa: E501 - if version is not None and len(version) < 2: - raise ValueError("Invalid value for `version`, length must be greater than or equal to `2`") # noqa: E501 - - self._version = version - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(NfsLock, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, NfsLock): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_locks.py b/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_locks.py deleted file mode 100644 index 9eea32c59..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_locks.py +++ /dev/null @@ -1,173 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class NfsLocks(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'errors': 'list[NodeStatusCpuError]', - 'locks': 'list[NfsLock]', - 'total': 'int' - } - - attribute_map = { - 'errors': 'errors', - 'locks': 'locks', - 'total': 'total' - } - - def __init__(self, errors=None, locks=None, total=None): # noqa: E501 - """NfsLocks - a model defined in Swagger""" # noqa: E501 - - self._errors = None - self._locks = None - self._total = None - self.discriminator = None - - if errors is not None: - self.errors = errors - if locks is not None: - self.locks = locks - if total is not None: - self.total = total - - @property - def errors(self): - """Gets the errors of this NfsLocks. # noqa: E501 - - - :return: The errors of this NfsLocks. # noqa: E501 - :rtype: list[NodeStatusCpuError] - """ - return self._errors - - @errors.setter - def errors(self, errors): - """Sets the errors of this NfsLocks. - - - :param errors: The errors of this NfsLocks. # noqa: E501 - :type: list[NodeStatusCpuError] - """ - - self._errors = errors - - @property - def locks(self): - """Gets the locks of this NfsLocks. # noqa: E501 - - - :return: The locks of this NfsLocks. # noqa: E501 - :rtype: list[NfsLock] - """ - return self._locks - - @locks.setter - def locks(self, locks): - """Sets the locks of this NfsLocks. - - - :param locks: The locks of this NfsLocks. # noqa: E501 - :type: list[NfsLock] - """ - - self._locks = locks - - @property - def total(self): - """Gets the total of this NfsLocks. # noqa: E501 - - Total number of items available. # noqa: E501 - - :return: The total of this NfsLocks. # noqa: E501 - :rtype: int - """ - return self._total - - @total.setter - def total(self, total): - """Sets the total of this NfsLocks. - - Total number of items available. # noqa: E501 - - :param total: The total of this NfsLocks. # noqa: E501 - :type: int - """ - if total is not None and total > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `total`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if total is not None and total < 0: # noqa: E501 - raise ValueError("Invalid value for `total`, must be a value greater than or equal to `0`") # noqa: E501 - - self._total = total - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(NfsLocks, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, NfsLocks): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_waiters.py b/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_waiters.py deleted file mode 100644 index d138f45e3..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_waiters.py +++ /dev/null @@ -1,173 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class NfsWaiters(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'errors': 'list[NodeStatusCpuError]', - 'total': 'int', - 'waiters': 'list[NfsLock]' - } - - attribute_map = { - 'errors': 'errors', - 'total': 'total', - 'waiters': 'waiters' - } - - def __init__(self, errors=None, total=None, waiters=None): # noqa: E501 - """NfsWaiters - a model defined in Swagger""" # noqa: E501 - - self._errors = None - self._total = None - self._waiters = None - self.discriminator = None - - if errors is not None: - self.errors = errors - if total is not None: - self.total = total - if waiters is not None: - self.waiters = waiters - - @property - def errors(self): - """Gets the errors of this NfsWaiters. # noqa: E501 - - - :return: The errors of this NfsWaiters. # noqa: E501 - :rtype: list[NodeStatusCpuError] - """ - return self._errors - - @errors.setter - def errors(self, errors): - """Sets the errors of this NfsWaiters. - - - :param errors: The errors of this NfsWaiters. # noqa: E501 - :type: list[NodeStatusCpuError] - """ - - self._errors = errors - - @property - def total(self): - """Gets the total of this NfsWaiters. # noqa: E501 - - Total number of items available. # noqa: E501 - - :return: The total of this NfsWaiters. # noqa: E501 - :rtype: int - """ - return self._total - - @total.setter - def total(self, total): - """Sets the total of this NfsWaiters. - - Total number of items available. # noqa: E501 - - :param total: The total of this NfsWaiters. # noqa: E501 - :type: int - """ - if total is not None and total > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `total`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if total is not None and total < 0: # noqa: E501 - raise ValueError("Invalid value for `total`, must be a value greater than or equal to `0`") # noqa: E501 - - self._total = total - - @property - def waiters(self): - """Gets the waiters of this NfsWaiters. # noqa: E501 - - - :return: The waiters of this NfsWaiters. # noqa: E501 - :rtype: list[NfsLock] - """ - return self._waiters - - @waiters.setter - def waiters(self, waiters): - """Sets the waiters of this NfsWaiters. - - - :param waiters: The waiters of this NfsWaiters. # noqa: E501 - :type: list[NfsLock] - """ - - self._waiters = waiters - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(NfsWaiters, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, NfsWaiters): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_drive_security_level.py b/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_drive_security_level.py deleted file mode 100644 index bbb7770b9..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_drive_security_level.py +++ /dev/null @@ -1,177 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class NodeStatusDriveSecurityLevel(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'errors': 'list[NodeStatusCpuError]', - 'nodes': 'list[NodeStatusDriveSecurityLevelNode]', - 'total': 'int' - } - - attribute_map = { - 'errors': 'errors', - 'nodes': 'nodes', - 'total': 'total' - } - - def __init__(self, errors=None, nodes=None, total=None): # noqa: E501 - """NodeStatusDriveSecurityLevel - a model defined in Swagger""" # noqa: E501 - - self._errors = None - self._nodes = None - self._total = None - self.discriminator = None - - if errors is not None: - self.errors = errors - if nodes is not None: - self.nodes = nodes - if total is not None: - self.total = total - - @property - def errors(self): - """Gets the errors of this NodeStatusDriveSecurityLevel. # noqa: E501 - - A list of errors encountered by the individual nodes involved in this request, or an empty list if there were no errors. # noqa: E501 - - :return: The errors of this NodeStatusDriveSecurityLevel. # noqa: E501 - :rtype: list[NodeStatusCpuError] - """ - return self._errors - - @errors.setter - def errors(self, errors): - """Sets the errors of this NodeStatusDriveSecurityLevel. - - A list of errors encountered by the individual nodes involved in this request, or an empty list if there were no errors. # noqa: E501 - - :param errors: The errors of this NodeStatusDriveSecurityLevel. # noqa: E501 - :type: list[NodeStatusCpuError] - """ - - self._errors = errors - - @property - def nodes(self): - """Gets the nodes of this NodeStatusDriveSecurityLevel. # noqa: E501 - - The responses from the individual nodes involved in this request. # noqa: E501 - - :return: The nodes of this NodeStatusDriveSecurityLevel. # noqa: E501 - :rtype: list[NodeStatusDriveSecurityLevelNode] - """ - return self._nodes - - @nodes.setter - def nodes(self, nodes): - """Sets the nodes of this NodeStatusDriveSecurityLevel. - - The responses from the individual nodes involved in this request. # noqa: E501 - - :param nodes: The nodes of this NodeStatusDriveSecurityLevel. # noqa: E501 - :type: list[NodeStatusDriveSecurityLevelNode] - """ - - self._nodes = nodes - - @property - def total(self): - """Gets the total of this NodeStatusDriveSecurityLevel. # noqa: E501 - - The total number of nodes responding. # noqa: E501 - - :return: The total of this NodeStatusDriveSecurityLevel. # noqa: E501 - :rtype: int - """ - return self._total - - @total.setter - def total(self, total): - """Sets the total of this NodeStatusDriveSecurityLevel. - - The total number of nodes responding. # noqa: E501 - - :param total: The total of this NodeStatusDriveSecurityLevel. # noqa: E501 - :type: int - """ - if total is not None and total > 2147483647: # noqa: E501 - raise ValueError("Invalid value for `total`, must be a value less than or equal to `2147483647`") # noqa: E501 - if total is not None and total < 0: # noqa: E501 - raise ValueError("Invalid value for `total`, must be a value greater than or equal to `0`") # noqa: E501 - - self._total = total - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(NodeStatusDriveSecurityLevel, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, NodeStatusDriveSecurityLevel): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_drive_security_level_node.py b/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_drive_security_level_node.py deleted file mode 100644 index ea426130a..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_drive_security_level_node.py +++ /dev/null @@ -1,249 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class NodeStatusDriveSecurityLevelNode(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'error': 'str', - 'id': 'int', - 'lnn': 'int', - 'sed_compliance_level': 'str', - 'status': 'int' - } - - attribute_map = { - 'error': 'error', - 'id': 'id', - 'lnn': 'lnn', - 'sed_compliance_level': 'sed_compliance_level', - 'status': 'status' - } - - def __init__(self, error=None, id=None, lnn=None, sed_compliance_level=None, status=None): # noqa: E501 - """NodeStatusDriveSecurityLevelNode - a model defined in Swagger""" # noqa: E501 - - self._error = None - self._id = None - self._lnn = None - self._sed_compliance_level = None - self._status = None - self.discriminator = None - - if error is not None: - self.error = error - if id is not None: - self.id = id - if lnn is not None: - self.lnn = lnn - if sed_compliance_level is not None: - self.sed_compliance_level = sed_compliance_level - if status is not None: - self.status = status - - @property - def error(self): - """Gets the error of this NodeStatusDriveSecurityLevelNode. # noqa: E501 - - Error message, if the HTTP status returned from this node was not 200. # noqa: E501 - - :return: The error of this NodeStatusDriveSecurityLevelNode. # noqa: E501 - :rtype: str - """ - return self._error - - @error.setter - def error(self, error): - """Sets the error of this NodeStatusDriveSecurityLevelNode. - - Error message, if the HTTP status returned from this node was not 200. # noqa: E501 - - :param error: The error of this NodeStatusDriveSecurityLevelNode. # noqa: E501 - :type: str - """ - if error is not None and len(error) > 8192: - raise ValueError("Invalid value for `error`, length must be less than or equal to `8192`") # noqa: E501 - if error is not None and len(error) < 0: - raise ValueError("Invalid value for `error`, length must be greater than or equal to `0`") # noqa: E501 - - self._error = error - - @property - def id(self): - """Gets the id of this NodeStatusDriveSecurityLevelNode. # noqa: E501 - - Node ID (Device Number) of a node. # noqa: E501 - - :return: The id of this NodeStatusDriveSecurityLevelNode. # noqa: E501 - :rtype: int - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this NodeStatusDriveSecurityLevelNode. - - Node ID (Device Number) of a node. # noqa: E501 - - :param id: The id of this NodeStatusDriveSecurityLevelNode. # noqa: E501 - :type: int - """ - if id is not None and id > 2147483647: # noqa: E501 - raise ValueError("Invalid value for `id`, must be a value less than or equal to `2147483647`") # noqa: E501 - if id is not None and id < 0: # noqa: E501 - raise ValueError("Invalid value for `id`, must be a value greater than or equal to `0`") # noqa: E501 - - self._id = id - - @property - def lnn(self): - """Gets the lnn of this NodeStatusDriveSecurityLevelNode. # noqa: E501 - - Logical Node Number (LNN) of a node. # noqa: E501 - - :return: The lnn of this NodeStatusDriveSecurityLevelNode. # noqa: E501 - :rtype: int - """ - return self._lnn - - @lnn.setter - def lnn(self, lnn): - """Sets the lnn of this NodeStatusDriveSecurityLevelNode. - - Logical Node Number (LNN) of a node. # noqa: E501 - - :param lnn: The lnn of this NodeStatusDriveSecurityLevelNode. # noqa: E501 - :type: int - """ - if lnn is not None and lnn > 65535: # noqa: E501 - raise ValueError("Invalid value for `lnn`, must be a value less than or equal to `65535`") # noqa: E501 - if lnn is not None and lnn < 1: # noqa: E501 - raise ValueError("Invalid value for `lnn`, must be a value greater than or equal to `1`") # noqa: E501 - - self._lnn = lnn - - @property - def sed_compliance_level(self): - """Gets the sed_compliance_level of this NodeStatusDriveSecurityLevelNode. # noqa: E501 - - String representation of this node's SED compliance level. # noqa: E501 - - :return: The sed_compliance_level of this NodeStatusDriveSecurityLevelNode. # noqa: E501 - :rtype: str - """ - return self._sed_compliance_level - - @sed_compliance_level.setter - def sed_compliance_level(self, sed_compliance_level): - """Sets the sed_compliance_level of this NodeStatusDriveSecurityLevelNode. - - String representation of this node's SED compliance level. # noqa: E501 - - :param sed_compliance_level: The sed_compliance_level of this NodeStatusDriveSecurityLevelNode. # noqa: E501 - :type: str - """ - if sed_compliance_level is not None and len(sed_compliance_level) > 255: - raise ValueError("Invalid value for `sed_compliance_level`, length must be less than or equal to `255`") # noqa: E501 - if sed_compliance_level is not None and len(sed_compliance_level) < 0: - raise ValueError("Invalid value for `sed_compliance_level`, length must be greater than or equal to `0`") # noqa: E501 - - self._sed_compliance_level = sed_compliance_level - - @property - def status(self): - """Gets the status of this NodeStatusDriveSecurityLevelNode. # noqa: E501 - - Status of the HTTP response from this node if not 200. If 200, this field does not appear. # noqa: E501 - - :return: The status of this NodeStatusDriveSecurityLevelNode. # noqa: E501 - :rtype: int - """ - return self._status - - @status.setter - def status(self, status): - """Sets the status of this NodeStatusDriveSecurityLevelNode. - - Status of the HTTP response from this node if not 200. If 200, this field does not appear. # noqa: E501 - - :param status: The status of this NodeStatusDriveSecurityLevelNode. # noqa: E501 - :type: int - """ - if status is not None and status > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `status`, must be a value less than or equal to `4294967295`") # noqa: E501 - if status is not None and status < 0: # noqa: E501 - raise ValueError("Invalid value for `status`, must be a value greater than or equal to `0`") # noqa: E501 - - self._status = status - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(NodeStatusDriveSecurityLevelNode, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, NodeStatusDriveSecurityLevelNode): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_drive_security_level.py b/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_drive_security_level.py deleted file mode 100644 index bb9b26360..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_drive_security_level.py +++ /dev/null @@ -1,121 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class NodeStatusNodeDriveSecurityLevel(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'sed_compliance_level': 'str' - } - - attribute_map = { - 'sed_compliance_level': 'sed_compliance_level' - } - - def __init__(self, sed_compliance_level=None): # noqa: E501 - """NodeStatusNodeDriveSecurityLevel - a model defined in Swagger""" # noqa: E501 - - self._sed_compliance_level = None - self.discriminator = None - - if sed_compliance_level is not None: - self.sed_compliance_level = sed_compliance_level - - @property - def sed_compliance_level(self): - """Gets the sed_compliance_level of this NodeStatusNodeDriveSecurityLevel. # noqa: E501 - - String representation of this node's SED compliance level. # noqa: E501 - - :return: The sed_compliance_level of this NodeStatusNodeDriveSecurityLevel. # noqa: E501 - :rtype: str - """ - return self._sed_compliance_level - - @sed_compliance_level.setter - def sed_compliance_level(self, sed_compliance_level): - """Sets the sed_compliance_level of this NodeStatusNodeDriveSecurityLevel. - - String representation of this node's SED compliance level. # noqa: E501 - - :param sed_compliance_level: The sed_compliance_level of this NodeStatusNodeDriveSecurityLevel. # noqa: E501 - :type: str - """ - if sed_compliance_level is not None and len(sed_compliance_level) > 255: - raise ValueError("Invalid value for `sed_compliance_level`, length must be less than or equal to `255`") # noqa: E501 - if sed_compliance_level is not None and len(sed_compliance_level) < 0: - raise ValueError("Invalid value for `sed_compliance_level`, length must be greater than or equal to `0`") # noqa: E501 - - self._sed_compliance_level = sed_compliance_level - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(NodeStatusNodeDriveSecurityLevel, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, NodeStatusNodeDriveSecurityLevel): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_certificate.py b/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_certificate.py deleted file mode 100644 index 8f2f73ab3..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_certificate.py +++ /dev/null @@ -1,117 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class OauthCertificate(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'is_current': 'bool' - } - - attribute_map = { - 'is_current': 'is_current' - } - - def __init__(self, is_current=None): # noqa: E501 - """OauthCertificate - a model defined in Swagger""" # noqa: E501 - - self._is_current = None - self.discriminator = None - - if is_current is not None: - self.is_current = is_current - - @property - def is_current(self): - """Gets the is_current of this OauthCertificate. # noqa: E501 - - Indicates whether this is the current certificate to be used by the service. When is_current is false for a certificate, that certificate will not be used by the service. # noqa: E501 - - :return: The is_current of this OauthCertificate. # noqa: E501 - :rtype: bool - """ - return self._is_current - - @is_current.setter - def is_current(self, is_current): - """Sets the is_current of this OauthCertificate. - - Indicates whether this is the current certificate to be used by the service. When is_current is false for a certificate, that certificate will not be used by the service. # noqa: E501 - - :param is_current: The is_current of this OauthCertificate. # noqa: E501 - :type: bool - """ - - self._is_current = is_current - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(OauthCertificate, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, OauthCertificate): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_certificate_create_params.py b/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_certificate_create_params.py deleted file mode 100644 index cb79b04d2..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_certificate_create_params.py +++ /dev/null @@ -1,323 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class OauthCertificateCreateParams(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'certificate': 'str', - 'certificate_format': 'str', - 'passphrase': 'str', - 'private_key': 'str', - 'scope': 'str', - 'service': 'str', - 'type': 'str' - } - - attribute_map = { - 'certificate': 'certificate', - 'certificate_format': 'certificate_format', - 'passphrase': 'passphrase', - 'private_key': 'private_key', - 'scope': 'scope', - 'service': 'service', - 'type': 'type' - } - - def __init__(self, certificate=None, certificate_format=None, passphrase=None, private_key=None, scope=None, service=None, type=None): # noqa: E501 - """OauthCertificateCreateParams - a model defined in Swagger""" # noqa: E501 - - self._certificate = None - self._certificate_format = None - self._passphrase = None - self._private_key = None - self._scope = None - self._service = None - self._type = None - self.discriminator = None - - self.certificate = certificate - self.certificate_format = certificate_format - if passphrase is not None: - self.passphrase = passphrase - if private_key is not None: - self.private_key = private_key - if scope is not None: - self.scope = scope - self.service = service - self.type = type - - @property - def certificate(self): - """Gets the certificate of this OauthCertificateCreateParams. # noqa: E501 - - The certificate content encoded as PEM string (including header, footer and line break). # noqa: E501 - - :return: The certificate of this OauthCertificateCreateParams. # noqa: E501 - :rtype: str - """ - return self._certificate - - @certificate.setter - def certificate(self, certificate): - """Sets the certificate of this OauthCertificateCreateParams. - - The certificate content encoded as PEM string (including header, footer and line break). # noqa: E501 - - :param certificate: The certificate of this OauthCertificateCreateParams. # noqa: E501 - :type: str - """ - if certificate is None: - raise ValueError("Invalid value for `certificate`, must not be `None`") # noqa: E501 - if certificate is not None and len(certificate) > 8192: - raise ValueError("Invalid value for `certificate`, length must be less than or equal to `8192`") # noqa: E501 - if certificate is not None and len(certificate) < 1: - raise ValueError("Invalid value for `certificate`, length must be greater than or equal to `1`") # noqa: E501 - - self._certificate = certificate - - @property - def certificate_format(self): - """Gets the certificate_format of this OauthCertificateCreateParams. # noqa: E501 - - The encoding format of the certificate string. # noqa: E501 - - :return: The certificate_format of this OauthCertificateCreateParams. # noqa: E501 - :rtype: str - """ - return self._certificate_format - - @certificate_format.setter - def certificate_format(self, certificate_format): - """Sets the certificate_format of this OauthCertificateCreateParams. - - The encoding format of the certificate string. # noqa: E501 - - :param certificate_format: The certificate_format of this OauthCertificateCreateParams. # noqa: E501 - :type: str - """ - if certificate_format is None: - raise ValueError("Invalid value for `certificate_format`, must not be `None`") # noqa: E501 - allowed_values = ["PEM", "PKCS7"] # noqa: E501 - if certificate_format not in allowed_values: - raise ValueError( - "Invalid value for `certificate_format` ({0}), must be one of {1}" # noqa: E501 - .format(certificate_format, allowed_values) - ) - - self._certificate_format = certificate_format - - @property - def passphrase(self): - """Gets the passphrase of this OauthCertificateCreateParams. # noqa: E501 - - Passphrase used to encrypt private key. # noqa: E501 - - :return: The passphrase of this OauthCertificateCreateParams. # noqa: E501 - :rtype: str - """ - return self._passphrase - - @passphrase.setter - def passphrase(self, passphrase): - """Sets the passphrase of this OauthCertificateCreateParams. - - Passphrase used to encrypt private key. # noqa: E501 - - :param passphrase: The passphrase of this OauthCertificateCreateParams. # noqa: E501 - :type: str - """ - if passphrase is not None and len(passphrase) > 256: - raise ValueError("Invalid value for `passphrase`, length must be less than or equal to `256`") # noqa: E501 - if passphrase is not None and len(passphrase) < 1: - raise ValueError("Invalid value for `passphrase`, length must be greater than or equal to `1`") # noqa: E501 - - self._passphrase = passphrase - - @property - def private_key(self): - """Gets the private_key of this OauthCertificateCreateParams. # noqa: E501 - - PEM encoded (including header, footer and line break) private key following encrypted PKCS8. # noqa: E501 - - :return: The private_key of this OauthCertificateCreateParams. # noqa: E501 - :rtype: str - """ - return self._private_key - - @private_key.setter - def private_key(self, private_key): - """Sets the private_key of this OauthCertificateCreateParams. - - PEM encoded (including header, footer and line break) private key following encrypted PKCS8. # noqa: E501 - - :param private_key: The private_key of this OauthCertificateCreateParams. # noqa: E501 - :type: str - """ - if private_key is not None and len(private_key) > 8192: - raise ValueError("Invalid value for `private_key`, length must be less than or equal to `8192`") # noqa: E501 - if private_key is not None and len(private_key) < 1: - raise ValueError("Invalid value for `private_key`, length must be greater than or equal to `1`") # noqa: E501 - - self._private_key = private_key - - @property - def scope(self): - """Gets the scope of this OauthCertificateCreateParams. # noqa: E501 - - Scope narrows the application of a certificate to a specific instance of a service. # noqa: E501 - - :return: The scope of this OauthCertificateCreateParams. # noqa: E501 - :rtype: str - """ - return self._scope - - @scope.setter - def scope(self, scope): - """Sets the scope of this OauthCertificateCreateParams. - - Scope narrows the application of a certificate to a specific instance of a service. # noqa: E501 - - :param scope: The scope of this OauthCertificateCreateParams. # noqa: E501 - :type: str - """ - if scope is not None and len(scope) > 255: - raise ValueError("Invalid value for `scope`, length must be less than or equal to `255`") # noqa: E501 - if scope is not None and len(scope) < 1: - raise ValueError("Invalid value for `scope`, length must be greater than or equal to `1`") # noqa: E501 - - self._scope = scope - - @property - def service(self): - """Gets the service of this OauthCertificateCreateParams. # noqa: E501 - - The kind of the service for which the certificate is used. # noqa: E501 - - :return: The service of this OauthCertificateCreateParams. # noqa: E501 - :rtype: str - """ - return self._service - - @service.setter - def service(self, service): - """Sets the service of this OauthCertificateCreateParams. - - The kind of the service for which the certificate is used. # noqa: E501 - - :param service: The service of this OauthCertificateCreateParams. # noqa: E501 - :type: str - """ - if service is None: - raise ValueError("Invalid value for `service`, must not be `None`") # noqa: E501 - allowed_values = ["ALL", "MANAGEMENT_HTTPS"] # noqa: E501 - if service not in allowed_values: - raise ValueError( - "Invalid value for `service` ({0}), must be one of {1}" # noqa: E501 - .format(service, allowed_values) - ) - - self._service = service - - @property - def type(self): - """Gets the type of this OauthCertificateCreateParams. # noqa: E501 - - Whether the certificate is used as client or server certificate, and whether it is a CA certificate. # noqa: E501 - - :return: The type of this OauthCertificateCreateParams. # noqa: E501 - :rtype: str - """ - return self._type - - @type.setter - def type(self, type): - """Sets the type of this OauthCertificateCreateParams. - - Whether the certificate is used as client or server certificate, and whether it is a CA certificate. # noqa: E501 - - :param type: The type of this OauthCertificateCreateParams. # noqa: E501 - :type: str - """ - if type is None: - raise ValueError("Invalid value for `type`, must not be `None`") # noqa: E501 - allowed_values = ["SERVER", "CLIENT", "CA", "CRYPTOGRAPHY"] # noqa: E501 - if type not in allowed_values: - raise ValueError( - "Invalid value for `type` ({0}), must be one of {1}" # noqa: E501 - .format(type, allowed_values) - ) - - self._type = type - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(OauthCertificateCreateParams, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, OauthCertificateCreateParams): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_certificates.py b/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_certificates.py deleted file mode 100644 index 94d7113b0..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_certificates.py +++ /dev/null @@ -1,597 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class OauthCertificates(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'cert_fingerprint': 'str', - 'certificate': 'str', - 'common_name': 'str', - 'id': 'str', - 'is_current': 'bool', - 'is_valid': 'bool', - 'issuer': 'str', - 'scope': 'str', - 'service': 'str', - 'signature_algorithm': 'str', - 'signature_hash_algorithm': 'str', - 'subject': 'str', - 'subject_alternative_names': 'list[str]', - 'type': 'str', - 'valid_from_timestamp': 'str', - 'valid_to_timestamp': 'str' - } - - attribute_map = { - 'cert_fingerprint': 'cert_fingerprint', - 'certificate': 'certificate', - 'common_name': 'common_name', - 'id': 'id', - 'is_current': 'is_current', - 'is_valid': 'is_valid', - 'issuer': 'issuer', - 'scope': 'scope', - 'service': 'service', - 'signature_algorithm': 'signature_algorithm', - 'signature_hash_algorithm': 'signature_hash_algorithm', - 'subject': 'subject', - 'subject_alternative_names': 'subject_alternative_names', - 'type': 'type', - 'valid_from_timestamp': 'valid_from_timestamp', - 'valid_to_timestamp': 'valid_to_timestamp' - } - - def __init__(self, cert_fingerprint=None, certificate=None, common_name=None, id=None, is_current=None, is_valid=None, issuer=None, scope=None, service=None, signature_algorithm=None, signature_hash_algorithm=None, subject=None, subject_alternative_names=None, type=None, valid_from_timestamp=None, valid_to_timestamp=None): # noqa: E501 - """OauthCertificates - a model defined in Swagger""" # noqa: E501 - - self._cert_fingerprint = None - self._certificate = None - self._common_name = None - self._id = None - self._is_current = None - self._is_valid = None - self._issuer = None - self._scope = None - self._service = None - self._signature_algorithm = None - self._signature_hash_algorithm = None - self._subject = None - self._subject_alternative_names = None - self._type = None - self._valid_from_timestamp = None - self._valid_to_timestamp = None - self.discriminator = None - - if cert_fingerprint is not None: - self.cert_fingerprint = cert_fingerprint - if certificate is not None: - self.certificate = certificate - if common_name is not None: - self.common_name = common_name - if id is not None: - self.id = id - if is_current is not None: - self.is_current = is_current - if is_valid is not None: - self.is_valid = is_valid - if issuer is not None: - self.issuer = issuer - if scope is not None: - self.scope = scope - if service is not None: - self.service = service - if signature_algorithm is not None: - self.signature_algorithm = signature_algorithm - if signature_hash_algorithm is not None: - self.signature_hash_algorithm = signature_hash_algorithm - if subject is not None: - self.subject = subject - if subject_alternative_names is not None: - self.subject_alternative_names = subject_alternative_names - if type is not None: - self.type = type - if valid_from_timestamp is not None: - self.valid_from_timestamp = valid_from_timestamp - if valid_to_timestamp is not None: - self.valid_to_timestamp = valid_to_timestamp - - @property - def cert_fingerprint(self): - """Gets the cert_fingerprint of this OauthCertificates. # noqa: E501 - - The hexadecimal representation of the certificate hash, using SHA-256 hash algorithm. # noqa: E501 - - :return: The cert_fingerprint of this OauthCertificates. # noqa: E501 - :rtype: str - """ - return self._cert_fingerprint - - @cert_fingerprint.setter - def cert_fingerprint(self, cert_fingerprint): - """Sets the cert_fingerprint of this OauthCertificates. - - The hexadecimal representation of the certificate hash, using SHA-256 hash algorithm. # noqa: E501 - - :param cert_fingerprint: The cert_fingerprint of this OauthCertificates. # noqa: E501 - :type: str - """ - if cert_fingerprint is not None and len(cert_fingerprint) > 512: - raise ValueError("Invalid value for `cert_fingerprint`, length must be less than or equal to `512`") # noqa: E501 - if cert_fingerprint is not None and len(cert_fingerprint) < 1: - raise ValueError("Invalid value for `cert_fingerprint`, length must be greater than or equal to `1`") # noqa: E501 - - self._cert_fingerprint = cert_fingerprint - - @property - def certificate(self): - """Gets the certificate of this OauthCertificates. # noqa: E501 - - The certificate content encoded as PEM string (including header, footer and line break). # noqa: E501 - - :return: The certificate of this OauthCertificates. # noqa: E501 - :rtype: str - """ - return self._certificate - - @certificate.setter - def certificate(self, certificate): - """Sets the certificate of this OauthCertificates. - - The certificate content encoded as PEM string (including header, footer and line break). # noqa: E501 - - :param certificate: The certificate of this OauthCertificates. # noqa: E501 - :type: str - """ - if certificate is not None and len(certificate) > 8192: - raise ValueError("Invalid value for `certificate`, length must be less than or equal to `8192`") # noqa: E501 - if certificate is not None and len(certificate) < 1: - raise ValueError("Invalid value for `certificate`, length must be greater than or equal to `1`") # noqa: E501 - - self._certificate = certificate - - @property - def common_name(self): - """Gets the common_name of this OauthCertificates. # noqa: E501 - - The fully qualified domain name of the certificate. # noqa: E501 - - :return: The common_name of this OauthCertificates. # noqa: E501 - :rtype: str - """ - return self._common_name - - @common_name.setter - def common_name(self, common_name): - """Sets the common_name of this OauthCertificates. - - The fully qualified domain name of the certificate. # noqa: E501 - - :param common_name: The common_name of this OauthCertificates. # noqa: E501 - :type: str - """ - if common_name is not None and len(common_name) > 255: - raise ValueError("Invalid value for `common_name`, length must be less than or equal to `255`") # noqa: E501 - if common_name is not None and len(common_name) < 1: - raise ValueError("Invalid value for `common_name`, length must be greater than or equal to `1`") # noqa: E501 - - self._common_name = common_name - - @property - def id(self): - """Gets the id of this OauthCertificates. # noqa: E501 - - Unique identifier of certificate. # noqa: E501 - - :return: The id of this OauthCertificates. # noqa: E501 - :rtype: str - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this OauthCertificates. - - Unique identifier of certificate. # noqa: E501 - - :param id: The id of this OauthCertificates. # noqa: E501 - :type: str - """ - if id is not None and len(id) > 255: - raise ValueError("Invalid value for `id`, length must be less than or equal to `255`") # noqa: E501 - if id is not None and len(id) < 1: - raise ValueError("Invalid value for `id`, length must be greater than or equal to `1`") # noqa: E501 - - self._id = id - - @property - def is_current(self): - """Gets the is_current of this OauthCertificates. # noqa: E501 - - Indicates whether this is the current certificate to be used by the service. When is_current is false for a certificate, that certificate will not be used by the service. # noqa: E501 - - :return: The is_current of this OauthCertificates. # noqa: E501 - :rtype: bool - """ - return self._is_current - - @is_current.setter - def is_current(self, is_current): - """Sets the is_current of this OauthCertificates. - - Indicates whether this is the current certificate to be used by the service. When is_current is false for a certificate, that certificate will not be used by the service. # noqa: E501 - - :param is_current: The is_current of this OauthCertificates. # noqa: E501 - :type: bool - """ - - self._is_current = is_current - - @property - def is_valid(self): - """Gets the is_valid of this OauthCertificates. # noqa: E501 - - Indicates whether this is a valid certificate. # noqa: E501 - - :return: The is_valid of this OauthCertificates. # noqa: E501 - :rtype: bool - """ - return self._is_valid - - @is_valid.setter - def is_valid(self, is_valid): - """Sets the is_valid of this OauthCertificates. - - Indicates whether this is a valid certificate. # noqa: E501 - - :param is_valid: The is_valid of this OauthCertificates. # noqa: E501 - :type: bool - """ - - self._is_valid = is_valid - - @property - def issuer(self): - """Gets the issuer of this OauthCertificates. # noqa: E501 - - Distinguished name of the certificate issuer. # noqa: E501 - - :return: The issuer of this OauthCertificates. # noqa: E501 - :rtype: str - """ - return self._issuer - - @issuer.setter - def issuer(self, issuer): - """Sets the issuer of this OauthCertificates. - - Distinguished name of the certificate issuer. # noqa: E501 - - :param issuer: The issuer of this OauthCertificates. # noqa: E501 - :type: str - """ - if issuer is not None and len(issuer) > 2048: - raise ValueError("Invalid value for `issuer`, length must be less than or equal to `2048`") # noqa: E501 - if issuer is not None and len(issuer) < 1: - raise ValueError("Invalid value for `issuer`, length must be greater than or equal to `1`") # noqa: E501 - - self._issuer = issuer - - @property - def scope(self): - """Gets the scope of this OauthCertificates. # noqa: E501 - - Scope narrows the application of a certificate to a specific instance of a service. # noqa: E501 - - :return: The scope of this OauthCertificates. # noqa: E501 - :rtype: str - """ - return self._scope - - @scope.setter - def scope(self, scope): - """Sets the scope of this OauthCertificates. - - Scope narrows the application of a certificate to a specific instance of a service. # noqa: E501 - - :param scope: The scope of this OauthCertificates. # noqa: E501 - :type: str - """ - if scope is not None and len(scope) > 255: - raise ValueError("Invalid value for `scope`, length must be less than or equal to `255`") # noqa: E501 - if scope is not None and len(scope) < 1: - raise ValueError("Invalid value for `scope`, length must be greater than or equal to `1`") # noqa: E501 - - self._scope = scope - - @property - def service(self): - """Gets the service of this OauthCertificates. # noqa: E501 - - The kind of the service for which the certificate is used. # noqa: E501 - - :return: The service of this OauthCertificates. # noqa: E501 - :rtype: str - """ - return self._service - - @service.setter - def service(self, service): - """Sets the service of this OauthCertificates. - - The kind of the service for which the certificate is used. # noqa: E501 - - :param service: The service of this OauthCertificates. # noqa: E501 - :type: str - """ - allowed_values = ["ALL", "MANAGEMENT_HTTPS"] # noqa: E501 - if service not in allowed_values: - raise ValueError( - "Invalid value for `service` ({0}), must be one of {1}" # noqa: E501 - .format(service, allowed_values) - ) - - self._service = service - - @property - def signature_algorithm(self): - """Gets the signature_algorithm of this OauthCertificates. # noqa: E501 - - The kind of signature algorithm used for the certificate. # noqa: E501 - - :return: The signature_algorithm of this OauthCertificates. # noqa: E501 - :rtype: str - """ - return self._signature_algorithm - - @signature_algorithm.setter - def signature_algorithm(self, signature_algorithm): - """Sets the signature_algorithm of this OauthCertificates. - - The kind of signature algorithm used for the certificate. # noqa: E501 - - :param signature_algorithm: The signature_algorithm of this OauthCertificates. # noqa: E501 - :type: str - """ - allowed_values = ["RSA", "DSA", "Elliptical"] # noqa: E501 - if signature_algorithm not in allowed_values: - raise ValueError( - "Invalid value for `signature_algorithm` ({0}), must be one of {1}" # noqa: E501 - .format(signature_algorithm, allowed_values) - ) - - self._signature_algorithm = signature_algorithm - - @property - def signature_hash_algorithm(self): - """Gets the signature_hash_algorithm of this OauthCertificates. # noqa: E501 - - The kind of signature hash algorithm used for the certificate. # noqa: E501 - - :return: The signature_hash_algorithm of this OauthCertificates. # noqa: E501 - :rtype: str - """ - return self._signature_hash_algorithm - - @signature_hash_algorithm.setter - def signature_hash_algorithm(self, signature_hash_algorithm): - """Sets the signature_hash_algorithm of this OauthCertificates. - - The kind of signature hash algorithm used for the certificate. # noqa: E501 - - :param signature_hash_algorithm: The signature_hash_algorithm of this OauthCertificates. # noqa: E501 - :type: str - """ - allowed_values = ["SHA-1", "SHA-256", "SHA-384", "SHA-512", "MD5", "MDC-2"] # noqa: E501 - if signature_hash_algorithm not in allowed_values: - raise ValueError( - "Invalid value for `signature_hash_algorithm` ({0}), must be one of {1}" # noqa: E501 - .format(signature_hash_algorithm, allowed_values) - ) - - self._signature_hash_algorithm = signature_hash_algorithm - - @property - def subject(self): - """Gets the subject of this OauthCertificates. # noqa: E501 - - Certificate subject field extracted from the certificate. # noqa: E501 - - :return: The subject of this OauthCertificates. # noqa: E501 - :rtype: str - """ - return self._subject - - @subject.setter - def subject(self, subject): - """Sets the subject of this OauthCertificates. - - Certificate subject field extracted from the certificate. # noqa: E501 - - :param subject: The subject of this OauthCertificates. # noqa: E501 - :type: str - """ - if subject is not None and len(subject) > 2048: - raise ValueError("Invalid value for `subject`, length must be less than or equal to `2048`") # noqa: E501 - if subject is not None and len(subject) < 1: - raise ValueError("Invalid value for `subject`, length must be greater than or equal to `1`") # noqa: E501 - - self._subject = subject - - @property - def subject_alternative_names(self): - """Gets the subject_alternative_names of this OauthCertificates. # noqa: E501 - - Array of host names of the component to secure, as defined by the RFC5280 subjectAltName attribute. # noqa: E501 - - :return: The subject_alternative_names of this OauthCertificates. # noqa: E501 - :rtype: list[str] - """ - return self._subject_alternative_names - - @subject_alternative_names.setter - def subject_alternative_names(self, subject_alternative_names): - """Sets the subject_alternative_names of this OauthCertificates. - - Array of host names of the component to secure, as defined by the RFC5280 subjectAltName attribute. # noqa: E501 - - :param subject_alternative_names: The subject_alternative_names of this OauthCertificates. # noqa: E501 - :type: list[str] - """ - - self._subject_alternative_names = subject_alternative_names - - @property - def type(self): - """Gets the type of this OauthCertificates. # noqa: E501 - - Whether the certificate is used as client or server certificate, and whether it is a CA certificate. # noqa: E501 - - :return: The type of this OauthCertificates. # noqa: E501 - :rtype: str - """ - return self._type - - @type.setter - def type(self, type): - """Sets the type of this OauthCertificates. - - Whether the certificate is used as client or server certificate, and whether it is a CA certificate. # noqa: E501 - - :param type: The type of this OauthCertificates. # noqa: E501 - :type: str - """ - allowed_values = ["SERVER", "CLIENT", "CA", "CRYPTOGRAPHY"] # noqa: E501 - if type not in allowed_values: - raise ValueError( - "Invalid value for `type` ({0}), must be one of {1}" # noqa: E501 - .format(type, allowed_values) - ) - - self._type = type - - @property - def valid_from_timestamp(self): - """Gets the valid_from_timestamp of this OauthCertificates. # noqa: E501 - - The date in '%Y-%m-%dT%H:%M:%SZ' format when the certificate becomes valid. # noqa: E501 - - :return: The valid_from_timestamp of this OauthCertificates. # noqa: E501 - :rtype: str - """ - return self._valid_from_timestamp - - @valid_from_timestamp.setter - def valid_from_timestamp(self, valid_from_timestamp): - """Sets the valid_from_timestamp of this OauthCertificates. - - The date in '%Y-%m-%dT%H:%M:%SZ' format when the certificate becomes valid. # noqa: E501 - - :param valid_from_timestamp: The valid_from_timestamp of this OauthCertificates. # noqa: E501 - :type: str - """ - if valid_from_timestamp is not None and len(valid_from_timestamp) > 255: - raise ValueError("Invalid value for `valid_from_timestamp`, length must be less than or equal to `255`") # noqa: E501 - if valid_from_timestamp is not None and len(valid_from_timestamp) < 1: - raise ValueError("Invalid value for `valid_from_timestamp`, length must be greater than or equal to `1`") # noqa: E501 - - self._valid_from_timestamp = valid_from_timestamp - - @property - def valid_to_timestamp(self): - """Gets the valid_to_timestamp of this OauthCertificates. # noqa: E501 - - The date in '%Y-%m-%dT%H:%M:%SZ' format when the certificate is no longer valid. # noqa: E501 - - :return: The valid_to_timestamp of this OauthCertificates. # noqa: E501 - :rtype: str - """ - return self._valid_to_timestamp - - @valid_to_timestamp.setter - def valid_to_timestamp(self, valid_to_timestamp): - """Sets the valid_to_timestamp of this OauthCertificates. - - The date in '%Y-%m-%dT%H:%M:%SZ' format when the certificate is no longer valid. # noqa: E501 - - :param valid_to_timestamp: The valid_to_timestamp of this OauthCertificates. # noqa: E501 - :type: str - """ - if valid_to_timestamp is not None and len(valid_to_timestamp) > 255: - raise ValueError("Invalid value for `valid_to_timestamp`, length must be less than or equal to `255`") # noqa: E501 - if valid_to_timestamp is not None and len(valid_to_timestamp) < 1: - raise ValueError("Invalid value for `valid_to_timestamp`, length must be greater than or equal to `1`") # noqa: E501 - - self._valid_to_timestamp = valid_to_timestamp - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(OauthCertificates, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, OauthCertificates): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_certificates_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_certificates_extended.py deleted file mode 100644 index a6e7d8c3d..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_certificates_extended.py +++ /dev/null @@ -1,115 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class OauthCertificatesExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'certificates': 'list[OauthCertificates]' - } - - attribute_map = { - 'certificates': 'certificates' - } - - def __init__(self, certificates=None): # noqa: E501 - """OauthCertificatesExtended - a model defined in Swagger""" # noqa: E501 - - self._certificates = None - self.discriminator = None - - if certificates is not None: - self.certificates = certificates - - @property - def certificates(self): - """Gets the certificates of this OauthCertificatesExtended. # noqa: E501 - - - :return: The certificates of this OauthCertificatesExtended. # noqa: E501 - :rtype: list[OauthCertificates] - """ - return self._certificates - - @certificates.setter - def certificates(self, certificates): - """Sets the certificates of this OauthCertificatesExtended. - - - :param certificates: The certificates of this OauthCertificatesExtended. # noqa: E501 - :type: list[OauthCertificates] - """ - - self._certificates = certificates - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(OauthCertificatesExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, OauthCertificatesExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_oauth2_client.py b/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_oauth2_client.py deleted file mode 100644 index 2fee59666..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_oauth2_client.py +++ /dev/null @@ -1,239 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class OauthOauth2Client(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'authorization_code_flow': 'bool', - 'client_name': 'str', - 'client_security_level': 'str', - 'redirect_uris': 'list[str]', - 'token_exchange_enabled': 'bool' - } - - attribute_map = { - 'authorization_code_flow': 'authorization_code_flow', - 'client_name': 'client_name', - 'client_security_level': 'client_security_level', - 'redirect_uris': 'redirect_uris', - 'token_exchange_enabled': 'token_exchange_enabled' - } - - def __init__(self, authorization_code_flow=None, client_name=None, client_security_level=None, redirect_uris=None, token_exchange_enabled=None): # noqa: E501 - """OauthOauth2Client - a model defined in Swagger""" # noqa: E501 - - self._authorization_code_flow = None - self._client_name = None - self._client_security_level = None - self._redirect_uris = None - self._token_exchange_enabled = None - self.discriminator = None - - if authorization_code_flow is not None: - self.authorization_code_flow = authorization_code_flow - if client_name is not None: - self.client_name = client_name - if client_security_level is not None: - self.client_security_level = client_security_level - if redirect_uris is not None: - self.redirect_uris = redirect_uris - if token_exchange_enabled is not None: - self.token_exchange_enabled = token_exchange_enabled - - @property - def authorization_code_flow(self): - """Gets the authorization_code_flow of this OauthOauth2Client. # noqa: E501 - - When true, the authorization code flow will be supported. # noqa: E501 - - :return: The authorization_code_flow of this OauthOauth2Client. # noqa: E501 - :rtype: bool - """ - return self._authorization_code_flow - - @authorization_code_flow.setter - def authorization_code_flow(self, authorization_code_flow): - """Sets the authorization_code_flow of this OauthOauth2Client. - - When true, the authorization code flow will be supported. # noqa: E501 - - :param authorization_code_flow: The authorization_code_flow of this OauthOauth2Client. # noqa: E501 - :type: bool - """ - - self._authorization_code_flow = authorization_code_flow - - @property - def client_name(self): - """Gets the client_name of this OauthOauth2Client. # noqa: E501 - - User friendly name for OAuth2 client. # noqa: E501 - - :return: The client_name of this OauthOauth2Client. # noqa: E501 - :rtype: str - """ - return self._client_name - - @client_name.setter - def client_name(self, client_name): - """Sets the client_name of this OauthOauth2Client. - - User friendly name for OAuth2 client. # noqa: E501 - - :param client_name: The client_name of this OauthOauth2Client. # noqa: E501 - :type: str - """ - if client_name is not None and len(client_name) > 255: - raise ValueError("Invalid value for `client_name`, length must be less than or equal to `255`") # noqa: E501 - if client_name is not None and len(client_name) < 1: - raise ValueError("Invalid value for `client_name`, length must be greater than or equal to `1`") # noqa: E501 - - self._client_name = client_name - - @property - def client_security_level(self): - """Gets the client_security_level of this OauthOauth2Client. # noqa: E501 - - TRUSTED if the refresh token can be returned in the client credential flow. # noqa: E501 - - :return: The client_security_level of this OauthOauth2Client. # noqa: E501 - :rtype: str - """ - return self._client_security_level - - @client_security_level.setter - def client_security_level(self, client_security_level): - """Sets the client_security_level of this OauthOauth2Client. - - TRUSTED if the refresh token can be returned in the client credential flow. # noqa: E501 - - :param client_security_level: The client_security_level of this OauthOauth2Client. # noqa: E501 - :type: str - """ - allowed_values = ["TRUSTED", "REGULAR"] # noqa: E501 - if client_security_level not in allowed_values: - raise ValueError( - "Invalid value for `client_security_level` ({0}), must be one of {1}" # noqa: E501 - .format(client_security_level, allowed_values) - ) - - self._client_security_level = client_security_level - - @property - def redirect_uris(self): - """Gets the redirect_uris of this OauthOauth2Client. # noqa: E501 - - Array of URIs to which the client wants to redirect. # noqa: E501 - - :return: The redirect_uris of this OauthOauth2Client. # noqa: E501 - :rtype: list[str] - """ - return self._redirect_uris - - @redirect_uris.setter - def redirect_uris(self, redirect_uris): - """Sets the redirect_uris of this OauthOauth2Client. - - Array of URIs to which the client wants to redirect. # noqa: E501 - - :param redirect_uris: The redirect_uris of this OauthOauth2Client. # noqa: E501 - :type: list[str] - """ - - self._redirect_uris = redirect_uris - - @property - def token_exchange_enabled(self): - """Gets the token_exchange_enabled of this OauthOauth2Client. # noqa: E501 - - When true, the token exchange flow will be supported. # noqa: E501 - - :return: The token_exchange_enabled of this OauthOauth2Client. # noqa: E501 - :rtype: bool - """ - return self._token_exchange_enabled - - @token_exchange_enabled.setter - def token_exchange_enabled(self, token_exchange_enabled): - """Sets the token_exchange_enabled of this OauthOauth2Client. - - When true, the token exchange flow will be supported. # noqa: E501 - - :param token_exchange_enabled: The token_exchange_enabled of this OauthOauth2Client. # noqa: E501 - :type: bool - """ - - self._token_exchange_enabled = token_exchange_enabled - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(OauthOauth2Client, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, OauthOauth2Client): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_oauth2_client_create_params.py b/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_oauth2_client_create_params.py deleted file mode 100644 index 4855147ae..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_oauth2_client_create_params.py +++ /dev/null @@ -1,243 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class OauthOauth2ClientCreateParams(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'authorization_code_flow': 'bool', - 'client_name': 'str', - 'client_security_level': 'str', - 'redirect_uris': 'list[str]', - 'token_exchange_enabled': 'bool' - } - - attribute_map = { - 'authorization_code_flow': 'authorization_code_flow', - 'client_name': 'client_name', - 'client_security_level': 'client_security_level', - 'redirect_uris': 'redirect_uris', - 'token_exchange_enabled': 'token_exchange_enabled' - } - - def __init__(self, authorization_code_flow=None, client_name=None, client_security_level=None, redirect_uris=None, token_exchange_enabled=None): # noqa: E501 - """OauthOauth2ClientCreateParams - a model defined in Swagger""" # noqa: E501 - - self._authorization_code_flow = None - self._client_name = None - self._client_security_level = None - self._redirect_uris = None - self._token_exchange_enabled = None - self.discriminator = None - - self.authorization_code_flow = authorization_code_flow - self.client_name = client_name - if client_security_level is not None: - self.client_security_level = client_security_level - self.redirect_uris = redirect_uris - self.token_exchange_enabled = token_exchange_enabled - - @property - def authorization_code_flow(self): - """Gets the authorization_code_flow of this OauthOauth2ClientCreateParams. # noqa: E501 - - When true, the authorization code flow will be supported. # noqa: E501 - - :return: The authorization_code_flow of this OauthOauth2ClientCreateParams. # noqa: E501 - :rtype: bool - """ - return self._authorization_code_flow - - @authorization_code_flow.setter - def authorization_code_flow(self, authorization_code_flow): - """Sets the authorization_code_flow of this OauthOauth2ClientCreateParams. - - When true, the authorization code flow will be supported. # noqa: E501 - - :param authorization_code_flow: The authorization_code_flow of this OauthOauth2ClientCreateParams. # noqa: E501 - :type: bool - """ - if authorization_code_flow is None: - raise ValueError("Invalid value for `authorization_code_flow`, must not be `None`") # noqa: E501 - - self._authorization_code_flow = authorization_code_flow - - @property - def client_name(self): - """Gets the client_name of this OauthOauth2ClientCreateParams. # noqa: E501 - - User friendly name for OAuth2 client. # noqa: E501 - - :return: The client_name of this OauthOauth2ClientCreateParams. # noqa: E501 - :rtype: str - """ - return self._client_name - - @client_name.setter - def client_name(self, client_name): - """Sets the client_name of this OauthOauth2ClientCreateParams. - - User friendly name for OAuth2 client. # noqa: E501 - - :param client_name: The client_name of this OauthOauth2ClientCreateParams. # noqa: E501 - :type: str - """ - if client_name is None: - raise ValueError("Invalid value for `client_name`, must not be `None`") # noqa: E501 - if client_name is not None and len(client_name) > 255: - raise ValueError("Invalid value for `client_name`, length must be less than or equal to `255`") # noqa: E501 - if client_name is not None and len(client_name) < 1: - raise ValueError("Invalid value for `client_name`, length must be greater than or equal to `1`") # noqa: E501 - - self._client_name = client_name - - @property - def client_security_level(self): - """Gets the client_security_level of this OauthOauth2ClientCreateParams. # noqa: E501 - - TRUSTED if the refresh token can be returned in the client credential flow. # noqa: E501 - - :return: The client_security_level of this OauthOauth2ClientCreateParams. # noqa: E501 - :rtype: str - """ - return self._client_security_level - - @client_security_level.setter - def client_security_level(self, client_security_level): - """Sets the client_security_level of this OauthOauth2ClientCreateParams. - - TRUSTED if the refresh token can be returned in the client credential flow. # noqa: E501 - - :param client_security_level: The client_security_level of this OauthOauth2ClientCreateParams. # noqa: E501 - :type: str - """ - allowed_values = ["TRUSTED", "REGULAR"] # noqa: E501 - if client_security_level not in allowed_values: - raise ValueError( - "Invalid value for `client_security_level` ({0}), must be one of {1}" # noqa: E501 - .format(client_security_level, allowed_values) - ) - - self._client_security_level = client_security_level - - @property - def redirect_uris(self): - """Gets the redirect_uris of this OauthOauth2ClientCreateParams. # noqa: E501 - - Array of URIs to which the client wants to redirect. # noqa: E501 - - :return: The redirect_uris of this OauthOauth2ClientCreateParams. # noqa: E501 - :rtype: list[str] - """ - return self._redirect_uris - - @redirect_uris.setter - def redirect_uris(self, redirect_uris): - """Sets the redirect_uris of this OauthOauth2ClientCreateParams. - - Array of URIs to which the client wants to redirect. # noqa: E501 - - :param redirect_uris: The redirect_uris of this OauthOauth2ClientCreateParams. # noqa: E501 - :type: list[str] - """ - if redirect_uris is None: - raise ValueError("Invalid value for `redirect_uris`, must not be `None`") # noqa: E501 - - self._redirect_uris = redirect_uris - - @property - def token_exchange_enabled(self): - """Gets the token_exchange_enabled of this OauthOauth2ClientCreateParams. # noqa: E501 - - When true, the token exchange flow will be supported. # noqa: E501 - - :return: The token_exchange_enabled of this OauthOauth2ClientCreateParams. # noqa: E501 - :rtype: bool - """ - return self._token_exchange_enabled - - @token_exchange_enabled.setter - def token_exchange_enabled(self, token_exchange_enabled): - """Sets the token_exchange_enabled of this OauthOauth2ClientCreateParams. - - When true, the token exchange flow will be supported. # noqa: E501 - - :param token_exchange_enabled: The token_exchange_enabled of this OauthOauth2ClientCreateParams. # noqa: E501 - :type: bool - """ - if token_exchange_enabled is None: - raise ValueError("Invalid value for `token_exchange_enabled`, must not be `None`") # noqa: E501 - - self._token_exchange_enabled = token_exchange_enabled - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(OauthOauth2ClientCreateParams, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, OauthOauth2ClientCreateParams): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_oauth2_clients.py b/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_oauth2_clients.py deleted file mode 100644 index 19f2ad951..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_oauth2_clients.py +++ /dev/null @@ -1,271 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class OauthOauth2Clients(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'authorization_code_flow': 'bool', - 'client_name': 'str', - 'client_security_level': 'str', - 'id': 'str', - 'redirect_uris': 'list[str]', - 'token_exchange_enabled': 'bool' - } - - attribute_map = { - 'authorization_code_flow': 'authorization_code_flow', - 'client_name': 'client_name', - 'client_security_level': 'client_security_level', - 'id': 'id', - 'redirect_uris': 'redirect_uris', - 'token_exchange_enabled': 'token_exchange_enabled' - } - - def __init__(self, authorization_code_flow=None, client_name=None, client_security_level=None, id=None, redirect_uris=None, token_exchange_enabled=None): # noqa: E501 - """OauthOauth2Clients - a model defined in Swagger""" # noqa: E501 - - self._authorization_code_flow = None - self._client_name = None - self._client_security_level = None - self._id = None - self._redirect_uris = None - self._token_exchange_enabled = None - self.discriminator = None - - if authorization_code_flow is not None: - self.authorization_code_flow = authorization_code_flow - if client_name is not None: - self.client_name = client_name - if client_security_level is not None: - self.client_security_level = client_security_level - if id is not None: - self.id = id - if redirect_uris is not None: - self.redirect_uris = redirect_uris - if token_exchange_enabled is not None: - self.token_exchange_enabled = token_exchange_enabled - - @property - def authorization_code_flow(self): - """Gets the authorization_code_flow of this OauthOauth2Clients. # noqa: E501 - - When true, the authorization code flow will be supported. # noqa: E501 - - :return: The authorization_code_flow of this OauthOauth2Clients. # noqa: E501 - :rtype: bool - """ - return self._authorization_code_flow - - @authorization_code_flow.setter - def authorization_code_flow(self, authorization_code_flow): - """Sets the authorization_code_flow of this OauthOauth2Clients. - - When true, the authorization code flow will be supported. # noqa: E501 - - :param authorization_code_flow: The authorization_code_flow of this OauthOauth2Clients. # noqa: E501 - :type: bool - """ - - self._authorization_code_flow = authorization_code_flow - - @property - def client_name(self): - """Gets the client_name of this OauthOauth2Clients. # noqa: E501 - - User friendly name for OAuth2 client. # noqa: E501 - - :return: The client_name of this OauthOauth2Clients. # noqa: E501 - :rtype: str - """ - return self._client_name - - @client_name.setter - def client_name(self, client_name): - """Sets the client_name of this OauthOauth2Clients. - - User friendly name for OAuth2 client. # noqa: E501 - - :param client_name: The client_name of this OauthOauth2Clients. # noqa: E501 - :type: str - """ - if client_name is not None and len(client_name) > 255: - raise ValueError("Invalid value for `client_name`, length must be less than or equal to `255`") # noqa: E501 - if client_name is not None and len(client_name) < 1: - raise ValueError("Invalid value for `client_name`, length must be greater than or equal to `1`") # noqa: E501 - - self._client_name = client_name - - @property - def client_security_level(self): - """Gets the client_security_level of this OauthOauth2Clients. # noqa: E501 - - TRUSTED if the refresh token can be returned in the client credential flow. # noqa: E501 - - :return: The client_security_level of this OauthOauth2Clients. # noqa: E501 - :rtype: str - """ - return self._client_security_level - - @client_security_level.setter - def client_security_level(self, client_security_level): - """Sets the client_security_level of this OauthOauth2Clients. - - TRUSTED if the refresh token can be returned in the client credential flow. # noqa: E501 - - :param client_security_level: The client_security_level of this OauthOauth2Clients. # noqa: E501 - :type: str - """ - allowed_values = ["TRUSTED", "REGULAR"] # noqa: E501 - if client_security_level not in allowed_values: - raise ValueError( - "Invalid value for `client_security_level` ({0}), must be one of {1}" # noqa: E501 - .format(client_security_level, allowed_values) - ) - - self._client_security_level = client_security_level - - @property - def id(self): - """Gets the id of this OauthOauth2Clients. # noqa: E501 - - Unique identifier of OAuth2 client. # noqa: E501 - - :return: The id of this OauthOauth2Clients. # noqa: E501 - :rtype: str - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this OauthOauth2Clients. - - Unique identifier of OAuth2 client. # noqa: E501 - - :param id: The id of this OauthOauth2Clients. # noqa: E501 - :type: str - """ - if id is not None and len(id) > 255: - raise ValueError("Invalid value for `id`, length must be less than or equal to `255`") # noqa: E501 - if id is not None and len(id) < 1: - raise ValueError("Invalid value for `id`, length must be greater than or equal to `1`") # noqa: E501 - - self._id = id - - @property - def redirect_uris(self): - """Gets the redirect_uris of this OauthOauth2Clients. # noqa: E501 - - Array of URIs to which the client wants to redirect. # noqa: E501 - - :return: The redirect_uris of this OauthOauth2Clients. # noqa: E501 - :rtype: list[str] - """ - return self._redirect_uris - - @redirect_uris.setter - def redirect_uris(self, redirect_uris): - """Sets the redirect_uris of this OauthOauth2Clients. - - Array of URIs to which the client wants to redirect. # noqa: E501 - - :param redirect_uris: The redirect_uris of this OauthOauth2Clients. # noqa: E501 - :type: list[str] - """ - - self._redirect_uris = redirect_uris - - @property - def token_exchange_enabled(self): - """Gets the token_exchange_enabled of this OauthOauth2Clients. # noqa: E501 - - When true, the token exchange flow will be supported. # noqa: E501 - - :return: The token_exchange_enabled of this OauthOauth2Clients. # noqa: E501 - :rtype: bool - """ - return self._token_exchange_enabled - - @token_exchange_enabled.setter - def token_exchange_enabled(self, token_exchange_enabled): - """Sets the token_exchange_enabled of this OauthOauth2Clients. - - When true, the token exchange flow will be supported. # noqa: E501 - - :param token_exchange_enabled: The token_exchange_enabled of this OauthOauth2Clients. # noqa: E501 - :type: bool - """ - - self._token_exchange_enabled = token_exchange_enabled - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(OauthOauth2Clients, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, OauthOauth2Clients): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_oauth2_clients_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_oauth2_clients_extended.py deleted file mode 100644 index 2327df667..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_oauth2_clients_extended.py +++ /dev/null @@ -1,115 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class OauthOauth2ClientsExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'oauth2clients': 'list[OauthOauth2Clients]' - } - - attribute_map = { - 'oauth2clients': 'oauth2clients' - } - - def __init__(self, oauth2clients=None): # noqa: E501 - """OauthOauth2ClientsExtended - a model defined in Swagger""" # noqa: E501 - - self._oauth2clients = None - self.discriminator = None - - if oauth2clients is not None: - self.oauth2clients = oauth2clients - - @property - def oauth2clients(self): - """Gets the oauth2clients of this OauthOauth2ClientsExtended. # noqa: E501 - - - :return: The oauth2clients of this OauthOauth2ClientsExtended. # noqa: E501 - :rtype: list[OauthOauth2Clients] - """ - return self._oauth2clients - - @oauth2clients.setter - def oauth2clients(self, oauth2clients): - """Sets the oauth2clients of this OauthOauth2ClientsExtended. - - - :param oauth2clients: The oauth2clients of this OauthOauth2ClientsExtended. # noqa: E501 - :type: list[OauthOauth2Clients] - """ - - self._oauth2clients = oauth2clients - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(OauthOauth2ClientsExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, OauthOauth2ClientsExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_oauth2_token_exchange.py b/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_oauth2_token_exchange.py deleted file mode 100644 index bf64d1792..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_oauth2_token_exchange.py +++ /dev/null @@ -1,185 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class OauthOauth2TokenExchange(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'customer_client_id': 'str', - 'customer_metadata_url': 'str', - 'oauth2_client_id': 'str' - } - - attribute_map = { - 'customer_client_id': 'customer_client_id', - 'customer_metadata_url': 'customer_metadata_url', - 'oauth2_client_id': 'oauth2_client_id' - } - - def __init__(self, customer_client_id=None, customer_metadata_url=None, oauth2_client_id=None): # noqa: E501 - """OauthOauth2TokenExchange - a model defined in Swagger""" # noqa: E501 - - self._customer_client_id = None - self._customer_metadata_url = None - self._oauth2_client_id = None - self.discriminator = None - - if customer_client_id is not None: - self.customer_client_id = customer_client_id - if customer_metadata_url is not None: - self.customer_metadata_url = customer_metadata_url - if oauth2_client_id is not None: - self.oauth2_client_id = oauth2_client_id - - @property - def customer_client_id(self): - """Gets the customer_client_id of this OauthOauth2TokenExchange. # noqa: E501 - - External client created by customer IdP for customer server application, this client generates the original token to be exchanged. # noqa: E501 - - :return: The customer_client_id of this OauthOauth2TokenExchange. # noqa: E501 - :rtype: str - """ - return self._customer_client_id - - @customer_client_id.setter - def customer_client_id(self, customer_client_id): - """Sets the customer_client_id of this OauthOauth2TokenExchange. - - External client created by customer IdP for customer server application, this client generates the original token to be exchanged. # noqa: E501 - - :param customer_client_id: The customer_client_id of this OauthOauth2TokenExchange. # noqa: E501 - :type: str - """ - if customer_client_id is not None and len(customer_client_id) > 255: - raise ValueError("Invalid value for `customer_client_id`, length must be less than or equal to `255`") # noqa: E501 - if customer_client_id is not None and len(customer_client_id) < 1: - raise ValueError("Invalid value for `customer_client_id`, length must be greater than or equal to `1`") # noqa: E501 - - self._customer_client_id = customer_client_id - - @property - def customer_metadata_url(self): - """Gets the customer_metadata_url of this OauthOauth2TokenExchange. # noqa: E501 - - URL to query client token signing public key (or certificate). # noqa: E501 - - :return: The customer_metadata_url of this OauthOauth2TokenExchange. # noqa: E501 - :rtype: str - """ - return self._customer_metadata_url - - @customer_metadata_url.setter - def customer_metadata_url(self, customer_metadata_url): - """Sets the customer_metadata_url of this OauthOauth2TokenExchange. - - URL to query client token signing public key (or certificate). # noqa: E501 - - :param customer_metadata_url: The customer_metadata_url of this OauthOauth2TokenExchange. # noqa: E501 - :type: str - """ - if customer_metadata_url is not None and len(customer_metadata_url) > 2048: - raise ValueError("Invalid value for `customer_metadata_url`, length must be less than or equal to `2048`") # noqa: E501 - if customer_metadata_url is not None and len(customer_metadata_url) < 1: - raise ValueError("Invalid value for `customer_metadata_url`, length must be greater than or equal to `1`") # noqa: E501 - - self._customer_metadata_url = customer_metadata_url - - @property - def oauth2_client_id(self): - """Gets the oauth2_client_id of this OauthOauth2TokenExchange. # noqa: E501 - - Unique identifier of the OAuth2 client. # noqa: E501 - - :return: The oauth2_client_id of this OauthOauth2TokenExchange. # noqa: E501 - :rtype: str - """ - return self._oauth2_client_id - - @oauth2_client_id.setter - def oauth2_client_id(self, oauth2_client_id): - """Sets the oauth2_client_id of this OauthOauth2TokenExchange. - - Unique identifier of the OAuth2 client. # noqa: E501 - - :param oauth2_client_id: The oauth2_client_id of this OauthOauth2TokenExchange. # noqa: E501 - :type: str - """ - if oauth2_client_id is not None and len(oauth2_client_id) > 255: - raise ValueError("Invalid value for `oauth2_client_id`, length must be less than or equal to `255`") # noqa: E501 - if oauth2_client_id is not None and len(oauth2_client_id) < 1: - raise ValueError("Invalid value for `oauth2_client_id`, length must be greater than or equal to `1`") # noqa: E501 - - self._oauth2_client_id = oauth2_client_id - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(OauthOauth2TokenExchange, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, OauthOauth2TokenExchange): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_oauth2_token_exchange_create_params.py b/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_oauth2_token_exchange_create_params.py deleted file mode 100644 index e6ff17e8b..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_oauth2_token_exchange_create_params.py +++ /dev/null @@ -1,188 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class OauthOauth2TokenExchangeCreateParams(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'customer_client_id': 'str', - 'customer_metadata_url': 'str', - 'oauth2_client_id': 'str' - } - - attribute_map = { - 'customer_client_id': 'customer_client_id', - 'customer_metadata_url': 'customer_metadata_url', - 'oauth2_client_id': 'oauth2_client_id' - } - - def __init__(self, customer_client_id=None, customer_metadata_url=None, oauth2_client_id=None): # noqa: E501 - """OauthOauth2TokenExchangeCreateParams - a model defined in Swagger""" # noqa: E501 - - self._customer_client_id = None - self._customer_metadata_url = None - self._oauth2_client_id = None - self.discriminator = None - - self.customer_client_id = customer_client_id - self.customer_metadata_url = customer_metadata_url - self.oauth2_client_id = oauth2_client_id - - @property - def customer_client_id(self): - """Gets the customer_client_id of this OauthOauth2TokenExchangeCreateParams. # noqa: E501 - - External client created by customer IdP for customer server application, this client generates the original token to be exchanged. # noqa: E501 - - :return: The customer_client_id of this OauthOauth2TokenExchangeCreateParams. # noqa: E501 - :rtype: str - """ - return self._customer_client_id - - @customer_client_id.setter - def customer_client_id(self, customer_client_id): - """Sets the customer_client_id of this OauthOauth2TokenExchangeCreateParams. - - External client created by customer IdP for customer server application, this client generates the original token to be exchanged. # noqa: E501 - - :param customer_client_id: The customer_client_id of this OauthOauth2TokenExchangeCreateParams. # noqa: E501 - :type: str - """ - if customer_client_id is None: - raise ValueError("Invalid value for `customer_client_id`, must not be `None`") # noqa: E501 - if customer_client_id is not None and len(customer_client_id) > 255: - raise ValueError("Invalid value for `customer_client_id`, length must be less than or equal to `255`") # noqa: E501 - if customer_client_id is not None and len(customer_client_id) < 1: - raise ValueError("Invalid value for `customer_client_id`, length must be greater than or equal to `1`") # noqa: E501 - - self._customer_client_id = customer_client_id - - @property - def customer_metadata_url(self): - """Gets the customer_metadata_url of this OauthOauth2TokenExchangeCreateParams. # noqa: E501 - - URL to query client token signing public key (or certificate). # noqa: E501 - - :return: The customer_metadata_url of this OauthOauth2TokenExchangeCreateParams. # noqa: E501 - :rtype: str - """ - return self._customer_metadata_url - - @customer_metadata_url.setter - def customer_metadata_url(self, customer_metadata_url): - """Sets the customer_metadata_url of this OauthOauth2TokenExchangeCreateParams. - - URL to query client token signing public key (or certificate). # noqa: E501 - - :param customer_metadata_url: The customer_metadata_url of this OauthOauth2TokenExchangeCreateParams. # noqa: E501 - :type: str - """ - if customer_metadata_url is None: - raise ValueError("Invalid value for `customer_metadata_url`, must not be `None`") # noqa: E501 - if customer_metadata_url is not None and len(customer_metadata_url) > 2048: - raise ValueError("Invalid value for `customer_metadata_url`, length must be less than or equal to `2048`") # noqa: E501 - if customer_metadata_url is not None and len(customer_metadata_url) < 1: - raise ValueError("Invalid value for `customer_metadata_url`, length must be greater than or equal to `1`") # noqa: E501 - - self._customer_metadata_url = customer_metadata_url - - @property - def oauth2_client_id(self): - """Gets the oauth2_client_id of this OauthOauth2TokenExchangeCreateParams. # noqa: E501 - - Unique identifier of the OAuth2 client. # noqa: E501 - - :return: The oauth2_client_id of this OauthOauth2TokenExchangeCreateParams. # noqa: E501 - :rtype: str - """ - return self._oauth2_client_id - - @oauth2_client_id.setter - def oauth2_client_id(self, oauth2_client_id): - """Sets the oauth2_client_id of this OauthOauth2TokenExchangeCreateParams. - - Unique identifier of the OAuth2 client. # noqa: E501 - - :param oauth2_client_id: The oauth2_client_id of this OauthOauth2TokenExchangeCreateParams. # noqa: E501 - :type: str - """ - if oauth2_client_id is None: - raise ValueError("Invalid value for `oauth2_client_id`, must not be `None`") # noqa: E501 - if oauth2_client_id is not None and len(oauth2_client_id) > 255: - raise ValueError("Invalid value for `oauth2_client_id`, length must be less than or equal to `255`") # noqa: E501 - if oauth2_client_id is not None and len(oauth2_client_id) < 1: - raise ValueError("Invalid value for `oauth2_client_id`, length must be greater than or equal to `1`") # noqa: E501 - - self._oauth2_client_id = oauth2_client_id - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(OauthOauth2TokenExchangeCreateParams, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, OauthOauth2TokenExchangeCreateParams): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_oauth2_token_exchanges.py b/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_oauth2_token_exchanges.py deleted file mode 100644 index 380e7c265..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_oauth2_token_exchanges.py +++ /dev/null @@ -1,217 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class OauthOauth2TokenExchanges(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'customer_client_id': 'str', - 'customer_metadata_url': 'str', - 'id': 'str', - 'oauth2_client_id': 'str' - } - - attribute_map = { - 'customer_client_id': 'customer_client_id', - 'customer_metadata_url': 'customer_metadata_url', - 'id': 'id', - 'oauth2_client_id': 'oauth2_client_id' - } - - def __init__(self, customer_client_id=None, customer_metadata_url=None, id=None, oauth2_client_id=None): # noqa: E501 - """OauthOauth2TokenExchanges - a model defined in Swagger""" # noqa: E501 - - self._customer_client_id = None - self._customer_metadata_url = None - self._id = None - self._oauth2_client_id = None - self.discriminator = None - - if customer_client_id is not None: - self.customer_client_id = customer_client_id - if customer_metadata_url is not None: - self.customer_metadata_url = customer_metadata_url - if id is not None: - self.id = id - if oauth2_client_id is not None: - self.oauth2_client_id = oauth2_client_id - - @property - def customer_client_id(self): - """Gets the customer_client_id of this OauthOauth2TokenExchanges. # noqa: E501 - - External client created by customer IdP for customer server application, this client generates the original token to be exchanged. # noqa: E501 - - :return: The customer_client_id of this OauthOauth2TokenExchanges. # noqa: E501 - :rtype: str - """ - return self._customer_client_id - - @customer_client_id.setter - def customer_client_id(self, customer_client_id): - """Sets the customer_client_id of this OauthOauth2TokenExchanges. - - External client created by customer IdP for customer server application, this client generates the original token to be exchanged. # noqa: E501 - - :param customer_client_id: The customer_client_id of this OauthOauth2TokenExchanges. # noqa: E501 - :type: str - """ - if customer_client_id is not None and len(customer_client_id) > 255: - raise ValueError("Invalid value for `customer_client_id`, length must be less than or equal to `255`") # noqa: E501 - if customer_client_id is not None and len(customer_client_id) < 1: - raise ValueError("Invalid value for `customer_client_id`, length must be greater than or equal to `1`") # noqa: E501 - - self._customer_client_id = customer_client_id - - @property - def customer_metadata_url(self): - """Gets the customer_metadata_url of this OauthOauth2TokenExchanges. # noqa: E501 - - URL to query client token signing public key (or certificate). # noqa: E501 - - :return: The customer_metadata_url of this OauthOauth2TokenExchanges. # noqa: E501 - :rtype: str - """ - return self._customer_metadata_url - - @customer_metadata_url.setter - def customer_metadata_url(self, customer_metadata_url): - """Sets the customer_metadata_url of this OauthOauth2TokenExchanges. - - URL to query client token signing public key (or certificate). # noqa: E501 - - :param customer_metadata_url: The customer_metadata_url of this OauthOauth2TokenExchanges. # noqa: E501 - :type: str - """ - if customer_metadata_url is not None and len(customer_metadata_url) > 2048: - raise ValueError("Invalid value for `customer_metadata_url`, length must be less than or equal to `2048`") # noqa: E501 - if customer_metadata_url is not None and len(customer_metadata_url) < 1: - raise ValueError("Invalid value for `customer_metadata_url`, length must be greater than or equal to `1`") # noqa: E501 - - self._customer_metadata_url = customer_metadata_url - - @property - def id(self): - """Gets the id of this OauthOauth2TokenExchanges. # noqa: E501 - - Unique identifier of the OAuth2 Token Exchange resource. # noqa: E501 - - :return: The id of this OauthOauth2TokenExchanges. # noqa: E501 - :rtype: str - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this OauthOauth2TokenExchanges. - - Unique identifier of the OAuth2 Token Exchange resource. # noqa: E501 - - :param id: The id of this OauthOauth2TokenExchanges. # noqa: E501 - :type: str - """ - if id is not None and len(id) > 255: - raise ValueError("Invalid value for `id`, length must be less than or equal to `255`") # noqa: E501 - if id is not None and len(id) < 1: - raise ValueError("Invalid value for `id`, length must be greater than or equal to `1`") # noqa: E501 - - self._id = id - - @property - def oauth2_client_id(self): - """Gets the oauth2_client_id of this OauthOauth2TokenExchanges. # noqa: E501 - - Unique identifier of the OAuth2 client. # noqa: E501 - - :return: The oauth2_client_id of this OauthOauth2TokenExchanges. # noqa: E501 - :rtype: str - """ - return self._oauth2_client_id - - @oauth2_client_id.setter - def oauth2_client_id(self, oauth2_client_id): - """Sets the oauth2_client_id of this OauthOauth2TokenExchanges. - - Unique identifier of the OAuth2 client. # noqa: E501 - - :param oauth2_client_id: The oauth2_client_id of this OauthOauth2TokenExchanges. # noqa: E501 - :type: str - """ - if oauth2_client_id is not None and len(oauth2_client_id) > 255: - raise ValueError("Invalid value for `oauth2_client_id`, length must be less than or equal to `255`") # noqa: E501 - if oauth2_client_id is not None and len(oauth2_client_id) < 1: - raise ValueError("Invalid value for `oauth2_client_id`, length must be greater than or equal to `1`") # noqa: E501 - - self._oauth2_client_id = oauth2_client_id - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(OauthOauth2TokenExchanges, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, OauthOauth2TokenExchanges): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_oauth2_token_exchanges_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_oauth2_token_exchanges_extended.py deleted file mode 100644 index a7b8a9b74..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_oauth2_token_exchanges_extended.py +++ /dev/null @@ -1,115 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class OauthOauth2TokenExchangesExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'oauth2_token_exchanges': 'list[OauthOauth2TokenExchanges]' - } - - attribute_map = { - 'oauth2_token_exchanges': 'oauth2_token_exchanges' - } - - def __init__(self, oauth2_token_exchanges=None): # noqa: E501 - """OauthOauth2TokenExchangesExtended - a model defined in Swagger""" # noqa: E501 - - self._oauth2_token_exchanges = None - self.discriminator = None - - if oauth2_token_exchanges is not None: - self.oauth2_token_exchanges = oauth2_token_exchanges - - @property - def oauth2_token_exchanges(self): - """Gets the oauth2_token_exchanges of this OauthOauth2TokenExchangesExtended. # noqa: E501 - - - :return: The oauth2_token_exchanges of this OauthOauth2TokenExchangesExtended. # noqa: E501 - :rtype: list[OauthOauth2TokenExchanges] - """ - return self._oauth2_token_exchanges - - @oauth2_token_exchanges.setter - def oauth2_token_exchanges(self, oauth2_token_exchanges): - """Sets the oauth2_token_exchanges of this OauthOauth2TokenExchangesExtended. - - - :param oauth2_token_exchanges: The oauth2_token_exchanges of this OauthOauth2TokenExchangesExtended. # noqa: E501 - :type: list[OauthOauth2TokenExchanges] - """ - - self._oauth2_token_exchanges = oauth2_token_exchanges - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(OauthOauth2TokenExchangesExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, OauthOauth2TokenExchangesExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_settings.py b/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_settings.py deleted file mode 100644 index 516df71a9..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_settings.py +++ /dev/null @@ -1,117 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class OauthSettings(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'settings': 'OauthSettingsSettings' - } - - attribute_map = { - 'settings': 'settings' - } - - def __init__(self, settings=None): # noqa: E501 - """OauthSettings - a model defined in Swagger""" # noqa: E501 - - self._settings = None - self.discriminator = None - - if settings is not None: - self.settings = settings - - @property - def settings(self): - """Gets the settings of this OauthSettings. # noqa: E501 - - Settings for Platform API OAuth function. # noqa: E501 - - :return: The settings of this OauthSettings. # noqa: E501 - :rtype: OauthSettingsSettings - """ - return self._settings - - @settings.setter - def settings(self, settings): - """Sets the settings of this OauthSettings. - - Settings for Platform API OAuth function. # noqa: E501 - - :param settings: The settings of this OauthSettings. # noqa: E501 - :type: OauthSettingsSettings - """ - - self._settings = settings - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(OauthSettings, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, OauthSettings): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_settings_settings.py b/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_settings_settings.py deleted file mode 100644 index b096fd40b..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/oauth_settings_settings.py +++ /dev/null @@ -1,117 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class OauthSettingsSettings(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'oauth_enabled': 'bool' - } - - attribute_map = { - 'oauth_enabled': 'oauth_enabled' - } - - def __init__(self, oauth_enabled=None): # noqa: E501 - """OauthSettingsSettings - a model defined in Swagger""" # noqa: E501 - - self._oauth_enabled = None - self.discriminator = None - - if oauth_enabled is not None: - self.oauth_enabled = oauth_enabled - - @property - def oauth_enabled(self): - """Gets the oauth_enabled of this OauthSettingsSettings. # noqa: E501 - - Indicates whether OAuth is enabled for the access zone. # noqa: E501 - - :return: The oauth_enabled of this OauthSettingsSettings. # noqa: E501 - :rtype: bool - """ - return self._oauth_enabled - - @oauth_enabled.setter - def oauth_enabled(self, oauth_enabled): - """Sets the oauth_enabled of this OauthSettingsSettings. - - Indicates whether OAuth is enabled for the access zone. # noqa: E501 - - :param oauth_enabled: The oauth_enabled of this OauthSettingsSettings. # noqa: E501 - :type: bool - """ - - self._oauth_enabled = oauth_enabled - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(OauthSettingsSettings, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, OauthSettingsSettings): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/os_security.py b/isilon_sdk/isilon_sdk/v9_11_0/models/os_security.py deleted file mode 100644 index c0dd20fb0..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/os_security.py +++ /dev/null @@ -1,147 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class OsSecurity(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'nodes': 'list[OsSecurityNode]', - 'total': 'int' - } - - attribute_map = { - 'nodes': 'nodes', - 'total': 'total' - } - - def __init__(self, nodes=None, total=None): # noqa: E501 - """OsSecurity - a model defined in Swagger""" # noqa: E501 - - self._nodes = None - self._total = None - self.discriminator = None - - if nodes is not None: - self.nodes = nodes - if total is not None: - self.total = total - - @property - def nodes(self): - """Gets the nodes of this OsSecurity. # noqa: E501 - - - :return: The nodes of this OsSecurity. # noqa: E501 - :rtype: list[OsSecurityNode] - """ - return self._nodes - - @nodes.setter - def nodes(self, nodes): - """Sets the nodes of this OsSecurity. - - - :param nodes: The nodes of this OsSecurity. # noqa: E501 - :type: list[OsSecurityNode] - """ - - self._nodes = nodes - - @property - def total(self): - """Gets the total of this OsSecurity. # noqa: E501 - - Total number of items available. # noqa: E501 - - :return: The total of this OsSecurity. # noqa: E501 - :rtype: int - """ - return self._total - - @total.setter - def total(self, total): - """Sets the total of this OsSecurity. - - Total number of items available. # noqa: E501 - - :param total: The total of this OsSecurity. # noqa: E501 - :type: int - """ - if total is not None and total > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `total`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if total is not None and total < 0: # noqa: E501 - raise ValueError("Invalid value for `total`, must be a value greater than or equal to `0`") # noqa: E501 - - self._total = total - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(OsSecurity, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, OsSecurity): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/os_security_node.py b/isilon_sdk/isilon_sdk/v9_11_0/models/os_security_node.py deleted file mode 100644 index f2aa44ea1..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/os_security_node.py +++ /dev/null @@ -1,473 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class OsSecurityNode(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'id': 'int', - 'kern_elf32_allow_wx': 'bool', - 'kern_elf32_aslr_enable': 'bool', - 'kern_elf32_aslr_pie_enable': 'bool', - 'kern_elf32_aslr_stack_gap': 'int', - 'kern_elf32_nxstack': 'bool', - 'kern_elf64_allow_wx': 'bool', - 'kern_elf64_aslr_enable': 'bool', - 'kern_elf64_aslr_pie_enable': 'bool', - 'kern_elf64_aslr_stack_gap': 'int', - 'kern_elf64_nxstack': 'bool', - 'lnn': 'int', - 'vm_aslr_restarts': 'int' - } - - attribute_map = { - 'id': 'id', - 'kern_elf32_allow_wx': 'kern.elf32.allow_wx', - 'kern_elf32_aslr_enable': 'kern.elf32.aslr.enable', - 'kern_elf32_aslr_pie_enable': 'kern.elf32.aslr.pie_enable', - 'kern_elf32_aslr_stack_gap': 'kern.elf32.aslr.stack_gap', - 'kern_elf32_nxstack': 'kern.elf32.nxstack', - 'kern_elf64_allow_wx': 'kern.elf64.allow_wx', - 'kern_elf64_aslr_enable': 'kern.elf64.aslr.enable', - 'kern_elf64_aslr_pie_enable': 'kern.elf64.aslr.pie_enable', - 'kern_elf64_aslr_stack_gap': 'kern.elf64.aslr.stack_gap', - 'kern_elf64_nxstack': 'kern.elf64.nxstack', - 'lnn': 'lnn', - 'vm_aslr_restarts': 'vm.aslr_restarts' - } - - def __init__(self, id=None, kern_elf32_allow_wx=None, kern_elf32_aslr_enable=None, kern_elf32_aslr_pie_enable=None, kern_elf32_aslr_stack_gap=None, kern_elf32_nxstack=None, kern_elf64_allow_wx=None, kern_elf64_aslr_enable=None, kern_elf64_aslr_pie_enable=None, kern_elf64_aslr_stack_gap=None, kern_elf64_nxstack=None, lnn=None, vm_aslr_restarts=None): # noqa: E501 - """OsSecurityNode - a model defined in Swagger""" # noqa: E501 - - self._id = None - self._kern_elf32_allow_wx = None - self._kern_elf32_aslr_enable = None - self._kern_elf32_aslr_pie_enable = None - self._kern_elf32_aslr_stack_gap = None - self._kern_elf32_nxstack = None - self._kern_elf64_allow_wx = None - self._kern_elf64_aslr_enable = None - self._kern_elf64_aslr_pie_enable = None - self._kern_elf64_aslr_stack_gap = None - self._kern_elf64_nxstack = None - self._lnn = None - self._vm_aslr_restarts = None - self.discriminator = None - - if id is not None: - self.id = id - if kern_elf32_allow_wx is not None: - self.kern_elf32_allow_wx = kern_elf32_allow_wx - if kern_elf32_aslr_enable is not None: - self.kern_elf32_aslr_enable = kern_elf32_aslr_enable - if kern_elf32_aslr_pie_enable is not None: - self.kern_elf32_aslr_pie_enable = kern_elf32_aslr_pie_enable - if kern_elf32_aslr_stack_gap is not None: - self.kern_elf32_aslr_stack_gap = kern_elf32_aslr_stack_gap - if kern_elf32_nxstack is not None: - self.kern_elf32_nxstack = kern_elf32_nxstack - if kern_elf64_allow_wx is not None: - self.kern_elf64_allow_wx = kern_elf64_allow_wx - if kern_elf64_aslr_enable is not None: - self.kern_elf64_aslr_enable = kern_elf64_aslr_enable - if kern_elf64_aslr_pie_enable is not None: - self.kern_elf64_aslr_pie_enable = kern_elf64_aslr_pie_enable - if kern_elf64_aslr_stack_gap is not None: - self.kern_elf64_aslr_stack_gap = kern_elf64_aslr_stack_gap - if kern_elf64_nxstack is not None: - self.kern_elf64_nxstack = kern_elf64_nxstack - if lnn is not None: - self.lnn = lnn - if vm_aslr_restarts is not None: - self.vm_aslr_restarts = vm_aslr_restarts - - @property - def id(self): - """Gets the id of this OsSecurityNode. # noqa: E501 - - Sequence ID. # noqa: E501 - - :return: The id of this OsSecurityNode. # noqa: E501 - :rtype: int - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this OsSecurityNode. - - Sequence ID. # noqa: E501 - - :param id: The id of this OsSecurityNode. # noqa: E501 - :type: int - """ - if id is not None and id > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `id`, must be a value less than or equal to `4294967295`") # noqa: E501 - if id is not None and id < 1: # noqa: E501 - raise ValueError("Invalid value for `id`, must be a value greater than or equal to `1`") # noqa: E501 - - self._id = id - - @property - def kern_elf32_allow_wx(self): - """Gets the kern_elf32_allow_wx of this OsSecurityNode. # noqa: E501 - - [ELF32] Allow pages to be mapped simultaneously writable and executable. # noqa: E501 - - :return: The kern_elf32_allow_wx of this OsSecurityNode. # noqa: E501 - :rtype: bool - """ - return self._kern_elf32_allow_wx - - @kern_elf32_allow_wx.setter - def kern_elf32_allow_wx(self, kern_elf32_allow_wx): - """Sets the kern_elf32_allow_wx of this OsSecurityNode. - - [ELF32] Allow pages to be mapped simultaneously writable and executable. # noqa: E501 - - :param kern_elf32_allow_wx: The kern_elf32_allow_wx of this OsSecurityNode. # noqa: E501 - :type: bool - """ - - self._kern_elf32_allow_wx = kern_elf32_allow_wx - - @property - def kern_elf32_aslr_enable(self): - """Gets the kern_elf32_aslr_enable of this OsSecurityNode. # noqa: E501 - - [ELF32] Enable address map randomization. # noqa: E501 - - :return: The kern_elf32_aslr_enable of this OsSecurityNode. # noqa: E501 - :rtype: bool - """ - return self._kern_elf32_aslr_enable - - @kern_elf32_aslr_enable.setter - def kern_elf32_aslr_enable(self, kern_elf32_aslr_enable): - """Sets the kern_elf32_aslr_enable of this OsSecurityNode. - - [ELF32] Enable address map randomization. # noqa: E501 - - :param kern_elf32_aslr_enable: The kern_elf32_aslr_enable of this OsSecurityNode. # noqa: E501 - :type: bool - """ - - self._kern_elf32_aslr_enable = kern_elf32_aslr_enable - - @property - def kern_elf32_aslr_pie_enable(self): - """Gets the kern_elf32_aslr_pie_enable of this OsSecurityNode. # noqa: E501 - - [ELF32] Enable address map randomization for PIE binaries. # noqa: E501 - - :return: The kern_elf32_aslr_pie_enable of this OsSecurityNode. # noqa: E501 - :rtype: bool - """ - return self._kern_elf32_aslr_pie_enable - - @kern_elf32_aslr_pie_enable.setter - def kern_elf32_aslr_pie_enable(self, kern_elf32_aslr_pie_enable): - """Sets the kern_elf32_aslr_pie_enable of this OsSecurityNode. - - [ELF32] Enable address map randomization for PIE binaries. # noqa: E501 - - :param kern_elf32_aslr_pie_enable: The kern_elf32_aslr_pie_enable of this OsSecurityNode. # noqa: E501 - :type: bool - """ - - self._kern_elf32_aslr_pie_enable = kern_elf32_aslr_pie_enable - - @property - def kern_elf32_aslr_stack_gap(self): - """Gets the kern_elf32_aslr_stack_gap of this OsSecurityNode. # noqa: E501 - - [ELF32] Maximum percentage of main stack to waste on a random gap. # noqa: E501 - - :return: The kern_elf32_aslr_stack_gap of this OsSecurityNode. # noqa: E501 - :rtype: int - """ - return self._kern_elf32_aslr_stack_gap - - @kern_elf32_aslr_stack_gap.setter - def kern_elf32_aslr_stack_gap(self, kern_elf32_aslr_stack_gap): - """Sets the kern_elf32_aslr_stack_gap of this OsSecurityNode. - - [ELF32] Maximum percentage of main stack to waste on a random gap. # noqa: E501 - - :param kern_elf32_aslr_stack_gap: The kern_elf32_aslr_stack_gap of this OsSecurityNode. # noqa: E501 - :type: int - """ - if kern_elf32_aslr_stack_gap is not None and kern_elf32_aslr_stack_gap > 100: # noqa: E501 - raise ValueError("Invalid value for `kern_elf32_aslr_stack_gap`, must be a value less than or equal to `100`") # noqa: E501 - if kern_elf32_aslr_stack_gap is not None and kern_elf32_aslr_stack_gap < 0: # noqa: E501 - raise ValueError("Invalid value for `kern_elf32_aslr_stack_gap`, must be a value greater than or equal to `0`") # noqa: E501 - - self._kern_elf32_aslr_stack_gap = kern_elf32_aslr_stack_gap - - @property - def kern_elf32_nxstack(self): - """Gets the kern_elf32_nxstack of this OsSecurityNode. # noqa: E501 - - [ELF32] Enable non-executable stack. # noqa: E501 - - :return: The kern_elf32_nxstack of this OsSecurityNode. # noqa: E501 - :rtype: bool - """ - return self._kern_elf32_nxstack - - @kern_elf32_nxstack.setter - def kern_elf32_nxstack(self, kern_elf32_nxstack): - """Sets the kern_elf32_nxstack of this OsSecurityNode. - - [ELF32] Enable non-executable stack. # noqa: E501 - - :param kern_elf32_nxstack: The kern_elf32_nxstack of this OsSecurityNode. # noqa: E501 - :type: bool - """ - - self._kern_elf32_nxstack = kern_elf32_nxstack - - @property - def kern_elf64_allow_wx(self): - """Gets the kern_elf64_allow_wx of this OsSecurityNode. # noqa: E501 - - [ELF64] Allow pages to be mapped simultaneously writable and executable. # noqa: E501 - - :return: The kern_elf64_allow_wx of this OsSecurityNode. # noqa: E501 - :rtype: bool - """ - return self._kern_elf64_allow_wx - - @kern_elf64_allow_wx.setter - def kern_elf64_allow_wx(self, kern_elf64_allow_wx): - """Sets the kern_elf64_allow_wx of this OsSecurityNode. - - [ELF64] Allow pages to be mapped simultaneously writable and executable. # noqa: E501 - - :param kern_elf64_allow_wx: The kern_elf64_allow_wx of this OsSecurityNode. # noqa: E501 - :type: bool - """ - - self._kern_elf64_allow_wx = kern_elf64_allow_wx - - @property - def kern_elf64_aslr_enable(self): - """Gets the kern_elf64_aslr_enable of this OsSecurityNode. # noqa: E501 - - [ELF64] Enable address map randomization. # noqa: E501 - - :return: The kern_elf64_aslr_enable of this OsSecurityNode. # noqa: E501 - :rtype: bool - """ - return self._kern_elf64_aslr_enable - - @kern_elf64_aslr_enable.setter - def kern_elf64_aslr_enable(self, kern_elf64_aslr_enable): - """Sets the kern_elf64_aslr_enable of this OsSecurityNode. - - [ELF64] Enable address map randomization. # noqa: E501 - - :param kern_elf64_aslr_enable: The kern_elf64_aslr_enable of this OsSecurityNode. # noqa: E501 - :type: bool - """ - - self._kern_elf64_aslr_enable = kern_elf64_aslr_enable - - @property - def kern_elf64_aslr_pie_enable(self): - """Gets the kern_elf64_aslr_pie_enable of this OsSecurityNode. # noqa: E501 - - [ELF64] Enable address map randomization for PIE binaries. # noqa: E501 - - :return: The kern_elf64_aslr_pie_enable of this OsSecurityNode. # noqa: E501 - :rtype: bool - """ - return self._kern_elf64_aslr_pie_enable - - @kern_elf64_aslr_pie_enable.setter - def kern_elf64_aslr_pie_enable(self, kern_elf64_aslr_pie_enable): - """Sets the kern_elf64_aslr_pie_enable of this OsSecurityNode. - - [ELF64] Enable address map randomization for PIE binaries. # noqa: E501 - - :param kern_elf64_aslr_pie_enable: The kern_elf64_aslr_pie_enable of this OsSecurityNode. # noqa: E501 - :type: bool - """ - - self._kern_elf64_aslr_pie_enable = kern_elf64_aslr_pie_enable - - @property - def kern_elf64_aslr_stack_gap(self): - """Gets the kern_elf64_aslr_stack_gap of this OsSecurityNode. # noqa: E501 - - [ELF32] Maximum percentage of main stack to waste on a random gap. # noqa: E501 - - :return: The kern_elf64_aslr_stack_gap of this OsSecurityNode. # noqa: E501 - :rtype: int - """ - return self._kern_elf64_aslr_stack_gap - - @kern_elf64_aslr_stack_gap.setter - def kern_elf64_aslr_stack_gap(self, kern_elf64_aslr_stack_gap): - """Sets the kern_elf64_aslr_stack_gap of this OsSecurityNode. - - [ELF32] Maximum percentage of main stack to waste on a random gap. # noqa: E501 - - :param kern_elf64_aslr_stack_gap: The kern_elf64_aslr_stack_gap of this OsSecurityNode. # noqa: E501 - :type: int - """ - if kern_elf64_aslr_stack_gap is not None and kern_elf64_aslr_stack_gap > 100: # noqa: E501 - raise ValueError("Invalid value for `kern_elf64_aslr_stack_gap`, must be a value less than or equal to `100`") # noqa: E501 - if kern_elf64_aslr_stack_gap is not None and kern_elf64_aslr_stack_gap < 0: # noqa: E501 - raise ValueError("Invalid value for `kern_elf64_aslr_stack_gap`, must be a value greater than or equal to `0`") # noqa: E501 - - self._kern_elf64_aslr_stack_gap = kern_elf64_aslr_stack_gap - - @property - def kern_elf64_nxstack(self): - """Gets the kern_elf64_nxstack of this OsSecurityNode. # noqa: E501 - - [ELF64] Enable non-executable stack. # noqa: E501 - - :return: The kern_elf64_nxstack of this OsSecurityNode. # noqa: E501 - :rtype: bool - """ - return self._kern_elf64_nxstack - - @kern_elf64_nxstack.setter - def kern_elf64_nxstack(self, kern_elf64_nxstack): - """Sets the kern_elf64_nxstack of this OsSecurityNode. - - [ELF64] Enable non-executable stack. # noqa: E501 - - :param kern_elf64_nxstack: The kern_elf64_nxstack of this OsSecurityNode. # noqa: E501 - :type: bool - """ - - self._kern_elf64_nxstack = kern_elf64_nxstack - - @property - def lnn(self): - """Gets the lnn of this OsSecurityNode. # noqa: E501 - - Logical Node Number. # noqa: E501 - - :return: The lnn of this OsSecurityNode. # noqa: E501 - :rtype: int - """ - return self._lnn - - @lnn.setter - def lnn(self, lnn): - """Sets the lnn of this OsSecurityNode. - - Logical Node Number. # noqa: E501 - - :param lnn: The lnn of this OsSecurityNode. # noqa: E501 - :type: int - """ - if lnn is not None and lnn > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `lnn`, must be a value less than or equal to `4294967295`") # noqa: E501 - if lnn is not None and lnn < 1: # noqa: E501 - raise ValueError("Invalid value for `lnn`, must be a value greater than or equal to `1`") # noqa: E501 - - self._lnn = lnn - - @property - def vm_aslr_restarts(self): - """Gets the vm_aslr_restarts of this OsSecurityNode. # noqa: E501 - - Number of aslr failures. # noqa: E501 - - :return: The vm_aslr_restarts of this OsSecurityNode. # noqa: E501 - :rtype: int - """ - return self._vm_aslr_restarts - - @vm_aslr_restarts.setter - def vm_aslr_restarts(self, vm_aslr_restarts): - """Sets the vm_aslr_restarts of this OsSecurityNode. - - Number of aslr failures. # noqa: E501 - - :param vm_aslr_restarts: The vm_aslr_restarts of this OsSecurityNode. # noqa: E501 - :type: int - """ - if vm_aslr_restarts is not None and vm_aslr_restarts > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `vm_aslr_restarts`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if vm_aslr_restarts is not None and vm_aslr_restarts < 0: # noqa: E501 - raise ValueError("Invalid value for `vm_aslr_restarts`, must be a value greater than or equal to `0`") # noqa: E501 - - self._vm_aslr_restarts = vm_aslr_restarts - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(OsSecurityNode, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, OsSecurityNode): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/papi_settings_child_settings.py b/isilon_sdk/isilon_sdk/v9_11_0/models/papi_settings_child_settings.py deleted file mode 100644 index 027a7d1c4..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/papi_settings_child_settings.py +++ /dev/null @@ -1,185 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class PapiSettingsChildSettings(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'child_limit': 'int', - 'child_limit_ceiling': 'int', - 'child_limit_floor': 'int' - } - - attribute_map = { - 'child_limit': 'child_limit', - 'child_limit_ceiling': 'child_limit_ceiling', - 'child_limit_floor': 'child_limit_floor' - } - - def __init__(self, child_limit=None, child_limit_ceiling=None, child_limit_floor=None): # noqa: E501 - """PapiSettingsChildSettings - a model defined in Swagger""" # noqa: E501 - - self._child_limit = None - self._child_limit_ceiling = None - self._child_limit_floor = None - self.discriminator = None - - if child_limit is not None: - self.child_limit = child_limit - if child_limit_ceiling is not None: - self.child_limit_ceiling = child_limit_ceiling - if child_limit_floor is not None: - self.child_limit_floor = child_limit_floor - - @property - def child_limit(self): - """Gets the child_limit of this PapiSettingsChildSettings. # noqa: E501 - - The number of PAPI requests that can be processed concurrently. If child_limit = 0, then it is set to child_limit_ceiling. If child_limit <= 2, then it is set to 2. # noqa: E501 - - :return: The child_limit of this PapiSettingsChildSettings. # noqa: E501 - :rtype: int - """ - return self._child_limit - - @child_limit.setter - def child_limit(self, child_limit): - """Sets the child_limit of this PapiSettingsChildSettings. - - The number of PAPI requests that can be processed concurrently. If child_limit = 0, then it is set to child_limit_ceiling. If child_limit <= 2, then it is set to 2. # noqa: E501 - - :param child_limit: The child_limit of this PapiSettingsChildSettings. # noqa: E501 - :type: int - """ - if child_limit is not None and child_limit > 65535: # noqa: E501 - raise ValueError("Invalid value for `child_limit`, must be a value less than or equal to `65535`") # noqa: E501 - if child_limit is not None and child_limit < 0: # noqa: E501 - raise ValueError("Invalid value for `child_limit`, must be a value greater than or equal to `0`") # noqa: E501 - - self._child_limit = child_limit - - @property - def child_limit_ceiling(self): - """Gets the child_limit_ceiling of this PapiSettingsChildSettings. # noqa: E501 - - Max value of child_limit that can be controlled. # noqa: E501 - - :return: The child_limit_ceiling of this PapiSettingsChildSettings. # noqa: E501 - :rtype: int - """ - return self._child_limit_ceiling - - @child_limit_ceiling.setter - def child_limit_ceiling(self, child_limit_ceiling): - """Sets the child_limit_ceiling of this PapiSettingsChildSettings. - - Max value of child_limit that can be controlled. # noqa: E501 - - :param child_limit_ceiling: The child_limit_ceiling of this PapiSettingsChildSettings. # noqa: E501 - :type: int - """ - if child_limit_ceiling is not None and child_limit_ceiling > 65535: # noqa: E501 - raise ValueError("Invalid value for `child_limit_ceiling`, must be a value less than or equal to `65535`") # noqa: E501 - if child_limit_ceiling is not None and child_limit_ceiling < 2: # noqa: E501 - raise ValueError("Invalid value for `child_limit_ceiling`, must be a value greater than or equal to `2`") # noqa: E501 - - self._child_limit_ceiling = child_limit_ceiling - - @property - def child_limit_floor(self): - """Gets the child_limit_floor of this PapiSettingsChildSettings. # noqa: E501 - - Min value of child_limit that can be controlled. # noqa: E501 - - :return: The child_limit_floor of this PapiSettingsChildSettings. # noqa: E501 - :rtype: int - """ - return self._child_limit_floor - - @child_limit_floor.setter - def child_limit_floor(self, child_limit_floor): - """Sets the child_limit_floor of this PapiSettingsChildSettings. - - Min value of child_limit that can be controlled. # noqa: E501 - - :param child_limit_floor: The child_limit_floor of this PapiSettingsChildSettings. # noqa: E501 - :type: int - """ - if child_limit_floor is not None and child_limit_floor > 65535: # noqa: E501 - raise ValueError("Invalid value for `child_limit_floor`, must be a value less than or equal to `65535`") # noqa: E501 - if child_limit_floor is not None and child_limit_floor < 2: # noqa: E501 - raise ValueError("Invalid value for `child_limit_floor`, must be a value greater than or equal to `2`") # noqa: E501 - - self._child_limit_floor = child_limit_floor - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(PapiSettingsChildSettings, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, PapiSettingsChildSettings): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/papi_settings_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/papi_settings_extended.py deleted file mode 100644 index 9531ca987..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/papi_settings_extended.py +++ /dev/null @@ -1,205 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class PapiSettingsExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'auto_configure_child_limit': 'bool', - 'child_settings': 'PapiSettingsChildSettings', - 'config_lock_timeout': 'int', - 'enable_config_lock_feature': 'bool' - } - - attribute_map = { - 'auto_configure_child_limit': 'auto_configure_child_limit', - 'child_settings': 'child_settings', - 'config_lock_timeout': 'config_lock_timeout', - 'enable_config_lock_feature': 'enable_config_lock_feature' - } - - def __init__(self, auto_configure_child_limit=True, child_settings=None, config_lock_timeout=None, enable_config_lock_feature=True): # noqa: E501 - """PapiSettingsExtended - a model defined in Swagger""" # noqa: E501 - - self._auto_configure_child_limit = None - self._child_settings = None - self._config_lock_timeout = None - self._enable_config_lock_feature = None - self.discriminator = None - - if auto_configure_child_limit is not None: - self.auto_configure_child_limit = auto_configure_child_limit - if child_settings is not None: - self.child_settings = child_settings - if config_lock_timeout is not None: - self.config_lock_timeout = config_lock_timeout - if enable_config_lock_feature is not None: - self.enable_config_lock_feature = enable_config_lock_feature - - @property - def auto_configure_child_limit(self): - """Gets the auto_configure_child_limit of this PapiSettingsExtended. # noqa: E501 - - If true, PAPI automatically configures the child settings. # noqa: E501 - - :return: The auto_configure_child_limit of this PapiSettingsExtended. # noqa: E501 - :rtype: bool - """ - return self._auto_configure_child_limit - - @auto_configure_child_limit.setter - def auto_configure_child_limit(self, auto_configure_child_limit): - """Sets the auto_configure_child_limit of this PapiSettingsExtended. - - If true, PAPI automatically configures the child settings. # noqa: E501 - - :param auto_configure_child_limit: The auto_configure_child_limit of this PapiSettingsExtended. # noqa: E501 - :type: bool - """ - - self._auto_configure_child_limit = auto_configure_child_limit - - @property - def child_settings(self): - """Gets the child_settings of this PapiSettingsExtended. # noqa: E501 - - This schema describes various values related to PAPI children. # noqa: E501 - - :return: The child_settings of this PapiSettingsExtended. # noqa: E501 - :rtype: PapiSettingsChildSettings - """ - return self._child_settings - - @child_settings.setter - def child_settings(self, child_settings): - """Sets the child_settings of this PapiSettingsExtended. - - This schema describes various values related to PAPI children. # noqa: E501 - - :param child_settings: The child_settings of this PapiSettingsExtended. # noqa: E501 - :type: PapiSettingsChildSettings - """ - - self._child_settings = child_settings - - @property - def config_lock_timeout(self): - """Gets the config_lock_timeout of this PapiSettingsExtended. # noqa: E501 - - Time out limit of PAPI Configuration lock request. # noqa: E501 - - :return: The config_lock_timeout of this PapiSettingsExtended. # noqa: E501 - :rtype: int - """ - return self._config_lock_timeout - - @config_lock_timeout.setter - def config_lock_timeout(self, config_lock_timeout): - """Sets the config_lock_timeout of this PapiSettingsExtended. - - Time out limit of PAPI Configuration lock request. # noqa: E501 - - :param config_lock_timeout: The config_lock_timeout of this PapiSettingsExtended. # noqa: E501 - :type: int - """ - if config_lock_timeout is not None and config_lock_timeout > 200: # noqa: E501 - raise ValueError("Invalid value for `config_lock_timeout`, must be a value less than or equal to `200`") # noqa: E501 - if config_lock_timeout is not None and config_lock_timeout < 0: # noqa: E501 - raise ValueError("Invalid value for `config_lock_timeout`, must be a value greater than or equal to `0`") # noqa: E501 - - self._config_lock_timeout = config_lock_timeout - - @property - def enable_config_lock_feature(self): - """Gets the enable_config_lock_feature of this PapiSettingsExtended. # noqa: E501 - - If true, PAPI configuration lock feature is enabled. # noqa: E501 - - :return: The enable_config_lock_feature of this PapiSettingsExtended. # noqa: E501 - :rtype: bool - """ - return self._enable_config_lock_feature - - @enable_config_lock_feature.setter - def enable_config_lock_feature(self, enable_config_lock_feature): - """Sets the enable_config_lock_feature of this PapiSettingsExtended. - - If true, PAPI configuration lock feature is enabled. # noqa: E501 - - :param enable_config_lock_feature: The enable_config_lock_feature of this PapiSettingsExtended. # noqa: E501 - :type: bool - """ - - self._enable_config_lock_feature = enable_config_lock_feature - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(PapiSettingsExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, PapiSettingsExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_settings_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/performance_settings_extended.py deleted file mode 100644 index c708cdbdd..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_settings_extended.py +++ /dev/null @@ -1,645 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class PerformanceSettingsExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'client_impact': 'PerformanceSettingsSettingsClientImpact', - 'cpu_limit_us': 'PerformanceSettingsSettingsCpuLimitUs', - 'disk_read_limit': 'PerformanceSettingsSettingsCpuLimitUs', - 'disk_write_limit': 'PerformanceSettingsSettingsCpuLimitUs', - 'health_count_interval_day': 'int', - 'main_loop_timeout_sec': 'int', - 'max_filter_count': 'int', - 'max_stat_size': 'int', - 'max_top_n_collection_count': 'int', - 'max_workload_count': 'int', - 'protocol_ops_limit_enabled': 'bool', - 'protocol_ops_limit_for_zero_curr_protocol_ops': 'int', - 'stats_d_query_interval_sec': 'int', - 'stats_d_query_timeout_sec': 'int', - 'target_disk_time_in_queue_ms': 'float', - 'target_protocol_read_latency_usec': 'float', - 'target_protocol_write_latency_usec': 'float', - 'top_n_collection_count': 'int' - } - - attribute_map = { - 'client_impact': 'client_impact', - 'cpu_limit_us': 'cpu_limit_us', - 'disk_read_limit': 'disk_read_limit', - 'disk_write_limit': 'disk_write_limit', - 'health_count_interval_day': 'health_count_interval_day', - 'main_loop_timeout_sec': 'main_loop_timeout_sec', - 'max_filter_count': 'max_filter_count', - 'max_stat_size': 'max_stat_size', - 'max_top_n_collection_count': 'max_top_n_collection_count', - 'max_workload_count': 'max_workload_count', - 'protocol_ops_limit_enabled': 'protocol_ops_limit_enabled', - 'protocol_ops_limit_for_zero_curr_protocol_ops': 'protocol_ops_limit_for_zero_curr_protocol_ops', - 'stats_d_query_interval_sec': 'stats_d_query_interval_sec', - 'stats_d_query_timeout_sec': 'stats_d_query_timeout_sec', - 'target_disk_time_in_queue_ms': 'target_disk_time_in_queue_ms', - 'target_protocol_read_latency_usec': 'target_protocol_read_latency_usec', - 'target_protocol_write_latency_usec': 'target_protocol_write_latency_usec', - 'top_n_collection_count': 'top_n_collection_count' - } - - def __init__(self, client_impact=None, cpu_limit_us=None, disk_read_limit=None, disk_write_limit=None, health_count_interval_day=None, main_loop_timeout_sec=None, max_filter_count=None, max_stat_size=None, max_top_n_collection_count=None, max_workload_count=None, protocol_ops_limit_enabled=None, protocol_ops_limit_for_zero_curr_protocol_ops=None, stats_d_query_interval_sec=None, stats_d_query_timeout_sec=None, target_disk_time_in_queue_ms=None, target_protocol_read_latency_usec=None, target_protocol_write_latency_usec=None, top_n_collection_count=None): # noqa: E501 - """PerformanceSettingsExtended - a model defined in Swagger""" # noqa: E501 - - self._client_impact = None - self._cpu_limit_us = None - self._disk_read_limit = None - self._disk_write_limit = None - self._health_count_interval_day = None - self._main_loop_timeout_sec = None - self._max_filter_count = None - self._max_stat_size = None - self._max_top_n_collection_count = None - self._max_workload_count = None - self._protocol_ops_limit_enabled = None - self._protocol_ops_limit_for_zero_curr_protocol_ops = None - self._stats_d_query_interval_sec = None - self._stats_d_query_timeout_sec = None - self._target_disk_time_in_queue_ms = None - self._target_protocol_read_latency_usec = None - self._target_protocol_write_latency_usec = None - self._top_n_collection_count = None - self.discriminator = None - - if client_impact is not None: - self.client_impact = client_impact - if cpu_limit_us is not None: - self.cpu_limit_us = cpu_limit_us - if disk_read_limit is not None: - self.disk_read_limit = disk_read_limit - if disk_write_limit is not None: - self.disk_write_limit = disk_write_limit - if health_count_interval_day is not None: - self.health_count_interval_day = health_count_interval_day - if main_loop_timeout_sec is not None: - self.main_loop_timeout_sec = main_loop_timeout_sec - if max_filter_count is not None: - self.max_filter_count = max_filter_count - if max_stat_size is not None: - self.max_stat_size = max_stat_size - if max_top_n_collection_count is not None: - self.max_top_n_collection_count = max_top_n_collection_count - if max_workload_count is not None: - self.max_workload_count = max_workload_count - if protocol_ops_limit_enabled is not None: - self.protocol_ops_limit_enabled = protocol_ops_limit_enabled - if protocol_ops_limit_for_zero_curr_protocol_ops is not None: - self.protocol_ops_limit_for_zero_curr_protocol_ops = protocol_ops_limit_for_zero_curr_protocol_ops - if stats_d_query_interval_sec is not None: - self.stats_d_query_interval_sec = stats_d_query_interval_sec - if stats_d_query_timeout_sec is not None: - self.stats_d_query_timeout_sec = stats_d_query_timeout_sec - if target_disk_time_in_queue_ms is not None: - self.target_disk_time_in_queue_ms = target_disk_time_in_queue_ms - if target_protocol_read_latency_usec is not None: - self.target_protocol_read_latency_usec = target_protocol_read_latency_usec - if target_protocol_write_latency_usec is not None: - self.target_protocol_write_latency_usec = target_protocol_write_latency_usec - if top_n_collection_count is not None: - self.top_n_collection_count = top_n_collection_count - - @property - def client_impact(self): - """Gets the client_impact of this PerformanceSettingsExtended. # noqa: E501 - - This indicates how much this workload can impact clients. The thresholds are added to the latency thresholds for computing the throttling limits. # noqa: E501 - - :return: The client_impact of this PerformanceSettingsExtended. # noqa: E501 - :rtype: PerformanceSettingsSettingsClientImpact - """ - return self._client_impact - - @client_impact.setter - def client_impact(self, client_impact): - """Sets the client_impact of this PerformanceSettingsExtended. - - This indicates how much this workload can impact clients. The thresholds are added to the latency thresholds for computing the throttling limits. # noqa: E501 - - :param client_impact: The client_impact of this PerformanceSettingsExtended. # noqa: E501 - :type: PerformanceSettingsSettingsClientImpact - """ - - self._client_impact = client_impact - - @property - def cpu_limit_us(self): - """Gets the cpu_limit_us of this PerformanceSettingsExtended. # noqa: E501 - - # noqa: E501 - - :return: The cpu_limit_us of this PerformanceSettingsExtended. # noqa: E501 - :rtype: PerformanceSettingsSettingsCpuLimitUs - """ - return self._cpu_limit_us - - @cpu_limit_us.setter - def cpu_limit_us(self, cpu_limit_us): - """Sets the cpu_limit_us of this PerformanceSettingsExtended. - - # noqa: E501 - - :param cpu_limit_us: The cpu_limit_us of this PerformanceSettingsExtended. # noqa: E501 - :type: PerformanceSettingsSettingsCpuLimitUs - """ - - self._cpu_limit_us = cpu_limit_us - - @property - def disk_read_limit(self): - """Gets the disk_read_limit of this PerformanceSettingsExtended. # noqa: E501 - - # noqa: E501 - - :return: The disk_read_limit of this PerformanceSettingsExtended. # noqa: E501 - :rtype: PerformanceSettingsSettingsCpuLimitUs - """ - return self._disk_read_limit - - @disk_read_limit.setter - def disk_read_limit(self, disk_read_limit): - """Sets the disk_read_limit of this PerformanceSettingsExtended. - - # noqa: E501 - - :param disk_read_limit: The disk_read_limit of this PerformanceSettingsExtended. # noqa: E501 - :type: PerformanceSettingsSettingsCpuLimitUs - """ - - self._disk_read_limit = disk_read_limit - - @property - def disk_write_limit(self): - """Gets the disk_write_limit of this PerformanceSettingsExtended. # noqa: E501 - - # noqa: E501 - - :return: The disk_write_limit of this PerformanceSettingsExtended. # noqa: E501 - :rtype: PerformanceSettingsSettingsCpuLimitUs - """ - return self._disk_write_limit - - @disk_write_limit.setter - def disk_write_limit(self, disk_write_limit): - """Sets the disk_write_limit of this PerformanceSettingsExtended. - - # noqa: E501 - - :param disk_write_limit: The disk_write_limit of this PerformanceSettingsExtended. # noqa: E501 - :type: PerformanceSettingsSettingsCpuLimitUs - """ - - self._disk_write_limit = disk_write_limit - - @property - def health_count_interval_day(self): - """Gets the health_count_interval_day of this PerformanceSettingsExtended. # noqa: E501 - - The length of time, in days, after which SmartThrottling restarts its count of cluster health states. This count will be added to a persistent set of counters. # noqa: E501 - - :return: The health_count_interval_day of this PerformanceSettingsExtended. # noqa: E501 - :rtype: int - """ - return self._health_count_interval_day - - @health_count_interval_day.setter - def health_count_interval_day(self, health_count_interval_day): - """Sets the health_count_interval_day of this PerformanceSettingsExtended. - - The length of time, in days, after which SmartThrottling restarts its count of cluster health states. This count will be added to a persistent set of counters. # noqa: E501 - - :param health_count_interval_day: The health_count_interval_day of this PerformanceSettingsExtended. # noqa: E501 - :type: int - """ - if health_count_interval_day is not None and health_count_interval_day > 90: # noqa: E501 - raise ValueError("Invalid value for `health_count_interval_day`, must be a value less than or equal to `90`") # noqa: E501 - if health_count_interval_day is not None and health_count_interval_day < 1: # noqa: E501 - raise ValueError("Invalid value for `health_count_interval_day`, must be a value greater than or equal to `1`") # noqa: E501 - - self._health_count_interval_day = health_count_interval_day - - @property - def main_loop_timeout_sec(self): - """Gets the main_loop_timeout_sec of this PerformanceSettingsExtended. # noqa: E501 - - Maximum time the main isi_pp_d Leader's loop will take to complete, in seconds. # noqa: E501 - - :return: The main_loop_timeout_sec of this PerformanceSettingsExtended. # noqa: E501 - :rtype: int - """ - return self._main_loop_timeout_sec - - @main_loop_timeout_sec.setter - def main_loop_timeout_sec(self, main_loop_timeout_sec): - """Sets the main_loop_timeout_sec of this PerformanceSettingsExtended. - - Maximum time the main isi_pp_d Leader's loop will take to complete, in seconds. # noqa: E501 - - :param main_loop_timeout_sec: The main_loop_timeout_sec of this PerformanceSettingsExtended. # noqa: E501 - :type: int - """ - if main_loop_timeout_sec is not None and main_loop_timeout_sec > 120: # noqa: E501 - raise ValueError("Invalid value for `main_loop_timeout_sec`, must be a value less than or equal to `120`") # noqa: E501 - if main_loop_timeout_sec is not None and main_loop_timeout_sec < 1: # noqa: E501 - raise ValueError("Invalid value for `main_loop_timeout_sec`, must be a value greater than or equal to `1`") # noqa: E501 - - self._main_loop_timeout_sec = main_loop_timeout_sec - - @property - def max_filter_count(self): - """Gets the max_filter_count of this PerformanceSettingsExtended. # noqa: E501 - - The maximum number of filters that can be applied to a configured performance dataset. # noqa: E501 - - :return: The max_filter_count of this PerformanceSettingsExtended. # noqa: E501 - :rtype: int - """ - return self._max_filter_count - - @max_filter_count.setter - def max_filter_count(self, max_filter_count): - """Sets the max_filter_count of this PerformanceSettingsExtended. - - The maximum number of filters that can be applied to a configured performance dataset. # noqa: E501 - - :param max_filter_count: The max_filter_count of this PerformanceSettingsExtended. # noqa: E501 - :type: int - """ - if max_filter_count is not None and max_filter_count > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `max_filter_count`, must be a value less than or equal to `4294967295`") # noqa: E501 - if max_filter_count is not None and max_filter_count < 0: # noqa: E501 - raise ValueError("Invalid value for `max_filter_count`, must be a value greater than or equal to `0`") # noqa: E501 - - self._max_filter_count = max_filter_count - - @property - def max_stat_size(self): - """Gets the max_stat_size of this PerformanceSettingsExtended. # noqa: E501 - - The maximum size in bytes of a single performance dataset sample. # noqa: E501 - - :return: The max_stat_size of this PerformanceSettingsExtended. # noqa: E501 - :rtype: int - """ - return self._max_stat_size - - @max_stat_size.setter - def max_stat_size(self, max_stat_size): - """Sets the max_stat_size of this PerformanceSettingsExtended. - - The maximum size in bytes of a single performance dataset sample. # noqa: E501 - - :param max_stat_size: The max_stat_size of this PerformanceSettingsExtended. # noqa: E501 - :type: int - """ - if max_stat_size is not None and max_stat_size > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `max_stat_size`, must be a value less than or equal to `4294967295`") # noqa: E501 - if max_stat_size is not None and max_stat_size < 0: # noqa: E501 - raise ValueError("Invalid value for `max_stat_size`, must be a value greater than or equal to `0`") # noqa: E501 - - self._max_stat_size = max_stat_size - - @property - def max_top_n_collection_count(self): - """Gets the max_top_n_collection_count of this PerformanceSettingsExtended. # noqa: E501 - - The maximum valid value for the 'top_n_collection_count' setting. # noqa: E501 - - :return: The max_top_n_collection_count of this PerformanceSettingsExtended. # noqa: E501 - :rtype: int - """ - return self._max_top_n_collection_count - - @max_top_n_collection_count.setter - def max_top_n_collection_count(self, max_top_n_collection_count): - """Sets the max_top_n_collection_count of this PerformanceSettingsExtended. - - The maximum valid value for the 'top_n_collection_count' setting. # noqa: E501 - - :param max_top_n_collection_count: The max_top_n_collection_count of this PerformanceSettingsExtended. # noqa: E501 - :type: int - """ - if max_top_n_collection_count is not None and max_top_n_collection_count > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `max_top_n_collection_count`, must be a value less than or equal to `4294967295`") # noqa: E501 - if max_top_n_collection_count is not None and max_top_n_collection_count < 0: # noqa: E501 - raise ValueError("Invalid value for `max_top_n_collection_count`, must be a value greater than or equal to `0`") # noqa: E501 - - self._max_top_n_collection_count = max_top_n_collection_count - - @property - def max_workload_count(self): - """Gets the max_workload_count of this PerformanceSettingsExtended. # noqa: E501 - - The maximum number of workloads that can be pinned to a configured performance dataset. # noqa: E501 - - :return: The max_workload_count of this PerformanceSettingsExtended. # noqa: E501 - :rtype: int - """ - return self._max_workload_count - - @max_workload_count.setter - def max_workload_count(self, max_workload_count): - """Sets the max_workload_count of this PerformanceSettingsExtended. - - The maximum number of workloads that can be pinned to a configured performance dataset. # noqa: E501 - - :param max_workload_count: The max_workload_count of this PerformanceSettingsExtended. # noqa: E501 - :type: int - """ - if max_workload_count is not None and max_workload_count > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `max_workload_count`, must be a value less than or equal to `4294967295`") # noqa: E501 - if max_workload_count is not None and max_workload_count < 0: # noqa: E501 - raise ValueError("Invalid value for `max_workload_count`, must be a value greater than or equal to `0`") # noqa: E501 - - self._max_workload_count = max_workload_count - - @property - def protocol_ops_limit_enabled(self): - """Gets the protocol_ops_limit_enabled of this PerformanceSettingsExtended. # noqa: E501 - - Limit workload performance by protocol ops. # noqa: E501 - - :return: The protocol_ops_limit_enabled of this PerformanceSettingsExtended. # noqa: E501 - :rtype: bool - """ - return self._protocol_ops_limit_enabled - - @protocol_ops_limit_enabled.setter - def protocol_ops_limit_enabled(self, protocol_ops_limit_enabled): - """Sets the protocol_ops_limit_enabled of this PerformanceSettingsExtended. - - Limit workload performance by protocol ops. # noqa: E501 - - :param protocol_ops_limit_enabled: The protocol_ops_limit_enabled of this PerformanceSettingsExtended. # noqa: E501 - :type: bool - """ - - self._protocol_ops_limit_enabled = protocol_ops_limit_enabled - - @property - def protocol_ops_limit_for_zero_curr_protocol_ops(self): - """Gets the protocol_ops_limit_for_zero_curr_protocol_ops of this PerformanceSettingsExtended. # noqa: E501 - - Protocol ops limit to set when current protocol ops on a node is zero. # noqa: E501 - - :return: The protocol_ops_limit_for_zero_curr_protocol_ops of this PerformanceSettingsExtended. # noqa: E501 - :rtype: int - """ - return self._protocol_ops_limit_for_zero_curr_protocol_ops - - @protocol_ops_limit_for_zero_curr_protocol_ops.setter - def protocol_ops_limit_for_zero_curr_protocol_ops(self, protocol_ops_limit_for_zero_curr_protocol_ops): - """Sets the protocol_ops_limit_for_zero_curr_protocol_ops of this PerformanceSettingsExtended. - - Protocol ops limit to set when current protocol ops on a node is zero. # noqa: E501 - - :param protocol_ops_limit_for_zero_curr_protocol_ops: The protocol_ops_limit_for_zero_curr_protocol_ops of this PerformanceSettingsExtended. # noqa: E501 - :type: int - """ - if protocol_ops_limit_for_zero_curr_protocol_ops is not None and protocol_ops_limit_for_zero_curr_protocol_ops > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `protocol_ops_limit_for_zero_curr_protocol_ops`, must be a value less than or equal to `4294967295`") # noqa: E501 - if protocol_ops_limit_for_zero_curr_protocol_ops is not None and protocol_ops_limit_for_zero_curr_protocol_ops < 0: # noqa: E501 - raise ValueError("Invalid value for `protocol_ops_limit_for_zero_curr_protocol_ops`, must be a value greater than or equal to `0`") # noqa: E501 - - self._protocol_ops_limit_for_zero_curr_protocol_ops = protocol_ops_limit_for_zero_curr_protocol_ops - - @property - def stats_d_query_interval_sec(self): - """Gets the stats_d_query_interval_sec of this PerformanceSettingsExtended. # noqa: E501 - - The number of seconds between consecutive queries to isi_stats_d. # noqa: E501 - - :return: The stats_d_query_interval_sec of this PerformanceSettingsExtended. # noqa: E501 - :rtype: int - """ - return self._stats_d_query_interval_sec - - @stats_d_query_interval_sec.setter - def stats_d_query_interval_sec(self, stats_d_query_interval_sec): - """Sets the stats_d_query_interval_sec of this PerformanceSettingsExtended. - - The number of seconds between consecutive queries to isi_stats_d. # noqa: E501 - - :param stats_d_query_interval_sec: The stats_d_query_interval_sec of this PerformanceSettingsExtended. # noqa: E501 - :type: int - """ - if stats_d_query_interval_sec is not None and stats_d_query_interval_sec > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `stats_d_query_interval_sec`, must be a value less than or equal to `4294967295`") # noqa: E501 - if stats_d_query_interval_sec is not None and stats_d_query_interval_sec < 0: # noqa: E501 - raise ValueError("Invalid value for `stats_d_query_interval_sec`, must be a value greater than or equal to `0`") # noqa: E501 - - self._stats_d_query_interval_sec = stats_d_query_interval_sec - - @property - def stats_d_query_timeout_sec(self): - """Gets the stats_d_query_timeout_sec of this PerformanceSettingsExtended. # noqa: E501 - - The number of seconds before a query to isi_stats_d times out. # noqa: E501 - - :return: The stats_d_query_timeout_sec of this PerformanceSettingsExtended. # noqa: E501 - :rtype: int - """ - return self._stats_d_query_timeout_sec - - @stats_d_query_timeout_sec.setter - def stats_d_query_timeout_sec(self, stats_d_query_timeout_sec): - """Sets the stats_d_query_timeout_sec of this PerformanceSettingsExtended. - - The number of seconds before a query to isi_stats_d times out. # noqa: E501 - - :param stats_d_query_timeout_sec: The stats_d_query_timeout_sec of this PerformanceSettingsExtended. # noqa: E501 - :type: int - """ - if stats_d_query_timeout_sec is not None and stats_d_query_timeout_sec > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `stats_d_query_timeout_sec`, must be a value less than or equal to `4294967295`") # noqa: E501 - if stats_d_query_timeout_sec is not None and stats_d_query_timeout_sec < 0: # noqa: E501 - raise ValueError("Invalid value for `stats_d_query_timeout_sec`, must be a value greater than or equal to `0`") # noqa: E501 - - self._stats_d_query_timeout_sec = stats_d_query_timeout_sec - - @property - def target_disk_time_in_queue_ms(self): - """Gets the target_disk_time_in_queue_ms of this PerformanceSettingsExtended. # noqa: E501 - - The time in disk queue threshold (in milliseconds) beyond which Partitioned Performance considers a node to be degraded. # noqa: E501 - - :return: The target_disk_time_in_queue_ms of this PerformanceSettingsExtended. # noqa: E501 - :rtype: float - """ - return self._target_disk_time_in_queue_ms - - @target_disk_time_in_queue_ms.setter - def target_disk_time_in_queue_ms(self, target_disk_time_in_queue_ms): - """Sets the target_disk_time_in_queue_ms of this PerformanceSettingsExtended. - - The time in disk queue threshold (in milliseconds) beyond which Partitioned Performance considers a node to be degraded. # noqa: E501 - - :param target_disk_time_in_queue_ms: The target_disk_time_in_queue_ms of this PerformanceSettingsExtended. # noqa: E501 - :type: float - """ - if target_disk_time_in_queue_ms is not None and target_disk_time_in_queue_ms > 100.0: # noqa: E501 - raise ValueError("Invalid value for `target_disk_time_in_queue_ms`, must be a value less than or equal to `100.0`") # noqa: E501 - if target_disk_time_in_queue_ms is not None and target_disk_time_in_queue_ms < 1.0: # noqa: E501 - raise ValueError("Invalid value for `target_disk_time_in_queue_ms`, must be a value greater than or equal to `1.0`") # noqa: E501 - - self._target_disk_time_in_queue_ms = target_disk_time_in_queue_ms - - @property - def target_protocol_read_latency_usec(self): - """Gets the target_protocol_read_latency_usec of this PerformanceSettingsExtended. # noqa: E501 - - The read latency threshold (in microseconds) beyond which Partitioned Performance considers a node to be degraded. # noqa: E501 - - :return: The target_protocol_read_latency_usec of this PerformanceSettingsExtended. # noqa: E501 - :rtype: float - """ - return self._target_protocol_read_latency_usec - - @target_protocol_read_latency_usec.setter - def target_protocol_read_latency_usec(self, target_protocol_read_latency_usec): - """Sets the target_protocol_read_latency_usec of this PerformanceSettingsExtended. - - The read latency threshold (in microseconds) beyond which Partitioned Performance considers a node to be degraded. # noqa: E501 - - :param target_protocol_read_latency_usec: The target_protocol_read_latency_usec of this PerformanceSettingsExtended. # noqa: E501 - :type: float - """ - if target_protocol_read_latency_usec is not None and target_protocol_read_latency_usec > 1.79769E+308: # noqa: E501 - raise ValueError("Invalid value for `target_protocol_read_latency_usec`, must be a value less than or equal to `1.79769E+308`") # noqa: E501 - if target_protocol_read_latency_usec is not None and target_protocol_read_latency_usec < 0.0: # noqa: E501 - raise ValueError("Invalid value for `target_protocol_read_latency_usec`, must be a value greater than or equal to `0.0`") # noqa: E501 - - self._target_protocol_read_latency_usec = target_protocol_read_latency_usec - - @property - def target_protocol_write_latency_usec(self): - """Gets the target_protocol_write_latency_usec of this PerformanceSettingsExtended. # noqa: E501 - - The write latency threshold (in microseconds) beyond which Partitioned Performance considers a node to be degraded. # noqa: E501 - - :return: The target_protocol_write_latency_usec of this PerformanceSettingsExtended. # noqa: E501 - :rtype: float - """ - return self._target_protocol_write_latency_usec - - @target_protocol_write_latency_usec.setter - def target_protocol_write_latency_usec(self, target_protocol_write_latency_usec): - """Sets the target_protocol_write_latency_usec of this PerformanceSettingsExtended. - - The write latency threshold (in microseconds) beyond which Partitioned Performance considers a node to be degraded. # noqa: E501 - - :param target_protocol_write_latency_usec: The target_protocol_write_latency_usec of this PerformanceSettingsExtended. # noqa: E501 - :type: float - """ - if target_protocol_write_latency_usec is not None and target_protocol_write_latency_usec > 1.79769E+308: # noqa: E501 - raise ValueError("Invalid value for `target_protocol_write_latency_usec`, must be a value less than or equal to `1.79769E+308`") # noqa: E501 - if target_protocol_write_latency_usec is not None and target_protocol_write_latency_usec < 0.0: # noqa: E501 - raise ValueError("Invalid value for `target_protocol_write_latency_usec`, must be a value greater than or equal to `0.0`") # noqa: E501 - - self._target_protocol_write_latency_usec = target_protocol_write_latency_usec - - @property - def top_n_collection_count(self): - """Gets the top_n_collection_count of this PerformanceSettingsExtended. # noqa: E501 - - The number of highest resource-consuming workloads tracked and collected by the system per configured performance dataset. The number of workloads pinned to a configured performance dataset does not count towards this value. # noqa: E501 - - :return: The top_n_collection_count of this PerformanceSettingsExtended. # noqa: E501 - :rtype: int - """ - return self._top_n_collection_count - - @top_n_collection_count.setter - def top_n_collection_count(self, top_n_collection_count): - """Sets the top_n_collection_count of this PerformanceSettingsExtended. - - The number of highest resource-consuming workloads tracked and collected by the system per configured performance dataset. The number of workloads pinned to a configured performance dataset does not count towards this value. # noqa: E501 - - :param top_n_collection_count: The top_n_collection_count of this PerformanceSettingsExtended. # noqa: E501 - :type: int - """ - if top_n_collection_count is not None and top_n_collection_count > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `top_n_collection_count`, must be a value less than or equal to `4294967295`") # noqa: E501 - if top_n_collection_count is not None and top_n_collection_count < 0: # noqa: E501 - raise ValueError("Invalid value for `top_n_collection_count`, must be a value greater than or equal to `0`") # noqa: E501 - - self._top_n_collection_count = top_n_collection_count - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(PerformanceSettingsExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, PerformanceSettingsExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_settings_settings.py b/isilon_sdk/isilon_sdk/v9_11_0/models/performance_settings_settings.py deleted file mode 100644 index 527161725..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_settings_settings.py +++ /dev/null @@ -1,683 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class PerformanceSettingsSettings(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'client_impact': 'PerformanceSettingsSettingsClientImpact', - 'cpu_limit_us': 'PerformanceSettingsSettingsCpuLimitUs', - 'disk_read_limit': 'PerformanceSettingsSettingsCpuLimitUs', - 'disk_write_limit': 'PerformanceSettingsSettingsCpuLimitUs', - 'health_count_interval_day': 'int', - 'main_loop_timeout_sec': 'int', - 'max_dataset_count': 'int', - 'max_filter_count': 'int', - 'max_stat_size': 'int', - 'max_top_n_collection_count': 'int', - 'max_workload_count': 'int', - 'protocol_ops_limit_enabled': 'bool', - 'protocol_ops_limit_for_zero_curr_protocol_ops': 'int', - 'stats_d_query_interval_sec': 'int', - 'stats_d_query_timeout_sec': 'int', - 'target_disk_time_in_queue_ms': 'float', - 'target_protocol_read_latency_usec': 'float', - 'target_protocol_write_latency_usec': 'float', - 'top_n_collection_count': 'int' - } - - attribute_map = { - 'client_impact': 'client_impact', - 'cpu_limit_us': 'cpu_limit_us', - 'disk_read_limit': 'disk_read_limit', - 'disk_write_limit': 'disk_write_limit', - 'health_count_interval_day': 'health_count_interval_day', - 'main_loop_timeout_sec': 'main_loop_timeout_sec', - 'max_dataset_count': 'max_dataset_count', - 'max_filter_count': 'max_filter_count', - 'max_stat_size': 'max_stat_size', - 'max_top_n_collection_count': 'max_top_n_collection_count', - 'max_workload_count': 'max_workload_count', - 'protocol_ops_limit_enabled': 'protocol_ops_limit_enabled', - 'protocol_ops_limit_for_zero_curr_protocol_ops': 'protocol_ops_limit_for_zero_curr_protocol_ops', - 'stats_d_query_interval_sec': 'stats_d_query_interval_sec', - 'stats_d_query_timeout_sec': 'stats_d_query_timeout_sec', - 'target_disk_time_in_queue_ms': 'target_disk_time_in_queue_ms', - 'target_protocol_read_latency_usec': 'target_protocol_read_latency_usec', - 'target_protocol_write_latency_usec': 'target_protocol_write_latency_usec', - 'top_n_collection_count': 'top_n_collection_count' - } - - def __init__(self, client_impact=None, cpu_limit_us=None, disk_read_limit=None, disk_write_limit=None, health_count_interval_day=None, main_loop_timeout_sec=None, max_dataset_count=None, max_filter_count=None, max_stat_size=None, max_top_n_collection_count=None, max_workload_count=None, protocol_ops_limit_enabled=None, protocol_ops_limit_for_zero_curr_protocol_ops=None, stats_d_query_interval_sec=None, stats_d_query_timeout_sec=None, target_disk_time_in_queue_ms=None, target_protocol_read_latency_usec=None, target_protocol_write_latency_usec=None, top_n_collection_count=None): # noqa: E501 - """PerformanceSettingsSettings - a model defined in Swagger""" # noqa: E501 - - self._client_impact = None - self._cpu_limit_us = None - self._disk_read_limit = None - self._disk_write_limit = None - self._health_count_interval_day = None - self._main_loop_timeout_sec = None - self._max_dataset_count = None - self._max_filter_count = None - self._max_stat_size = None - self._max_top_n_collection_count = None - self._max_workload_count = None - self._protocol_ops_limit_enabled = None - self._protocol_ops_limit_for_zero_curr_protocol_ops = None - self._stats_d_query_interval_sec = None - self._stats_d_query_timeout_sec = None - self._target_disk_time_in_queue_ms = None - self._target_protocol_read_latency_usec = None - self._target_protocol_write_latency_usec = None - self._top_n_collection_count = None - self.discriminator = None - - if client_impact is not None: - self.client_impact = client_impact - if cpu_limit_us is not None: - self.cpu_limit_us = cpu_limit_us - if disk_read_limit is not None: - self.disk_read_limit = disk_read_limit - if disk_write_limit is not None: - self.disk_write_limit = disk_write_limit - if health_count_interval_day is not None: - self.health_count_interval_day = health_count_interval_day - if main_loop_timeout_sec is not None: - self.main_loop_timeout_sec = main_loop_timeout_sec - self.max_dataset_count = max_dataset_count - self.max_filter_count = max_filter_count - self.max_stat_size = max_stat_size - self.max_top_n_collection_count = max_top_n_collection_count - self.max_workload_count = max_workload_count - if protocol_ops_limit_enabled is not None: - self.protocol_ops_limit_enabled = protocol_ops_limit_enabled - if protocol_ops_limit_for_zero_curr_protocol_ops is not None: - self.protocol_ops_limit_for_zero_curr_protocol_ops = protocol_ops_limit_for_zero_curr_protocol_ops - if stats_d_query_interval_sec is not None: - self.stats_d_query_interval_sec = stats_d_query_interval_sec - if stats_d_query_timeout_sec is not None: - self.stats_d_query_timeout_sec = stats_d_query_timeout_sec - if target_disk_time_in_queue_ms is not None: - self.target_disk_time_in_queue_ms = target_disk_time_in_queue_ms - if target_protocol_read_latency_usec is not None: - self.target_protocol_read_latency_usec = target_protocol_read_latency_usec - if target_protocol_write_latency_usec is not None: - self.target_protocol_write_latency_usec = target_protocol_write_latency_usec - self.top_n_collection_count = top_n_collection_count - - @property - def client_impact(self): - """Gets the client_impact of this PerformanceSettingsSettings. # noqa: E501 - - This indicates how much this workload can impact clients. The thresholds are added to the latency thresholds for computing the throttling limits. # noqa: E501 - - :return: The client_impact of this PerformanceSettingsSettings. # noqa: E501 - :rtype: PerformanceSettingsSettingsClientImpact - """ - return self._client_impact - - @client_impact.setter - def client_impact(self, client_impact): - """Sets the client_impact of this PerformanceSettingsSettings. - - This indicates how much this workload can impact clients. The thresholds are added to the latency thresholds for computing the throttling limits. # noqa: E501 - - :param client_impact: The client_impact of this PerformanceSettingsSettings. # noqa: E501 - :type: PerformanceSettingsSettingsClientImpact - """ - - self._client_impact = client_impact - - @property - def cpu_limit_us(self): - """Gets the cpu_limit_us of this PerformanceSettingsSettings. # noqa: E501 - - # noqa: E501 - - :return: The cpu_limit_us of this PerformanceSettingsSettings. # noqa: E501 - :rtype: PerformanceSettingsSettingsCpuLimitUs - """ - return self._cpu_limit_us - - @cpu_limit_us.setter - def cpu_limit_us(self, cpu_limit_us): - """Sets the cpu_limit_us of this PerformanceSettingsSettings. - - # noqa: E501 - - :param cpu_limit_us: The cpu_limit_us of this PerformanceSettingsSettings. # noqa: E501 - :type: PerformanceSettingsSettingsCpuLimitUs - """ - - self._cpu_limit_us = cpu_limit_us - - @property - def disk_read_limit(self): - """Gets the disk_read_limit of this PerformanceSettingsSettings. # noqa: E501 - - # noqa: E501 - - :return: The disk_read_limit of this PerformanceSettingsSettings. # noqa: E501 - :rtype: PerformanceSettingsSettingsCpuLimitUs - """ - return self._disk_read_limit - - @disk_read_limit.setter - def disk_read_limit(self, disk_read_limit): - """Sets the disk_read_limit of this PerformanceSettingsSettings. - - # noqa: E501 - - :param disk_read_limit: The disk_read_limit of this PerformanceSettingsSettings. # noqa: E501 - :type: PerformanceSettingsSettingsCpuLimitUs - """ - - self._disk_read_limit = disk_read_limit - - @property - def disk_write_limit(self): - """Gets the disk_write_limit of this PerformanceSettingsSettings. # noqa: E501 - - # noqa: E501 - - :return: The disk_write_limit of this PerformanceSettingsSettings. # noqa: E501 - :rtype: PerformanceSettingsSettingsCpuLimitUs - """ - return self._disk_write_limit - - @disk_write_limit.setter - def disk_write_limit(self, disk_write_limit): - """Sets the disk_write_limit of this PerformanceSettingsSettings. - - # noqa: E501 - - :param disk_write_limit: The disk_write_limit of this PerformanceSettingsSettings. # noqa: E501 - :type: PerformanceSettingsSettingsCpuLimitUs - """ - - self._disk_write_limit = disk_write_limit - - @property - def health_count_interval_day(self): - """Gets the health_count_interval_day of this PerformanceSettingsSettings. # noqa: E501 - - The length of time, in days, after which SmartThrottling restarts its count of cluster health states. This count will be added to a persistent set of counters. # noqa: E501 - - :return: The health_count_interval_day of this PerformanceSettingsSettings. # noqa: E501 - :rtype: int - """ - return self._health_count_interval_day - - @health_count_interval_day.setter - def health_count_interval_day(self, health_count_interval_day): - """Sets the health_count_interval_day of this PerformanceSettingsSettings. - - The length of time, in days, after which SmartThrottling restarts its count of cluster health states. This count will be added to a persistent set of counters. # noqa: E501 - - :param health_count_interval_day: The health_count_interval_day of this PerformanceSettingsSettings. # noqa: E501 - :type: int - """ - if health_count_interval_day is not None and health_count_interval_day > 90: # noqa: E501 - raise ValueError("Invalid value for `health_count_interval_day`, must be a value less than or equal to `90`") # noqa: E501 - if health_count_interval_day is not None and health_count_interval_day < 1: # noqa: E501 - raise ValueError("Invalid value for `health_count_interval_day`, must be a value greater than or equal to `1`") # noqa: E501 - - self._health_count_interval_day = health_count_interval_day - - @property - def main_loop_timeout_sec(self): - """Gets the main_loop_timeout_sec of this PerformanceSettingsSettings. # noqa: E501 - - Maximum time the main isi_pp_d Leader's loop will take to complete, in seconds. # noqa: E501 - - :return: The main_loop_timeout_sec of this PerformanceSettingsSettings. # noqa: E501 - :rtype: int - """ - return self._main_loop_timeout_sec - - @main_loop_timeout_sec.setter - def main_loop_timeout_sec(self, main_loop_timeout_sec): - """Sets the main_loop_timeout_sec of this PerformanceSettingsSettings. - - Maximum time the main isi_pp_d Leader's loop will take to complete, in seconds. # noqa: E501 - - :param main_loop_timeout_sec: The main_loop_timeout_sec of this PerformanceSettingsSettings. # noqa: E501 - :type: int - """ - if main_loop_timeout_sec is not None and main_loop_timeout_sec > 120: # noqa: E501 - raise ValueError("Invalid value for `main_loop_timeout_sec`, must be a value less than or equal to `120`") # noqa: E501 - if main_loop_timeout_sec is not None and main_loop_timeout_sec < 1: # noqa: E501 - raise ValueError("Invalid value for `main_loop_timeout_sec`, must be a value greater than or equal to `1`") # noqa: E501 - - self._main_loop_timeout_sec = main_loop_timeout_sec - - @property - def max_dataset_count(self): - """Gets the max_dataset_count of this PerformanceSettingsSettings. # noqa: E501 - - The maximum number of datasets that can be configured on the system. # noqa: E501 - - :return: The max_dataset_count of this PerformanceSettingsSettings. # noqa: E501 - :rtype: int - """ - return self._max_dataset_count - - @max_dataset_count.setter - def max_dataset_count(self, max_dataset_count): - """Sets the max_dataset_count of this PerformanceSettingsSettings. - - The maximum number of datasets that can be configured on the system. # noqa: E501 - - :param max_dataset_count: The max_dataset_count of this PerformanceSettingsSettings. # noqa: E501 - :type: int - """ - if max_dataset_count is None: - raise ValueError("Invalid value for `max_dataset_count`, must not be `None`") # noqa: E501 - if max_dataset_count is not None and max_dataset_count > 4: # noqa: E501 - raise ValueError("Invalid value for `max_dataset_count`, must be a value less than or equal to `4`") # noqa: E501 - if max_dataset_count is not None and max_dataset_count < 4: # noqa: E501 - raise ValueError("Invalid value for `max_dataset_count`, must be a value greater than or equal to `4`") # noqa: E501 - - self._max_dataset_count = max_dataset_count - - @property - def max_filter_count(self): - """Gets the max_filter_count of this PerformanceSettingsSettings. # noqa: E501 - - The maximum number of filters that can be applied to a configured performance dataset. # noqa: E501 - - :return: The max_filter_count of this PerformanceSettingsSettings. # noqa: E501 - :rtype: int - """ - return self._max_filter_count - - @max_filter_count.setter - def max_filter_count(self, max_filter_count): - """Sets the max_filter_count of this PerformanceSettingsSettings. - - The maximum number of filters that can be applied to a configured performance dataset. # noqa: E501 - - :param max_filter_count: The max_filter_count of this PerformanceSettingsSettings. # noqa: E501 - :type: int - """ - if max_filter_count is None: - raise ValueError("Invalid value for `max_filter_count`, must not be `None`") # noqa: E501 - if max_filter_count is not None and max_filter_count > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `max_filter_count`, must be a value less than or equal to `4294967295`") # noqa: E501 - if max_filter_count is not None and max_filter_count < 0: # noqa: E501 - raise ValueError("Invalid value for `max_filter_count`, must be a value greater than or equal to `0`") # noqa: E501 - - self._max_filter_count = max_filter_count - - @property - def max_stat_size(self): - """Gets the max_stat_size of this PerformanceSettingsSettings. # noqa: E501 - - The maximum size in bytes of a single performance dataset sample. # noqa: E501 - - :return: The max_stat_size of this PerformanceSettingsSettings. # noqa: E501 - :rtype: int - """ - return self._max_stat_size - - @max_stat_size.setter - def max_stat_size(self, max_stat_size): - """Sets the max_stat_size of this PerformanceSettingsSettings. - - The maximum size in bytes of a single performance dataset sample. # noqa: E501 - - :param max_stat_size: The max_stat_size of this PerformanceSettingsSettings. # noqa: E501 - :type: int - """ - if max_stat_size is None: - raise ValueError("Invalid value for `max_stat_size`, must not be `None`") # noqa: E501 - if max_stat_size is not None and max_stat_size > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `max_stat_size`, must be a value less than or equal to `4294967295`") # noqa: E501 - if max_stat_size is not None and max_stat_size < 0: # noqa: E501 - raise ValueError("Invalid value for `max_stat_size`, must be a value greater than or equal to `0`") # noqa: E501 - - self._max_stat_size = max_stat_size - - @property - def max_top_n_collection_count(self): - """Gets the max_top_n_collection_count of this PerformanceSettingsSettings. # noqa: E501 - - The maximum valid value for the 'top_n_collection_count' setting. # noqa: E501 - - :return: The max_top_n_collection_count of this PerformanceSettingsSettings. # noqa: E501 - :rtype: int - """ - return self._max_top_n_collection_count - - @max_top_n_collection_count.setter - def max_top_n_collection_count(self, max_top_n_collection_count): - """Sets the max_top_n_collection_count of this PerformanceSettingsSettings. - - The maximum valid value for the 'top_n_collection_count' setting. # noqa: E501 - - :param max_top_n_collection_count: The max_top_n_collection_count of this PerformanceSettingsSettings. # noqa: E501 - :type: int - """ - if max_top_n_collection_count is None: - raise ValueError("Invalid value for `max_top_n_collection_count`, must not be `None`") # noqa: E501 - if max_top_n_collection_count is not None and max_top_n_collection_count > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `max_top_n_collection_count`, must be a value less than or equal to `4294967295`") # noqa: E501 - if max_top_n_collection_count is not None and max_top_n_collection_count < 0: # noqa: E501 - raise ValueError("Invalid value for `max_top_n_collection_count`, must be a value greater than or equal to `0`") # noqa: E501 - - self._max_top_n_collection_count = max_top_n_collection_count - - @property - def max_workload_count(self): - """Gets the max_workload_count of this PerformanceSettingsSettings. # noqa: E501 - - The maximum number of workloads that can be pinned to a configured performance dataset. # noqa: E501 - - :return: The max_workload_count of this PerformanceSettingsSettings. # noqa: E501 - :rtype: int - """ - return self._max_workload_count - - @max_workload_count.setter - def max_workload_count(self, max_workload_count): - """Sets the max_workload_count of this PerformanceSettingsSettings. - - The maximum number of workloads that can be pinned to a configured performance dataset. # noqa: E501 - - :param max_workload_count: The max_workload_count of this PerformanceSettingsSettings. # noqa: E501 - :type: int - """ - if max_workload_count is None: - raise ValueError("Invalid value for `max_workload_count`, must not be `None`") # noqa: E501 - if max_workload_count is not None and max_workload_count > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `max_workload_count`, must be a value less than or equal to `4294967295`") # noqa: E501 - if max_workload_count is not None and max_workload_count < 0: # noqa: E501 - raise ValueError("Invalid value for `max_workload_count`, must be a value greater than or equal to `0`") # noqa: E501 - - self._max_workload_count = max_workload_count - - @property - def protocol_ops_limit_enabled(self): - """Gets the protocol_ops_limit_enabled of this PerformanceSettingsSettings. # noqa: E501 - - Limit workload performance by protocol ops. # noqa: E501 - - :return: The protocol_ops_limit_enabled of this PerformanceSettingsSettings. # noqa: E501 - :rtype: bool - """ - return self._protocol_ops_limit_enabled - - @protocol_ops_limit_enabled.setter - def protocol_ops_limit_enabled(self, protocol_ops_limit_enabled): - """Sets the protocol_ops_limit_enabled of this PerformanceSettingsSettings. - - Limit workload performance by protocol ops. # noqa: E501 - - :param protocol_ops_limit_enabled: The protocol_ops_limit_enabled of this PerformanceSettingsSettings. # noqa: E501 - :type: bool - """ - - self._protocol_ops_limit_enabled = protocol_ops_limit_enabled - - @property - def protocol_ops_limit_for_zero_curr_protocol_ops(self): - """Gets the protocol_ops_limit_for_zero_curr_protocol_ops of this PerformanceSettingsSettings. # noqa: E501 - - Protocol ops limit to set when current protocol ops on a node is zero. # noqa: E501 - - :return: The protocol_ops_limit_for_zero_curr_protocol_ops of this PerformanceSettingsSettings. # noqa: E501 - :rtype: int - """ - return self._protocol_ops_limit_for_zero_curr_protocol_ops - - @protocol_ops_limit_for_zero_curr_protocol_ops.setter - def protocol_ops_limit_for_zero_curr_protocol_ops(self, protocol_ops_limit_for_zero_curr_protocol_ops): - """Sets the protocol_ops_limit_for_zero_curr_protocol_ops of this PerformanceSettingsSettings. - - Protocol ops limit to set when current protocol ops on a node is zero. # noqa: E501 - - :param protocol_ops_limit_for_zero_curr_protocol_ops: The protocol_ops_limit_for_zero_curr_protocol_ops of this PerformanceSettingsSettings. # noqa: E501 - :type: int - """ - if protocol_ops_limit_for_zero_curr_protocol_ops is not None and protocol_ops_limit_for_zero_curr_protocol_ops > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `protocol_ops_limit_for_zero_curr_protocol_ops`, must be a value less than or equal to `4294967295`") # noqa: E501 - if protocol_ops_limit_for_zero_curr_protocol_ops is not None and protocol_ops_limit_for_zero_curr_protocol_ops < 0: # noqa: E501 - raise ValueError("Invalid value for `protocol_ops_limit_for_zero_curr_protocol_ops`, must be a value greater than or equal to `0`") # noqa: E501 - - self._protocol_ops_limit_for_zero_curr_protocol_ops = protocol_ops_limit_for_zero_curr_protocol_ops - - @property - def stats_d_query_interval_sec(self): - """Gets the stats_d_query_interval_sec of this PerformanceSettingsSettings. # noqa: E501 - - The number of seconds between consecutive queries to isi_stats_d. # noqa: E501 - - :return: The stats_d_query_interval_sec of this PerformanceSettingsSettings. # noqa: E501 - :rtype: int - """ - return self._stats_d_query_interval_sec - - @stats_d_query_interval_sec.setter - def stats_d_query_interval_sec(self, stats_d_query_interval_sec): - """Sets the stats_d_query_interval_sec of this PerformanceSettingsSettings. - - The number of seconds between consecutive queries to isi_stats_d. # noqa: E501 - - :param stats_d_query_interval_sec: The stats_d_query_interval_sec of this PerformanceSettingsSettings. # noqa: E501 - :type: int - """ - if stats_d_query_interval_sec is not None and stats_d_query_interval_sec > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `stats_d_query_interval_sec`, must be a value less than or equal to `4294967295`") # noqa: E501 - if stats_d_query_interval_sec is not None and stats_d_query_interval_sec < 0: # noqa: E501 - raise ValueError("Invalid value for `stats_d_query_interval_sec`, must be a value greater than or equal to `0`") # noqa: E501 - - self._stats_d_query_interval_sec = stats_d_query_interval_sec - - @property - def stats_d_query_timeout_sec(self): - """Gets the stats_d_query_timeout_sec of this PerformanceSettingsSettings. # noqa: E501 - - The number of seconds before a query to isi_stats_d times out. # noqa: E501 - - :return: The stats_d_query_timeout_sec of this PerformanceSettingsSettings. # noqa: E501 - :rtype: int - """ - return self._stats_d_query_timeout_sec - - @stats_d_query_timeout_sec.setter - def stats_d_query_timeout_sec(self, stats_d_query_timeout_sec): - """Sets the stats_d_query_timeout_sec of this PerformanceSettingsSettings. - - The number of seconds before a query to isi_stats_d times out. # noqa: E501 - - :param stats_d_query_timeout_sec: The stats_d_query_timeout_sec of this PerformanceSettingsSettings. # noqa: E501 - :type: int - """ - if stats_d_query_timeout_sec is not None and stats_d_query_timeout_sec > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `stats_d_query_timeout_sec`, must be a value less than or equal to `4294967295`") # noqa: E501 - if stats_d_query_timeout_sec is not None and stats_d_query_timeout_sec < 0: # noqa: E501 - raise ValueError("Invalid value for `stats_d_query_timeout_sec`, must be a value greater than or equal to `0`") # noqa: E501 - - self._stats_d_query_timeout_sec = stats_d_query_timeout_sec - - @property - def target_disk_time_in_queue_ms(self): - """Gets the target_disk_time_in_queue_ms of this PerformanceSettingsSettings. # noqa: E501 - - The time in disk queue threshold (in milliseconds) beyond which Partitioned Performance considers a node to be degraded. # noqa: E501 - - :return: The target_disk_time_in_queue_ms of this PerformanceSettingsSettings. # noqa: E501 - :rtype: float - """ - return self._target_disk_time_in_queue_ms - - @target_disk_time_in_queue_ms.setter - def target_disk_time_in_queue_ms(self, target_disk_time_in_queue_ms): - """Sets the target_disk_time_in_queue_ms of this PerformanceSettingsSettings. - - The time in disk queue threshold (in milliseconds) beyond which Partitioned Performance considers a node to be degraded. # noqa: E501 - - :param target_disk_time_in_queue_ms: The target_disk_time_in_queue_ms of this PerformanceSettingsSettings. # noqa: E501 - :type: float - """ - if target_disk_time_in_queue_ms is not None and target_disk_time_in_queue_ms > 100.0: # noqa: E501 - raise ValueError("Invalid value for `target_disk_time_in_queue_ms`, must be a value less than or equal to `100.0`") # noqa: E501 - if target_disk_time_in_queue_ms is not None and target_disk_time_in_queue_ms < 1.0: # noqa: E501 - raise ValueError("Invalid value for `target_disk_time_in_queue_ms`, must be a value greater than or equal to `1.0`") # noqa: E501 - - self._target_disk_time_in_queue_ms = target_disk_time_in_queue_ms - - @property - def target_protocol_read_latency_usec(self): - """Gets the target_protocol_read_latency_usec of this PerformanceSettingsSettings. # noqa: E501 - - The read latency threshold (in microseconds) beyond which Partitioned Performance considers a node to be degraded. # noqa: E501 - - :return: The target_protocol_read_latency_usec of this PerformanceSettingsSettings. # noqa: E501 - :rtype: float - """ - return self._target_protocol_read_latency_usec - - @target_protocol_read_latency_usec.setter - def target_protocol_read_latency_usec(self, target_protocol_read_latency_usec): - """Sets the target_protocol_read_latency_usec of this PerformanceSettingsSettings. - - The read latency threshold (in microseconds) beyond which Partitioned Performance considers a node to be degraded. # noqa: E501 - - :param target_protocol_read_latency_usec: The target_protocol_read_latency_usec of this PerformanceSettingsSettings. # noqa: E501 - :type: float - """ - if target_protocol_read_latency_usec is not None and target_protocol_read_latency_usec > 1.79769E+308: # noqa: E501 - raise ValueError("Invalid value for `target_protocol_read_latency_usec`, must be a value less than or equal to `1.79769E+308`") # noqa: E501 - if target_protocol_read_latency_usec is not None and target_protocol_read_latency_usec < 0.0: # noqa: E501 - raise ValueError("Invalid value for `target_protocol_read_latency_usec`, must be a value greater than or equal to `0.0`") # noqa: E501 - - self._target_protocol_read_latency_usec = target_protocol_read_latency_usec - - @property - def target_protocol_write_latency_usec(self): - """Gets the target_protocol_write_latency_usec of this PerformanceSettingsSettings. # noqa: E501 - - The write latency threshold (in microseconds) beyond which Partitioned Performance considers a node to be degraded. # noqa: E501 - - :return: The target_protocol_write_latency_usec of this PerformanceSettingsSettings. # noqa: E501 - :rtype: float - """ - return self._target_protocol_write_latency_usec - - @target_protocol_write_latency_usec.setter - def target_protocol_write_latency_usec(self, target_protocol_write_latency_usec): - """Sets the target_protocol_write_latency_usec of this PerformanceSettingsSettings. - - The write latency threshold (in microseconds) beyond which Partitioned Performance considers a node to be degraded. # noqa: E501 - - :param target_protocol_write_latency_usec: The target_protocol_write_latency_usec of this PerformanceSettingsSettings. # noqa: E501 - :type: float - """ - if target_protocol_write_latency_usec is not None and target_protocol_write_latency_usec > 1.79769E+308: # noqa: E501 - raise ValueError("Invalid value for `target_protocol_write_latency_usec`, must be a value less than or equal to `1.79769E+308`") # noqa: E501 - if target_protocol_write_latency_usec is not None and target_protocol_write_latency_usec < 0.0: # noqa: E501 - raise ValueError("Invalid value for `target_protocol_write_latency_usec`, must be a value greater than or equal to `0.0`") # noqa: E501 - - self._target_protocol_write_latency_usec = target_protocol_write_latency_usec - - @property - def top_n_collection_count(self): - """Gets the top_n_collection_count of this PerformanceSettingsSettings. # noqa: E501 - - The number of highest resource-consuming workloads tracked and collected by the system per configured performance dataset. The number of workloads pinned to a configured performance dataset does not count towards this value. # noqa: E501 - - :return: The top_n_collection_count of this PerformanceSettingsSettings. # noqa: E501 - :rtype: int - """ - return self._top_n_collection_count - - @top_n_collection_count.setter - def top_n_collection_count(self, top_n_collection_count): - """Sets the top_n_collection_count of this PerformanceSettingsSettings. - - The number of highest resource-consuming workloads tracked and collected by the system per configured performance dataset. The number of workloads pinned to a configured performance dataset does not count towards this value. # noqa: E501 - - :param top_n_collection_count: The top_n_collection_count of this PerformanceSettingsSettings. # noqa: E501 - :type: int - """ - if top_n_collection_count is None: - raise ValueError("Invalid value for `top_n_collection_count`, must not be `None`") # noqa: E501 - if top_n_collection_count is not None and top_n_collection_count > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `top_n_collection_count`, must be a value less than or equal to `4294967295`") # noqa: E501 - if top_n_collection_count is not None and top_n_collection_count < 0: # noqa: E501 - raise ValueError("Invalid value for `top_n_collection_count`, must be a value greater than or equal to `0`") # noqa: E501 - - self._top_n_collection_count = top_n_collection_count - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(PerformanceSettingsSettings, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, PerformanceSettingsSettings): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_settings_settings_client_impact.py b/isilon_sdk/isilon_sdk/v9_11_0/models/performance_settings_settings_client_impact.py deleted file mode 100644 index d90262957..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_settings_settings_client_impact.py +++ /dev/null @@ -1,217 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class PerformanceSettingsSettingsClientImpact(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'impact_high': 'float', - 'impact_low': 'float', - 'impact_medium': 'float', - 'impact_unset': 'float' - } - - attribute_map = { - 'impact_high': 'impact_high', - 'impact_low': 'impact_low', - 'impact_medium': 'impact_medium', - 'impact_unset': 'impact_unset' - } - - def __init__(self, impact_high=None, impact_low=None, impact_medium=None, impact_unset=None): # noqa: E501 - """PerformanceSettingsSettingsClientImpact - a model defined in Swagger""" # noqa: E501 - - self._impact_high = None - self._impact_low = None - self._impact_medium = None - self._impact_unset = None - self.discriminator = None - - if impact_high is not None: - self.impact_high = impact_high - if impact_low is not None: - self.impact_low = impact_low - if impact_medium is not None: - self.impact_medium = impact_medium - if impact_unset is not None: - self.impact_unset = impact_unset - - @property - def impact_high(self): - """Gets the impact_high of this PerformanceSettingsSettingsClientImpact. # noqa: E501 - - Modifier based on the client_impact value # noqa: E501 - - :return: The impact_high of this PerformanceSettingsSettingsClientImpact. # noqa: E501 - :rtype: float - """ - return self._impact_high - - @impact_high.setter - def impact_high(self, impact_high): - """Sets the impact_high of this PerformanceSettingsSettingsClientImpact. - - Modifier based on the client_impact value # noqa: E501 - - :param impact_high: The impact_high of this PerformanceSettingsSettingsClientImpact. # noqa: E501 - :type: float - """ - if impact_high is not None and impact_high > 50000: # noqa: E501 - raise ValueError("Invalid value for `impact_high`, must be a value less than or equal to `50000`") # noqa: E501 - if impact_high is not None and impact_high < -50000: # noqa: E501 - raise ValueError("Invalid value for `impact_high`, must be a value greater than or equal to `-50000`") # noqa: E501 - - self._impact_high = impact_high - - @property - def impact_low(self): - """Gets the impact_low of this PerformanceSettingsSettingsClientImpact. # noqa: E501 - - Modifier based on the client_impact value # noqa: E501 - - :return: The impact_low of this PerformanceSettingsSettingsClientImpact. # noqa: E501 - :rtype: float - """ - return self._impact_low - - @impact_low.setter - def impact_low(self, impact_low): - """Sets the impact_low of this PerformanceSettingsSettingsClientImpact. - - Modifier based on the client_impact value # noqa: E501 - - :param impact_low: The impact_low of this PerformanceSettingsSettingsClientImpact. # noqa: E501 - :type: float - """ - if impact_low is not None and impact_low > 50000: # noqa: E501 - raise ValueError("Invalid value for `impact_low`, must be a value less than or equal to `50000`") # noqa: E501 - if impact_low is not None and impact_low < -50000: # noqa: E501 - raise ValueError("Invalid value for `impact_low`, must be a value greater than or equal to `-50000`") # noqa: E501 - - self._impact_low = impact_low - - @property - def impact_medium(self): - """Gets the impact_medium of this PerformanceSettingsSettingsClientImpact. # noqa: E501 - - Modifier based on the client_impact value # noqa: E501 - - :return: The impact_medium of this PerformanceSettingsSettingsClientImpact. # noqa: E501 - :rtype: float - """ - return self._impact_medium - - @impact_medium.setter - def impact_medium(self, impact_medium): - """Sets the impact_medium of this PerformanceSettingsSettingsClientImpact. - - Modifier based on the client_impact value # noqa: E501 - - :param impact_medium: The impact_medium of this PerformanceSettingsSettingsClientImpact. # noqa: E501 - :type: float - """ - if impact_medium is not None and impact_medium > 50000: # noqa: E501 - raise ValueError("Invalid value for `impact_medium`, must be a value less than or equal to `50000`") # noqa: E501 - if impact_medium is not None and impact_medium < -50000: # noqa: E501 - raise ValueError("Invalid value for `impact_medium`, must be a value greater than or equal to `-50000`") # noqa: E501 - - self._impact_medium = impact_medium - - @property - def impact_unset(self): - """Gets the impact_unset of this PerformanceSettingsSettingsClientImpact. # noqa: E501 - - Modifier based on the client_impact value # noqa: E501 - - :return: The impact_unset of this PerformanceSettingsSettingsClientImpact. # noqa: E501 - :rtype: float - """ - return self._impact_unset - - @impact_unset.setter - def impact_unset(self, impact_unset): - """Sets the impact_unset of this PerformanceSettingsSettingsClientImpact. - - Modifier based on the client_impact value # noqa: E501 - - :param impact_unset: The impact_unset of this PerformanceSettingsSettingsClientImpact. # noqa: E501 - :type: float - """ - if impact_unset is not None and impact_unset > 50000: # noqa: E501 - raise ValueError("Invalid value for `impact_unset`, must be a value less than or equal to `50000`") # noqa: E501 - if impact_unset is not None and impact_unset < -50000: # noqa: E501 - raise ValueError("Invalid value for `impact_unset`, must be a value greater than or equal to `-50000`") # noqa: E501 - - self._impact_unset = impact_unset - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(PerformanceSettingsSettingsClientImpact, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, PerformanceSettingsSettingsClientImpact): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_settings_settings_cpu_limit_us.py b/isilon_sdk/isilon_sdk/v9_11_0/models/performance_settings_settings_cpu_limit_us.py deleted file mode 100644 index 3ad0ba218..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_settings_settings_cpu_limit_us.py +++ /dev/null @@ -1,273 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class PerformanceSettingsSettingsCpuLimitUs(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'base_limit': 'int', - 'health_modifier': 'PerformanceSettingsSettingsCpuLimitUsHealthModifier', - 'impact_multiplier': 'PerformanceSettingsSettingsCpuLimitUsImpactMultiplier', - 'max_health_multiplier_unhealthy': 'float', - 'min_health_multiplier': 'float', - 'starting_health_multiplier': 'float' - } - - attribute_map = { - 'base_limit': 'base_limit', - 'health_modifier': 'health_modifier', - 'impact_multiplier': 'impact_multiplier', - 'max_health_multiplier_unhealthy': 'max_health_multiplier_unhealthy', - 'min_health_multiplier': 'min_health_multiplier', - 'starting_health_multiplier': 'starting_health_multiplier' - } - - def __init__(self, base_limit=None, health_modifier=None, impact_multiplier=None, max_health_multiplier_unhealthy=None, min_health_multiplier=None, starting_health_multiplier=None): # noqa: E501 - """PerformanceSettingsSettingsCpuLimitUs - a model defined in Swagger""" # noqa: E501 - - self._base_limit = None - self._health_modifier = None - self._impact_multiplier = None - self._max_health_multiplier_unhealthy = None - self._min_health_multiplier = None - self._starting_health_multiplier = None - self.discriminator = None - - if base_limit is not None: - self.base_limit = base_limit - if health_modifier is not None: - self.health_modifier = health_modifier - if impact_multiplier is not None: - self.impact_multiplier = impact_multiplier - if max_health_multiplier_unhealthy is not None: - self.max_health_multiplier_unhealthy = max_health_multiplier_unhealthy - if min_health_multiplier is not None: - self.min_health_multiplier = min_health_multiplier - if starting_health_multiplier is not None: - self.starting_health_multiplier = starting_health_multiplier - - @property - def base_limit(self): - """Gets the base_limit of this PerformanceSettingsSettingsCpuLimitUs. # noqa: E501 - - Base value for the resource limit. This value will be used to compute final workload's limits. # noqa: E501 - - :return: The base_limit of this PerformanceSettingsSettingsCpuLimitUs. # noqa: E501 - :rtype: int - """ - return self._base_limit - - @base_limit.setter - def base_limit(self, base_limit): - """Sets the base_limit of this PerformanceSettingsSettingsCpuLimitUs. - - Base value for the resource limit. This value will be used to compute final workload's limits. # noqa: E501 - - :param base_limit: The base_limit of this PerformanceSettingsSettingsCpuLimitUs. # noqa: E501 - :type: int - """ - if base_limit is not None and base_limit > 30000000: # noqa: E501 - raise ValueError("Invalid value for `base_limit`, must be a value less than or equal to `30000000`") # noqa: E501 - if base_limit is not None and base_limit < 10: # noqa: E501 - raise ValueError("Invalid value for `base_limit`, must be a value greater than or equal to `10`") # noqa: E501 - - self._base_limit = base_limit - - @property - def health_modifier(self): - """Gets the health_modifier of this PerformanceSettingsSettingsCpuLimitUs. # noqa: E501 - - # noqa: E501 - - :return: The health_modifier of this PerformanceSettingsSettingsCpuLimitUs. # noqa: E501 - :rtype: PerformanceSettingsSettingsCpuLimitUsHealthModifier - """ - return self._health_modifier - - @health_modifier.setter - def health_modifier(self, health_modifier): - """Sets the health_modifier of this PerformanceSettingsSettingsCpuLimitUs. - - # noqa: E501 - - :param health_modifier: The health_modifier of this PerformanceSettingsSettingsCpuLimitUs. # noqa: E501 - :type: PerformanceSettingsSettingsCpuLimitUsHealthModifier - """ - - self._health_modifier = health_modifier - - @property - def impact_multiplier(self): - """Gets the impact_multiplier of this PerformanceSettingsSettingsCpuLimitUs. # noqa: E501 - - # noqa: E501 - - :return: The impact_multiplier of this PerformanceSettingsSettingsCpuLimitUs. # noqa: E501 - :rtype: PerformanceSettingsSettingsCpuLimitUsImpactMultiplier - """ - return self._impact_multiplier - - @impact_multiplier.setter - def impact_multiplier(self, impact_multiplier): - """Sets the impact_multiplier of this PerformanceSettingsSettingsCpuLimitUs. - - # noqa: E501 - - :param impact_multiplier: The impact_multiplier of this PerformanceSettingsSettingsCpuLimitUs. # noqa: E501 - :type: PerformanceSettingsSettingsCpuLimitUsImpactMultiplier - """ - - self._impact_multiplier = impact_multiplier - - @property - def max_health_multiplier_unhealthy(self): - """Gets the max_health_multiplier_unhealthy of this PerformanceSettingsSettingsCpuLimitUs. # noqa: E501 - - Maximum multiplier computed from cluster's health when the cluster is not healthy # noqa: E501 - - :return: The max_health_multiplier_unhealthy of this PerformanceSettingsSettingsCpuLimitUs. # noqa: E501 - :rtype: float - """ - return self._max_health_multiplier_unhealthy - - @max_health_multiplier_unhealthy.setter - def max_health_multiplier_unhealthy(self, max_health_multiplier_unhealthy): - """Sets the max_health_multiplier_unhealthy of this PerformanceSettingsSettingsCpuLimitUs. - - Maximum multiplier computed from cluster's health when the cluster is not healthy # noqa: E501 - - :param max_health_multiplier_unhealthy: The max_health_multiplier_unhealthy of this PerformanceSettingsSettingsCpuLimitUs. # noqa: E501 - :type: float - """ - if max_health_multiplier_unhealthy is not None and max_health_multiplier_unhealthy > 10000: # noqa: E501 - raise ValueError("Invalid value for `max_health_multiplier_unhealthy`, must be a value less than or equal to `10000`") # noqa: E501 - if max_health_multiplier_unhealthy is not None and max_health_multiplier_unhealthy < 0.1: # noqa: E501 - raise ValueError("Invalid value for `max_health_multiplier_unhealthy`, must be a value greater than or equal to `0.1`") # noqa: E501 - - self._max_health_multiplier_unhealthy = max_health_multiplier_unhealthy - - @property - def min_health_multiplier(self): - """Gets the min_health_multiplier of this PerformanceSettingsSettingsCpuLimitUs. # noqa: E501 - - Minimum multiplier computed from cluster's health. # noqa: E501 - - :return: The min_health_multiplier of this PerformanceSettingsSettingsCpuLimitUs. # noqa: E501 - :rtype: float - """ - return self._min_health_multiplier - - @min_health_multiplier.setter - def min_health_multiplier(self, min_health_multiplier): - """Sets the min_health_multiplier of this PerformanceSettingsSettingsCpuLimitUs. - - Minimum multiplier computed from cluster's health. # noqa: E501 - - :param min_health_multiplier: The min_health_multiplier of this PerformanceSettingsSettingsCpuLimitUs. # noqa: E501 - :type: float - """ - if min_health_multiplier is not None and min_health_multiplier > 10000: # noqa: E501 - raise ValueError("Invalid value for `min_health_multiplier`, must be a value less than or equal to `10000`") # noqa: E501 - if min_health_multiplier is not None and min_health_multiplier < 0.1: # noqa: E501 - raise ValueError("Invalid value for `min_health_multiplier`, must be a value greater than or equal to `0.1`") # noqa: E501 - - self._min_health_multiplier = min_health_multiplier - - @property - def starting_health_multiplier(self): - """Gets the starting_health_multiplier of this PerformanceSettingsSettingsCpuLimitUs. # noqa: E501 - - Starting health multiplier when the workload is created # noqa: E501 - - :return: The starting_health_multiplier of this PerformanceSettingsSettingsCpuLimitUs. # noqa: E501 - :rtype: float - """ - return self._starting_health_multiplier - - @starting_health_multiplier.setter - def starting_health_multiplier(self, starting_health_multiplier): - """Sets the starting_health_multiplier of this PerformanceSettingsSettingsCpuLimitUs. - - Starting health multiplier when the workload is created # noqa: E501 - - :param starting_health_multiplier: The starting_health_multiplier of this PerformanceSettingsSettingsCpuLimitUs. # noqa: E501 - :type: float - """ - if starting_health_multiplier is not None and starting_health_multiplier > 10000: # noqa: E501 - raise ValueError("Invalid value for `starting_health_multiplier`, must be a value less than or equal to `10000`") # noqa: E501 - if starting_health_multiplier is not None and starting_health_multiplier < 0.1: # noqa: E501 - raise ValueError("Invalid value for `starting_health_multiplier`, must be a value greater than or equal to `0.1`") # noqa: E501 - - self._starting_health_multiplier = starting_health_multiplier - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(PerformanceSettingsSettingsCpuLimitUs, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, PerformanceSettingsSettingsCpuLimitUs): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_settings_settings_cpu_limit_us_health_modifier.py b/isilon_sdk/isilon_sdk/v9_11_0/models/performance_settings_settings_cpu_limit_us_health_modifier.py deleted file mode 100644 index b479d4b89..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_settings_settings_cpu_limit_us_health_modifier.py +++ /dev/null @@ -1,201 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class PerformanceSettingsSettingsCpuLimitUsHealthModifier(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'impact_high': 'PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh', - 'impact_low': 'PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh', - 'impact_medium': 'PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh', - 'impact_unset': 'PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh' - } - - attribute_map = { - 'impact_high': 'impact_high', - 'impact_low': 'impact_low', - 'impact_medium': 'impact_medium', - 'impact_unset': 'impact_unset' - } - - def __init__(self, impact_high=None, impact_low=None, impact_medium=None, impact_unset=None): # noqa: E501 - """PerformanceSettingsSettingsCpuLimitUsHealthModifier - a model defined in Swagger""" # noqa: E501 - - self._impact_high = None - self._impact_low = None - self._impact_medium = None - self._impact_unset = None - self.discriminator = None - - if impact_high is not None: - self.impact_high = impact_high - if impact_low is not None: - self.impact_low = impact_low - if impact_medium is not None: - self.impact_medium = impact_medium - if impact_unset is not None: - self.impact_unset = impact_unset - - @property - def impact_high(self): - """Gets the impact_high of this PerformanceSettingsSettingsCpuLimitUsHealthModifier. # noqa: E501 - - # noqa: E501 - - :return: The impact_high of this PerformanceSettingsSettingsCpuLimitUsHealthModifier. # noqa: E501 - :rtype: PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh - """ - return self._impact_high - - @impact_high.setter - def impact_high(self, impact_high): - """Sets the impact_high of this PerformanceSettingsSettingsCpuLimitUsHealthModifier. - - # noqa: E501 - - :param impact_high: The impact_high of this PerformanceSettingsSettingsCpuLimitUsHealthModifier. # noqa: E501 - :type: PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh - """ - - self._impact_high = impact_high - - @property - def impact_low(self): - """Gets the impact_low of this PerformanceSettingsSettingsCpuLimitUsHealthModifier. # noqa: E501 - - # noqa: E501 - - :return: The impact_low of this PerformanceSettingsSettingsCpuLimitUsHealthModifier. # noqa: E501 - :rtype: PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh - """ - return self._impact_low - - @impact_low.setter - def impact_low(self, impact_low): - """Sets the impact_low of this PerformanceSettingsSettingsCpuLimitUsHealthModifier. - - # noqa: E501 - - :param impact_low: The impact_low of this PerformanceSettingsSettingsCpuLimitUsHealthModifier. # noqa: E501 - :type: PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh - """ - - self._impact_low = impact_low - - @property - def impact_medium(self): - """Gets the impact_medium of this PerformanceSettingsSettingsCpuLimitUsHealthModifier. # noqa: E501 - - # noqa: E501 - - :return: The impact_medium of this PerformanceSettingsSettingsCpuLimitUsHealthModifier. # noqa: E501 - :rtype: PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh - """ - return self._impact_medium - - @impact_medium.setter - def impact_medium(self, impact_medium): - """Sets the impact_medium of this PerformanceSettingsSettingsCpuLimitUsHealthModifier. - - # noqa: E501 - - :param impact_medium: The impact_medium of this PerformanceSettingsSettingsCpuLimitUsHealthModifier. # noqa: E501 - :type: PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh - """ - - self._impact_medium = impact_medium - - @property - def impact_unset(self): - """Gets the impact_unset of this PerformanceSettingsSettingsCpuLimitUsHealthModifier. # noqa: E501 - - # noqa: E501 - - :return: The impact_unset of this PerformanceSettingsSettingsCpuLimitUsHealthModifier. # noqa: E501 - :rtype: PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh - """ - return self._impact_unset - - @impact_unset.setter - def impact_unset(self, impact_unset): - """Sets the impact_unset of this PerformanceSettingsSettingsCpuLimitUsHealthModifier. - - # noqa: E501 - - :param impact_unset: The impact_unset of this PerformanceSettingsSettingsCpuLimitUsHealthModifier. # noqa: E501 - :type: PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh - """ - - self._impact_unset = impact_unset - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(PerformanceSettingsSettingsCpuLimitUsHealthModifier, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, PerformanceSettingsSettingsCpuLimitUsHealthModifier): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_settings_settings_cpu_limit_us_health_modifier_impact_high.py b/isilon_sdk/isilon_sdk/v9_11_0/models/performance_settings_settings_cpu_limit_us_health_modifier_impact_high.py deleted file mode 100644 index dc19857d3..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_settings_settings_cpu_limit_us_health_modifier_impact_high.py +++ /dev/null @@ -1,185 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'at_risk': 'float', - 'healthy': 'float', - 'unhealthy': 'float' - } - - attribute_map = { - 'at_risk': 'at_risk', - 'healthy': 'healthy', - 'unhealthy': 'unhealthy' - } - - def __init__(self, at_risk=None, healthy=None, unhealthy=None): # noqa: E501 - """PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh - a model defined in Swagger""" # noqa: E501 - - self._at_risk = None - self._healthy = None - self._unhealthy = None - self.discriminator = None - - if at_risk is not None: - self.at_risk = at_risk - if healthy is not None: - self.healthy = healthy - if unhealthy is not None: - self.unhealthy = unhealthy - - @property - def at_risk(self): - """Gets the at_risk of this PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh. # noqa: E501 - - The modifier to the health multiplier for the respective impact and health level # noqa: E501 - - :return: The at_risk of this PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh. # noqa: E501 - :rtype: float - """ - return self._at_risk - - @at_risk.setter - def at_risk(self, at_risk): - """Sets the at_risk of this PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh. - - The modifier to the health multiplier for the respective impact and health level # noqa: E501 - - :param at_risk: The at_risk of this PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh. # noqa: E501 - :type: float - """ - if at_risk is not None and at_risk > 10.0: # noqa: E501 - raise ValueError("Invalid value for `at_risk`, must be a value less than or equal to `10.0`") # noqa: E501 - if at_risk is not None and at_risk < -10.0: # noqa: E501 - raise ValueError("Invalid value for `at_risk`, must be a value greater than or equal to `-10.0`") # noqa: E501 - - self._at_risk = at_risk - - @property - def healthy(self): - """Gets the healthy of this PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh. # noqa: E501 - - The modifier to the health multiplier for the respective impact and health level # noqa: E501 - - :return: The healthy of this PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh. # noqa: E501 - :rtype: float - """ - return self._healthy - - @healthy.setter - def healthy(self, healthy): - """Sets the healthy of this PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh. - - The modifier to the health multiplier for the respective impact and health level # noqa: E501 - - :param healthy: The healthy of this PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh. # noqa: E501 - :type: float - """ - if healthy is not None and healthy > 10.0: # noqa: E501 - raise ValueError("Invalid value for `healthy`, must be a value less than or equal to `10.0`") # noqa: E501 - if healthy is not None and healthy < -10.0: # noqa: E501 - raise ValueError("Invalid value for `healthy`, must be a value greater than or equal to `-10.0`") # noqa: E501 - - self._healthy = healthy - - @property - def unhealthy(self): - """Gets the unhealthy of this PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh. # noqa: E501 - - The modifier to the health multiplier for the respective impact and health level # noqa: E501 - - :return: The unhealthy of this PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh. # noqa: E501 - :rtype: float - """ - return self._unhealthy - - @unhealthy.setter - def unhealthy(self, unhealthy): - """Sets the unhealthy of this PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh. - - The modifier to the health multiplier for the respective impact and health level # noqa: E501 - - :param unhealthy: The unhealthy of this PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh. # noqa: E501 - :type: float - """ - if unhealthy is not None and unhealthy > 10.0: # noqa: E501 - raise ValueError("Invalid value for `unhealthy`, must be a value less than or equal to `10.0`") # noqa: E501 - if unhealthy is not None and unhealthy < -10.0: # noqa: E501 - raise ValueError("Invalid value for `unhealthy`, must be a value greater than or equal to `-10.0`") # noqa: E501 - - self._unhealthy = unhealthy - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_settings_settings_cpu_limit_us_impact_multiplier.py b/isilon_sdk/isilon_sdk/v9_11_0/models/performance_settings_settings_cpu_limit_us_impact_multiplier.py deleted file mode 100644 index 46bfdf4cf..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_settings_settings_cpu_limit_us_impact_multiplier.py +++ /dev/null @@ -1,217 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class PerformanceSettingsSettingsCpuLimitUsImpactMultiplier(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'impact_high': 'float', - 'impact_low': 'float', - 'impact_medium': 'float', - 'impact_unset': 'float' - } - - attribute_map = { - 'impact_high': 'impact_high', - 'impact_low': 'impact_low', - 'impact_medium': 'impact_medium', - 'impact_unset': 'impact_unset' - } - - def __init__(self, impact_high=None, impact_low=None, impact_medium=None, impact_unset=None): # noqa: E501 - """PerformanceSettingsSettingsCpuLimitUsImpactMultiplier - a model defined in Swagger""" # noqa: E501 - - self._impact_high = None - self._impact_low = None - self._impact_medium = None - self._impact_unset = None - self.discriminator = None - - if impact_high is not None: - self.impact_high = impact_high - if impact_low is not None: - self.impact_low = impact_low - if impact_medium is not None: - self.impact_medium = impact_medium - if impact_unset is not None: - self.impact_unset = impact_unset - - @property - def impact_high(self): - """Gets the impact_high of this PerformanceSettingsSettingsCpuLimitUsImpactMultiplier. # noqa: E501 - - The multiplier to apply for the respective impact level # noqa: E501 - - :return: The impact_high of this PerformanceSettingsSettingsCpuLimitUsImpactMultiplier. # noqa: E501 - :rtype: float - """ - return self._impact_high - - @impact_high.setter - def impact_high(self, impact_high): - """Sets the impact_high of this PerformanceSettingsSettingsCpuLimitUsImpactMultiplier. - - The multiplier to apply for the respective impact level # noqa: E501 - - :param impact_high: The impact_high of this PerformanceSettingsSettingsCpuLimitUsImpactMultiplier. # noqa: E501 - :type: float - """ - if impact_high is not None and impact_high > 1.79769E+308: # noqa: E501 - raise ValueError("Invalid value for `impact_high`, must be a value less than or equal to `1.79769E+308`") # noqa: E501 - if impact_high is not None and impact_high < 0.1: # noqa: E501 - raise ValueError("Invalid value for `impact_high`, must be a value greater than or equal to `0.1`") # noqa: E501 - - self._impact_high = impact_high - - @property - def impact_low(self): - """Gets the impact_low of this PerformanceSettingsSettingsCpuLimitUsImpactMultiplier. # noqa: E501 - - The multiplier to apply for the respective impact level # noqa: E501 - - :return: The impact_low of this PerformanceSettingsSettingsCpuLimitUsImpactMultiplier. # noqa: E501 - :rtype: float - """ - return self._impact_low - - @impact_low.setter - def impact_low(self, impact_low): - """Sets the impact_low of this PerformanceSettingsSettingsCpuLimitUsImpactMultiplier. - - The multiplier to apply for the respective impact level # noqa: E501 - - :param impact_low: The impact_low of this PerformanceSettingsSettingsCpuLimitUsImpactMultiplier. # noqa: E501 - :type: float - """ - if impact_low is not None and impact_low > 1.79769E+308: # noqa: E501 - raise ValueError("Invalid value for `impact_low`, must be a value less than or equal to `1.79769E+308`") # noqa: E501 - if impact_low is not None and impact_low < 0.1: # noqa: E501 - raise ValueError("Invalid value for `impact_low`, must be a value greater than or equal to `0.1`") # noqa: E501 - - self._impact_low = impact_low - - @property - def impact_medium(self): - """Gets the impact_medium of this PerformanceSettingsSettingsCpuLimitUsImpactMultiplier. # noqa: E501 - - The multiplier to apply for the respective impact level # noqa: E501 - - :return: The impact_medium of this PerformanceSettingsSettingsCpuLimitUsImpactMultiplier. # noqa: E501 - :rtype: float - """ - return self._impact_medium - - @impact_medium.setter - def impact_medium(self, impact_medium): - """Sets the impact_medium of this PerformanceSettingsSettingsCpuLimitUsImpactMultiplier. - - The multiplier to apply for the respective impact level # noqa: E501 - - :param impact_medium: The impact_medium of this PerformanceSettingsSettingsCpuLimitUsImpactMultiplier. # noqa: E501 - :type: float - """ - if impact_medium is not None and impact_medium > 1.79769E+308: # noqa: E501 - raise ValueError("Invalid value for `impact_medium`, must be a value less than or equal to `1.79769E+308`") # noqa: E501 - if impact_medium is not None and impact_medium < 0.1: # noqa: E501 - raise ValueError("Invalid value for `impact_medium`, must be a value greater than or equal to `0.1`") # noqa: E501 - - self._impact_medium = impact_medium - - @property - def impact_unset(self): - """Gets the impact_unset of this PerformanceSettingsSettingsCpuLimitUsImpactMultiplier. # noqa: E501 - - The multiplier to apply for the respective impact level # noqa: E501 - - :return: The impact_unset of this PerformanceSettingsSettingsCpuLimitUsImpactMultiplier. # noqa: E501 - :rtype: float - """ - return self._impact_unset - - @impact_unset.setter - def impact_unset(self, impact_unset): - """Sets the impact_unset of this PerformanceSettingsSettingsCpuLimitUsImpactMultiplier. - - The multiplier to apply for the respective impact level # noqa: E501 - - :param impact_unset: The impact_unset of this PerformanceSettingsSettingsCpuLimitUsImpactMultiplier. # noqa: E501 - :type: float - """ - if impact_unset is not None and impact_unset > 1.79769E+308: # noqa: E501 - raise ValueError("Invalid value for `impact_unset`, must be a value less than or equal to `1.79769E+308`") # noqa: E501 - if impact_unset is not None and impact_unset < 0.1: # noqa: E501 - raise ValueError("Invalid value for `impact_unset`, must be a value greater than or equal to `0.1`") # noqa: E501 - - self._impact_unset = impact_unset - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(PerformanceSettingsSettingsCpuLimitUsImpactMultiplier, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, PerformanceSettingsSettingsCpuLimitUsImpactMultiplier): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/policies_policy_rule.py b/isilon_sdk/isilon_sdk/v9_11_0/models/policies_policy_rule.py deleted file mode 100644 index 862076e6d..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/policies_policy_rule.py +++ /dev/null @@ -1,339 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class PoliciesPolicyRule(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'action': 'str', - 'description': 'str', - 'dst_ports': 'PoliciesPolicyRuleDstPorts', - 'index': 'int', - 'name': 'str', - 'protocol': 'str', - 'src_networks': 'list[str]', - 'src_ports': 'PoliciesPolicyRuleDstPorts' - } - - attribute_map = { - 'action': 'action', - 'description': 'description', - 'dst_ports': 'dst_ports', - 'index': 'index', - 'name': 'name', - 'protocol': 'protocol', - 'src_networks': 'src_networks', - 'src_ports': 'src_ports' - } - - def __init__(self, action=None, description=None, dst_ports=None, index=None, name=None, protocol=None, src_networks=None, src_ports=None): # noqa: E501 - """PoliciesPolicyRule - a model defined in Swagger""" # noqa: E501 - - self._action = None - self._description = None - self._dst_ports = None - self._index = None - self._name = None - self._protocol = None - self._src_networks = None - self._src_ports = None - self.discriminator = None - - if action is not None: - self.action = action - if description is not None: - self.description = description - if dst_ports is not None: - self.dst_ports = dst_ports - if index is not None: - self.index = index - if name is not None: - self.name = name - if protocol is not None: - self.protocol = protocol - if src_networks is not None: - self.src_networks = src_networks - if src_ports is not None: - self.src_ports = src_ports - - @property - def action(self): - """Gets the action of this PoliciesPolicyRule. # noqa: E501 - - Rule action # noqa: E501 - - :return: The action of this PoliciesPolicyRule. # noqa: E501 - :rtype: str - """ - return self._action - - @action.setter - def action(self, action): - """Sets the action of this PoliciesPolicyRule. - - Rule action # noqa: E501 - - :param action: The action of this PoliciesPolicyRule. # noqa: E501 - :type: str - """ - allowed_values = ["allow", "deny", "reject"] # noqa: E501 - if action not in allowed_values: - raise ValueError( - "Invalid value for `action` ({0}), must be one of {1}" # noqa: E501 - .format(action, allowed_values) - ) - - self._action = action - - @property - def description(self): - """Gets the description of this PoliciesPolicyRule. # noqa: E501 - - A description of the firewall rule. # noqa: E501 - - :return: The description of this PoliciesPolicyRule. # noqa: E501 - :rtype: str - """ - return self._description - - @description.setter - def description(self, description): - """Sets the description of this PoliciesPolicyRule. - - A description of the firewall rule. # noqa: E501 - - :param description: The description of this PoliciesPolicyRule. # noqa: E501 - :type: str - """ - if description is not None and len(description) > 128: - raise ValueError("Invalid value for `description`, length must be less than or equal to `128`") # noqa: E501 - if description is not None and len(description) < 0: - raise ValueError("Invalid value for `description`, length must be greater than or equal to `0`") # noqa: E501 - - self._description = description - - @property - def dst_ports(self): - """Gets the dst_ports of this PoliciesPolicyRule. # noqa: E501 - - Customer specified protocols or OneFS default services's protocols for destination control # noqa: E501 - - :return: The dst_ports of this PoliciesPolicyRule. # noqa: E501 - :rtype: PoliciesPolicyRuleDstPorts - """ - return self._dst_ports - - @dst_ports.setter - def dst_ports(self, dst_ports): - """Sets the dst_ports of this PoliciesPolicyRule. - - Customer specified protocols or OneFS default services's protocols for destination control # noqa: E501 - - :param dst_ports: The dst_ports of this PoliciesPolicyRule. # noqa: E501 - :type: PoliciesPolicyRuleDstPorts - """ - - self._dst_ports = dst_ports - - @property - def index(self): - """Gets the index of this PoliciesPolicyRule. # noqa: E501 - - Firewall rule index in policy # noqa: E501 - - :return: The index of this PoliciesPolicyRule. # noqa: E501 - :rtype: int - """ - return self._index - - @index.setter - def index(self, index): - """Sets the index of this PoliciesPolicyRule. - - Firewall rule index in policy # noqa: E501 - - :param index: The index of this PoliciesPolicyRule. # noqa: E501 - :type: int - """ - if index is not None and index > 200: # noqa: E501 - raise ValueError("Invalid value for `index`, must be a value less than or equal to `200`") # noqa: E501 - if index is not None and index < 1: # noqa: E501 - raise ValueError("Invalid value for `index`, must be a value greater than or equal to `1`") # noqa: E501 - - self._index = index - - @property - def name(self): - """Gets the name of this PoliciesPolicyRule. # noqa: E501 - - The name of the firewall rule. # noqa: E501 - - :return: The name of this PoliciesPolicyRule. # noqa: E501 - :rtype: str - """ - return self._name - - @name.setter - def name(self, name): - """Sets the name of this PoliciesPolicyRule. - - The name of the firewall rule. # noqa: E501 - - :param name: The name of this PoliciesPolicyRule. # noqa: E501 - :type: str - """ - if name is not None and len(name) > 32: - raise ValueError("Invalid value for `name`, length must be less than or equal to `32`") # noqa: E501 - if name is not None and len(name) < 1: - raise ValueError("Invalid value for `name`, length must be greater than or equal to `1`") # noqa: E501 - if name is not None and not re.search(r'^[0-9a-zA-Z_-]*$', name): # noqa: E501 - raise ValueError(r"Invalid value for `name`, must be a follow pattern or equal to `/^[0-9a-zA-Z_-]*$/`") # noqa: E501 - - self._name = name - - @property - def protocol(self): - """Gets the protocol of this PoliciesPolicyRule. # noqa: E501 - - Firewall rule set on protocol # noqa: E501 - - :return: The protocol of this PoliciesPolicyRule. # noqa: E501 - :rtype: str - """ - return self._protocol - - @protocol.setter - def protocol(self, protocol): - """Sets the protocol of this PoliciesPolicyRule. - - Firewall rule set on protocol # noqa: E501 - - :param protocol: The protocol of this PoliciesPolicyRule. # noqa: E501 - :type: str - """ - allowed_values = ["ALL", "TCP", "UDP", "ICMP", "ICMP6"] # noqa: E501 - if protocol not in allowed_values: - raise ValueError( - "Invalid value for `protocol` ({0}), must be one of {1}" # noqa: E501 - .format(protocol, allowed_values) - ) - - self._protocol = protocol - - @property - def src_networks(self): - """Gets the src_networks of this PoliciesPolicyRule. # noqa: E501 - - Source Networks # noqa: E501 - - :return: The src_networks of this PoliciesPolicyRule. # noqa: E501 - :rtype: list[str] - """ - return self._src_networks - - @src_networks.setter - def src_networks(self, src_networks): - """Sets the src_networks of this PoliciesPolicyRule. - - Source Networks # noqa: E501 - - :param src_networks: The src_networks of this PoliciesPolicyRule. # noqa: E501 - :type: list[str] - """ - - self._src_networks = src_networks - - @property - def src_ports(self): - """Gets the src_ports of this PoliciesPolicyRule. # noqa: E501 - - Customer specified protocols or OneFS default services's protocols for source control # noqa: E501 - - :return: The src_ports of this PoliciesPolicyRule. # noqa: E501 - :rtype: PoliciesPolicyRuleDstPorts - """ - return self._src_ports - - @src_ports.setter - def src_ports(self, src_ports): - """Sets the src_ports of this PoliciesPolicyRule. - - Customer specified protocols or OneFS default services's protocols for source control # noqa: E501 - - :param src_ports: The src_ports of this PoliciesPolicyRule. # noqa: E501 - :type: PoliciesPolicyRuleDstPorts - """ - - self._src_ports = src_ports - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(PoliciesPolicyRule, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, PoliciesPolicyRule): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/policies_policy_rule_create_params.py b/isilon_sdk/isilon_sdk/v9_11_0/models/policies_policy_rule_create_params.py deleted file mode 100644 index 2c6b0e51e..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/policies_policy_rule_create_params.py +++ /dev/null @@ -1,372 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class PoliciesPolicyRuleCreateParams(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'action': 'str', - 'description': 'str', - 'dst_ports': 'PoliciesPolicyRuleDstPorts', - 'id': 'str', - 'index': 'int', - 'name': 'str', - 'protocol': 'str', - 'src_networks': 'list[str]', - 'src_ports': 'PoliciesPolicyRuleDstPorts' - } - - attribute_map = { - 'action': 'action', - 'description': 'description', - 'dst_ports': 'dst_ports', - 'id': 'id', - 'index': 'index', - 'name': 'name', - 'protocol': 'protocol', - 'src_networks': 'src_networks', - 'src_ports': 'src_ports' - } - - def __init__(self, action=None, description=None, dst_ports=None, id=None, index=None, name=None, protocol=None, src_networks=None, src_ports=None): # noqa: E501 - """PoliciesPolicyRuleCreateParams - a model defined in Swagger""" # noqa: E501 - - self._action = None - self._description = None - self._dst_ports = None - self._id = None - self._index = None - self._name = None - self._protocol = None - self._src_networks = None - self._src_ports = None - self.discriminator = None - - if action is not None: - self.action = action - if description is not None: - self.description = description - if dst_ports is not None: - self.dst_ports = dst_ports - if id is not None: - self.id = id - if index is not None: - self.index = index - self.name = name - if protocol is not None: - self.protocol = protocol - if src_networks is not None: - self.src_networks = src_networks - if src_ports is not None: - self.src_ports = src_ports - - @property - def action(self): - """Gets the action of this PoliciesPolicyRuleCreateParams. # noqa: E501 - - Rule action # noqa: E501 - - :return: The action of this PoliciesPolicyRuleCreateParams. # noqa: E501 - :rtype: str - """ - return self._action - - @action.setter - def action(self, action): - """Sets the action of this PoliciesPolicyRuleCreateParams. - - Rule action # noqa: E501 - - :param action: The action of this PoliciesPolicyRuleCreateParams. # noqa: E501 - :type: str - """ - allowed_values = ["allow", "deny", "reject"] # noqa: E501 - if action not in allowed_values: - raise ValueError( - "Invalid value for `action` ({0}), must be one of {1}" # noqa: E501 - .format(action, allowed_values) - ) - - self._action = action - - @property - def description(self): - """Gets the description of this PoliciesPolicyRuleCreateParams. # noqa: E501 - - A description of the firewall rule. # noqa: E501 - - :return: The description of this PoliciesPolicyRuleCreateParams. # noqa: E501 - :rtype: str - """ - return self._description - - @description.setter - def description(self, description): - """Sets the description of this PoliciesPolicyRuleCreateParams. - - A description of the firewall rule. # noqa: E501 - - :param description: The description of this PoliciesPolicyRuleCreateParams. # noqa: E501 - :type: str - """ - if description is not None and len(description) > 128: - raise ValueError("Invalid value for `description`, length must be less than or equal to `128`") # noqa: E501 - if description is not None and len(description) < 0: - raise ValueError("Invalid value for `description`, length must be greater than or equal to `0`") # noqa: E501 - - self._description = description - - @property - def dst_ports(self): - """Gets the dst_ports of this PoliciesPolicyRuleCreateParams. # noqa: E501 - - Customer specified protocols or OneFS default services's protocols for destination control # noqa: E501 - - :return: The dst_ports of this PoliciesPolicyRuleCreateParams. # noqa: E501 - :rtype: PoliciesPolicyRuleDstPorts - """ - return self._dst_ports - - @dst_ports.setter - def dst_ports(self, dst_ports): - """Sets the dst_ports of this PoliciesPolicyRuleCreateParams. - - Customer specified protocols or OneFS default services's protocols for destination control # noqa: E501 - - :param dst_ports: The dst_ports of this PoliciesPolicyRuleCreateParams. # noqa: E501 - :type: PoliciesPolicyRuleDstPorts - """ - - self._dst_ports = dst_ports - - @property - def id(self): - """Gets the id of this PoliciesPolicyRuleCreateParams. # noqa: E501 - - Unique firewall rule ID # noqa: E501 - - :return: The id of this PoliciesPolicyRuleCreateParams. # noqa: E501 - :rtype: str - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this PoliciesPolicyRuleCreateParams. - - Unique firewall rule ID # noqa: E501 - - :param id: The id of this PoliciesPolicyRuleCreateParams. # noqa: E501 - :type: str - """ - if id is not None and len(id) > 66: - raise ValueError("Invalid value for `id`, length must be less than or equal to `66`") # noqa: E501 - if id is not None and len(id) < 1: - raise ValueError("Invalid value for `id`, length must be greater than or equal to `1`") # noqa: E501 - - self._id = id - - @property - def index(self): - """Gets the index of this PoliciesPolicyRuleCreateParams. # noqa: E501 - - Firewall rule index in policy # noqa: E501 - - :return: The index of this PoliciesPolicyRuleCreateParams. # noqa: E501 - :rtype: int - """ - return self._index - - @index.setter - def index(self, index): - """Sets the index of this PoliciesPolicyRuleCreateParams. - - Firewall rule index in policy # noqa: E501 - - :param index: The index of this PoliciesPolicyRuleCreateParams. # noqa: E501 - :type: int - """ - if index is not None and index > 200: # noqa: E501 - raise ValueError("Invalid value for `index`, must be a value less than or equal to `200`") # noqa: E501 - if index is not None and index < 1: # noqa: E501 - raise ValueError("Invalid value for `index`, must be a value greater than or equal to `1`") # noqa: E501 - - self._index = index - - @property - def name(self): - """Gets the name of this PoliciesPolicyRuleCreateParams. # noqa: E501 - - The name of the firewall rule. # noqa: E501 - - :return: The name of this PoliciesPolicyRuleCreateParams. # noqa: E501 - :rtype: str - """ - return self._name - - @name.setter - def name(self, name): - """Sets the name of this PoliciesPolicyRuleCreateParams. - - The name of the firewall rule. # noqa: E501 - - :param name: The name of this PoliciesPolicyRuleCreateParams. # noqa: E501 - :type: str - """ - if name is None: - raise ValueError("Invalid value for `name`, must not be `None`") # noqa: E501 - if name is not None and len(name) > 32: - raise ValueError("Invalid value for `name`, length must be less than or equal to `32`") # noqa: E501 - if name is not None and len(name) < 1: - raise ValueError("Invalid value for `name`, length must be greater than or equal to `1`") # noqa: E501 - if name is not None and not re.search(r'^[0-9a-zA-Z_-]*$', name): # noqa: E501 - raise ValueError(r"Invalid value for `name`, must be a follow pattern or equal to `/^[0-9a-zA-Z_-]*$/`") # noqa: E501 - - self._name = name - - @property - def protocol(self): - """Gets the protocol of this PoliciesPolicyRuleCreateParams. # noqa: E501 - - Firewall rule set on protocol # noqa: E501 - - :return: The protocol of this PoliciesPolicyRuleCreateParams. # noqa: E501 - :rtype: str - """ - return self._protocol - - @protocol.setter - def protocol(self, protocol): - """Sets the protocol of this PoliciesPolicyRuleCreateParams. - - Firewall rule set on protocol # noqa: E501 - - :param protocol: The protocol of this PoliciesPolicyRuleCreateParams. # noqa: E501 - :type: str - """ - allowed_values = ["ALL", "TCP", "UDP", "ICMP", "ICMP6"] # noqa: E501 - if protocol not in allowed_values: - raise ValueError( - "Invalid value for `protocol` ({0}), must be one of {1}" # noqa: E501 - .format(protocol, allowed_values) - ) - - self._protocol = protocol - - @property - def src_networks(self): - """Gets the src_networks of this PoliciesPolicyRuleCreateParams. # noqa: E501 - - Source Networks # noqa: E501 - - :return: The src_networks of this PoliciesPolicyRuleCreateParams. # noqa: E501 - :rtype: list[str] - """ - return self._src_networks - - @src_networks.setter - def src_networks(self, src_networks): - """Sets the src_networks of this PoliciesPolicyRuleCreateParams. - - Source Networks # noqa: E501 - - :param src_networks: The src_networks of this PoliciesPolicyRuleCreateParams. # noqa: E501 - :type: list[str] - """ - - self._src_networks = src_networks - - @property - def src_ports(self): - """Gets the src_ports of this PoliciesPolicyRuleCreateParams. # noqa: E501 - - Customer specified protocols or OneFS default services's protocols for source control # noqa: E501 - - :return: The src_ports of this PoliciesPolicyRuleCreateParams. # noqa: E501 - :rtype: PoliciesPolicyRuleDstPorts - """ - return self._src_ports - - @src_ports.setter - def src_ports(self, src_ports): - """Sets the src_ports of this PoliciesPolicyRuleCreateParams. - - Customer specified protocols or OneFS default services's protocols for source control # noqa: E501 - - :param src_ports: The src_ports of this PoliciesPolicyRuleCreateParams. # noqa: E501 - :type: PoliciesPolicyRuleDstPorts - """ - - self._src_ports = src_ports - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(PoliciesPolicyRuleCreateParams, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, PoliciesPolicyRuleCreateParams): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/policies_policy_rule_dst_ports.py b/isilon_sdk/isilon_sdk/v9_11_0/models/policies_policy_rule_dst_ports.py deleted file mode 100644 index c628643cf..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/policies_policy_rule_dst_ports.py +++ /dev/null @@ -1,145 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class PoliciesPolicyRuleDstPorts(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'port_numbers': 'list[int]', - 'services_name': 'list[str]' - } - - attribute_map = { - 'port_numbers': 'port_numbers', - 'services_name': 'services_name' - } - - def __init__(self, port_numbers=None, services_name=None): # noqa: E501 - """PoliciesPolicyRuleDstPorts - a model defined in Swagger""" # noqa: E501 - - self._port_numbers = None - self._services_name = None - self.discriminator = None - - if port_numbers is not None: - self.port_numbers = port_numbers - if services_name is not None: - self.services_name = services_name - - @property - def port_numbers(self): - """Gets the port_numbers of this PoliciesPolicyRuleDstPorts. # noqa: E501 - - Firewall rule acting on the indicated port number. # noqa: E501 - - :return: The port_numbers of this PoliciesPolicyRuleDstPorts. # noqa: E501 - :rtype: list[int] - """ - return self._port_numbers - - @port_numbers.setter - def port_numbers(self, port_numbers): - """Sets the port_numbers of this PoliciesPolicyRuleDstPorts. - - Firewall rule acting on the indicated port number. # noqa: E501 - - :param port_numbers: The port_numbers of this PoliciesPolicyRuleDstPorts. # noqa: E501 - :type: list[int] - """ - - self._port_numbers = port_numbers - - @property - def services_name(self): - """Gets the services_name of this PoliciesPolicyRuleDstPorts. # noqa: E501 - - Firewall rule on the specified services. # noqa: E501 - - :return: The services_name of this PoliciesPolicyRuleDstPorts. # noqa: E501 - :rtype: list[str] - """ - return self._services_name - - @services_name.setter - def services_name(self, services_name): - """Sets the services_name of this PoliciesPolicyRuleDstPorts. - - Firewall rule on the specified services. # noqa: E501 - - :param services_name: The services_name of this PoliciesPolicyRuleDstPorts. # noqa: E501 - :type: list[str] - """ - - self._services_name = services_name - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(PoliciesPolicyRuleDstPorts, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, PoliciesPolicyRuleDstPorts): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/policies_policy_rules.py b/isilon_sdk/isilon_sdk/v9_11_0/models/policies_policy_rules.py deleted file mode 100644 index ec74dce5e..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/policies_policy_rules.py +++ /dev/null @@ -1,115 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class PoliciesPolicyRules(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'rules': 'list[PoliciesPolicyRulesRule]' - } - - attribute_map = { - 'rules': 'rules' - } - - def __init__(self, rules=None): # noqa: E501 - """PoliciesPolicyRules - a model defined in Swagger""" # noqa: E501 - - self._rules = None - self.discriminator = None - - if rules is not None: - self.rules = rules - - @property - def rules(self): - """Gets the rules of this PoliciesPolicyRules. # noqa: E501 - - - :return: The rules of this PoliciesPolicyRules. # noqa: E501 - :rtype: list[PoliciesPolicyRulesRule] - """ - return self._rules - - @rules.setter - def rules(self, rules): - """Sets the rules of this PoliciesPolicyRules. - - - :param rules: The rules of this PoliciesPolicyRules. # noqa: E501 - :type: list[PoliciesPolicyRulesRule] - """ - - self._rules = rules - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(PoliciesPolicyRules, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, PoliciesPolicyRules): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/policies_policy_rules_rule.py b/isilon_sdk/isilon_sdk/v9_11_0/models/policies_policy_rules_rule.py deleted file mode 100644 index 4f5699d52..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/policies_policy_rules_rule.py +++ /dev/null @@ -1,371 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class PoliciesPolicyRulesRule(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'action': 'str', - 'description': 'str', - 'dst_ports': 'PoliciesPolicyRuleDstPorts', - 'id': 'str', - 'index': 'int', - 'name': 'str', - 'protocol': 'str', - 'src_networks': 'list[str]', - 'src_ports': 'PoliciesPolicyRuleDstPorts' - } - - attribute_map = { - 'action': 'action', - 'description': 'description', - 'dst_ports': 'dst_ports', - 'id': 'id', - 'index': 'index', - 'name': 'name', - 'protocol': 'protocol', - 'src_networks': 'src_networks', - 'src_ports': 'src_ports' - } - - def __init__(self, action=None, description=None, dst_ports=None, id=None, index=None, name=None, protocol=None, src_networks=None, src_ports=None): # noqa: E501 - """PoliciesPolicyRulesRule - a model defined in Swagger""" # noqa: E501 - - self._action = None - self._description = None - self._dst_ports = None - self._id = None - self._index = None - self._name = None - self._protocol = None - self._src_networks = None - self._src_ports = None - self.discriminator = None - - if action is not None: - self.action = action - if description is not None: - self.description = description - if dst_ports is not None: - self.dst_ports = dst_ports - if id is not None: - self.id = id - if index is not None: - self.index = index - if name is not None: - self.name = name - if protocol is not None: - self.protocol = protocol - if src_networks is not None: - self.src_networks = src_networks - if src_ports is not None: - self.src_ports = src_ports - - @property - def action(self): - """Gets the action of this PoliciesPolicyRulesRule. # noqa: E501 - - Rule action # noqa: E501 - - :return: The action of this PoliciesPolicyRulesRule. # noqa: E501 - :rtype: str - """ - return self._action - - @action.setter - def action(self, action): - """Sets the action of this PoliciesPolicyRulesRule. - - Rule action # noqa: E501 - - :param action: The action of this PoliciesPolicyRulesRule. # noqa: E501 - :type: str - """ - allowed_values = ["allow", "deny", "reject"] # noqa: E501 - if action not in allowed_values: - raise ValueError( - "Invalid value for `action` ({0}), must be one of {1}" # noqa: E501 - .format(action, allowed_values) - ) - - self._action = action - - @property - def description(self): - """Gets the description of this PoliciesPolicyRulesRule. # noqa: E501 - - A description of the firewall rule. # noqa: E501 - - :return: The description of this PoliciesPolicyRulesRule. # noqa: E501 - :rtype: str - """ - return self._description - - @description.setter - def description(self, description): - """Sets the description of this PoliciesPolicyRulesRule. - - A description of the firewall rule. # noqa: E501 - - :param description: The description of this PoliciesPolicyRulesRule. # noqa: E501 - :type: str - """ - if description is not None and len(description) > 128: - raise ValueError("Invalid value for `description`, length must be less than or equal to `128`") # noqa: E501 - if description is not None and len(description) < 0: - raise ValueError("Invalid value for `description`, length must be greater than or equal to `0`") # noqa: E501 - - self._description = description - - @property - def dst_ports(self): - """Gets the dst_ports of this PoliciesPolicyRulesRule. # noqa: E501 - - Customer specified protocols or OneFS default services's protocols for destination control # noqa: E501 - - :return: The dst_ports of this PoliciesPolicyRulesRule. # noqa: E501 - :rtype: PoliciesPolicyRuleDstPorts - """ - return self._dst_ports - - @dst_ports.setter - def dst_ports(self, dst_ports): - """Sets the dst_ports of this PoliciesPolicyRulesRule. - - Customer specified protocols or OneFS default services's protocols for destination control # noqa: E501 - - :param dst_ports: The dst_ports of this PoliciesPolicyRulesRule. # noqa: E501 - :type: PoliciesPolicyRuleDstPorts - """ - - self._dst_ports = dst_ports - - @property - def id(self): - """Gets the id of this PoliciesPolicyRulesRule. # noqa: E501 - - Unique firewall rule ID # noqa: E501 - - :return: The id of this PoliciesPolicyRulesRule. # noqa: E501 - :rtype: str - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this PoliciesPolicyRulesRule. - - Unique firewall rule ID # noqa: E501 - - :param id: The id of this PoliciesPolicyRulesRule. # noqa: E501 - :type: str - """ - if id is not None and len(id) > 66: - raise ValueError("Invalid value for `id`, length must be less than or equal to `66`") # noqa: E501 - if id is not None and len(id) < 1: - raise ValueError("Invalid value for `id`, length must be greater than or equal to `1`") # noqa: E501 - - self._id = id - - @property - def index(self): - """Gets the index of this PoliciesPolicyRulesRule. # noqa: E501 - - Firewall rule index in policy # noqa: E501 - - :return: The index of this PoliciesPolicyRulesRule. # noqa: E501 - :rtype: int - """ - return self._index - - @index.setter - def index(self, index): - """Sets the index of this PoliciesPolicyRulesRule. - - Firewall rule index in policy # noqa: E501 - - :param index: The index of this PoliciesPolicyRulesRule. # noqa: E501 - :type: int - """ - if index is not None and index > 200: # noqa: E501 - raise ValueError("Invalid value for `index`, must be a value less than or equal to `200`") # noqa: E501 - if index is not None and index < 1: # noqa: E501 - raise ValueError("Invalid value for `index`, must be a value greater than or equal to `1`") # noqa: E501 - - self._index = index - - @property - def name(self): - """Gets the name of this PoliciesPolicyRulesRule. # noqa: E501 - - The name of the firewall rule. # noqa: E501 - - :return: The name of this PoliciesPolicyRulesRule. # noqa: E501 - :rtype: str - """ - return self._name - - @name.setter - def name(self, name): - """Sets the name of this PoliciesPolicyRulesRule. - - The name of the firewall rule. # noqa: E501 - - :param name: The name of this PoliciesPolicyRulesRule. # noqa: E501 - :type: str - """ - if name is not None and len(name) > 32: - raise ValueError("Invalid value for `name`, length must be less than or equal to `32`") # noqa: E501 - if name is not None and len(name) < 1: - raise ValueError("Invalid value for `name`, length must be greater than or equal to `1`") # noqa: E501 - if name is not None and not re.search(r'^[0-9a-zA-Z_-]*$', name): # noqa: E501 - raise ValueError(r"Invalid value for `name`, must be a follow pattern or equal to `/^[0-9a-zA-Z_-]*$/`") # noqa: E501 - - self._name = name - - @property - def protocol(self): - """Gets the protocol of this PoliciesPolicyRulesRule. # noqa: E501 - - Firewall rule set on protocol # noqa: E501 - - :return: The protocol of this PoliciesPolicyRulesRule. # noqa: E501 - :rtype: str - """ - return self._protocol - - @protocol.setter - def protocol(self, protocol): - """Sets the protocol of this PoliciesPolicyRulesRule. - - Firewall rule set on protocol # noqa: E501 - - :param protocol: The protocol of this PoliciesPolicyRulesRule. # noqa: E501 - :type: str - """ - allowed_values = ["ALL", "TCP", "UDP", "ICMP", "ICMP6"] # noqa: E501 - if protocol not in allowed_values: - raise ValueError( - "Invalid value for `protocol` ({0}), must be one of {1}" # noqa: E501 - .format(protocol, allowed_values) - ) - - self._protocol = protocol - - @property - def src_networks(self): - """Gets the src_networks of this PoliciesPolicyRulesRule. # noqa: E501 - - Source Networks # noqa: E501 - - :return: The src_networks of this PoliciesPolicyRulesRule. # noqa: E501 - :rtype: list[str] - """ - return self._src_networks - - @src_networks.setter - def src_networks(self, src_networks): - """Sets the src_networks of this PoliciesPolicyRulesRule. - - Source Networks # noqa: E501 - - :param src_networks: The src_networks of this PoliciesPolicyRulesRule. # noqa: E501 - :type: list[str] - """ - - self._src_networks = src_networks - - @property - def src_ports(self): - """Gets the src_ports of this PoliciesPolicyRulesRule. # noqa: E501 - - Customer specified protocols or OneFS default services's protocols for source control # noqa: E501 - - :return: The src_ports of this PoliciesPolicyRulesRule. # noqa: E501 - :rtype: PoliciesPolicyRuleDstPorts - """ - return self._src_ports - - @src_ports.setter - def src_ports(self, src_ports): - """Sets the src_ports of this PoliciesPolicyRulesRule. - - Customer specified protocols or OneFS default services's protocols for source control # noqa: E501 - - :param src_ports: The src_ports of this PoliciesPolicyRulesRule. # noqa: E501 - :type: PoliciesPolicyRuleDstPorts - """ - - self._src_ports = src_ports - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(PoliciesPolicyRulesRule, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, PoliciesPolicyRulesRule): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/policy_last_job.py b/isilon_sdk/isilon_sdk/v9_11_0/models/policy_last_job.py deleted file mode 100644 index 41bffcc0a..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/policy_last_job.py +++ /dev/null @@ -1,117 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class PolicyLastJob(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'policy_job_details': 'PolicyLastJobPolicyJobDetails' - } - - attribute_map = { - 'policy_job_details': 'policy_job_details' - } - - def __init__(self, policy_job_details=None): # noqa: E501 - """PolicyLastJob - a model defined in Swagger""" # noqa: E501 - - self._policy_job_details = None - self.discriminator = None - - if policy_job_details is not None: - self.policy_job_details = policy_job_details - - @property - def policy_job_details(self): - """Gets the policy_job_details of this PolicyLastJob. # noqa: E501 - - job ID and last execution time of the policy # noqa: E501 - - :return: The policy_job_details of this PolicyLastJob. # noqa: E501 - :rtype: PolicyLastJobPolicyJobDetails - """ - return self._policy_job_details - - @policy_job_details.setter - def policy_job_details(self, policy_job_details): - """Sets the policy_job_details of this PolicyLastJob. - - job ID and last execution time of the policy # noqa: E501 - - :param policy_job_details: The policy_job_details of this PolicyLastJob. # noqa: E501 - :type: PolicyLastJobPolicyJobDetails - """ - - self._policy_job_details = policy_job_details - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(PolicyLastJob, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, PolicyLastJob): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/policy_last_job_policy_job_details.py b/isilon_sdk/isilon_sdk/v9_11_0/models/policy_last_job_policy_job_details.py deleted file mode 100644 index 619d612e5..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/policy_last_job_policy_job_details.py +++ /dev/null @@ -1,153 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class PolicyLastJobPolicyJobDetails(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'job_id': 'int', - 'last_execution_time': 'int' - } - - attribute_map = { - 'job_id': 'job_id', - 'last_execution_time': 'last_execution_time' - } - - def __init__(self, job_id=None, last_execution_time=None): # noqa: E501 - """PolicyLastJobPolicyJobDetails - a model defined in Swagger""" # noqa: E501 - - self._job_id = None - self._last_execution_time = None - self.discriminator = None - - if job_id is not None: - self.job_id = job_id - if last_execution_time is not None: - self.last_execution_time = last_execution_time - - @property - def job_id(self): - """Gets the job_id of this PolicyLastJobPolicyJobDetails. # noqa: E501 - - Unique Job ID. # noqa: E501 - - :return: The job_id of this PolicyLastJobPolicyJobDetails. # noqa: E501 - :rtype: int - """ - return self._job_id - - @job_id.setter - def job_id(self, job_id): - """Sets the job_id of this PolicyLastJobPolicyJobDetails. - - Unique Job ID. # noqa: E501 - - :param job_id: The job_id of this PolicyLastJobPolicyJobDetails. # noqa: E501 - :type: int - """ - if job_id is not None and job_id > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `job_id`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if job_id is not None and job_id < 0: # noqa: E501 - raise ValueError("Invalid value for `job_id`, must be a value greater than or equal to `0`") # noqa: E501 - - self._job_id = job_id - - @property - def last_execution_time(self): - """Gets the last_execution_time of this PolicyLastJobPolicyJobDetails. # noqa: E501 - - The time when the last job for the policy was executed. The time is in seconds past the epoch # noqa: E501 - - :return: The last_execution_time of this PolicyLastJobPolicyJobDetails. # noqa: E501 - :rtype: int - """ - return self._last_execution_time - - @last_execution_time.setter - def last_execution_time(self, last_execution_time): - """Sets the last_execution_time of this PolicyLastJobPolicyJobDetails. - - The time when the last job for the policy was executed. The time is in seconds past the epoch # noqa: E501 - - :param last_execution_time: The last_execution_time of this PolicyLastJobPolicyJobDetails. # noqa: E501 - :type: int - """ - if last_execution_time is not None and last_execution_time > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `last_execution_time`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if last_execution_time is not None and last_execution_time < 1: # noqa: E501 - raise ValueError("Invalid value for `last_execution_time`, must be a value greater than or equal to `1`") # noqa: E501 - - self._last_execution_time = last_execution_time - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(PolicyLastJobPolicyJobDetails, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, PolicyLastJobPolicyJobDetails): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_cert_extract_item.py b/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_cert_extract_item.py deleted file mode 100644 index e87bec0fb..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_cert_extract_item.py +++ /dev/null @@ -1,153 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ProvidersSamlServicesCertExtractItem(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'data': 'str', - 'path': 'str' - } - - attribute_map = { - 'data': 'data', - 'path': 'path' - } - - def __init__(self, data=None, path=None): # noqa: E501 - """ProvidersSamlServicesCertExtractItem - a model defined in Swagger""" # noqa: E501 - - self._data = None - self._path = None - self.discriminator = None - - if data is not None: - self.data = data - if path is not None: - self.path = path - - @property - def data(self): - """Gets the data of this ProvidersSamlServicesCertExtractItem. # noqa: E501 - - PEM-encoded certificate. # noqa: E501 - - :return: The data of this ProvidersSamlServicesCertExtractItem. # noqa: E501 - :rtype: str - """ - return self._data - - @data.setter - def data(self, data): - """Sets the data of this ProvidersSamlServicesCertExtractItem. - - PEM-encoded certificate. # noqa: E501 - - :param data: The data of this ProvidersSamlServicesCertExtractItem. # noqa: E501 - :type: str - """ - if data is not None and len(data) > 32768: - raise ValueError("Invalid value for `data`, length must be less than or equal to `32768`") # noqa: E501 - if data is not None and len(data) < 0: - raise ValueError("Invalid value for `data`, length must be greater than or equal to `0`") # noqa: E501 - - self._data = data - - @property - def path(self): - """Gets the path of this ProvidersSamlServicesCertExtractItem. # noqa: E501 - - Path to the PEM-encoded certificate. # noqa: E501 - - :return: The path of this ProvidersSamlServicesCertExtractItem. # noqa: E501 - :rtype: str - """ - return self._path - - @path.setter - def path(self, path): - """Sets the path of this ProvidersSamlServicesCertExtractItem. - - Path to the PEM-encoded certificate. # noqa: E501 - - :param path: The path of this ProvidersSamlServicesCertExtractItem. # noqa: E501 - :type: str - """ - if path is not None and len(path) > 4096: - raise ValueError("Invalid value for `path`, length must be less than or equal to `4096`") # noqa: E501 - if path is not None and len(path) < 0: - raise ValueError("Invalid value for `path`, length must be greater than or equal to `0`") # noqa: E501 - - self._path = path - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ProvidersSamlServicesCertExtractItem, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ProvidersSamlServicesCertExtractItem): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_idp.py b/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_idp.py deleted file mode 100644 index 27d9a6fb4..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_idp.py +++ /dev/null @@ -1,337 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ProvidersSamlServicesIdp(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'entity_id': 'str', - 'id': 'str', - 'login': 'ProvidersSamlServicesIdpLogin', - 'logout': 'ProvidersSamlServicesIdpLogout', - 'metadata': 'str', - 'metadata_location': 'str', - 'signing_certificate': 'str', - 'signing_certificate_path': 'str' - } - - attribute_map = { - 'entity_id': 'entity_id', - 'id': 'id', - 'login': 'login', - 'logout': 'logout', - 'metadata': 'metadata', - 'metadata_location': 'metadata_location', - 'signing_certificate': 'signing_certificate', - 'signing_certificate_path': 'signing_certificate_path' - } - - def __init__(self, entity_id=None, id=None, login=None, logout=None, metadata=None, metadata_location=None, signing_certificate=None, signing_certificate_path=None): # noqa: E501 - """ProvidersSamlServicesIdp - a model defined in Swagger""" # noqa: E501 - - self._entity_id = None - self._id = None - self._login = None - self._logout = None - self._metadata = None - self._metadata_location = None - self._signing_certificate = None - self._signing_certificate_path = None - self.discriminator = None - - if entity_id is not None: - self.entity_id = entity_id - if id is not None: - self.id = id - if login is not None: - self.login = login - if logout is not None: - self.logout = logout - if metadata is not None: - self.metadata = metadata - if metadata_location is not None: - self.metadata_location = metadata_location - if signing_certificate is not None: - self.signing_certificate = signing_certificate - if signing_certificate_path is not None: - self.signing_certificate_path = signing_certificate_path - - @property - def entity_id(self): - """Gets the entity_id of this ProvidersSamlServicesIdp. # noqa: E501 - - Unique identifier of the IDP. # noqa: E501 - - :return: The entity_id of this ProvidersSamlServicesIdp. # noqa: E501 - :rtype: str - """ - return self._entity_id - - @entity_id.setter - def entity_id(self, entity_id): - """Sets the entity_id of this ProvidersSamlServicesIdp. - - Unique identifier of the IDP. # noqa: E501 - - :param entity_id: The entity_id of this ProvidersSamlServicesIdp. # noqa: E501 - :type: str - """ - if entity_id is not None and len(entity_id) > 1024: - raise ValueError("Invalid value for `entity_id`, length must be less than or equal to `1024`") # noqa: E501 - if entity_id is not None and len(entity_id) < 0: - raise ValueError("Invalid value for `entity_id`, length must be greater than or equal to `0`") # noqa: E501 - - self._entity_id = entity_id - - @property - def id(self): - """Gets the id of this ProvidersSamlServicesIdp. # noqa: E501 - - Unique identifier of a SAML service resource. # noqa: E501 - - :return: The id of this ProvidersSamlServicesIdp. # noqa: E501 - :rtype: str - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this ProvidersSamlServicesIdp. - - Unique identifier of a SAML service resource. # noqa: E501 - - :param id: The id of this ProvidersSamlServicesIdp. # noqa: E501 - :type: str - """ - if id is not None and len(id) > 255: - raise ValueError("Invalid value for `id`, length must be less than or equal to `255`") # noqa: E501 - if id is not None and len(id) < 0: - raise ValueError("Invalid value for `id`, length must be greater than or equal to `0`") # noqa: E501 - - self._id = id - - @property - def login(self): - """Gets the login of this ProvidersSamlServicesIdp. # noqa: E501 - - Login endpoint of the IDP. This specifies the method and location PowerScale will use to send AuthnRequest messages to the IDP. # noqa: E501 - - :return: The login of this ProvidersSamlServicesIdp. # noqa: E501 - :rtype: ProvidersSamlServicesIdpLogin - """ - return self._login - - @login.setter - def login(self, login): - """Sets the login of this ProvidersSamlServicesIdp. - - Login endpoint of the IDP. This specifies the method and location PowerScale will use to send AuthnRequest messages to the IDP. # noqa: E501 - - :param login: The login of this ProvidersSamlServicesIdp. # noqa: E501 - :type: ProvidersSamlServicesIdpLogin - """ - - self._login = login - - @property - def logout(self): - """Gets the logout of this ProvidersSamlServicesIdp. # noqa: E501 - - # noqa: E501 - - :return: The logout of this ProvidersSamlServicesIdp. # noqa: E501 - :rtype: ProvidersSamlServicesIdpLogout - """ - return self._logout - - @logout.setter - def logout(self, logout): - """Sets the logout of this ProvidersSamlServicesIdp. - - # noqa: E501 - - :param logout: The logout of this ProvidersSamlServicesIdp. # noqa: E501 - :type: ProvidersSamlServicesIdpLogout - """ - - self._logout = logout - - @property - def metadata(self): - """Gets the metadata of this ProvidersSamlServicesIdp. # noqa: E501 - - Metadata XML data of the SAML provider. # noqa: E501 - - :return: The metadata of this ProvidersSamlServicesIdp. # noqa: E501 - :rtype: str - """ - return self._metadata - - @metadata.setter - def metadata(self, metadata): - """Sets the metadata of this ProvidersSamlServicesIdp. - - Metadata XML data of the SAML provider. # noqa: E501 - - :param metadata: The metadata of this ProvidersSamlServicesIdp. # noqa: E501 - :type: str - """ - if metadata is not None and len(metadata) > 8000000: - raise ValueError("Invalid value for `metadata`, length must be less than or equal to `8000000`") # noqa: E501 - if metadata is not None and len(metadata) < 0: - raise ValueError("Invalid value for `metadata`, length must be greater than or equal to `0`") # noqa: E501 - - self._metadata = metadata - - @property - def metadata_location(self): - """Gets the metadata_location of this ProvidersSamlServicesIdp. # noqa: E501 - - Metadata location of the SAML provider. # noqa: E501 - - :return: The metadata_location of this ProvidersSamlServicesIdp. # noqa: E501 - :rtype: str - """ - return self._metadata_location - - @metadata_location.setter - def metadata_location(self, metadata_location): - """Sets the metadata_location of this ProvidersSamlServicesIdp. - - Metadata location of the SAML provider. # noqa: E501 - - :param metadata_location: The metadata_location of this ProvidersSamlServicesIdp. # noqa: E501 - :type: str - """ - if metadata_location is not None and len(metadata_location) > 2048: - raise ValueError("Invalid value for `metadata_location`, length must be less than or equal to `2048`") # noqa: E501 - if metadata_location is not None and len(metadata_location) < 0: - raise ValueError("Invalid value for `metadata_location`, length must be greater than or equal to `0`") # noqa: E501 - - self._metadata_location = metadata_location - - @property - def signing_certificate(self): - """Gets the signing_certificate of this ProvidersSamlServicesIdp. # noqa: E501 - - PEM-encoded certificate used to verify messages from the IDP. # noqa: E501 - - :return: The signing_certificate of this ProvidersSamlServicesIdp. # noqa: E501 - :rtype: str - """ - return self._signing_certificate - - @signing_certificate.setter - def signing_certificate(self, signing_certificate): - """Sets the signing_certificate of this ProvidersSamlServicesIdp. - - PEM-encoded certificate used to verify messages from the IDP. # noqa: E501 - - :param signing_certificate: The signing_certificate of this ProvidersSamlServicesIdp. # noqa: E501 - :type: str - """ - if signing_certificate is not None and len(signing_certificate) > 32768: - raise ValueError("Invalid value for `signing_certificate`, length must be less than or equal to `32768`") # noqa: E501 - if signing_certificate is not None and len(signing_certificate) < 0: - raise ValueError("Invalid value for `signing_certificate`, length must be greater than or equal to `0`") # noqa: E501 - - self._signing_certificate = signing_certificate - - @property - def signing_certificate_path(self): - """Gets the signing_certificate_path of this ProvidersSamlServicesIdp. # noqa: E501 - - Path to the PEM-encoded certificate used to verify messages from the IDP. # noqa: E501 - - :return: The signing_certificate_path of this ProvidersSamlServicesIdp. # noqa: E501 - :rtype: str - """ - return self._signing_certificate_path - - @signing_certificate_path.setter - def signing_certificate_path(self, signing_certificate_path): - """Sets the signing_certificate_path of this ProvidersSamlServicesIdp. - - Path to the PEM-encoded certificate used to verify messages from the IDP. # noqa: E501 - - :param signing_certificate_path: The signing_certificate_path of this ProvidersSamlServicesIdp. # noqa: E501 - :type: str - """ - if signing_certificate_path is not None and len(signing_certificate_path) > 4096: - raise ValueError("Invalid value for `signing_certificate_path`, length must be less than or equal to `4096`") # noqa: E501 - if signing_certificate_path is not None and len(signing_certificate_path) < 0: - raise ValueError("Invalid value for `signing_certificate_path`, length must be greater than or equal to `0`") # noqa: E501 - - self._signing_certificate_path = signing_certificate_path - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ProvidersSamlServicesIdp, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ProvidersSamlServicesIdp): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_idp_create_params.py b/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_idp_create_params.py deleted file mode 100644 index 2e3ba8a52..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_idp_create_params.py +++ /dev/null @@ -1,338 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ProvidersSamlServicesIdpCreateParams(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'entity_id': 'str', - 'id': 'str', - 'login': 'ProvidersSamlServicesIdpLogin', - 'logout': 'ProvidersSamlServicesIdpLogout', - 'metadata': 'str', - 'metadata_location': 'str', - 'signing_certificate': 'str', - 'signing_certificate_path': 'str' - } - - attribute_map = { - 'entity_id': 'entity_id', - 'id': 'id', - 'login': 'login', - 'logout': 'logout', - 'metadata': 'metadata', - 'metadata_location': 'metadata_location', - 'signing_certificate': 'signing_certificate', - 'signing_certificate_path': 'signing_certificate_path' - } - - def __init__(self, entity_id=None, id=None, login=None, logout=None, metadata=None, metadata_location=None, signing_certificate=None, signing_certificate_path=None): # noqa: E501 - """ProvidersSamlServicesIdpCreateParams - a model defined in Swagger""" # noqa: E501 - - self._entity_id = None - self._id = None - self._login = None - self._logout = None - self._metadata = None - self._metadata_location = None - self._signing_certificate = None - self._signing_certificate_path = None - self.discriminator = None - - if entity_id is not None: - self.entity_id = entity_id - self.id = id - if login is not None: - self.login = login - if logout is not None: - self.logout = logout - if metadata is not None: - self.metadata = metadata - if metadata_location is not None: - self.metadata_location = metadata_location - if signing_certificate is not None: - self.signing_certificate = signing_certificate - if signing_certificate_path is not None: - self.signing_certificate_path = signing_certificate_path - - @property - def entity_id(self): - """Gets the entity_id of this ProvidersSamlServicesIdpCreateParams. # noqa: E501 - - Unique identifier of the IDP. # noqa: E501 - - :return: The entity_id of this ProvidersSamlServicesIdpCreateParams. # noqa: E501 - :rtype: str - """ - return self._entity_id - - @entity_id.setter - def entity_id(self, entity_id): - """Sets the entity_id of this ProvidersSamlServicesIdpCreateParams. - - Unique identifier of the IDP. # noqa: E501 - - :param entity_id: The entity_id of this ProvidersSamlServicesIdpCreateParams. # noqa: E501 - :type: str - """ - if entity_id is not None and len(entity_id) > 1024: - raise ValueError("Invalid value for `entity_id`, length must be less than or equal to `1024`") # noqa: E501 - if entity_id is not None and len(entity_id) < 0: - raise ValueError("Invalid value for `entity_id`, length must be greater than or equal to `0`") # noqa: E501 - - self._entity_id = entity_id - - @property - def id(self): - """Gets the id of this ProvidersSamlServicesIdpCreateParams. # noqa: E501 - - Unique identifier of a SAML service resource. # noqa: E501 - - :return: The id of this ProvidersSamlServicesIdpCreateParams. # noqa: E501 - :rtype: str - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this ProvidersSamlServicesIdpCreateParams. - - Unique identifier of a SAML service resource. # noqa: E501 - - :param id: The id of this ProvidersSamlServicesIdpCreateParams. # noqa: E501 - :type: str - """ - if id is None: - raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 - if id is not None and len(id) > 255: - raise ValueError("Invalid value for `id`, length must be less than or equal to `255`") # noqa: E501 - if id is not None and len(id) < 0: - raise ValueError("Invalid value for `id`, length must be greater than or equal to `0`") # noqa: E501 - - self._id = id - - @property - def login(self): - """Gets the login of this ProvidersSamlServicesIdpCreateParams. # noqa: E501 - - Login endpoint of the IDP. This specifies the method and location PowerScale will use to send AuthnRequest messages to the IDP. # noqa: E501 - - :return: The login of this ProvidersSamlServicesIdpCreateParams. # noqa: E501 - :rtype: ProvidersSamlServicesIdpLogin - """ - return self._login - - @login.setter - def login(self, login): - """Sets the login of this ProvidersSamlServicesIdpCreateParams. - - Login endpoint of the IDP. This specifies the method and location PowerScale will use to send AuthnRequest messages to the IDP. # noqa: E501 - - :param login: The login of this ProvidersSamlServicesIdpCreateParams. # noqa: E501 - :type: ProvidersSamlServicesIdpLogin - """ - - self._login = login - - @property - def logout(self): - """Gets the logout of this ProvidersSamlServicesIdpCreateParams. # noqa: E501 - - # noqa: E501 - - :return: The logout of this ProvidersSamlServicesIdpCreateParams. # noqa: E501 - :rtype: ProvidersSamlServicesIdpLogout - """ - return self._logout - - @logout.setter - def logout(self, logout): - """Sets the logout of this ProvidersSamlServicesIdpCreateParams. - - # noqa: E501 - - :param logout: The logout of this ProvidersSamlServicesIdpCreateParams. # noqa: E501 - :type: ProvidersSamlServicesIdpLogout - """ - - self._logout = logout - - @property - def metadata(self): - """Gets the metadata of this ProvidersSamlServicesIdpCreateParams. # noqa: E501 - - Metadata XML data of the SAML provider. # noqa: E501 - - :return: The metadata of this ProvidersSamlServicesIdpCreateParams. # noqa: E501 - :rtype: str - """ - return self._metadata - - @metadata.setter - def metadata(self, metadata): - """Sets the metadata of this ProvidersSamlServicesIdpCreateParams. - - Metadata XML data of the SAML provider. # noqa: E501 - - :param metadata: The metadata of this ProvidersSamlServicesIdpCreateParams. # noqa: E501 - :type: str - """ - if metadata is not None and len(metadata) > 8000000: - raise ValueError("Invalid value for `metadata`, length must be less than or equal to `8000000`") # noqa: E501 - if metadata is not None and len(metadata) < 0: - raise ValueError("Invalid value for `metadata`, length must be greater than or equal to `0`") # noqa: E501 - - self._metadata = metadata - - @property - def metadata_location(self): - """Gets the metadata_location of this ProvidersSamlServicesIdpCreateParams. # noqa: E501 - - Metadata location of the SAML provider. # noqa: E501 - - :return: The metadata_location of this ProvidersSamlServicesIdpCreateParams. # noqa: E501 - :rtype: str - """ - return self._metadata_location - - @metadata_location.setter - def metadata_location(self, metadata_location): - """Sets the metadata_location of this ProvidersSamlServicesIdpCreateParams. - - Metadata location of the SAML provider. # noqa: E501 - - :param metadata_location: The metadata_location of this ProvidersSamlServicesIdpCreateParams. # noqa: E501 - :type: str - """ - if metadata_location is not None and len(metadata_location) > 2048: - raise ValueError("Invalid value for `metadata_location`, length must be less than or equal to `2048`") # noqa: E501 - if metadata_location is not None and len(metadata_location) < 0: - raise ValueError("Invalid value for `metadata_location`, length must be greater than or equal to `0`") # noqa: E501 - - self._metadata_location = metadata_location - - @property - def signing_certificate(self): - """Gets the signing_certificate of this ProvidersSamlServicesIdpCreateParams. # noqa: E501 - - PEM-encoded certificate used to verify messages from the IDP. # noqa: E501 - - :return: The signing_certificate of this ProvidersSamlServicesIdpCreateParams. # noqa: E501 - :rtype: str - """ - return self._signing_certificate - - @signing_certificate.setter - def signing_certificate(self, signing_certificate): - """Sets the signing_certificate of this ProvidersSamlServicesIdpCreateParams. - - PEM-encoded certificate used to verify messages from the IDP. # noqa: E501 - - :param signing_certificate: The signing_certificate of this ProvidersSamlServicesIdpCreateParams. # noqa: E501 - :type: str - """ - if signing_certificate is not None and len(signing_certificate) > 32768: - raise ValueError("Invalid value for `signing_certificate`, length must be less than or equal to `32768`") # noqa: E501 - if signing_certificate is not None and len(signing_certificate) < 0: - raise ValueError("Invalid value for `signing_certificate`, length must be greater than or equal to `0`") # noqa: E501 - - self._signing_certificate = signing_certificate - - @property - def signing_certificate_path(self): - """Gets the signing_certificate_path of this ProvidersSamlServicesIdpCreateParams. # noqa: E501 - - Path to the PEM-encoded certificate used to verify messages from the IDP. # noqa: E501 - - :return: The signing_certificate_path of this ProvidersSamlServicesIdpCreateParams. # noqa: E501 - :rtype: str - """ - return self._signing_certificate_path - - @signing_certificate_path.setter - def signing_certificate_path(self, signing_certificate_path): - """Sets the signing_certificate_path of this ProvidersSamlServicesIdpCreateParams. - - Path to the PEM-encoded certificate used to verify messages from the IDP. # noqa: E501 - - :param signing_certificate_path: The signing_certificate_path of this ProvidersSamlServicesIdpCreateParams. # noqa: E501 - :type: str - """ - if signing_certificate_path is not None and len(signing_certificate_path) > 4096: - raise ValueError("Invalid value for `signing_certificate_path`, length must be less than or equal to `4096`") # noqa: E501 - if signing_certificate_path is not None and len(signing_certificate_path) < 0: - raise ValueError("Invalid value for `signing_certificate_path`, length must be greater than or equal to `0`") # noqa: E501 - - self._signing_certificate_path = signing_certificate_path - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ProvidersSamlServicesIdpCreateParams, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ProvidersSamlServicesIdpCreateParams): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_idp_login.py b/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_idp_login.py deleted file mode 100644 index b39f2323d..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_idp_login.py +++ /dev/null @@ -1,153 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ProvidersSamlServicesIdpLogin(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'binding': 'str', - 'url': 'str' - } - - attribute_map = { - 'binding': 'binding', - 'url': 'url' - } - - def __init__(self, binding=None, url=None): # noqa: E501 - """ProvidersSamlServicesIdpLogin - a model defined in Swagger""" # noqa: E501 - - self._binding = None - self._url = None - self.discriminator = None - - if binding is not None: - self.binding = binding - if url is not None: - self.url = url - - @property - def binding(self): - """Gets the binding of this ProvidersSamlServicesIdpLogin. # noqa: E501 - - SAML binding that PowerScale will use to send messages to the IDP. # noqa: E501 - - :return: The binding of this ProvidersSamlServicesIdpLogin. # noqa: E501 - :rtype: str - """ - return self._binding - - @binding.setter - def binding(self, binding): - """Sets the binding of this ProvidersSamlServicesIdpLogin. - - SAML binding that PowerScale will use to send messages to the IDP. # noqa: E501 - - :param binding: The binding of this ProvidersSamlServicesIdpLogin. # noqa: E501 - :type: str - """ - if binding is not None and len(binding) > 255: - raise ValueError("Invalid value for `binding`, length must be less than or equal to `255`") # noqa: E501 - if binding is not None and len(binding) < 1: - raise ValueError("Invalid value for `binding`, length must be greater than or equal to `1`") # noqa: E501 - - self._binding = binding - - @property - def url(self): - """Gets the url of this ProvidersSamlServicesIdpLogin. # noqa: E501 - - URL specifying the location of where to send messages. # noqa: E501 - - :return: The url of this ProvidersSamlServicesIdpLogin. # noqa: E501 - :rtype: str - """ - return self._url - - @url.setter - def url(self, url): - """Sets the url of this ProvidersSamlServicesIdpLogin. - - URL specifying the location of where to send messages. # noqa: E501 - - :param url: The url of this ProvidersSamlServicesIdpLogin. # noqa: E501 - :type: str - """ - if url is not None and len(url) > 2048: - raise ValueError("Invalid value for `url`, length must be less than or equal to `2048`") # noqa: E501 - if url is not None and len(url) < 1: - raise ValueError("Invalid value for `url`, length must be greater than or equal to `1`") # noqa: E501 - - self._url = url - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ProvidersSamlServicesIdpLogin, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ProvidersSamlServicesIdpLogin): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_idp_logout.py b/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_idp_logout.py deleted file mode 100644 index 38741cffa..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_idp_logout.py +++ /dev/null @@ -1,183 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ProvidersSamlServicesIdpLogout(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'binding': 'str', - 'response_url': 'str', - 'url': 'str' - } - - attribute_map = { - 'binding': 'binding', - 'response_url': 'response_url', - 'url': 'url' - } - - def __init__(self, binding=None, response_url=None, url=None): # noqa: E501 - """ProvidersSamlServicesIdpLogout - a model defined in Swagger""" # noqa: E501 - - self._binding = None - self._response_url = None - self._url = None - self.discriminator = None - - if binding is not None: - self.binding = binding - if response_url is not None: - self.response_url = response_url - if url is not None: - self.url = url - - @property - def binding(self): - """Gets the binding of this ProvidersSamlServicesIdpLogout. # noqa: E501 - - SAML binding that PowerScale will use to send messages to the IDP. # noqa: E501 - - :return: The binding of this ProvidersSamlServicesIdpLogout. # noqa: E501 - :rtype: str - """ - return self._binding - - @binding.setter - def binding(self, binding): - """Sets the binding of this ProvidersSamlServicesIdpLogout. - - SAML binding that PowerScale will use to send messages to the IDP. # noqa: E501 - - :param binding: The binding of this ProvidersSamlServicesIdpLogout. # noqa: E501 - :type: str - """ - if binding is not None and len(binding) > 255: - raise ValueError("Invalid value for `binding`, length must be less than or equal to `255`") # noqa: E501 - if binding is not None and len(binding) < 1: - raise ValueError("Invalid value for `binding`, length must be greater than or equal to `1`") # noqa: E501 - - self._binding = binding - - @property - def response_url(self): - """Gets the response_url of this ProvidersSamlServicesIdpLogout. # noqa: E501 - - - :return: The response_url of this ProvidersSamlServicesIdpLogout. # noqa: E501 - :rtype: str - """ - return self._response_url - - @response_url.setter - def response_url(self, response_url): - """Sets the response_url of this ProvidersSamlServicesIdpLogout. - - - :param response_url: The response_url of this ProvidersSamlServicesIdpLogout. # noqa: E501 - :type: str - """ - if response_url is not None and len(response_url) > 2048: - raise ValueError("Invalid value for `response_url`, length must be less than or equal to `2048`") # noqa: E501 - if response_url is not None and len(response_url) < 1: - raise ValueError("Invalid value for `response_url`, length must be greater than or equal to `1`") # noqa: E501 - - self._response_url = response_url - - @property - def url(self): - """Gets the url of this ProvidersSamlServicesIdpLogout. # noqa: E501 - - URL specifying the location of where to send messages. # noqa: E501 - - :return: The url of this ProvidersSamlServicesIdpLogout. # noqa: E501 - :rtype: str - """ - return self._url - - @url.setter - def url(self, url): - """Sets the url of this ProvidersSamlServicesIdpLogout. - - URL specifying the location of where to send messages. # noqa: E501 - - :param url: The url of this ProvidersSamlServicesIdpLogout. # noqa: E501 - :type: str - """ - if url is not None and len(url) > 2048: - raise ValueError("Invalid value for `url`, length must be less than or equal to `2048`") # noqa: E501 - if url is not None and len(url) < 1: - raise ValueError("Invalid value for `url`, length must be greater than or equal to `1`") # noqa: E501 - - self._url = url - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ProvidersSamlServicesIdpLogout, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ProvidersSamlServicesIdpLogout): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_idps.py b/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_idps.py deleted file mode 100644 index beffa0665..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_idps.py +++ /dev/null @@ -1,115 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ProvidersSamlServicesIdps(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'idps': 'list[ProvidersSamlServicesIdpsIdp]' - } - - attribute_map = { - 'idps': 'idps' - } - - def __init__(self, idps=None): # noqa: E501 - """ProvidersSamlServicesIdps - a model defined in Swagger""" # noqa: E501 - - self._idps = None - self.discriminator = None - - if idps is not None: - self.idps = idps - - @property - def idps(self): - """Gets the idps of this ProvidersSamlServicesIdps. # noqa: E501 - - - :return: The idps of this ProvidersSamlServicesIdps. # noqa: E501 - :rtype: list[ProvidersSamlServicesIdpsIdp] - """ - return self._idps - - @idps.setter - def idps(self, idps): - """Sets the idps of this ProvidersSamlServicesIdps. - - - :param idps: The idps of this ProvidersSamlServicesIdps. # noqa: E501 - :type: list[ProvidersSamlServicesIdpsIdp] - """ - - self._idps = idps - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ProvidersSamlServicesIdps, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ProvidersSamlServicesIdps): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_idps_idp.py b/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_idps_idp.py deleted file mode 100644 index 96b10aec6..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_idps_idp.py +++ /dev/null @@ -1,303 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ProvidersSamlServicesIdpsIdp(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'entity_id': 'str', - 'id': 'str', - 'login': 'ProvidersSamlServicesIdpLogin', - 'logout': 'ProvidersSamlServicesIdpLogout', - 'metadata_location': 'str', - 'signing_certificate': 'CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo', - 'type': 'str' - } - - attribute_map = { - 'entity_id': 'entity_id', - 'id': 'id', - 'login': 'login', - 'logout': 'logout', - 'metadata_location': 'metadata_location', - 'signing_certificate': 'signing_certificate', - 'type': 'type' - } - - def __init__(self, entity_id=None, id=None, login=None, logout=None, metadata_location=None, signing_certificate=None, type=None): # noqa: E501 - """ProvidersSamlServicesIdpsIdp - a model defined in Swagger""" # noqa: E501 - - self._entity_id = None - self._id = None - self._login = None - self._logout = None - self._metadata_location = None - self._signing_certificate = None - self._type = None - self.discriminator = None - - if entity_id is not None: - self.entity_id = entity_id - if id is not None: - self.id = id - if login is not None: - self.login = login - if logout is not None: - self.logout = logout - if metadata_location is not None: - self.metadata_location = metadata_location - if signing_certificate is not None: - self.signing_certificate = signing_certificate - if type is not None: - self.type = type - - @property - def entity_id(self): - """Gets the entity_id of this ProvidersSamlServicesIdpsIdp. # noqa: E501 - - Unique identifier of the IDP. # noqa: E501 - - :return: The entity_id of this ProvidersSamlServicesIdpsIdp. # noqa: E501 - :rtype: str - """ - return self._entity_id - - @entity_id.setter - def entity_id(self, entity_id): - """Sets the entity_id of this ProvidersSamlServicesIdpsIdp. - - Unique identifier of the IDP. # noqa: E501 - - :param entity_id: The entity_id of this ProvidersSamlServicesIdpsIdp. # noqa: E501 - :type: str - """ - if entity_id is not None and len(entity_id) > 1024: - raise ValueError("Invalid value for `entity_id`, length must be less than or equal to `1024`") # noqa: E501 - if entity_id is not None and len(entity_id) < 0: - raise ValueError("Invalid value for `entity_id`, length must be greater than or equal to `0`") # noqa: E501 - - self._entity_id = entity_id - - @property - def id(self): - """Gets the id of this ProvidersSamlServicesIdpsIdp. # noqa: E501 - - Unique identifier of a SAML service resource. # noqa: E501 - - :return: The id of this ProvidersSamlServicesIdpsIdp. # noqa: E501 - :rtype: str - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this ProvidersSamlServicesIdpsIdp. - - Unique identifier of a SAML service resource. # noqa: E501 - - :param id: The id of this ProvidersSamlServicesIdpsIdp. # noqa: E501 - :type: str - """ - if id is not None and len(id) > 255: - raise ValueError("Invalid value for `id`, length must be less than or equal to `255`") # noqa: E501 - if id is not None and len(id) < 0: - raise ValueError("Invalid value for `id`, length must be greater than or equal to `0`") # noqa: E501 - - self._id = id - - @property - def login(self): - """Gets the login of this ProvidersSamlServicesIdpsIdp. # noqa: E501 - - Login endpoint of the IDP. This specifies the method and location PowerScale will use to send AuthnRequest messages to the IDP. # noqa: E501 - - :return: The login of this ProvidersSamlServicesIdpsIdp. # noqa: E501 - :rtype: ProvidersSamlServicesIdpLogin - """ - return self._login - - @login.setter - def login(self, login): - """Sets the login of this ProvidersSamlServicesIdpsIdp. - - Login endpoint of the IDP. This specifies the method and location PowerScale will use to send AuthnRequest messages to the IDP. # noqa: E501 - - :param login: The login of this ProvidersSamlServicesIdpsIdp. # noqa: E501 - :type: ProvidersSamlServicesIdpLogin - """ - - self._login = login - - @property - def logout(self): - """Gets the logout of this ProvidersSamlServicesIdpsIdp. # noqa: E501 - - # noqa: E501 - - :return: The logout of this ProvidersSamlServicesIdpsIdp. # noqa: E501 - :rtype: ProvidersSamlServicesIdpLogout - """ - return self._logout - - @logout.setter - def logout(self, logout): - """Sets the logout of this ProvidersSamlServicesIdpsIdp. - - # noqa: E501 - - :param logout: The logout of this ProvidersSamlServicesIdpsIdp. # noqa: E501 - :type: ProvidersSamlServicesIdpLogout - """ - - self._logout = logout - - @property - def metadata_location(self): - """Gets the metadata_location of this ProvidersSamlServicesIdpsIdp. # noqa: E501 - - Metadata location of the SAML provider. # noqa: E501 - - :return: The metadata_location of this ProvidersSamlServicesIdpsIdp. # noqa: E501 - :rtype: str - """ - return self._metadata_location - - @metadata_location.setter - def metadata_location(self, metadata_location): - """Sets the metadata_location of this ProvidersSamlServicesIdpsIdp. - - Metadata location of the SAML provider. # noqa: E501 - - :param metadata_location: The metadata_location of this ProvidersSamlServicesIdpsIdp. # noqa: E501 - :type: str - """ - if metadata_location is not None and len(metadata_location) > 2048: - raise ValueError("Invalid value for `metadata_location`, length must be less than or equal to `2048`") # noqa: E501 - if metadata_location is not None and len(metadata_location) < 0: - raise ValueError("Invalid value for `metadata_location`, length must be greater than or equal to `0`") # noqa: E501 - - self._metadata_location = metadata_location - - @property - def signing_certificate(self): - """Gets the signing_certificate of this ProvidersSamlServicesIdpsIdp. # noqa: E501 - - Certificate with information about it. # noqa: E501 - - :return: The signing_certificate of this ProvidersSamlServicesIdpsIdp. # noqa: E501 - :rtype: CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo - """ - return self._signing_certificate - - @signing_certificate.setter - def signing_certificate(self, signing_certificate): - """Sets the signing_certificate of this ProvidersSamlServicesIdpsIdp. - - Certificate with information about it. # noqa: E501 - - :param signing_certificate: The signing_certificate of this ProvidersSamlServicesIdpsIdp. # noqa: E501 - :type: CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo - """ - - self._signing_certificate = signing_certificate - - @property - def type(self): - """Gets the type of this ProvidersSamlServicesIdpsIdp. # noqa: E501 - - How the IDP was configured and how it can be updated. When set to \"metadata\" metadata XML was used to configure the IDP and can be used to update it. When set to \"manual\" the IDP was manually configured and can be manually updated. # noqa: E501 - - :return: The type of this ProvidersSamlServicesIdpsIdp. # noqa: E501 - :rtype: str - """ - return self._type - - @type.setter - def type(self, type): - """Sets the type of this ProvidersSamlServicesIdpsIdp. - - How the IDP was configured and how it can be updated. When set to \"metadata\" metadata XML was used to configure the IDP and can be used to update it. When set to \"manual\" the IDP was manually configured and can be manually updated. # noqa: E501 - - :param type: The type of this ProvidersSamlServicesIdpsIdp. # noqa: E501 - :type: str - """ - allowed_values = ["metadata", "manual"] # noqa: E501 - if type not in allowed_values: - raise ValueError( - "Invalid value for `type` ({0}), must be one of {1}" # noqa: E501 - .format(type, allowed_values) - ) - - self._type = type - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ProvidersSamlServicesIdpsIdp, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ProvidersSamlServicesIdpsIdp): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_idps_idp_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_idps_idp_extended.py deleted file mode 100644 index 9ceaff823..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_idps_idp_extended.py +++ /dev/null @@ -1,217 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ProvidersSamlServicesIdpsIdpExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'entity_id': 'str', - 'id': 'str', - 'login_url': 'str', - 'logout_url': 'str' - } - - attribute_map = { - 'entity_id': 'entity_id', - 'id': 'id', - 'login_url': 'login_url', - 'logout_url': 'logout_url' - } - - def __init__(self, entity_id=None, id=None, login_url=None, logout_url=None): # noqa: E501 - """ProvidersSamlServicesIdpsIdpExtended - a model defined in Swagger""" # noqa: E501 - - self._entity_id = None - self._id = None - self._login_url = None - self._logout_url = None - self.discriminator = None - - if entity_id is not None: - self.entity_id = entity_id - if id is not None: - self.id = id - if login_url is not None: - self.login_url = login_url - if logout_url is not None: - self.logout_url = logout_url - - @property - def entity_id(self): - """Gets the entity_id of this ProvidersSamlServicesIdpsIdpExtended. # noqa: E501 - - Unique identifier of the IDP. # noqa: E501 - - :return: The entity_id of this ProvidersSamlServicesIdpsIdpExtended. # noqa: E501 - :rtype: str - """ - return self._entity_id - - @entity_id.setter - def entity_id(self, entity_id): - """Sets the entity_id of this ProvidersSamlServicesIdpsIdpExtended. - - Unique identifier of the IDP. # noqa: E501 - - :param entity_id: The entity_id of this ProvidersSamlServicesIdpsIdpExtended. # noqa: E501 - :type: str - """ - if entity_id is not None and len(entity_id) > 1024: - raise ValueError("Invalid value for `entity_id`, length must be less than or equal to `1024`") # noqa: E501 - if entity_id is not None and len(entity_id) < 0: - raise ValueError("Invalid value for `entity_id`, length must be greater than or equal to `0`") # noqa: E501 - - self._entity_id = entity_id - - @property - def id(self): - """Gets the id of this ProvidersSamlServicesIdpsIdpExtended. # noqa: E501 - - Unique identifier of a SAML service resource. # noqa: E501 - - :return: The id of this ProvidersSamlServicesIdpsIdpExtended. # noqa: E501 - :rtype: str - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this ProvidersSamlServicesIdpsIdpExtended. - - Unique identifier of a SAML service resource. # noqa: E501 - - :param id: The id of this ProvidersSamlServicesIdpsIdpExtended. # noqa: E501 - :type: str - """ - if id is not None and len(id) > 255: - raise ValueError("Invalid value for `id`, length must be less than or equal to `255`") # noqa: E501 - if id is not None and len(id) < 0: - raise ValueError("Invalid value for `id`, length must be greater than or equal to `0`") # noqa: E501 - - self._id = id - - @property - def login_url(self): - """Gets the login_url of this ProvidersSamlServicesIdpsIdpExtended. # noqa: E501 - - URL specifying the location of where to send messages. # noqa: E501 - - :return: The login_url of this ProvidersSamlServicesIdpsIdpExtended. # noqa: E501 - :rtype: str - """ - return self._login_url - - @login_url.setter - def login_url(self, login_url): - """Sets the login_url of this ProvidersSamlServicesIdpsIdpExtended. - - URL specifying the location of where to send messages. # noqa: E501 - - :param login_url: The login_url of this ProvidersSamlServicesIdpsIdpExtended. # noqa: E501 - :type: str - """ - if login_url is not None and len(login_url) > 2048: - raise ValueError("Invalid value for `login_url`, length must be less than or equal to `2048`") # noqa: E501 - if login_url is not None and len(login_url) < 1: - raise ValueError("Invalid value for `login_url`, length must be greater than or equal to `1`") # noqa: E501 - - self._login_url = login_url - - @property - def logout_url(self): - """Gets the logout_url of this ProvidersSamlServicesIdpsIdpExtended. # noqa: E501 - - URL specifying the location of where to send messages. # noqa: E501 - - :return: The logout_url of this ProvidersSamlServicesIdpsIdpExtended. # noqa: E501 - :rtype: str - """ - return self._logout_url - - @logout_url.setter - def logout_url(self, logout_url): - """Sets the logout_url of this ProvidersSamlServicesIdpsIdpExtended. - - URL specifying the location of where to send messages. # noqa: E501 - - :param logout_url: The logout_url of this ProvidersSamlServicesIdpsIdpExtended. # noqa: E501 - :type: str - """ - if logout_url is not None and len(logout_url) > 2048: - raise ValueError("Invalid value for `logout_url`, length must be less than or equal to `2048`") # noqa: E501 - if logout_url is not None and len(logout_url) < 0: - raise ValueError("Invalid value for `logout_url`, length must be greater than or equal to `0`") # noqa: E501 - - self._logout_url = logout_url - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ProvidersSamlServicesIdpsIdpExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ProvidersSamlServicesIdpsIdpExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_metadata_extract_item.py b/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_metadata_extract_item.py deleted file mode 100644 index e07faab04..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_metadata_extract_item.py +++ /dev/null @@ -1,185 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ProvidersSamlServicesMetadataExtractItem(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'entity_id': 'str', - 'metadata': 'str', - 'metadata_location': 'str' - } - - attribute_map = { - 'entity_id': 'entity_id', - 'metadata': 'metadata', - 'metadata_location': 'metadata_location' - } - - def __init__(self, entity_id=None, metadata=None, metadata_location=None): # noqa: E501 - """ProvidersSamlServicesMetadataExtractItem - a model defined in Swagger""" # noqa: E501 - - self._entity_id = None - self._metadata = None - self._metadata_location = None - self.discriminator = None - - if entity_id is not None: - self.entity_id = entity_id - if metadata is not None: - self.metadata = metadata - if metadata_location is not None: - self.metadata_location = metadata_location - - @property - def entity_id(self): - """Gets the entity_id of this ProvidersSamlServicesMetadataExtractItem. # noqa: E501 - - When provided the SAML entity ID matching this string will be the IDP data returned. When not provided the SAML metadata must contain a single entity descriptor with a IDP descriptor. # noqa: E501 - - :return: The entity_id of this ProvidersSamlServicesMetadataExtractItem. # noqa: E501 - :rtype: str - """ - return self._entity_id - - @entity_id.setter - def entity_id(self, entity_id): - """Sets the entity_id of this ProvidersSamlServicesMetadataExtractItem. - - When provided the SAML entity ID matching this string will be the IDP data returned. When not provided the SAML metadata must contain a single entity descriptor with a IDP descriptor. # noqa: E501 - - :param entity_id: The entity_id of this ProvidersSamlServicesMetadataExtractItem. # noqa: E501 - :type: str - """ - if entity_id is not None and len(entity_id) > 1024: - raise ValueError("Invalid value for `entity_id`, length must be less than or equal to `1024`") # noqa: E501 - if entity_id is not None and len(entity_id) < 1: - raise ValueError("Invalid value for `entity_id`, length must be greater than or equal to `1`") # noqa: E501 - - self._entity_id = entity_id - - @property - def metadata(self): - """Gets the metadata of this ProvidersSamlServicesMetadataExtractItem. # noqa: E501 - - Metadata XML data of the SAML IDP. # noqa: E501 - - :return: The metadata of this ProvidersSamlServicesMetadataExtractItem. # noqa: E501 - :rtype: str - """ - return self._metadata - - @metadata.setter - def metadata(self, metadata): - """Sets the metadata of this ProvidersSamlServicesMetadataExtractItem. - - Metadata XML data of the SAML IDP. # noqa: E501 - - :param metadata: The metadata of this ProvidersSamlServicesMetadataExtractItem. # noqa: E501 - :type: str - """ - if metadata is not None and len(metadata) > 8000000: - raise ValueError("Invalid value for `metadata`, length must be less than or equal to `8000000`") # noqa: E501 - if metadata is not None and len(metadata) < 0: - raise ValueError("Invalid value for `metadata`, length must be greater than or equal to `0`") # noqa: E501 - - self._metadata = metadata - - @property - def metadata_location(self): - """Gets the metadata_location of this ProvidersSamlServicesMetadataExtractItem. # noqa: E501 - - Path to the SAML IDP metadata. # noqa: E501 - - :return: The metadata_location of this ProvidersSamlServicesMetadataExtractItem. # noqa: E501 - :rtype: str - """ - return self._metadata_location - - @metadata_location.setter - def metadata_location(self, metadata_location): - """Sets the metadata_location of this ProvidersSamlServicesMetadataExtractItem. - - Path to the SAML IDP metadata. # noqa: E501 - - :param metadata_location: The metadata_location of this ProvidersSamlServicesMetadataExtractItem. # noqa: E501 - :type: str - """ - if metadata_location is not None and len(metadata_location) > 4096: - raise ValueError("Invalid value for `metadata_location`, length must be less than or equal to `4096`") # noqa: E501 - if metadata_location is not None and len(metadata_location) < 2: - raise ValueError("Invalid value for `metadata_location`, length must be greater than or equal to `2`") # noqa: E501 - - self._metadata_location = metadata_location - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ProvidersSamlServicesMetadataExtractItem, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ProvidersSamlServicesMetadataExtractItem): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_settings.py b/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_settings.py deleted file mode 100644 index 4c4dc0951..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_settings.py +++ /dev/null @@ -1,117 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ProvidersSamlServicesSettings(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'settings': 'ProvidersSamlServicesSettingsSettings' - } - - attribute_map = { - 'settings': 'settings' - } - - def __init__(self, settings=None): # noqa: E501 - """ProvidersSamlServicesSettings - a model defined in Swagger""" # noqa: E501 - - self._settings = None - self.discriminator = None - - if settings is not None: - self.settings = settings - - @property - def settings(self): - """Gets the settings of this ProvidersSamlServicesSettings. # noqa: E501 - - Settings for Platform API SAML services. # noqa: E501 - - :return: The settings of this ProvidersSamlServicesSettings. # noqa: E501 - :rtype: ProvidersSamlServicesSettingsSettings - """ - return self._settings - - @settings.setter - def settings(self, settings): - """Sets the settings of this ProvidersSamlServicesSettings. - - Settings for Platform API SAML services. # noqa: E501 - - :param settings: The settings of this ProvidersSamlServicesSettings. # noqa: E501 - :type: ProvidersSamlServicesSettingsSettings - """ - - self._settings = settings - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ProvidersSamlServicesSettings, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ProvidersSamlServicesSettings): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_settings_settings.py b/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_settings_settings.py deleted file mode 100644 index 09ebbd7ab..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_settings_settings.py +++ /dev/null @@ -1,117 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ProvidersSamlServicesSettingsSettings(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'sso_enabled': 'bool' - } - - attribute_map = { - 'sso_enabled': 'sso_enabled' - } - - def __init__(self, sso_enabled=None): # noqa: E501 - """ProvidersSamlServicesSettingsSettings - a model defined in Swagger""" # noqa: E501 - - self._sso_enabled = None - self.discriminator = None - - if sso_enabled is not None: - self.sso_enabled = sso_enabled - - @property - def sso_enabled(self): - """Gets the sso_enabled of this ProvidersSamlServicesSettingsSettings. # noqa: E501 - - Indicates whether Single Sign On is enabled for the access zone. # noqa: E501 - - :return: The sso_enabled of this ProvidersSamlServicesSettingsSettings. # noqa: E501 - :rtype: bool - """ - return self._sso_enabled - - @sso_enabled.setter - def sso_enabled(self, sso_enabled): - """Sets the sso_enabled of this ProvidersSamlServicesSettingsSettings. - - Indicates whether Single Sign On is enabled for the access zone. # noqa: E501 - - :param sso_enabled: The sso_enabled of this ProvidersSamlServicesSettingsSettings. # noqa: E501 - :type: bool - """ - - self._sso_enabled = sso_enabled - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ProvidersSamlServicesSettingsSettings, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ProvidersSamlServicesSettingsSettings): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp.py b/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp.py deleted file mode 100644 index 5562842cc..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp.py +++ /dev/null @@ -1,117 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ProvidersSamlServicesSp(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'sp': 'ProvidersSamlServicesSpSp' - } - - attribute_map = { - 'sp': 'sp' - } - - def __init__(self, sp=None): # noqa: E501 - """ProvidersSamlServicesSp - a model defined in Swagger""" # noqa: E501 - - self._sp = None - self.discriminator = None - - if sp is not None: - self.sp = sp - - @property - def sp(self): - """Gets the sp of this ProvidersSamlServicesSp. # noqa: E501 - - Returns information about SP # noqa: E501 - - :return: The sp of this ProvidersSamlServicesSp. # noqa: E501 - :rtype: ProvidersSamlServicesSpSp - """ - return self._sp - - @sp.setter - def sp(self, sp): - """Sets the sp of this ProvidersSamlServicesSp. - - Returns information about SP # noqa: E501 - - :param sp: The sp of this ProvidersSamlServicesSp. # noqa: E501 - :type: ProvidersSamlServicesSpSp - """ - - self._sp = sp - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ProvidersSamlServicesSp, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ProvidersSamlServicesSp): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp_extended.py deleted file mode 100644 index da063e15a..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp_extended.py +++ /dev/null @@ -1,345 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ProvidersSamlServicesSpExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'email': 'str', - 'entity_id': 'str', - 'first_name': 'str', - 'hostname': 'str', - 'last_name': 'str', - 'name_id_format': 'str', - 'signing_enabled': 'bool', - 'user_id': 'str' - } - - attribute_map = { - 'email': 'email', - 'entity_id': 'entity_id', - 'first_name': 'first_name', - 'hostname': 'hostname', - 'last_name': 'last_name', - 'name_id_format': 'name_id_format', - 'signing_enabled': 'signing_enabled', - 'user_id': 'user_id' - } - - def __init__(self, email=None, entity_id=None, first_name=None, hostname=None, last_name=None, name_id_format=None, signing_enabled=None, user_id=None): # noqa: E501 - """ProvidersSamlServicesSpExtended - a model defined in Swagger""" # noqa: E501 - - self._email = None - self._entity_id = None - self._first_name = None - self._hostname = None - self._last_name = None - self._name_id_format = None - self._signing_enabled = None - self._user_id = None - self.discriminator = None - - if email is not None: - self.email = email - if entity_id is not None: - self.entity_id = entity_id - if first_name is not None: - self.first_name = first_name - if hostname is not None: - self.hostname = hostname - if last_name is not None: - self.last_name = last_name - if name_id_format is not None: - self.name_id_format = name_id_format - if signing_enabled is not None: - self.signing_enabled = signing_enabled - if user_id is not None: - self.user_id = user_id - - @property - def email(self): - """Gets the email of this ProvidersSamlServicesSpExtended. # noqa: E501 - - Email address of SP maintainer. # noqa: E501 - - :return: The email of this ProvidersSamlServicesSpExtended. # noqa: E501 - :rtype: str - """ - return self._email - - @email.setter - def email(self, email): - """Sets the email of this ProvidersSamlServicesSpExtended. - - Email address of SP maintainer. # noqa: E501 - - :param email: The email of this ProvidersSamlServicesSpExtended. # noqa: E501 - :type: str - """ - if email is not None and len(email) > 254: - raise ValueError("Invalid value for `email`, length must be less than or equal to `254`") # noqa: E501 - if email is not None and len(email) < 3: - raise ValueError("Invalid value for `email`, length must be greater than or equal to `3`") # noqa: E501 - if email is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', email): # noqa: E501 - raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 - - self._email = email - - @property - def entity_id(self): - """Gets the entity_id of this ProvidersSamlServicesSpExtended. # noqa: E501 - - Unique identifier of the client (product). # noqa: E501 - - :return: The entity_id of this ProvidersSamlServicesSpExtended. # noqa: E501 - :rtype: str - """ - return self._entity_id - - @entity_id.setter - def entity_id(self, entity_id): - """Sets the entity_id of this ProvidersSamlServicesSpExtended. - - Unique identifier of the client (product). # noqa: E501 - - :param entity_id: The entity_id of this ProvidersSamlServicesSpExtended. # noqa: E501 - :type: str - """ - if entity_id is not None and len(entity_id) > 1024: - raise ValueError("Invalid value for `entity_id`, length must be less than or equal to `1024`") # noqa: E501 - if entity_id is not None and len(entity_id) < 0: - raise ValueError("Invalid value for `entity_id`, length must be greater than or equal to `0`") # noqa: E501 - - self._entity_id = entity_id - - @property - def first_name(self): - """Gets the first_name of this ProvidersSamlServicesSpExtended. # noqa: E501 - - First name of SP maintainer. # noqa: E501 - - :return: The first_name of this ProvidersSamlServicesSpExtended. # noqa: E501 - :rtype: str - """ - return self._first_name - - @first_name.setter - def first_name(self, first_name): - """Sets the first_name of this ProvidersSamlServicesSpExtended. - - First name of SP maintainer. # noqa: E501 - - :param first_name: The first_name of this ProvidersSamlServicesSpExtended. # noqa: E501 - :type: str - """ - if first_name is not None and len(first_name) > 255: - raise ValueError("Invalid value for `first_name`, length must be less than or equal to `255`") # noqa: E501 - if first_name is not None and len(first_name) < 0: - raise ValueError("Invalid value for `first_name`, length must be greater than or equal to `0`") # noqa: E501 - - self._first_name = first_name - - @property - def hostname(self): - """Gets the hostname of this ProvidersSamlServicesSpExtended. # noqa: E501 - - Resolvable hostname of the SP in an access zone. # noqa: E501 - - :return: The hostname of this ProvidersSamlServicesSpExtended. # noqa: E501 - :rtype: str - """ - return self._hostname - - @hostname.setter - def hostname(self, hostname): - """Sets the hostname of this ProvidersSamlServicesSpExtended. - - Resolvable hostname of the SP in an access zone. # noqa: E501 - - :param hostname: The hostname of this ProvidersSamlServicesSpExtended. # noqa: E501 - :type: str - """ - if hostname is not None and len(hostname) > 2048: - raise ValueError("Invalid value for `hostname`, length must be less than or equal to `2048`") # noqa: E501 - if hostname is not None and len(hostname) < 0: - raise ValueError("Invalid value for `hostname`, length must be greater than or equal to `0`") # noqa: E501 - - self._hostname = hostname - - @property - def last_name(self): - """Gets the last_name of this ProvidersSamlServicesSpExtended. # noqa: E501 - - Last name of SP maintainer. # noqa: E501 - - :return: The last_name of this ProvidersSamlServicesSpExtended. # noqa: E501 - :rtype: str - """ - return self._last_name - - @last_name.setter - def last_name(self, last_name): - """Sets the last_name of this ProvidersSamlServicesSpExtended. - - Last name of SP maintainer. # noqa: E501 - - :param last_name: The last_name of this ProvidersSamlServicesSpExtended. # noqa: E501 - :type: str - """ - if last_name is not None and len(last_name) > 255: - raise ValueError("Invalid value for `last_name`, length must be less than or equal to `255`") # noqa: E501 - if last_name is not None and len(last_name) < 0: - raise ValueError("Invalid value for `last_name`, length must be greater than or equal to `0`") # noqa: E501 - - self._last_name = last_name - - @property - def name_id_format(self): - """Gets the name_id_format of this ProvidersSamlServicesSpExtended. # noqa: E501 - - SAML NameID format used with the SP. # noqa: E501 - - :return: The name_id_format of this ProvidersSamlServicesSpExtended. # noqa: E501 - :rtype: str - """ - return self._name_id_format - - @name_id_format.setter - def name_id_format(self, name_id_format): - """Sets the name_id_format of this ProvidersSamlServicesSpExtended. - - SAML NameID format used with the SP. # noqa: E501 - - :param name_id_format: The name_id_format of this ProvidersSamlServicesSpExtended. # noqa: E501 - :type: str - """ - allowed_values = ["urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress", "urn:oasis:names:tc:SAML:1.1:nameid-format:WindowsDomainQualifiedName", "urn:oasis:names:tc:SAML:2.0:nameid-format:kerberos"] # noqa: E501 - if name_id_format not in allowed_values: - raise ValueError( - "Invalid value for `name_id_format` ({0}), must be one of {1}" # noqa: E501 - .format(name_id_format, allowed_values) - ) - - self._name_id_format = name_id_format - - @property - def signing_enabled(self): - """Gets the signing_enabled of this ProvidersSamlServicesSpExtended. # noqa: E501 - - Indicates whether signing of requests is enabled for the SP. # noqa: E501 - - :return: The signing_enabled of this ProvidersSamlServicesSpExtended. # noqa: E501 - :rtype: bool - """ - return self._signing_enabled - - @signing_enabled.setter - def signing_enabled(self, signing_enabled): - """Sets the signing_enabled of this ProvidersSamlServicesSpExtended. - - Indicates whether signing of requests is enabled for the SP. # noqa: E501 - - :param signing_enabled: The signing_enabled of this ProvidersSamlServicesSpExtended. # noqa: E501 - :type: bool - """ - - self._signing_enabled = signing_enabled - - @property - def user_id(self): - """Gets the user_id of this ProvidersSamlServicesSpExtended. # noqa: E501 - - ID of SP maintainer. # noqa: E501 - - :return: The user_id of this ProvidersSamlServicesSpExtended. # noqa: E501 - :rtype: str - """ - return self._user_id - - @user_id.setter - def user_id(self, user_id): - """Sets the user_id of this ProvidersSamlServicesSpExtended. - - ID of SP maintainer. # noqa: E501 - - :param user_id: The user_id of this ProvidersSamlServicesSpExtended. # noqa: E501 - :type: str - """ - if user_id is not None and len(user_id) > 256: - raise ValueError("Invalid value for `user_id`, length must be less than or equal to `256`") # noqa: E501 - if user_id is not None and len(user_id) < 0: - raise ValueError("Invalid value for `user_id`, length must be greater than or equal to `0`") # noqa: E501 - - self._user_id = user_id - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ProvidersSamlServicesSpExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ProvidersSamlServicesSpExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp_signing_key_settings.py b/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp_signing_key_settings.py deleted file mode 100644 index 7dd13477a..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp_signing_key_settings.py +++ /dev/null @@ -1,117 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ProvidersSamlServicesSpSigningKeySettings(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'settings': 'ProvidersSamlServicesSpSigningKeySettingsSettings' - } - - attribute_map = { - 'settings': 'settings' - } - - def __init__(self, settings=None): # noqa: E501 - """ProvidersSamlServicesSpSigningKeySettings - a model defined in Swagger""" # noqa: E501 - - self._settings = None - self.discriminator = None - - if settings is not None: - self.settings = settings - - @property - def settings(self): - """Gets the settings of this ProvidersSamlServicesSpSigningKeySettings. # noqa: E501 - - The SAML SP's signing key settings. # noqa: E501 - - :return: The settings of this ProvidersSamlServicesSpSigningKeySettings. # noqa: E501 - :rtype: ProvidersSamlServicesSpSigningKeySettingsSettings - """ - return self._settings - - @settings.setter - def settings(self, settings): - """Sets the settings of this ProvidersSamlServicesSpSigningKeySettings. - - The SAML SP's signing key settings. # noqa: E501 - - :param settings: The settings of this ProvidersSamlServicesSpSigningKeySettings. # noqa: E501 - :type: ProvidersSamlServicesSpSigningKeySettingsSettings - """ - - self._settings = settings - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ProvidersSamlServicesSpSigningKeySettings, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ProvidersSamlServicesSpSigningKeySettings): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp_signing_key_settings_settings.py b/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp_signing_key_settings_settings.py deleted file mode 100644 index 6fa3a8d9e..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp_signing_key_settings_settings.py +++ /dev/null @@ -1,117 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ProvidersSamlServicesSpSigningKeySettingsSettings(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'certificate': 'ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate' - } - - attribute_map = { - 'certificate': 'certificate' - } - - def __init__(self, certificate=None): # noqa: E501 - """ProvidersSamlServicesSpSigningKeySettingsSettings - a model defined in Swagger""" # noqa: E501 - - self._certificate = None - self.discriminator = None - - if certificate is not None: - self.certificate = certificate - - @property - def certificate(self): - """Gets the certificate of this ProvidersSamlServicesSpSigningKeySettingsSettings. # noqa: E501 - - Specifies settings to use when generating a new certificate during either a rotation or rekey. # noqa: E501 - - :return: The certificate of this ProvidersSamlServicesSpSigningKeySettingsSettings. # noqa: E501 - :rtype: ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate - """ - return self._certificate - - @certificate.setter - def certificate(self, certificate): - """Sets the certificate of this ProvidersSamlServicesSpSigningKeySettingsSettings. - - Specifies settings to use when generating a new certificate during either a rotation or rekey. # noqa: E501 - - :param certificate: The certificate of this ProvidersSamlServicesSpSigningKeySettingsSettings. # noqa: E501 - :type: ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate - """ - - self._certificate = certificate - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ProvidersSamlServicesSpSigningKeySettingsSettings, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ProvidersSamlServicesSpSigningKeySettingsSettings): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp_signing_key_settings_settings_certificate.py b/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp_signing_key_settings_settings_certificate.py deleted file mode 100644 index 45136d075..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp_signing_key_settings_settings_certificate.py +++ /dev/null @@ -1,177 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'expiration': 'int', - 'key': 'ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateKey', - 'subject': 'ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject' - } - - attribute_map = { - 'expiration': 'expiration', - 'key': 'key', - 'subject': 'subject' - } - - def __init__(self, expiration=None, key=None, subject=None): # noqa: E501 - """ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate - a model defined in Swagger""" # noqa: E501 - - self._expiration = None - self._key = None - self._subject = None - self.discriminator = None - - if expiration is not None: - self.expiration = expiration - if key is not None: - self.key = key - if subject is not None: - self.subject = subject - - @property - def expiration(self): - """Gets the expiration of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate. # noqa: E501 - - The number of seconds the certificate is valid for after it is created. # noqa: E501 - - :return: The expiration of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate. # noqa: E501 - :rtype: int - """ - return self._expiration - - @expiration.setter - def expiration(self, expiration): - """Sets the expiration of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate. - - The number of seconds the certificate is valid for after it is created. # noqa: E501 - - :param expiration: The expiration of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate. # noqa: E501 - :type: int - """ - if expiration is not None and expiration > 3122064000: # noqa: E501 - raise ValueError("Invalid value for `expiration`, must be a value less than or equal to `3122064000`") # noqa: E501 - if expiration is not None and expiration < 1800: # noqa: E501 - raise ValueError("Invalid value for `expiration`, must be a value greater than or equal to `1800`") # noqa: E501 - - self._expiration = expiration - - @property - def key(self): - """Gets the key of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate. # noqa: E501 - - Specifies the key parameters used when generating a new certificate. # noqa: E501 - - :return: The key of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate. # noqa: E501 - :rtype: ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateKey - """ - return self._key - - @key.setter - def key(self, key): - """Sets the key of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate. - - Specifies the key parameters used when generating a new certificate. # noqa: E501 - - :param key: The key of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate. # noqa: E501 - :type: ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateKey - """ - - self._key = key - - @property - def subject(self): - """Gets the subject of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate. # noqa: E501 - - Specifies the subject used when generating a new certificate. # noqa: E501 - - :return: The subject of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate. # noqa: E501 - :rtype: ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject - """ - return self._subject - - @subject.setter - def subject(self, subject): - """Sets the subject of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate. - - Specifies the subject used when generating a new certificate. # noqa: E501 - - :param subject: The subject of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate. # noqa: E501 - :type: ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject - """ - - self._subject = subject - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp_signing_key_settings_settings_certificate_key.py b/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp_signing_key_settings_settings_certificate_key.py deleted file mode 100644 index 823416a0a..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp_signing_key_settings_settings_certificate_key.py +++ /dev/null @@ -1,151 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateKey(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'bits': 'int', - 'type': 'str' - } - - attribute_map = { - 'bits': 'bits', - 'type': 'type' - } - - def __init__(self, bits=None, type=None): # noqa: E501 - """ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateKey - a model defined in Swagger""" # noqa: E501 - - self._bits = None - self._type = None - self.discriminator = None - - if bits is not None: - self.bits = bits - if type is not None: - self.type = type - - @property - def bits(self): - """Gets the bits of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateKey. # noqa: E501 - - The number of bits for the key. # noqa: E501 - - :return: The bits of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateKey. # noqa: E501 - :rtype: int - """ - return self._bits - - @bits.setter - def bits(self, bits): - """Sets the bits of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateKey. - - The number of bits for the key. # noqa: E501 - - :param bits: The bits of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateKey. # noqa: E501 - :type: int - """ - - self._bits = bits - - @property - def type(self): - """Gets the type of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateKey. # noqa: E501 - - The type of the key. # noqa: E501 - - :return: The type of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateKey. # noqa: E501 - :rtype: str - """ - return self._type - - @type.setter - def type(self, type): - """Sets the type of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateKey. - - The type of the key. # noqa: E501 - - :param type: The type of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateKey. # noqa: E501 - :type: str - """ - allowed_values = ["RSA"] # noqa: E501 - if type not in allowed_values: - raise ValueError( - "Invalid value for `type` ({0}), must be one of {1}" # noqa: E501 - .format(type, allowed_values) - ) - - self._type = type - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateKey, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateKey): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp_signing_key_settings_settings_certificate_subject.py b/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp_signing_key_settings_settings_certificate_subject.py deleted file mode 100644 index 0a0b81961..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp_signing_key_settings_settings_certificate_subject.py +++ /dev/null @@ -1,265 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'common_name': 'str', - 'country': 'str', - 'locality': 'str', - 'organization_units': 'list[str]', - 'organizations': 'list[str]', - 'state_or_province': 'str' - } - - attribute_map = { - 'common_name': 'common_name', - 'country': 'country', - 'locality': 'locality', - 'organization_units': 'organization_units', - 'organizations': 'organizations', - 'state_or_province': 'state_or_province' - } - - def __init__(self, common_name=None, country=None, locality=None, organization_units=None, organizations=None, state_or_province=None): # noqa: E501 - """ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject - a model defined in Swagger""" # noqa: E501 - - self._common_name = None - self._country = None - self._locality = None - self._organization_units = None - self._organizations = None - self._state_or_province = None - self.discriminator = None - - if common_name is not None: - self.common_name = common_name - if country is not None: - self.country = country - if locality is not None: - self.locality = locality - if organization_units is not None: - self.organization_units = organization_units - if organizations is not None: - self.organizations = organizations - if state_or_province is not None: - self.state_or_province = state_or_province - - @property - def common_name(self): - """Gets the common_name of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject. # noqa: E501 - - - :return: The common_name of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject. # noqa: E501 - :rtype: str - """ - return self._common_name - - @common_name.setter - def common_name(self, common_name): - """Sets the common_name of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject. - - - :param common_name: The common_name of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject. # noqa: E501 - :type: str - """ - if common_name is not None and len(common_name) > 64: - raise ValueError("Invalid value for `common_name`, length must be less than or equal to `64`") # noqa: E501 - if common_name is not None and len(common_name) < 1: - raise ValueError("Invalid value for `common_name`, length must be greater than or equal to `1`") # noqa: E501 - - self._common_name = common_name - - @property - def country(self): - """Gets the country of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject. # noqa: E501 - - - :return: The country of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject. # noqa: E501 - :rtype: str - """ - return self._country - - @country.setter - def country(self, country): - """Sets the country of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject. - - - :param country: The country of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject. # noqa: E501 - :type: str - """ - if country is not None and len(country) > 2: - raise ValueError("Invalid value for `country`, length must be less than or equal to `2`") # noqa: E501 - if country is not None and len(country) < 2: - raise ValueError("Invalid value for `country`, length must be greater than or equal to `2`") # noqa: E501 - - self._country = country - - @property - def locality(self): - """Gets the locality of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject. # noqa: E501 - - - :return: The locality of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject. # noqa: E501 - :rtype: str - """ - return self._locality - - @locality.setter - def locality(self, locality): - """Sets the locality of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject. - - - :param locality: The locality of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject. # noqa: E501 - :type: str - """ - if locality is not None and len(locality) > 128: - raise ValueError("Invalid value for `locality`, length must be less than or equal to `128`") # noqa: E501 - if locality is not None and len(locality) < 1: - raise ValueError("Invalid value for `locality`, length must be greater than or equal to `1`") # noqa: E501 - - self._locality = locality - - @property - def organization_units(self): - """Gets the organization_units of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject. # noqa: E501 - - The organization unit(s), OU, to use when generating a new certificate. # noqa: E501 - - :return: The organization_units of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject. # noqa: E501 - :rtype: list[str] - """ - return self._organization_units - - @organization_units.setter - def organization_units(self, organization_units): - """Sets the organization_units of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject. - - The organization unit(s), OU, to use when generating a new certificate. # noqa: E501 - - :param organization_units: The organization_units of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject. # noqa: E501 - :type: list[str] - """ - - self._organization_units = organization_units - - @property - def organizations(self): - """Gets the organizations of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject. # noqa: E501 - - The organization(s), O, to use when generating a new certificate. # noqa: E501 - - :return: The organizations of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject. # noqa: E501 - :rtype: list[str] - """ - return self._organizations - - @organizations.setter - def organizations(self, organizations): - """Sets the organizations of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject. - - The organization(s), O, to use when generating a new certificate. # noqa: E501 - - :param organizations: The organizations of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject. # noqa: E501 - :type: list[str] - """ - - self._organizations = organizations - - @property - def state_or_province(self): - """Gets the state_or_province of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject. # noqa: E501 - - - :return: The state_or_province of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject. # noqa: E501 - :rtype: str - """ - return self._state_or_province - - @state_or_province.setter - def state_or_province(self, state_or_province): - """Sets the state_or_province of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject. - - - :param state_or_province: The state_or_province of this ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject. # noqa: E501 - :type: str - """ - if state_or_province is not None and len(state_or_province) > 128: - raise ValueError("Invalid value for `state_or_province`, length must be less than or equal to `128`") # noqa: E501 - if state_or_province is not None and len(state_or_province) < 1: - raise ValueError("Invalid value for `state_or_province`, length must be greater than or equal to `1`") # noqa: E501 - - self._state_or_province = state_or_province - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp_signing_key_status.py b/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp_signing_key_status.py deleted file mode 100644 index 1fb896ce8..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp_signing_key_status.py +++ /dev/null @@ -1,117 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ProvidersSamlServicesSpSigningKeyStatus(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'status': 'ProvidersSamlServicesSpSigningKeyStatusStatus' - } - - attribute_map = { - 'status': 'status' - } - - def __init__(self, status=None): # noqa: E501 - """ProvidersSamlServicesSpSigningKeyStatus - a model defined in Swagger""" # noqa: E501 - - self._status = None - self.discriminator = None - - if status is not None: - self.status = status - - @property - def status(self): - """Gets the status of this ProvidersSamlServicesSpSigningKeyStatus. # noqa: E501 - - Information about the SAML SP's signing key and certificate. # noqa: E501 - - :return: The status of this ProvidersSamlServicesSpSigningKeyStatus. # noqa: E501 - :rtype: ProvidersSamlServicesSpSigningKeyStatusStatus - """ - return self._status - - @status.setter - def status(self, status): - """Sets the status of this ProvidersSamlServicesSpSigningKeyStatus. - - Information about the SAML SP's signing key and certificate. # noqa: E501 - - :param status: The status of this ProvidersSamlServicesSpSigningKeyStatus. # noqa: E501 - :type: ProvidersSamlServicesSpSigningKeyStatusStatus - """ - - self._status = status - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ProvidersSamlServicesSpSigningKeyStatus, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ProvidersSamlServicesSpSigningKeyStatus): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp_signing_key_status_status.py b/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp_signing_key_status_status.py deleted file mode 100644 index 5a26abb9a..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp_signing_key_status_status.py +++ /dev/null @@ -1,117 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ProvidersSamlServicesSpSigningKeyStatusStatus(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'certificate': 'CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate' - } - - attribute_map = { - 'certificate': 'certificate' - } - - def __init__(self, certificate=None): # noqa: E501 - """ProvidersSamlServicesSpSigningKeyStatusStatus - a model defined in Swagger""" # noqa: E501 - - self._certificate = None - self.discriminator = None - - if certificate is not None: - self.certificate = certificate - - @property - def certificate(self): - """Gets the certificate of this ProvidersSamlServicesSpSigningKeyStatusStatus. # noqa: E501 - - The signing certificate being used to sign messages from the cluster. # noqa: E501 - - :return: The certificate of this ProvidersSamlServicesSpSigningKeyStatusStatus. # noqa: E501 - :rtype: CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate - """ - return self._certificate - - @certificate.setter - def certificate(self, certificate): - """Sets the certificate of this ProvidersSamlServicesSpSigningKeyStatusStatus. - - The signing certificate being used to sign messages from the cluster. # noqa: E501 - - :param certificate: The certificate of this ProvidersSamlServicesSpSigningKeyStatusStatus. # noqa: E501 - :type: CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate - """ - - self._certificate = certificate - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ProvidersSamlServicesSpSigningKeyStatusStatus, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ProvidersSamlServicesSpSigningKeyStatusStatus): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp_sp.py b/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp_sp.py deleted file mode 100644 index 92eeff4ae..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_sp_sp.py +++ /dev/null @@ -1,495 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ProvidersSamlServicesSpSp(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'acs_url': 'str', - 'email': 'str', - 'entity_id': 'str', - 'first_name': 'str', - 'hostname': 'str', - 'last_name': 'str', - 'login_url': 'str', - 'logout_url': 'str', - 'metadata_location': 'str', - 'name_id_format': 'str', - 'signing_certificate': 'CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate', - 'signing_enabled': 'bool', - 'user_id': 'str' - } - - attribute_map = { - 'acs_url': 'acs_url', - 'email': 'email', - 'entity_id': 'entity_id', - 'first_name': 'first_name', - 'hostname': 'hostname', - 'last_name': 'last_name', - 'login_url': 'login_url', - 'logout_url': 'logout_url', - 'metadata_location': 'metadata_location', - 'name_id_format': 'name_id_format', - 'signing_certificate': 'signing_certificate', - 'signing_enabled': 'signing_enabled', - 'user_id': 'user_id' - } - - def __init__(self, acs_url=None, email=None, entity_id=None, first_name=None, hostname=None, last_name=None, login_url=None, logout_url=None, metadata_location=None, name_id_format=None, signing_certificate=None, signing_enabled=None, user_id=None): # noqa: E501 - """ProvidersSamlServicesSpSp - a model defined in Swagger""" # noqa: E501 - - self._acs_url = None - self._email = None - self._entity_id = None - self._first_name = None - self._hostname = None - self._last_name = None - self._login_url = None - self._logout_url = None - self._metadata_location = None - self._name_id_format = None - self._signing_certificate = None - self._signing_enabled = None - self._user_id = None - self.discriminator = None - - if acs_url is not None: - self.acs_url = acs_url - if email is not None: - self.email = email - if entity_id is not None: - self.entity_id = entity_id - if first_name is not None: - self.first_name = first_name - if hostname is not None: - self.hostname = hostname - if last_name is not None: - self.last_name = last_name - if login_url is not None: - self.login_url = login_url - if logout_url is not None: - self.logout_url = logout_url - if metadata_location is not None: - self.metadata_location = metadata_location - if name_id_format is not None: - self.name_id_format = name_id_format - if signing_certificate is not None: - self.signing_certificate = signing_certificate - if signing_enabled is not None: - self.signing_enabled = signing_enabled - if user_id is not None: - self.user_id = user_id - - @property - def acs_url(self): - """Gets the acs_url of this ProvidersSamlServicesSpSp. # noqa: E501 - - ACS URL of the SAML provider. # noqa: E501 - - :return: The acs_url of this ProvidersSamlServicesSpSp. # noqa: E501 - :rtype: str - """ - return self._acs_url - - @acs_url.setter - def acs_url(self, acs_url): - """Sets the acs_url of this ProvidersSamlServicesSpSp. - - ACS URL of the SAML provider. # noqa: E501 - - :param acs_url: The acs_url of this ProvidersSamlServicesSpSp. # noqa: E501 - :type: str - """ - if acs_url is not None and len(acs_url) > 2048: - raise ValueError("Invalid value for `acs_url`, length must be less than or equal to `2048`") # noqa: E501 - if acs_url is not None and len(acs_url) < 0: - raise ValueError("Invalid value for `acs_url`, length must be greater than or equal to `0`") # noqa: E501 - - self._acs_url = acs_url - - @property - def email(self): - """Gets the email of this ProvidersSamlServicesSpSp. # noqa: E501 - - Email address of SP maintainer. # noqa: E501 - - :return: The email of this ProvidersSamlServicesSpSp. # noqa: E501 - :rtype: str - """ - return self._email - - @email.setter - def email(self, email): - """Sets the email of this ProvidersSamlServicesSpSp. - - Email address of SP maintainer. # noqa: E501 - - :param email: The email of this ProvidersSamlServicesSpSp. # noqa: E501 - :type: str - """ - if email is not None and len(email) > 254: - raise ValueError("Invalid value for `email`, length must be less than or equal to `254`") # noqa: E501 - if email is not None and len(email) < 3: - raise ValueError("Invalid value for `email`, length must be greater than or equal to `3`") # noqa: E501 - if email is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', email): # noqa: E501 - raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 - - self._email = email - - @property - def entity_id(self): - """Gets the entity_id of this ProvidersSamlServicesSpSp. # noqa: E501 - - Unique identifier of the client (product). # noqa: E501 - - :return: The entity_id of this ProvidersSamlServicesSpSp. # noqa: E501 - :rtype: str - """ - return self._entity_id - - @entity_id.setter - def entity_id(self, entity_id): - """Sets the entity_id of this ProvidersSamlServicesSpSp. - - Unique identifier of the client (product). # noqa: E501 - - :param entity_id: The entity_id of this ProvidersSamlServicesSpSp. # noqa: E501 - :type: str - """ - if entity_id is not None and len(entity_id) > 1024: - raise ValueError("Invalid value for `entity_id`, length must be less than or equal to `1024`") # noqa: E501 - if entity_id is not None and len(entity_id) < 0: - raise ValueError("Invalid value for `entity_id`, length must be greater than or equal to `0`") # noqa: E501 - - self._entity_id = entity_id - - @property - def first_name(self): - """Gets the first_name of this ProvidersSamlServicesSpSp. # noqa: E501 - - First name of SP maintainer. # noqa: E501 - - :return: The first_name of this ProvidersSamlServicesSpSp. # noqa: E501 - :rtype: str - """ - return self._first_name - - @first_name.setter - def first_name(self, first_name): - """Sets the first_name of this ProvidersSamlServicesSpSp. - - First name of SP maintainer. # noqa: E501 - - :param first_name: The first_name of this ProvidersSamlServicesSpSp. # noqa: E501 - :type: str - """ - if first_name is not None and len(first_name) > 255: - raise ValueError("Invalid value for `first_name`, length must be less than or equal to `255`") # noqa: E501 - if first_name is not None and len(first_name) < 0: - raise ValueError("Invalid value for `first_name`, length must be greater than or equal to `0`") # noqa: E501 - - self._first_name = first_name - - @property - def hostname(self): - """Gets the hostname of this ProvidersSamlServicesSpSp. # noqa: E501 - - Resolvable hostname of the SP in an access zone. # noqa: E501 - - :return: The hostname of this ProvidersSamlServicesSpSp. # noqa: E501 - :rtype: str - """ - return self._hostname - - @hostname.setter - def hostname(self, hostname): - """Sets the hostname of this ProvidersSamlServicesSpSp. - - Resolvable hostname of the SP in an access zone. # noqa: E501 - - :param hostname: The hostname of this ProvidersSamlServicesSpSp. # noqa: E501 - :type: str - """ - if hostname is not None and len(hostname) > 2048: - raise ValueError("Invalid value for `hostname`, length must be less than or equal to `2048`") # noqa: E501 - if hostname is not None and len(hostname) < 0: - raise ValueError("Invalid value for `hostname`, length must be greater than or equal to `0`") # noqa: E501 - - self._hostname = hostname - - @property - def last_name(self): - """Gets the last_name of this ProvidersSamlServicesSpSp. # noqa: E501 - - Last name of SP maintainer. # noqa: E501 - - :return: The last_name of this ProvidersSamlServicesSpSp. # noqa: E501 - :rtype: str - """ - return self._last_name - - @last_name.setter - def last_name(self, last_name): - """Sets the last_name of this ProvidersSamlServicesSpSp. - - Last name of SP maintainer. # noqa: E501 - - :param last_name: The last_name of this ProvidersSamlServicesSpSp. # noqa: E501 - :type: str - """ - if last_name is not None and len(last_name) > 255: - raise ValueError("Invalid value for `last_name`, length must be less than or equal to `255`") # noqa: E501 - if last_name is not None and len(last_name) < 0: - raise ValueError("Invalid value for `last_name`, length must be greater than or equal to `0`") # noqa: E501 - - self._last_name = last_name - - @property - def login_url(self): - """Gets the login_url of this ProvidersSamlServicesSpSp. # noqa: E501 - - Login URL of the SAML provider. # noqa: E501 - - :return: The login_url of this ProvidersSamlServicesSpSp. # noqa: E501 - :rtype: str - """ - return self._login_url - - @login_url.setter - def login_url(self, login_url): - """Sets the login_url of this ProvidersSamlServicesSpSp. - - Login URL of the SAML provider. # noqa: E501 - - :param login_url: The login_url of this ProvidersSamlServicesSpSp. # noqa: E501 - :type: str - """ - if login_url is not None and len(login_url) > 2048: - raise ValueError("Invalid value for `login_url`, length must be less than or equal to `2048`") # noqa: E501 - if login_url is not None and len(login_url) < 0: - raise ValueError("Invalid value for `login_url`, length must be greater than or equal to `0`") # noqa: E501 - - self._login_url = login_url - - @property - def logout_url(self): - """Gets the logout_url of this ProvidersSamlServicesSpSp. # noqa: E501 - - Logout URL of the SAML provider. # noqa: E501 - - :return: The logout_url of this ProvidersSamlServicesSpSp. # noqa: E501 - :rtype: str - """ - return self._logout_url - - @logout_url.setter - def logout_url(self, logout_url): - """Sets the logout_url of this ProvidersSamlServicesSpSp. - - Logout URL of the SAML provider. # noqa: E501 - - :param logout_url: The logout_url of this ProvidersSamlServicesSpSp. # noqa: E501 - :type: str - """ - if logout_url is not None and len(logout_url) > 2048: - raise ValueError("Invalid value for `logout_url`, length must be less than or equal to `2048`") # noqa: E501 - if logout_url is not None and len(logout_url) < 0: - raise ValueError("Invalid value for `logout_url`, length must be greater than or equal to `0`") # noqa: E501 - - self._logout_url = logout_url - - @property - def metadata_location(self): - """Gets the metadata_location of this ProvidersSamlServicesSpSp. # noqa: E501 - - Metadata location of the SAML provider. # noqa: E501 - - :return: The metadata_location of this ProvidersSamlServicesSpSp. # noqa: E501 - :rtype: str - """ - return self._metadata_location - - @metadata_location.setter - def metadata_location(self, metadata_location): - """Sets the metadata_location of this ProvidersSamlServicesSpSp. - - Metadata location of the SAML provider. # noqa: E501 - - :param metadata_location: The metadata_location of this ProvidersSamlServicesSpSp. # noqa: E501 - :type: str - """ - if metadata_location is not None and len(metadata_location) > 2048: - raise ValueError("Invalid value for `metadata_location`, length must be less than or equal to `2048`") # noqa: E501 - if metadata_location is not None and len(metadata_location) < 0: - raise ValueError("Invalid value for `metadata_location`, length must be greater than or equal to `0`") # noqa: E501 - - self._metadata_location = metadata_location - - @property - def name_id_format(self): - """Gets the name_id_format of this ProvidersSamlServicesSpSp. # noqa: E501 - - SAML NameID format used with the SP. # noqa: E501 - - :return: The name_id_format of this ProvidersSamlServicesSpSp. # noqa: E501 - :rtype: str - """ - return self._name_id_format - - @name_id_format.setter - def name_id_format(self, name_id_format): - """Sets the name_id_format of this ProvidersSamlServicesSpSp. - - SAML NameID format used with the SP. # noqa: E501 - - :param name_id_format: The name_id_format of this ProvidersSamlServicesSpSp. # noqa: E501 - :type: str - """ - - self._name_id_format = name_id_format - - @property - def signing_certificate(self): - """Gets the signing_certificate of this ProvidersSamlServicesSpSp. # noqa: E501 - - SAML request signing certificate. # noqa: E501 - - :return: The signing_certificate of this ProvidersSamlServicesSpSp. # noqa: E501 - :rtype: CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate - """ - return self._signing_certificate - - @signing_certificate.setter - def signing_certificate(self, signing_certificate): - """Sets the signing_certificate of this ProvidersSamlServicesSpSp. - - SAML request signing certificate. # noqa: E501 - - :param signing_certificate: The signing_certificate of this ProvidersSamlServicesSpSp. # noqa: E501 - :type: CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate - """ - - self._signing_certificate = signing_certificate - - @property - def signing_enabled(self): - """Gets the signing_enabled of this ProvidersSamlServicesSpSp. # noqa: E501 - - Indicates whether signing of requests is enabled for the SP. # noqa: E501 - - :return: The signing_enabled of this ProvidersSamlServicesSpSp. # noqa: E501 - :rtype: bool - """ - return self._signing_enabled - - @signing_enabled.setter - def signing_enabled(self, signing_enabled): - """Sets the signing_enabled of this ProvidersSamlServicesSpSp. - - Indicates whether signing of requests is enabled for the SP. # noqa: E501 - - :param signing_enabled: The signing_enabled of this ProvidersSamlServicesSpSp. # noqa: E501 - :type: bool - """ - - self._signing_enabled = signing_enabled - - @property - def user_id(self): - """Gets the user_id of this ProvidersSamlServicesSpSp. # noqa: E501 - - ID of SP maintainer. # noqa: E501 - - :return: The user_id of this ProvidersSamlServicesSpSp. # noqa: E501 - :rtype: str - """ - return self._user_id - - @user_id.setter - def user_id(self, user_id): - """Sets the user_id of this ProvidersSamlServicesSpSp. - - ID of SP maintainer. # noqa: E501 - - :param user_id: The user_id of this ProvidersSamlServicesSpSp. # noqa: E501 - :type: str - """ - if user_id is not None and len(user_id) > 256: - raise ValueError("Invalid value for `user_id`, length must be less than or equal to `256`") # noqa: E501 - if user_id is not None and len(user_id) < 0: - raise ValueError("Invalid value for `user_id`, length must be greater than or equal to `0`") # noqa: E501 - - self._user_id = user_id - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ProvidersSamlServicesSpSp, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ProvidersSamlServicesSpSp): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_license.py b/isilon_sdk/isilon_sdk/v9_11_0/models/quota_license.py deleted file mode 100644 index 74a1ca3ec..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_license.py +++ /dev/null @@ -1,379 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class QuotaLicense(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'days_since_expiry': 'int', - 'days_to_expiry': 'int', - 'expiration': 'str', - 'expired_alert': 'bool', - 'expiring_alert': 'bool', - 'id': 'str', - 'name': 'str', - 'status': 'str', - 'tiers': 'list[QuotaLicenseTier]' - } - - attribute_map = { - 'days_since_expiry': 'days_since_expiry', - 'days_to_expiry': 'days_to_expiry', - 'expiration': 'expiration', - 'expired_alert': 'expired_alert', - 'expiring_alert': 'expiring_alert', - 'id': 'id', - 'name': 'name', - 'status': 'status', - 'tiers': 'tiers' - } - - def __init__(self, days_since_expiry=None, days_to_expiry=None, expiration=None, expired_alert=None, expiring_alert=None, id=None, name=None, status=None, tiers=None): # noqa: E501 - """QuotaLicense - a model defined in Swagger""" # noqa: E501 - - self._days_since_expiry = None - self._days_to_expiry = None - self._expiration = None - self._expired_alert = None - self._expiring_alert = None - self._id = None - self._name = None - self._status = None - self._tiers = None - self.discriminator = None - - if days_since_expiry is not None: - self.days_since_expiry = days_since_expiry - if days_to_expiry is not None: - self.days_to_expiry = days_to_expiry - if expiration is not None: - self.expiration = expiration - self.expired_alert = expired_alert - self.expiring_alert = expiring_alert - self.id = id - self.name = name - self.status = status - self.tiers = tiers - - @property - def days_since_expiry(self): - """Gets the days_since_expiry of this QuotaLicense. # noqa: E501 - - Number of days since a license expired. # noqa: E501 - - :return: The days_since_expiry of this QuotaLicense. # noqa: E501 - :rtype: int - """ - return self._days_since_expiry - - @days_since_expiry.setter - def days_since_expiry(self, days_since_expiry): - """Sets the days_since_expiry of this QuotaLicense. - - Number of days since a license expired. # noqa: E501 - - :param days_since_expiry: The days_since_expiry of this QuotaLicense. # noqa: E501 - :type: int - """ - if days_since_expiry is not None and days_since_expiry > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `days_since_expiry`, must be a value less than or equal to `4294967295`") # noqa: E501 - if days_since_expiry is not None and days_since_expiry < 0: # noqa: E501 - raise ValueError("Invalid value for `days_since_expiry`, must be a value greater than or equal to `0`") # noqa: E501 - - self._days_since_expiry = days_since_expiry - - @property - def days_to_expiry(self): - """Gets the days_to_expiry of this QuotaLicense. # noqa: E501 - - Number of days before a license expires. # noqa: E501 - - :return: The days_to_expiry of this QuotaLicense. # noqa: E501 - :rtype: int - """ - return self._days_to_expiry - - @days_to_expiry.setter - def days_to_expiry(self, days_to_expiry): - """Sets the days_to_expiry of this QuotaLicense. - - Number of days before a license expires. # noqa: E501 - - :param days_to_expiry: The days_to_expiry of this QuotaLicense. # noqa: E501 - :type: int - """ - if days_to_expiry is not None and days_to_expiry > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `days_to_expiry`, must be a value less than or equal to `4294967295`") # noqa: E501 - if days_to_expiry is not None and days_to_expiry < 0: # noqa: E501 - raise ValueError("Invalid value for `days_to_expiry`, must be a value greater than or equal to `0`") # noqa: E501 - - self._days_to_expiry = days_to_expiry - - @property - def expiration(self): - """Gets the expiration of this QuotaLicense. # noqa: E501 - - Date of license expiry. Format is YYYY-MM-DD. It is not included if there is no expiration. Feature is considered expired at end of this day. The cluster time is used to determine expiry. # noqa: E501 - - :return: The expiration of this QuotaLicense. # noqa: E501 - :rtype: str - """ - return self._expiration - - @expiration.setter - def expiration(self, expiration): - """Sets the expiration of this QuotaLicense. - - Date of license expiry. Format is YYYY-MM-DD. It is not included if there is no expiration. Feature is considered expired at end of this day. The cluster time is used to determine expiry. # noqa: E501 - - :param expiration: The expiration of this QuotaLicense. # noqa: E501 - :type: str - """ - if expiration is not None and len(expiration) > 10: - raise ValueError("Invalid value for `expiration`, length must be less than or equal to `10`") # noqa: E501 - if expiration is not None and len(expiration) < 10: - raise ValueError("Invalid value for `expiration`, length must be greater than or equal to `10`") # noqa: E501 - if expiration is not None and not re.search(r'^[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]$', expiration): # noqa: E501 - raise ValueError(r"Invalid value for `expiration`, must be a follow pattern or equal to `/^[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]$/`") # noqa: E501 - - self._expiration = expiration - - @property - def expired_alert(self): - """Gets the expired_alert of this QuotaLicense. # noqa: E501 - - True when we are generating an alert that this feature has expired. # noqa: E501 - - :return: The expired_alert of this QuotaLicense. # noqa: E501 - :rtype: bool - """ - return self._expired_alert - - @expired_alert.setter - def expired_alert(self, expired_alert): - """Sets the expired_alert of this QuotaLicense. - - True when we are generating an alert that this feature has expired. # noqa: E501 - - :param expired_alert: The expired_alert of this QuotaLicense. # noqa: E501 - :type: bool - """ - if expired_alert is None: - raise ValueError("Invalid value for `expired_alert`, must not be `None`") # noqa: E501 - - self._expired_alert = expired_alert - - @property - def expiring_alert(self): - """Gets the expiring_alert of this QuotaLicense. # noqa: E501 - - True when we are generating an alert that this feature is expiring. # noqa: E501 - - :return: The expiring_alert of this QuotaLicense. # noqa: E501 - :rtype: bool - """ - return self._expiring_alert - - @expiring_alert.setter - def expiring_alert(self, expiring_alert): - """Sets the expiring_alert of this QuotaLicense. - - True when we are generating an alert that this feature is expiring. # noqa: E501 - - :param expiring_alert: The expiring_alert of this QuotaLicense. # noqa: E501 - :type: bool - """ - if expiring_alert is None: - raise ValueError("Invalid value for `expiring_alert`, must not be `None`") # noqa: E501 - - self._expiring_alert = expiring_alert - - @property - def id(self): - """Gets the id of this QuotaLicense. # noqa: E501 - - Name of the licensed feature. # noqa: E501 - - :return: The id of this QuotaLicense. # noqa: E501 - :rtype: str - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this QuotaLicense. - - Name of the licensed feature. # noqa: E501 - - :param id: The id of this QuotaLicense. # noqa: E501 - :type: str - """ - if id is None: - raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 - if id is not None and len(id) > 50: - raise ValueError("Invalid value for `id`, length must be less than or equal to `50`") # noqa: E501 - if id is not None and len(id) < 1: - raise ValueError("Invalid value for `id`, length must be greater than or equal to `1`") # noqa: E501 - if id is not None and not re.search(r'.+', id): # noqa: E501 - raise ValueError(r"Invalid value for `id`, must be a follow pattern or equal to `/.+/`") # noqa: E501 - - self._id = id - - @property - def name(self): - """Gets the name of this QuotaLicense. # noqa: E501 - - Name of the licensed feature. # noqa: E501 - - :return: The name of this QuotaLicense. # noqa: E501 - :rtype: str - """ - return self._name - - @name.setter - def name(self, name): - """Sets the name of this QuotaLicense. - - Name of the licensed feature. # noqa: E501 - - :param name: The name of this QuotaLicense. # noqa: E501 - :type: str - """ - if name is None: - raise ValueError("Invalid value for `name`, must not be `None`") # noqa: E501 - if name is not None and len(name) > 50: - raise ValueError("Invalid value for `name`, length must be less than or equal to `50`") # noqa: E501 - if name is not None and len(name) < 1: - raise ValueError("Invalid value for `name`, length must be greater than or equal to `1`") # noqa: E501 - if name is not None and not re.search(r'.+', name): # noqa: E501 - raise ValueError(r"Invalid value for `name`, must be a follow pattern or equal to `/.+/`") # noqa: E501 - - self._name = name - - @property - def status(self): - """Gets the status of this QuotaLicense. # noqa: E501 - - Current status of the license. # noqa: E501 - - :return: The status of this QuotaLicense. # noqa: E501 - :rtype: str - """ - return self._status - - @status.setter - def status(self, status): - """Sets the status of this QuotaLicense. - - Current status of the license. # noqa: E501 - - :param status: The status of this QuotaLicense. # noqa: E501 - :type: str - """ - if status is None: - raise ValueError("Invalid value for `status`, must not be `None`") # noqa: E501 - allowed_values = ["Unlicensed", "Licensed", "Expired", "Evaluation", "Evaluation Expired"] # noqa: E501 - if status not in allowed_values: - raise ValueError( - "Invalid value for `status` ({0}), must be one of {1}" # noqa: E501 - .format(status, allowed_values) - ) - - self._status = status - - @property - def tiers(self): - """Gets the tiers of this QuotaLicense. # noqa: E501 - - Tiered License details. # noqa: E501 - - :return: The tiers of this QuotaLicense. # noqa: E501 - :rtype: list[QuotaLicenseTier] - """ - return self._tiers - - @tiers.setter - def tiers(self, tiers): - """Sets the tiers of this QuotaLicense. - - Tiered License details. # noqa: E501 - - :param tiers: The tiers of this QuotaLicense. # noqa: E501 - :type: list[QuotaLicenseTier] - """ - if tiers is None: - raise ValueError("Invalid value for `tiers`, must not be `None`") # noqa: E501 - - self._tiers = tiers - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(QuotaLicense, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, QuotaLicense): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_license_tier.py b/isilon_sdk/isilon_sdk/v9_11_0/models/quota_license_tier.py deleted file mode 100644 index 46ef1682b..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_license_tier.py +++ /dev/null @@ -1,343 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class QuotaLicenseTier(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'entitlements_exceeded_alerts': 'list[LicenseLicenseTierEntitlementsExceededAlert]', - 'licensed_drive_capacity': 'int', - 'licensed_node_count': 'int', - 'licensed_nodes_with_seds_count': 'int', - 'tier': 'str', - 'used_drive_capacity': 'int', - 'used_node_count': 'int', - 'used_nodes_with_seds_count': 'int' - } - - attribute_map = { - 'entitlements_exceeded_alerts': 'entitlements_exceeded_alerts', - 'licensed_drive_capacity': 'licensed_drive_capacity', - 'licensed_node_count': 'licensed_node_count', - 'licensed_nodes_with_seds_count': 'licensed_nodes_with_seds_count', - 'tier': 'tier', - 'used_drive_capacity': 'used_drive_capacity', - 'used_node_count': 'used_node_count', - 'used_nodes_with_seds_count': 'used_nodes_with_seds_count' - } - - def __init__(self, entitlements_exceeded_alerts=None, licensed_drive_capacity=None, licensed_node_count=None, licensed_nodes_with_seds_count=None, tier=None, used_drive_capacity=None, used_node_count=None, used_nodes_with_seds_count=None): # noqa: E501 - """QuotaLicenseTier - a model defined in Swagger""" # noqa: E501 - - self._entitlements_exceeded_alerts = None - self._licensed_drive_capacity = None - self._licensed_node_count = None - self._licensed_nodes_with_seds_count = None - self._tier = None - self._used_drive_capacity = None - self._used_node_count = None - self._used_nodes_with_seds_count = None - self.discriminator = None - - if entitlements_exceeded_alerts is not None: - self.entitlements_exceeded_alerts = entitlements_exceeded_alerts - if licensed_drive_capacity is not None: - self.licensed_drive_capacity = licensed_drive_capacity - if licensed_node_count is not None: - self.licensed_node_count = licensed_node_count - if licensed_nodes_with_seds_count is not None: - self.licensed_nodes_with_seds_count = licensed_nodes_with_seds_count - if tier is not None: - self.tier = tier - if used_drive_capacity is not None: - self.used_drive_capacity = used_drive_capacity - if used_node_count is not None: - self.used_node_count = used_node_count - if used_nodes_with_seds_count is not None: - self.used_nodes_with_seds_count = used_nodes_with_seds_count - - @property - def entitlements_exceeded_alerts(self): - """Gets the entitlements_exceeded_alerts of this QuotaLicenseTier. # noqa: E501 - - List of alerts about exceeded entitlements: The following alerts appear when usage of a resource such as a node, an encryption node, or storage capacity exceeds the quantity licensed for that resource. # noqa: E501 - - :return: The entitlements_exceeded_alerts of this QuotaLicenseTier. # noqa: E501 - :rtype: list[LicenseLicenseTierEntitlementsExceededAlert] - """ - return self._entitlements_exceeded_alerts - - @entitlements_exceeded_alerts.setter - def entitlements_exceeded_alerts(self, entitlements_exceeded_alerts): - """Sets the entitlements_exceeded_alerts of this QuotaLicenseTier. - - List of alerts about exceeded entitlements: The following alerts appear when usage of a resource such as a node, an encryption node, or storage capacity exceeds the quantity licensed for that resource. # noqa: E501 - - :param entitlements_exceeded_alerts: The entitlements_exceeded_alerts of this QuotaLicenseTier. # noqa: E501 - :type: list[LicenseLicenseTierEntitlementsExceededAlert] - """ - - self._entitlements_exceeded_alerts = entitlements_exceeded_alerts - - @property - def licensed_drive_capacity(self): - """Gets the licensed_drive_capacity of this QuotaLicenseTier. # noqa: E501 - - Licensed terabyte (TB, 10^12 bytes) drive capacity allocated as storage associated with tier. Included if tier is not NONINF and license is not a base only license. # noqa: E501 - - :return: The licensed_drive_capacity of this QuotaLicenseTier. # noqa: E501 - :rtype: int - """ - return self._licensed_drive_capacity - - @licensed_drive_capacity.setter - def licensed_drive_capacity(self, licensed_drive_capacity): - """Sets the licensed_drive_capacity of this QuotaLicenseTier. - - Licensed terabyte (TB, 10^12 bytes) drive capacity allocated as storage associated with tier. Included if tier is not NONINF and license is not a base only license. # noqa: E501 - - :param licensed_drive_capacity: The licensed_drive_capacity of this QuotaLicenseTier. # noqa: E501 - :type: int - """ - if licensed_drive_capacity is not None and licensed_drive_capacity > 2147483647: # noqa: E501 - raise ValueError("Invalid value for `licensed_drive_capacity`, must be a value less than or equal to `2147483647`") # noqa: E501 - if licensed_drive_capacity is not None and licensed_drive_capacity < 0: # noqa: E501 - raise ValueError("Invalid value for `licensed_drive_capacity`, must be a value greater than or equal to `0`") # noqa: E501 - - self._licensed_drive_capacity = licensed_drive_capacity - - @property - def licensed_node_count(self): - """Gets the licensed_node_count of this QuotaLicenseTier. # noqa: E501 - - Licensed number of nodes in this tier. # noqa: E501 - - :return: The licensed_node_count of this QuotaLicenseTier. # noqa: E501 - :rtype: int - """ - return self._licensed_node_count - - @licensed_node_count.setter - def licensed_node_count(self, licensed_node_count): - """Sets the licensed_node_count of this QuotaLicenseTier. - - Licensed number of nodes in this tier. # noqa: E501 - - :param licensed_node_count: The licensed_node_count of this QuotaLicenseTier. # noqa: E501 - :type: int - """ - if licensed_node_count is not None and licensed_node_count > 2147483647: # noqa: E501 - raise ValueError("Invalid value for `licensed_node_count`, must be a value less than or equal to `2147483647`") # noqa: E501 - if licensed_node_count is not None and licensed_node_count < 0: # noqa: E501 - raise ValueError("Invalid value for `licensed_node_count`, must be a value greater than or equal to `0`") # noqa: E501 - - self._licensed_node_count = licensed_node_count - - @property - def licensed_nodes_with_seds_count(self): - """Gets the licensed_nodes_with_seds_count of this QuotaLicenseTier. # noqa: E501 - - Licensed number of nodes of this tier that contain self-encrypting drives. Included only if license is ONEFS and tier is not NONINF. # noqa: E501 - - :return: The licensed_nodes_with_seds_count of this QuotaLicenseTier. # noqa: E501 - :rtype: int - """ - return self._licensed_nodes_with_seds_count - - @licensed_nodes_with_seds_count.setter - def licensed_nodes_with_seds_count(self, licensed_nodes_with_seds_count): - """Sets the licensed_nodes_with_seds_count of this QuotaLicenseTier. - - Licensed number of nodes of this tier that contain self-encrypting drives. Included only if license is ONEFS and tier is not NONINF. # noqa: E501 - - :param licensed_nodes_with_seds_count: The licensed_nodes_with_seds_count of this QuotaLicenseTier. # noqa: E501 - :type: int - """ - if licensed_nodes_with_seds_count is not None and licensed_nodes_with_seds_count > 2147483647: # noqa: E501 - raise ValueError("Invalid value for `licensed_nodes_with_seds_count`, must be a value less than or equal to `2147483647`") # noqa: E501 - if licensed_nodes_with_seds_count is not None and licensed_nodes_with_seds_count < 0: # noqa: E501 - raise ValueError("Invalid value for `licensed_nodes_with_seds_count`, must be a value greater than or equal to `0`") # noqa: E501 - - self._licensed_nodes_with_seds_count = licensed_nodes_with_seds_count - - @property - def tier(self): - """Gets the tier of this QuotaLicenseTier. # noqa: E501 - - OneFS hardware tier. Tier is a number, NONINF, or NO_TIER. NONINF indicates a non infinity tier. NO_TIER indicates a license that is not tier based. # noqa: E501 - - :return: The tier of this QuotaLicenseTier. # noqa: E501 - :rtype: str - """ - return self._tier - - @tier.setter - def tier(self, tier): - """Sets the tier of this QuotaLicenseTier. - - OneFS hardware tier. Tier is a number, NONINF, or NO_TIER. NONINF indicates a non infinity tier. NO_TIER indicates a license that is not tier based. # noqa: E501 - - :param tier: The tier of this QuotaLicenseTier. # noqa: E501 - :type: str - """ - if tier is not None and len(tier) > 50: - raise ValueError("Invalid value for `tier`, length must be less than or equal to `50`") # noqa: E501 - if tier is not None and len(tier) < 1: - raise ValueError("Invalid value for `tier`, length must be greater than or equal to `1`") # noqa: E501 - if tier is not None and not re.search(r'^NONINF$|^NO_TIER$|^[0-9]+$', tier): # noqa: E501 - raise ValueError(r"Invalid value for `tier`, must be a follow pattern or equal to `/^NONINF$|^NO_TIER$|^[0-9]+$/`") # noqa: E501 - - self._tier = tier - - @property - def used_drive_capacity(self): - """Gets the used_drive_capacity of this QuotaLicenseTier. # noqa: E501 - - Actual terabyte (TB, 10^12 bytes) drive capacity allocated as storage space associated with tier. Included if tier is not NONINF and license is not a base only license. # noqa: E501 - - :return: The used_drive_capacity of this QuotaLicenseTier. # noqa: E501 - :rtype: int - """ - return self._used_drive_capacity - - @used_drive_capacity.setter - def used_drive_capacity(self, used_drive_capacity): - """Sets the used_drive_capacity of this QuotaLicenseTier. - - Actual terabyte (TB, 10^12 bytes) drive capacity allocated as storage space associated with tier. Included if tier is not NONINF and license is not a base only license. # noqa: E501 - - :param used_drive_capacity: The used_drive_capacity of this QuotaLicenseTier. # noqa: E501 - :type: int - """ - if used_drive_capacity is not None and used_drive_capacity > 2147483647: # noqa: E501 - raise ValueError("Invalid value for `used_drive_capacity`, must be a value less than or equal to `2147483647`") # noqa: E501 - if used_drive_capacity is not None and used_drive_capacity < 0: # noqa: E501 - raise ValueError("Invalid value for `used_drive_capacity`, must be a value greater than or equal to `0`") # noqa: E501 - - self._used_drive_capacity = used_drive_capacity - - @property - def used_node_count(self): - """Gets the used_node_count of this QuotaLicenseTier. # noqa: E501 - - Actual number of nodes in this tier. # noqa: E501 - - :return: The used_node_count of this QuotaLicenseTier. # noqa: E501 - :rtype: int - """ - return self._used_node_count - - @used_node_count.setter - def used_node_count(self, used_node_count): - """Sets the used_node_count of this QuotaLicenseTier. - - Actual number of nodes in this tier. # noqa: E501 - - :param used_node_count: The used_node_count of this QuotaLicenseTier. # noqa: E501 - :type: int - """ - if used_node_count is not None and used_node_count > 2147483647: # noqa: E501 - raise ValueError("Invalid value for `used_node_count`, must be a value less than or equal to `2147483647`") # noqa: E501 - if used_node_count is not None and used_node_count < 0: # noqa: E501 - raise ValueError("Invalid value for `used_node_count`, must be a value greater than or equal to `0`") # noqa: E501 - - self._used_node_count = used_node_count - - @property - def used_nodes_with_seds_count(self): - """Gets the used_nodes_with_seds_count of this QuotaLicenseTier. # noqa: E501 - - Actual number of nodes of this tier that contain self-encrypting drives. Included only if license is ONEFS and if tier is not NONINF. # noqa: E501 - - :return: The used_nodes_with_seds_count of this QuotaLicenseTier. # noqa: E501 - :rtype: int - """ - return self._used_nodes_with_seds_count - - @used_nodes_with_seds_count.setter - def used_nodes_with_seds_count(self, used_nodes_with_seds_count): - """Sets the used_nodes_with_seds_count of this QuotaLicenseTier. - - Actual number of nodes of this tier that contain self-encrypting drives. Included only if license is ONEFS and if tier is not NONINF. # noqa: E501 - - :param used_nodes_with_seds_count: The used_nodes_with_seds_count of this QuotaLicenseTier. # noqa: E501 - :type: int - """ - if used_nodes_with_seds_count is not None and used_nodes_with_seds_count > 2147483647: # noqa: E501 - raise ValueError("Invalid value for `used_nodes_with_seds_count`, must be a value less than or equal to `2147483647`") # noqa: E501 - if used_nodes_with_seds_count is not None and used_nodes_with_seds_count < 0: # noqa: E501 - raise ValueError("Invalid value for `used_nodes_with_seds_count`, must be a value greater than or equal to `0`") # noqa: E501 - - self._used_nodes_with_seds_count = used_nodes_with_seds_count - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(QuotaLicenseTier, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, QuotaLicenseTier): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/security_settings_settings.py b/isilon_sdk/isilon_sdk/v9_11_0/models/security_settings_settings.py deleted file mode 100644 index d1c0100f9..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/security_settings_settings.py +++ /dev/null @@ -1,173 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SecuritySettingsSettings(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'fips_mode_enabled': 'bool', - 'restricted_shell_enabled': 'bool', - 'usb_ports_disabled': 'bool' - } - - attribute_map = { - 'fips_mode_enabled': 'fips_mode_enabled', - 'restricted_shell_enabled': 'restricted_shell_enabled', - 'usb_ports_disabled': 'usb_ports_disabled' - } - - def __init__(self, fips_mode_enabled=None, restricted_shell_enabled=None, usb_ports_disabled=None): # noqa: E501 - """SecuritySettingsSettings - a model defined in Swagger""" # noqa: E501 - - self._fips_mode_enabled = None - self._restricted_shell_enabled = None - self._usb_ports_disabled = None - self.discriminator = None - - if fips_mode_enabled is not None: - self.fips_mode_enabled = fips_mode_enabled - if restricted_shell_enabled is not None: - self.restricted_shell_enabled = restricted_shell_enabled - if usb_ports_disabled is not None: - self.usb_ports_disabled = usb_ports_disabled - - @property - def fips_mode_enabled(self): - """Gets the fips_mode_enabled of this SecuritySettingsSettings. # noqa: E501 - - Enable OpenSSL FIPS compliance # noqa: E501 - - :return: The fips_mode_enabled of this SecuritySettingsSettings. # noqa: E501 - :rtype: bool - """ - return self._fips_mode_enabled - - @fips_mode_enabled.setter - def fips_mode_enabled(self, fips_mode_enabled): - """Sets the fips_mode_enabled of this SecuritySettingsSettings. - - Enable OpenSSL FIPS compliance # noqa: E501 - - :param fips_mode_enabled: The fips_mode_enabled of this SecuritySettingsSettings. # noqa: E501 - :type: bool - """ - - self._fips_mode_enabled = fips_mode_enabled - - @property - def restricted_shell_enabled(self): - """Gets the restricted_shell_enabled of this SecuritySettingsSettings. # noqa: E501 - - Enable/disable PowerScale Restricted shell. # noqa: E501 - - :return: The restricted_shell_enabled of this SecuritySettingsSettings. # noqa: E501 - :rtype: bool - """ - return self._restricted_shell_enabled - - @restricted_shell_enabled.setter - def restricted_shell_enabled(self, restricted_shell_enabled): - """Sets the restricted_shell_enabled of this SecuritySettingsSettings. - - Enable/disable PowerScale Restricted shell. # noqa: E501 - - :param restricted_shell_enabled: The restricted_shell_enabled of this SecuritySettingsSettings. # noqa: E501 - :type: bool - """ - - self._restricted_shell_enabled = restricted_shell_enabled - - @property - def usb_ports_disabled(self): - """Gets the usb_ports_disabled of this SecuritySettingsSettings. # noqa: E501 - - Disable USB ports on Cluster # noqa: E501 - - :return: The usb_ports_disabled of this SecuritySettingsSettings. # noqa: E501 - :rtype: bool - """ - return self._usb_ports_disabled - - @usb_ports_disabled.setter - def usb_ports_disabled(self, usb_ports_disabled): - """Sets the usb_ports_disabled of this SecuritySettingsSettings. - - Disable USB ports on Cluster # noqa: E501 - - :param usb_ports_disabled: The usb_ports_disabled of this SecuritySettingsSettings. # noqa: E501 - :type: bool - """ - - self._usb_ports_disabled = usb_ports_disabled - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SecuritySettingsSettings, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SecuritySettingsSettings): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/service_target_policies.py b/isilon_sdk/isilon_sdk/v9_11_0/models/service_target_policies.py deleted file mode 100644 index e84549c4d..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/service_target_policies.py +++ /dev/null @@ -1,115 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ServiceTargetPolicies(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'policies': 'list[ServiceTargetPoliciesPolicy]' - } - - attribute_map = { - 'policies': 'policies' - } - - def __init__(self, policies=None): # noqa: E501 - """ServiceTargetPolicies - a model defined in Swagger""" # noqa: E501 - - self._policies = None - self.discriminator = None - - if policies is not None: - self.policies = policies - - @property - def policies(self): - """Gets the policies of this ServiceTargetPolicies. # noqa: E501 - - - :return: The policies of this ServiceTargetPolicies. # noqa: E501 - :rtype: list[ServiceTargetPoliciesPolicy] - """ - return self._policies - - @policies.setter - def policies(self, policies): - """Sets the policies of this ServiceTargetPolicies. - - - :param policies: The policies of this ServiceTargetPolicies. # noqa: E501 - :type: list[ServiceTargetPoliciesPolicy] - """ - - self._policies = policies - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ServiceTargetPolicies, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ServiceTargetPolicies): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/service_target_policies_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/service_target_policies_extended.py deleted file mode 100644 index 2dfebbd60..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/service_target_policies_extended.py +++ /dev/null @@ -1,179 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ServiceTargetPoliciesExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'policies': 'list[ServiceTargetPoliciesPolicy]', - 'resume': 'str', - 'total': 'int' - } - - attribute_map = { - 'policies': 'policies', - 'resume': 'resume', - 'total': 'total' - } - - def __init__(self, policies=None, resume=None, total=None): # noqa: E501 - """ServiceTargetPoliciesExtended - a model defined in Swagger""" # noqa: E501 - - self._policies = None - self._resume = None - self._total = None - self.discriminator = None - - if policies is not None: - self.policies = policies - if resume is not None: - self.resume = resume - if total is not None: - self.total = total - - @property - def policies(self): - """Gets the policies of this ServiceTargetPoliciesExtended. # noqa: E501 - - - :return: The policies of this ServiceTargetPoliciesExtended. # noqa: E501 - :rtype: list[ServiceTargetPoliciesPolicy] - """ - return self._policies - - @policies.setter - def policies(self, policies): - """Sets the policies of this ServiceTargetPoliciesExtended. - - - :param policies: The policies of this ServiceTargetPoliciesExtended. # noqa: E501 - :type: list[ServiceTargetPoliciesPolicy] - """ - - self._policies = policies - - @property - def resume(self): - """Gets the resume of this ServiceTargetPoliciesExtended. # noqa: E501 - - Provide this token as the 'resume' query argument to continue listing results. # noqa: E501 - - :return: The resume of this ServiceTargetPoliciesExtended. # noqa: E501 - :rtype: str - """ - return self._resume - - @resume.setter - def resume(self, resume): - """Sets the resume of this ServiceTargetPoliciesExtended. - - Provide this token as the 'resume' query argument to continue listing results. # noqa: E501 - - :param resume: The resume of this ServiceTargetPoliciesExtended. # noqa: E501 - :type: str - """ - if resume is not None and len(resume) > 8192: - raise ValueError("Invalid value for `resume`, length must be less than or equal to `8192`") # noqa: E501 - if resume is not None and len(resume) < 0: - raise ValueError("Invalid value for `resume`, length must be greater than or equal to `0`") # noqa: E501 - - self._resume = resume - - @property - def total(self): - """Gets the total of this ServiceTargetPoliciesExtended. # noqa: E501 - - Total number of items available. # noqa: E501 - - :return: The total of this ServiceTargetPoliciesExtended. # noqa: E501 - :rtype: int - """ - return self._total - - @total.setter - def total(self, total): - """Sets the total of this ServiceTargetPoliciesExtended. - - Total number of items available. # noqa: E501 - - :param total: The total of this ServiceTargetPoliciesExtended. # noqa: E501 - :type: int - """ - if total is not None and total > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `total`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if total is not None and total < 0: # noqa: E501 - raise ValueError("Invalid value for `total`, must be a value greater than or equal to `0`") # noqa: E501 - - self._total = total - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ServiceTargetPoliciesExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ServiceTargetPoliciesExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/service_target_policies_policy.py b/isilon_sdk/isilon_sdk/v9_11_0/models/service_target_policies_policy.py deleted file mode 100644 index 25fa83987..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/service_target_policies_policy.py +++ /dev/null @@ -1,414 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class ServiceTargetPoliciesPolicy(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'failover_failback_state': 'str', - 'id': 'str', - 'last_job_state': 'str', - 'last_source_coordinator_ip': 'str', - 'last_update_from_source': 'int', - 'legacy_policy': 'bool', - 'name': 'str', - 'source_cluster_guid': 'str', - 'source_host': 'str', - 'target_path': 'str' - } - - attribute_map = { - 'failover_failback_state': 'failover_failback_state', - 'id': 'id', - 'last_job_state': 'last_job_state', - 'last_source_coordinator_ip': 'last_source_coordinator_ip', - 'last_update_from_source': 'last_update_from_source', - 'legacy_policy': 'legacy_policy', - 'name': 'name', - 'source_cluster_guid': 'source_cluster_guid', - 'source_host': 'source_host', - 'target_path': 'target_path' - } - - def __init__(self, failover_failback_state=None, id=None, last_job_state=None, last_source_coordinator_ip=None, last_update_from_source=None, legacy_policy=None, name=None, source_cluster_guid=None, source_host=None, target_path=None): # noqa: E501 - """ServiceTargetPoliciesPolicy - a model defined in Swagger""" # noqa: E501 - - self._failover_failback_state = None - self._id = None - self._last_job_state = None - self._last_source_coordinator_ip = None - self._last_update_from_source = None - self._legacy_policy = None - self._name = None - self._source_cluster_guid = None - self._source_host = None - self._target_path = None - self.discriminator = None - - self.failover_failback_state = failover_failback_state - self.id = id - self.last_job_state = last_job_state - self.last_source_coordinator_ip = last_source_coordinator_ip - if last_update_from_source is not None: - self.last_update_from_source = last_update_from_source - self.legacy_policy = legacy_policy - self.name = name - self.source_cluster_guid = source_cluster_guid - self.source_host = source_host - self.target_path = target_path - - @property - def failover_failback_state(self): - """Gets the failover_failback_state of this ServiceTargetPoliciesPolicy. # noqa: E501 - - The condition of this policy with respect to sync failover/failback. # noqa: E501 - - :return: The failover_failback_state of this ServiceTargetPoliciesPolicy. # noqa: E501 - :rtype: str - """ - return self._failover_failback_state - - @failover_failback_state.setter - def failover_failback_state(self, failover_failback_state): - """Sets the failover_failback_state of this ServiceTargetPoliciesPolicy. - - The condition of this policy with respect to sync failover/failback. # noqa: E501 - - :param failover_failback_state: The failover_failback_state of this ServiceTargetPoliciesPolicy. # noqa: E501 - :type: str - """ - if failover_failback_state is None: - raise ValueError("Invalid value for `failover_failback_state`, must not be `None`") # noqa: E501 - allowed_values = ["writes_disabled", "enabling_writes", "writes_enabled", "disabling_writes", "creating_resync_policy", "resync_policy_created"] # noqa: E501 - if failover_failback_state not in allowed_values: - raise ValueError( - "Invalid value for `failover_failback_state` ({0}), must be one of {1}" # noqa: E501 - .format(failover_failback_state, allowed_values) - ) - - self._failover_failback_state = failover_failback_state - - @property - def id(self): - """Gets the id of this ServiceTargetPoliciesPolicy. # noqa: E501 - - The system ID given to this sync policy. # noqa: E501 - - :return: The id of this ServiceTargetPoliciesPolicy. # noqa: E501 - :rtype: str - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this ServiceTargetPoliciesPolicy. - - The system ID given to this sync policy. # noqa: E501 - - :param id: The id of this ServiceTargetPoliciesPolicy. # noqa: E501 - :type: str - """ - if id is None: - raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 - if id is not None and len(id) > 255: - raise ValueError("Invalid value for `id`, length must be less than or equal to `255`") # noqa: E501 - if id is not None and len(id) < 0: - raise ValueError("Invalid value for `id`, length must be greater than or equal to `0`") # noqa: E501 - - self._id = id - - @property - def last_job_state(self): - """Gets the last_job_state of this ServiceTargetPoliciesPolicy. # noqa: E501 - - The state of the last job run for this policy. # noqa: E501 - - :return: The last_job_state of this ServiceTargetPoliciesPolicy. # noqa: E501 - :rtype: str - """ - return self._last_job_state - - @last_job_state.setter - def last_job_state(self, last_job_state): - """Sets the last_job_state of this ServiceTargetPoliciesPolicy. - - The state of the last job run for this policy. # noqa: E501 - - :param last_job_state: The last_job_state of this ServiceTargetPoliciesPolicy. # noqa: E501 - :type: str - """ - if last_job_state is None: - raise ValueError("Invalid value for `last_job_state`, must not be `None`") # noqa: E501 - allowed_values = ["scheduled", "running", "paused", "finished", "failed", "canceled", "needs_attention", "skipped", "pending", "unknown"] # noqa: E501 - if last_job_state not in allowed_values: - raise ValueError( - "Invalid value for `last_job_state` ({0}), must be one of {1}" # noqa: E501 - .format(last_job_state, allowed_values) - ) - - self._last_job_state = last_job_state - - @property - def last_source_coordinator_ip(self): - """Gets the last_source_coordinator_ip of this ServiceTargetPoliciesPolicy. # noqa: E501 - - The IP address from which a SyncIQ coordinator daemon most recently connected to this cluster to update it about the progress of a job for this policy. # noqa: E501 - - :return: The last_source_coordinator_ip of this ServiceTargetPoliciesPolicy. # noqa: E501 - :rtype: str - """ - return self._last_source_coordinator_ip - - @last_source_coordinator_ip.setter - def last_source_coordinator_ip(self, last_source_coordinator_ip): - """Sets the last_source_coordinator_ip of this ServiceTargetPoliciesPolicy. - - The IP address from which a SyncIQ coordinator daemon most recently connected to this cluster to update it about the progress of a job for this policy. # noqa: E501 - - :param last_source_coordinator_ip: The last_source_coordinator_ip of this ServiceTargetPoliciesPolicy. # noqa: E501 - :type: str - """ - if last_source_coordinator_ip is None: - raise ValueError("Invalid value for `last_source_coordinator_ip`, must not be `None`") # noqa: E501 - if last_source_coordinator_ip is not None and len(last_source_coordinator_ip) > 255: - raise ValueError("Invalid value for `last_source_coordinator_ip`, length must be less than or equal to `255`") # noqa: E501 - if last_source_coordinator_ip is not None and len(last_source_coordinator_ip) < 0: - raise ValueError("Invalid value for `last_source_coordinator_ip`, length must be greater than or equal to `0`") # noqa: E501 - - self._last_source_coordinator_ip = last_source_coordinator_ip - - @property - def last_update_from_source(self): - """Gets the last_update_from_source of this ServiceTargetPoliciesPolicy. # noqa: E501 - - The last time this cluster was updated with sync information from the source cluster for this policy, in unix epoch seconds. Null if no such update has occurred yet. # noqa: E501 - - :return: The last_update_from_source of this ServiceTargetPoliciesPolicy. # noqa: E501 - :rtype: int - """ - return self._last_update_from_source - - @last_update_from_source.setter - def last_update_from_source(self, last_update_from_source): - """Sets the last_update_from_source of this ServiceTargetPoliciesPolicy. - - The last time this cluster was updated with sync information from the source cluster for this policy, in unix epoch seconds. Null if no such update has occurred yet. # noqa: E501 - - :param last_update_from_source: The last_update_from_source of this ServiceTargetPoliciesPolicy. # noqa: E501 - :type: int - """ - - self._last_update_from_source = last_update_from_source - - @property - def legacy_policy(self): - """Gets the legacy_policy of this ServiceTargetPoliciesPolicy. # noqa: E501 - - Was this policy defined by a OneFS version earlier than 6.0? (Pre-6.0 policies did not have the target policy concept and canceling from the target side will not be available.) # noqa: E501 - - :return: The legacy_policy of this ServiceTargetPoliciesPolicy. # noqa: E501 - :rtype: bool - """ - return self._legacy_policy - - @legacy_policy.setter - def legacy_policy(self, legacy_policy): - """Sets the legacy_policy of this ServiceTargetPoliciesPolicy. - - Was this policy defined by a OneFS version earlier than 6.0? (Pre-6.0 policies did not have the target policy concept and canceling from the target side will not be available.) # noqa: E501 - - :param legacy_policy: The legacy_policy of this ServiceTargetPoliciesPolicy. # noqa: E501 - :type: bool - """ - if legacy_policy is None: - raise ValueError("Invalid value for `legacy_policy`, must not be `None`") # noqa: E501 - - self._legacy_policy = legacy_policy - - @property - def name(self): - """Gets the name of this ServiceTargetPoliciesPolicy. # noqa: E501 - - User-assigned name of this sync policy. # noqa: E501 - - :return: The name of this ServiceTargetPoliciesPolicy. # noqa: E501 - :rtype: str - """ - return self._name - - @name.setter - def name(self, name): - """Sets the name of this ServiceTargetPoliciesPolicy. - - User-assigned name of this sync policy. # noqa: E501 - - :param name: The name of this ServiceTargetPoliciesPolicy. # noqa: E501 - :type: str - """ - if name is None: - raise ValueError("Invalid value for `name`, must not be `None`") # noqa: E501 - if name is not None and len(name) > 255: - raise ValueError("Invalid value for `name`, length must be less than or equal to `255`") # noqa: E501 - if name is not None and len(name) < 0: - raise ValueError("Invalid value for `name`, length must be greater than or equal to `0`") # noqa: E501 - - self._name = name - - @property - def source_cluster_guid(self): - """Gets the source_cluster_guid of this ServiceTargetPoliciesPolicy. # noqa: E501 - - Unique identifier for the source cluster. # noqa: E501 - - :return: The source_cluster_guid of this ServiceTargetPoliciesPolicy. # noqa: E501 - :rtype: str - """ - return self._source_cluster_guid - - @source_cluster_guid.setter - def source_cluster_guid(self, source_cluster_guid): - """Sets the source_cluster_guid of this ServiceTargetPoliciesPolicy. - - Unique identifier for the source cluster. # noqa: E501 - - :param source_cluster_guid: The source_cluster_guid of this ServiceTargetPoliciesPolicy. # noqa: E501 - :type: str - """ - if source_cluster_guid is None: - raise ValueError("Invalid value for `source_cluster_guid`, must not be `None`") # noqa: E501 - if source_cluster_guid is not None and len(source_cluster_guid) > 255: - raise ValueError("Invalid value for `source_cluster_guid`, length must be less than or equal to `255`") # noqa: E501 - if source_cluster_guid is not None and len(source_cluster_guid) < 0: - raise ValueError("Invalid value for `source_cluster_guid`, length must be greater than or equal to `0`") # noqa: E501 - - self._source_cluster_guid = source_cluster_guid - - @property - def source_host(self): - """Gets the source_host of this ServiceTargetPoliciesPolicy. # noqa: E501 - - Hostname or IP address of sync source cluster. # noqa: E501 - - :return: The source_host of this ServiceTargetPoliciesPolicy. # noqa: E501 - :rtype: str - """ - return self._source_host - - @source_host.setter - def source_host(self, source_host): - """Sets the source_host of this ServiceTargetPoliciesPolicy. - - Hostname or IP address of sync source cluster. # noqa: E501 - - :param source_host: The source_host of this ServiceTargetPoliciesPolicy. # noqa: E501 - :type: str - """ - if source_host is None: - raise ValueError("Invalid value for `source_host`, must not be `None`") # noqa: E501 - if source_host is not None and len(source_host) > 255: - raise ValueError("Invalid value for `source_host`, length must be less than or equal to `255`") # noqa: E501 - if source_host is not None and len(source_host) < 0: - raise ValueError("Invalid value for `source_host`, length must be greater than or equal to `0`") # noqa: E501 - - self._source_host = source_host - - @property - def target_path(self): - """Gets the target_path of this ServiceTargetPoliciesPolicy. # noqa: E501 - - Absolute filesystem path on the target cluster for the sync destination. # noqa: E501 - - :return: The target_path of this ServiceTargetPoliciesPolicy. # noqa: E501 - :rtype: str - """ - return self._target_path - - @target_path.setter - def target_path(self, target_path): - """Sets the target_path of this ServiceTargetPoliciesPolicy. - - Absolute filesystem path on the target cluster for the sync destination. # noqa: E501 - - :param target_path: The target_path of this ServiceTargetPoliciesPolicy. # noqa: E501 - :type: str - """ - if target_path is None: - raise ValueError("Invalid value for `target_path`, must not be `None`") # noqa: E501 - if target_path is not None and len(target_path) > 4096: - raise ValueError("Invalid value for `target_path`, length must be less than or equal to `4096`") # noqa: E501 - if target_path is not None and len(target_path) < 0: - raise ValueError("Invalid value for `target_path`, length must be greater than or equal to `0`") # noqa: E501 - - self._target_path = target_path - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(ServiceTargetPoliciesPolicy, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, ServiceTargetPoliciesPolicy): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_defaults_krb5_settings.py b/isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_defaults_krb5_settings.py deleted file mode 100644 index 284961f17..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_defaults_krb5_settings.py +++ /dev/null @@ -1,405 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SettingsKrb5DefaultsKrb5Settings(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'allow_weak_crypto': 'bool', - 'always_send_preauth': 'bool', - 'default_realm': 'str', - 'default_tgs_enctypes': 'list[str]', - 'default_tkt_enctypes': 'list[str]', - 'dns_lookup_kdc': 'bool', - 'dns_lookup_realm': 'bool', - 'permitted_enctypes': 'list[str]', - 'preferred_enctypes': 'list[str]', - 'udp_preference_limit': 'int' - } - - attribute_map = { - 'allow_weak_crypto': 'allow_weak_crypto', - 'always_send_preauth': 'always_send_preauth', - 'default_realm': 'default_realm', - 'default_tgs_enctypes': 'default_tgs_enctypes', - 'default_tkt_enctypes': 'default_tkt_enctypes', - 'dns_lookup_kdc': 'dns_lookup_kdc', - 'dns_lookup_realm': 'dns_lookup_realm', - 'permitted_enctypes': 'permitted_enctypes', - 'preferred_enctypes': 'preferred_enctypes', - 'udp_preference_limit': 'udp_preference_limit' - } - - def __init__(self, allow_weak_crypto=None, always_send_preauth=None, default_realm=None, default_tgs_enctypes=None, default_tkt_enctypes=None, dns_lookup_kdc=None, dns_lookup_realm=None, permitted_enctypes=None, preferred_enctypes=None, udp_preference_limit=None): # noqa: E501 - """SettingsKrb5DefaultsKrb5Settings - a model defined in Swagger""" # noqa: E501 - - self._allow_weak_crypto = None - self._always_send_preauth = None - self._default_realm = None - self._default_tgs_enctypes = None - self._default_tkt_enctypes = None - self._dns_lookup_kdc = None - self._dns_lookup_realm = None - self._permitted_enctypes = None - self._preferred_enctypes = None - self._udp_preference_limit = None - self.discriminator = None - - if allow_weak_crypto is not None: - self.allow_weak_crypto = allow_weak_crypto - if always_send_preauth is not None: - self.always_send_preauth = always_send_preauth - if default_realm is not None: - self.default_realm = default_realm - if default_tgs_enctypes is not None: - self.default_tgs_enctypes = default_tgs_enctypes - if default_tkt_enctypes is not None: - self.default_tkt_enctypes = default_tkt_enctypes - if dns_lookup_kdc is not None: - self.dns_lookup_kdc = dns_lookup_kdc - if dns_lookup_realm is not None: - self.dns_lookup_realm = dns_lookup_realm - if permitted_enctypes is not None: - self.permitted_enctypes = permitted_enctypes - if preferred_enctypes is not None: - self.preferred_enctypes = preferred_enctypes - if udp_preference_limit is not None: - self.udp_preference_limit = udp_preference_limit - - @property - def allow_weak_crypto(self): - """Gets the allow_weak_crypto of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - - If true, allow the use of DES encryption # noqa: E501 - - :return: The allow_weak_crypto of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - :rtype: bool - """ - return self._allow_weak_crypto - - @allow_weak_crypto.setter - def allow_weak_crypto(self, allow_weak_crypto): - """Sets the allow_weak_crypto of this SettingsKrb5DefaultsKrb5Settings. - - If true, allow the use of DES encryption # noqa: E501 - - :param allow_weak_crypto: The allow_weak_crypto of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - :type: bool - """ - - self._allow_weak_crypto = allow_weak_crypto - - @property - def always_send_preauth(self): - """Gets the always_send_preauth of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - - If true, always attempts to preauthenticate to the domain controller. # noqa: E501 - - :return: The always_send_preauth of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - :rtype: bool - """ - return self._always_send_preauth - - @always_send_preauth.setter - def always_send_preauth(self, always_send_preauth): - """Sets the always_send_preauth of this SettingsKrb5DefaultsKrb5Settings. - - If true, always attempts to preauthenticate to the domain controller. # noqa: E501 - - :param always_send_preauth: The always_send_preauth of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - :type: bool - """ - - self._always_send_preauth = always_send_preauth - - @property - def default_realm(self): - """Gets the default_realm of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - - Specifies the realm for unqualified names. # noqa: E501 - - :return: The default_realm of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - :rtype: str - """ - return self._default_realm - - @default_realm.setter - def default_realm(self, default_realm): - """Sets the default_realm of this SettingsKrb5DefaultsKrb5Settings. - - Specifies the realm for unqualified names. # noqa: E501 - - :param default_realm: The default_realm of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - :type: str - """ - if default_realm is not None and len(default_realm) > 255: - raise ValueError("Invalid value for `default_realm`, length must be less than or equal to `255`") # noqa: E501 - if default_realm is not None and len(default_realm) < 0: - raise ValueError("Invalid value for `default_realm`, length must be greater than or equal to `0`") # noqa: E501 - - self._default_realm = default_realm - - @property - def default_tgs_enctypes(self): - """Gets the default_tgs_enctypes of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - - Enctypes for ticket granting server # noqa: E501 - - :return: The default_tgs_enctypes of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - :rtype: list[str] - """ - return self._default_tgs_enctypes - - @default_tgs_enctypes.setter - def default_tgs_enctypes(self, default_tgs_enctypes): - """Sets the default_tgs_enctypes of this SettingsKrb5DefaultsKrb5Settings. - - Enctypes for ticket granting server # noqa: E501 - - :param default_tgs_enctypes: The default_tgs_enctypes of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - :type: list[str] - """ - allowed_values = ["AES256-CTS", "AES128-CTS", "RC4-HMAC", "DES3-CBC-SHA1", "CAMELLIA128-CTS-CMAC", "CAMELLIA256-CTS-CMAC"] # noqa: E501 - if not set(default_tgs_enctypes).issubset(set(allowed_values)): - raise ValueError( - "Invalid values for `default_tgs_enctypes` [{0}], must be a subset of [{1}]" # noqa: E501 - .format(", ".join(map(str, set(default_tgs_enctypes) - set(allowed_values))), # noqa: E501 - ", ".join(map(str, allowed_values))) - ) - - self._default_tgs_enctypes = default_tgs_enctypes - - @property - def default_tkt_enctypes(self): - """Gets the default_tkt_enctypes of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - - Enctypes for tickets # noqa: E501 - - :return: The default_tkt_enctypes of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - :rtype: list[str] - """ - return self._default_tkt_enctypes - - @default_tkt_enctypes.setter - def default_tkt_enctypes(self, default_tkt_enctypes): - """Sets the default_tkt_enctypes of this SettingsKrb5DefaultsKrb5Settings. - - Enctypes for tickets # noqa: E501 - - :param default_tkt_enctypes: The default_tkt_enctypes of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - :type: list[str] - """ - allowed_values = ["AES256-CTS", "AES128-CTS", "RC4-HMAC", "DES3-CBC-SHA1", "CAMELLIA128-CTS-CMAC", "CAMELLIA256-CTS-CMAC"] # noqa: E501 - if not set(default_tkt_enctypes).issubset(set(allowed_values)): - raise ValueError( - "Invalid values for `default_tkt_enctypes` [{0}], must be a subset of [{1}]" # noqa: E501 - .format(", ".join(map(str, set(default_tkt_enctypes) - set(allowed_values))), # noqa: E501 - ", ".join(map(str, allowed_values))) - ) - - self._default_tkt_enctypes = default_tkt_enctypes - - @property - def dns_lookup_kdc(self): - """Gets the dns_lookup_kdc of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - - If true, find KDCs through the DNS. # noqa: E501 - - :return: The dns_lookup_kdc of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - :rtype: bool - """ - return self._dns_lookup_kdc - - @dns_lookup_kdc.setter - def dns_lookup_kdc(self, dns_lookup_kdc): - """Sets the dns_lookup_kdc of this SettingsKrb5DefaultsKrb5Settings. - - If true, find KDCs through the DNS. # noqa: E501 - - :param dns_lookup_kdc: The dns_lookup_kdc of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - :type: bool - """ - - self._dns_lookup_kdc = dns_lookup_kdc - - @property - def dns_lookup_realm(self): - """Gets the dns_lookup_realm of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - - If true, find realm names through the DNS. # noqa: E501 - - :return: The dns_lookup_realm of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - :rtype: bool - """ - return self._dns_lookup_realm - - @dns_lookup_realm.setter - def dns_lookup_realm(self, dns_lookup_realm): - """Sets the dns_lookup_realm of this SettingsKrb5DefaultsKrb5Settings. - - If true, find realm names through the DNS. # noqa: E501 - - :param dns_lookup_realm: The dns_lookup_realm of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - :type: bool - """ - - self._dns_lookup_realm = dns_lookup_realm - - @property - def permitted_enctypes(self): - """Gets the permitted_enctypes of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - - Enctypes permitted in tickets # noqa: E501 - - :return: The permitted_enctypes of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - :rtype: list[str] - """ - return self._permitted_enctypes - - @permitted_enctypes.setter - def permitted_enctypes(self, permitted_enctypes): - """Sets the permitted_enctypes of this SettingsKrb5DefaultsKrb5Settings. - - Enctypes permitted in tickets # noqa: E501 - - :param permitted_enctypes: The permitted_enctypes of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - :type: list[str] - """ - allowed_values = ["AES256-CTS", "AES128-CTS", "RC4-HMAC", "DES3-CBC-SHA1", "CAMELLIA128-CTS-CMAC", "CAMELLIA256-CTS-CMAC"] # noqa: E501 - if not set(permitted_enctypes).issubset(set(allowed_values)): - raise ValueError( - "Invalid values for `permitted_enctypes` [{0}], must be a subset of [{1}]" # noqa: E501 - .format(", ".join(map(str, set(permitted_enctypes) - set(allowed_values))), # noqa: E501 - ", ".join(map(str, allowed_values))) - ) - - self._permitted_enctypes = permitted_enctypes - - @property - def preferred_enctypes(self): - """Gets the preferred_enctypes of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - - Enctypes preferred in tickets # noqa: E501 - - :return: The preferred_enctypes of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - :rtype: list[str] - """ - return self._preferred_enctypes - - @preferred_enctypes.setter - def preferred_enctypes(self, preferred_enctypes): - """Sets the preferred_enctypes of this SettingsKrb5DefaultsKrb5Settings. - - Enctypes preferred in tickets # noqa: E501 - - :param preferred_enctypes: The preferred_enctypes of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - :type: list[str] - """ - allowed_values = ["AES256-CTS", "AES128-CTS", "RC4-HMAC", "DES3-CBC-SHA1", "CAMELLIA128-CTS-CMAC", "CAMELLIA256-CTS-CMAC"] # noqa: E501 - if not set(preferred_enctypes).issubset(set(allowed_values)): - raise ValueError( - "Invalid values for `preferred_enctypes` [{0}], must be a subset of [{1}]" # noqa: E501 - .format(", ".join(map(str, set(preferred_enctypes) - set(allowed_values))), # noqa: E501 - ", ".join(map(str, allowed_values))) - ) - - self._preferred_enctypes = preferred_enctypes - - @property - def udp_preference_limit(self): - """Gets the udp_preference_limit of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - - Defines threshold in bytes below which UDP is preferred over TCP. Set to 1 to use TCP first. # noqa: E501 - - :return: The udp_preference_limit of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - :rtype: int - """ - return self._udp_preference_limit - - @udp_preference_limit.setter - def udp_preference_limit(self, udp_preference_limit): - """Sets the udp_preference_limit of this SettingsKrb5DefaultsKrb5Settings. - - Defines threshold in bytes below which UDP is preferred over TCP. Set to 1 to use TCP first. # noqa: E501 - - :param udp_preference_limit: The udp_preference_limit of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 - :type: int - """ - if udp_preference_limit is not None and udp_preference_limit > 65535: # noqa: E501 - raise ValueError("Invalid value for `udp_preference_limit`, must be a value less than or equal to `65535`") # noqa: E501 - if udp_preference_limit is not None and udp_preference_limit < 0: # noqa: E501 - raise ValueError("Invalid value for `udp_preference_limit`, must be a value greater than or equal to `0`") # noqa: E501 - - self._udp_preference_limit = udp_preference_limit - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SettingsKrb5DefaultsKrb5Settings, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SettingsKrb5DefaultsKrb5Settings): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_reports_extended_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/settings_reports_extended_extended.py deleted file mode 100644 index 1c3462bf8..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_reports_extended_extended.py +++ /dev/null @@ -1,117 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SettingsReportsExtendedExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'settings': 'SettingsReportsSettingsExtended' - } - - attribute_map = { - 'settings': 'settings' - } - - def __init__(self, settings=None): # noqa: E501 - """SettingsReportsExtendedExtended - a model defined in Swagger""" # noqa: E501 - - self._settings = None - self.discriminator = None - - if settings is not None: - self.settings = settings - - @property - def settings(self): - """Gets the settings of this SettingsReportsExtendedExtended. # noqa: E501 - - Datamover report related settings # noqa: E501 - - :return: The settings of this SettingsReportsExtendedExtended. # noqa: E501 - :rtype: SettingsReportsSettingsExtended - """ - return self._settings - - @settings.setter - def settings(self, settings): - """Sets the settings of this SettingsReportsExtendedExtended. - - Datamover report related settings # noqa: E501 - - :param settings: The settings of this SettingsReportsExtendedExtended. # noqa: E501 - :type: SettingsReportsSettingsExtended - """ - - self._settings = settings - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SettingsReportsExtendedExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SettingsReportsExtendedExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_reports_settings_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/settings_reports_settings_extended.py deleted file mode 100644 index 255bc0b65..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_reports_settings_extended.py +++ /dev/null @@ -1,153 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SettingsReportsSettingsExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'report_max_age': 'int', - 'report_max_count': 'int' - } - - attribute_map = { - 'report_max_age': 'report_max_age', - 'report_max_count': 'report_max_count' - } - - def __init__(self, report_max_age=None, report_max_count=None): # noqa: E501 - """SettingsReportsSettingsExtended - a model defined in Swagger""" # noqa: E501 - - self._report_max_age = None - self._report_max_count = None - self.discriminator = None - - if report_max_age is not None: - self.report_max_age = report_max_age - if report_max_count is not None: - self.report_max_count = report_max_count - - @property - def report_max_age(self): - """Gets the report_max_age of this SettingsReportsSettingsExtended. # noqa: E501 - - Maximum age (in seconds) of a retained datamover report. Default is 0 (disabled) # noqa: E501 - - :return: The report_max_age of this SettingsReportsSettingsExtended. # noqa: E501 - :rtype: int - """ - return self._report_max_age - - @report_max_age.setter - def report_max_age(self, report_max_age): - """Sets the report_max_age of this SettingsReportsSettingsExtended. - - Maximum age (in seconds) of a retained datamover report. Default is 0 (disabled) # noqa: E501 - - :param report_max_age: The report_max_age of this SettingsReportsSettingsExtended. # noqa: E501 - :type: int - """ - if report_max_age is not None and report_max_age > 788400000: # noqa: E501 - raise ValueError("Invalid value for `report_max_age`, must be a value less than or equal to `788400000`") # noqa: E501 - if report_max_age is not None and report_max_age < 0: # noqa: E501 - raise ValueError("Invalid value for `report_max_age`, must be a value greater than or equal to `0`") # noqa: E501 - - self._report_max_age = report_max_age - - @property - def report_max_count(self): - """Gets the report_max_count of this SettingsReportsSettingsExtended. # noqa: E501 - - Maximum number of retained datamover reports. Default is 1000 # noqa: E501 - - :return: The report_max_count of this SettingsReportsSettingsExtended. # noqa: E501 - :rtype: int - """ - return self._report_max_count - - @report_max_count.setter - def report_max_count(self, report_max_count): - """Sets the report_max_count of this SettingsReportsSettingsExtended. - - Maximum number of retained datamover reports. Default is 1000 # noqa: E501 - - :param report_max_count: The report_max_count of this SettingsReportsSettingsExtended. # noqa: E501 - :type: int - """ - if report_max_count is not None and report_max_count > 500000: # noqa: E501 - raise ValueError("Invalid value for `report_max_count`, must be a value less than or equal to `500000`") # noqa: E501 - if report_max_count is not None and report_max_count < 100: # noqa: E501 - raise ValueError("Invalid value for `report_max_count`, must be a value greater than or equal to `100`") # noqa: E501 - - self._report_max_count = report_max_count - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SettingsReportsSettingsExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SettingsReportsSettingsExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_sessions_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/settings_sessions_extended.py deleted file mode 100644 index 136e5c50a..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_sessions_extended.py +++ /dev/null @@ -1,149 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SettingsSessionsExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'authentication_mode': 'str', - 'key_rotation': 'int' - } - - attribute_map = { - 'authentication_mode': 'authentication_mode', - 'key_rotation': 'key_rotation' - } - - def __init__(self, authentication_mode=None, key_rotation=None): # noqa: E501 - """SettingsSessionsExtended - a model defined in Swagger""" # noqa: E501 - - self._authentication_mode = None - self._key_rotation = None - self.discriminator = None - - if authentication_mode is not None: - self.authentication_mode = authentication_mode - if key_rotation is not None: - self.key_rotation = key_rotation - - @property - def authentication_mode(self): - """Gets the authentication_mode of this SettingsSessionsExtended. # noqa: E501 - - Platform API authentication mode. Supported modes are 'default' and 'require_sso'. Mode 'default' supports all authenticated sessions. Mode 'require_sso' requires authenticated sessions to originate from a configured SSO provider. # noqa: E501 - - :return: The authentication_mode of this SettingsSessionsExtended. # noqa: E501 - :rtype: str - """ - return self._authentication_mode - - @authentication_mode.setter - def authentication_mode(self, authentication_mode): - """Sets the authentication_mode of this SettingsSessionsExtended. - - Platform API authentication mode. Supported modes are 'default' and 'require_sso'. Mode 'default' supports all authenticated sessions. Mode 'require_sso' requires authenticated sessions to originate from a configured SSO provider. # noqa: E501 - - :param authentication_mode: The authentication_mode of this SettingsSessionsExtended. # noqa: E501 - :type: str - """ - - self._authentication_mode = authentication_mode - - @property - def key_rotation(self): - """Gets the key_rotation of this SettingsSessionsExtended. # noqa: E501 - - The amount of time in seconds before rotating the session signing key with a new key. # noqa: E501 - - :return: The key_rotation of this SettingsSessionsExtended. # noqa: E501 - :rtype: int - """ - return self._key_rotation - - @key_rotation.setter - def key_rotation(self, key_rotation): - """Sets the key_rotation of this SettingsSessionsExtended. - - The amount of time in seconds before rotating the session signing key with a new key. # noqa: E501 - - :param key_rotation: The key_rotation of this SettingsSessionsExtended. # noqa: E501 - :type: int - """ - if key_rotation is not None and key_rotation > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `key_rotation`, must be a value less than or equal to `4294967295`") # noqa: E501 - if key_rotation is not None and key_rotation < 300: # noqa: E501 - raise ValueError("Invalid value for `key_rotation`, must be a value greater than or equal to `300`") # noqa: E501 - - self._key_rotation = key_rotation - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SettingsSessionsExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SettingsSessionsExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_sessions_settings.py b/isilon_sdk/isilon_sdk/v9_11_0/models/settings_sessions_settings.py deleted file mode 100644 index 6ad6d80eb..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_sessions_settings.py +++ /dev/null @@ -1,155 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SettingsSessionsSettings(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'authentication_mode': 'str', - 'key_rotation': 'int' - } - - attribute_map = { - 'authentication_mode': 'authentication_mode', - 'key_rotation': 'key_rotation' - } - - def __init__(self, authentication_mode=None, key_rotation=None): # noqa: E501 - """SettingsSessionsSettings - a model defined in Swagger""" # noqa: E501 - - self._authentication_mode = None - self._key_rotation = None - self.discriminator = None - - if authentication_mode is not None: - self.authentication_mode = authentication_mode - if key_rotation is not None: - self.key_rotation = key_rotation - - @property - def authentication_mode(self): - """Gets the authentication_mode of this SettingsSessionsSettings. # noqa: E501 - - Platform API authentication mode. Supported modes are 'default' and 'require_sso'. Mode 'default' supports all authenticated sessions. Mode 'require_sso' requires authenticated sessions to originate from a configured SSO provider. # noqa: E501 - - :return: The authentication_mode of this SettingsSessionsSettings. # noqa: E501 - :rtype: str - """ - return self._authentication_mode - - @authentication_mode.setter - def authentication_mode(self, authentication_mode): - """Sets the authentication_mode of this SettingsSessionsSettings. - - Platform API authentication mode. Supported modes are 'default' and 'require_sso'. Mode 'default' supports all authenticated sessions. Mode 'require_sso' requires authenticated sessions to originate from a configured SSO provider. # noqa: E501 - - :param authentication_mode: The authentication_mode of this SettingsSessionsSettings. # noqa: E501 - :type: str - """ - allowed_values = ["default", "require_sso"] # noqa: E501 - if authentication_mode not in allowed_values: - raise ValueError( - "Invalid value for `authentication_mode` ({0}), must be one of {1}" # noqa: E501 - .format(authentication_mode, allowed_values) - ) - - self._authentication_mode = authentication_mode - - @property - def key_rotation(self): - """Gets the key_rotation of this SettingsSessionsSettings. # noqa: E501 - - The amount of time in seconds before rotating the session signing key with a new key. # noqa: E501 - - :return: The key_rotation of this SettingsSessionsSettings. # noqa: E501 - :rtype: int - """ - return self._key_rotation - - @key_rotation.setter - def key_rotation(self, key_rotation): - """Sets the key_rotation of this SettingsSessionsSettings. - - The amount of time in seconds before rotating the session signing key with a new key. # noqa: E501 - - :param key_rotation: The key_rotation of this SettingsSessionsSettings. # noqa: E501 - :type: int - """ - if key_rotation is not None and key_rotation > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `key_rotation`, must be a value less than or equal to `4294967295`") # noqa: E501 - if key_rotation is not None and key_rotation < 300: # noqa: E501 - raise ValueError("Invalid value for `key_rotation`, must be a value greater than or equal to `300`") # noqa: E501 - - self._key_rotation = key_rotation - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SettingsSessionsSettings, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SettingsSessionsSettings): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_tier.py b/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_tier.py deleted file mode 100644 index 14a79ab26..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_tier.py +++ /dev/null @@ -1,215 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class StoragepoolTier(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'children': 'list[str]', - 'name': 'str', - 'transfer_limit_pct': 'int', - 'transfer_limit_state': 'str' - } - - attribute_map = { - 'children': 'children', - 'name': 'name', - 'transfer_limit_pct': 'transfer_limit_pct', - 'transfer_limit_state': 'transfer_limit_state' - } - - def __init__(self, children=None, name=None, transfer_limit_pct=None, transfer_limit_state=None): # noqa: E501 - """StoragepoolTier - a model defined in Swagger""" # noqa: E501 - - self._children = None - self._name = None - self._transfer_limit_pct = None - self._transfer_limit_state = None - self.discriminator = None - - if children is not None: - self.children = children - if name is not None: - self.name = name - if transfer_limit_pct is not None: - self.transfer_limit_pct = transfer_limit_pct - if transfer_limit_state is not None: - self.transfer_limit_state = transfer_limit_state - - @property - def children(self): - """Gets the children of this StoragepoolTier. # noqa: E501 - - The names or IDs of the tier's children. # noqa: E501 - - :return: The children of this StoragepoolTier. # noqa: E501 - :rtype: list[str] - """ - return self._children - - @children.setter - def children(self, children): - """Sets the children of this StoragepoolTier. - - The names or IDs of the tier's children. # noqa: E501 - - :param children: The children of this StoragepoolTier. # noqa: E501 - :type: list[str] - """ - - self._children = children - - @property - def name(self): - """Gets the name of this StoragepoolTier. # noqa: E501 - - The tier name. # noqa: E501 - - :return: The name of this StoragepoolTier. # noqa: E501 - :rtype: str - """ - return self._name - - @name.setter - def name(self, name): - """Sets the name of this StoragepoolTier. - - The tier name. # noqa: E501 - - :param name: The name of this StoragepoolTier. # noqa: E501 - :type: str - """ - if name is not None and len(name) > 255: - raise ValueError("Invalid value for `name`, length must be less than or equal to `255`") # noqa: E501 - if name is not None and len(name) < 1: - raise ValueError("Invalid value for `name`, length must be greater than or equal to `1`") # noqa: E501 - - self._name = name - - @property - def transfer_limit_pct(self): - """Gets the transfer_limit_pct of this StoragepoolTier. # noqa: E501 - - Stop moving files to this tier when this limit is met # noqa: E501 - - :return: The transfer_limit_pct of this StoragepoolTier. # noqa: E501 - :rtype: int - """ - return self._transfer_limit_pct - - @transfer_limit_pct.setter - def transfer_limit_pct(self, transfer_limit_pct): - """Sets the transfer_limit_pct of this StoragepoolTier. - - Stop moving files to this tier when this limit is met # noqa: E501 - - :param transfer_limit_pct: The transfer_limit_pct of this StoragepoolTier. # noqa: E501 - :type: int - """ - if transfer_limit_pct is not None and transfer_limit_pct > 100: # noqa: E501 - raise ValueError("Invalid value for `transfer_limit_pct`, must be a value less than or equal to `100`") # noqa: E501 - if transfer_limit_pct is not None and transfer_limit_pct < 0: # noqa: E501 - raise ValueError("Invalid value for `transfer_limit_pct`, must be a value greater than or equal to `0`") # noqa: E501 - - self._transfer_limit_pct = transfer_limit_pct - - @property - def transfer_limit_state(self): - """Gets the transfer_limit_state of this StoragepoolTier. # noqa: E501 - - How the transfer limit value is being applied # noqa: E501 - - :return: The transfer_limit_state of this StoragepoolTier. # noqa: E501 - :rtype: str - """ - return self._transfer_limit_state - - @transfer_limit_state.setter - def transfer_limit_state(self, transfer_limit_state): - """Sets the transfer_limit_state of this StoragepoolTier. - - How the transfer limit value is being applied # noqa: E501 - - :param transfer_limit_state: The transfer_limit_state of this StoragepoolTier. # noqa: E501 - :type: str - """ - allowed_values = ["disabled", "default"] # noqa: E501 - if transfer_limit_state not in allowed_values: - raise ValueError( - "Invalid value for `transfer_limit_state` ({0}), must be one of {1}" # noqa: E501 - .format(transfer_limit_state, allowed_values) - ) - - self._transfer_limit_state = transfer_limit_state - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(StoragepoolTier, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, StoragepoolTier): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_tier_create_params.py b/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_tier_create_params.py deleted file mode 100644 index 68043b8f0..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_tier_create_params.py +++ /dev/null @@ -1,216 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class StoragepoolTierCreateParams(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'children': 'list[str]', - 'name': 'str', - 'transfer_limit_pct': 'int', - 'transfer_limit_state': 'str' - } - - attribute_map = { - 'children': 'children', - 'name': 'name', - 'transfer_limit_pct': 'transfer_limit_pct', - 'transfer_limit_state': 'transfer_limit_state' - } - - def __init__(self, children=None, name=None, transfer_limit_pct=None, transfer_limit_state=None): # noqa: E501 - """StoragepoolTierCreateParams - a model defined in Swagger""" # noqa: E501 - - self._children = None - self._name = None - self._transfer_limit_pct = None - self._transfer_limit_state = None - self.discriminator = None - - if children is not None: - self.children = children - self.name = name - if transfer_limit_pct is not None: - self.transfer_limit_pct = transfer_limit_pct - if transfer_limit_state is not None: - self.transfer_limit_state = transfer_limit_state - - @property - def children(self): - """Gets the children of this StoragepoolTierCreateParams. # noqa: E501 - - The names or IDs of the tier's children. # noqa: E501 - - :return: The children of this StoragepoolTierCreateParams. # noqa: E501 - :rtype: list[str] - """ - return self._children - - @children.setter - def children(self, children): - """Sets the children of this StoragepoolTierCreateParams. - - The names or IDs of the tier's children. # noqa: E501 - - :param children: The children of this StoragepoolTierCreateParams. # noqa: E501 - :type: list[str] - """ - - self._children = children - - @property - def name(self): - """Gets the name of this StoragepoolTierCreateParams. # noqa: E501 - - The tier name. # noqa: E501 - - :return: The name of this StoragepoolTierCreateParams. # noqa: E501 - :rtype: str - """ - return self._name - - @name.setter - def name(self, name): - """Sets the name of this StoragepoolTierCreateParams. - - The tier name. # noqa: E501 - - :param name: The name of this StoragepoolTierCreateParams. # noqa: E501 - :type: str - """ - if name is None: - raise ValueError("Invalid value for `name`, must not be `None`") # noqa: E501 - if name is not None and len(name) > 255: - raise ValueError("Invalid value for `name`, length must be less than or equal to `255`") # noqa: E501 - if name is not None and len(name) < 1: - raise ValueError("Invalid value for `name`, length must be greater than or equal to `1`") # noqa: E501 - - self._name = name - - @property - def transfer_limit_pct(self): - """Gets the transfer_limit_pct of this StoragepoolTierCreateParams. # noqa: E501 - - Stop moving files to this tier when this limit is met # noqa: E501 - - :return: The transfer_limit_pct of this StoragepoolTierCreateParams. # noqa: E501 - :rtype: int - """ - return self._transfer_limit_pct - - @transfer_limit_pct.setter - def transfer_limit_pct(self, transfer_limit_pct): - """Sets the transfer_limit_pct of this StoragepoolTierCreateParams. - - Stop moving files to this tier when this limit is met # noqa: E501 - - :param transfer_limit_pct: The transfer_limit_pct of this StoragepoolTierCreateParams. # noqa: E501 - :type: int - """ - if transfer_limit_pct is not None and transfer_limit_pct > 100: # noqa: E501 - raise ValueError("Invalid value for `transfer_limit_pct`, must be a value less than or equal to `100`") # noqa: E501 - if transfer_limit_pct is not None and transfer_limit_pct < 0: # noqa: E501 - raise ValueError("Invalid value for `transfer_limit_pct`, must be a value greater than or equal to `0`") # noqa: E501 - - self._transfer_limit_pct = transfer_limit_pct - - @property - def transfer_limit_state(self): - """Gets the transfer_limit_state of this StoragepoolTierCreateParams. # noqa: E501 - - How the transfer limit value is being applied # noqa: E501 - - :return: The transfer_limit_state of this StoragepoolTierCreateParams. # noqa: E501 - :rtype: str - """ - return self._transfer_limit_state - - @transfer_limit_state.setter - def transfer_limit_state(self, transfer_limit_state): - """Sets the transfer_limit_state of this StoragepoolTierCreateParams. - - How the transfer limit value is being applied # noqa: E501 - - :param transfer_limit_state: The transfer_limit_state of this StoragepoolTierCreateParams. # noqa: E501 - :type: str - """ - allowed_values = ["disabled", "default"] # noqa: E501 - if transfer_limit_state not in allowed_values: - raise ValueError( - "Invalid value for `transfer_limit_state` ({0}), must be one of {1}" # noqa: E501 - .format(transfer_limit_state, allowed_values) - ) - - self._transfer_limit_state = transfer_limit_state - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(StoragepoolTierCreateParams, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, StoragepoolTierCreateParams): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/subnets_subnet_pools_pool_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/subnets_subnet_pools_pool_extended.py deleted file mode 100644 index 9557b8f19..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/subnets_subnet_pools_pool_extended.py +++ /dev/null @@ -1,907 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SubnetsSubnetPoolsPoolExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'access_zone': 'str', - 'addr_family': 'str', - 'aggregation_mode': 'str', - 'alloc_method': 'str', - 'description': 'str', - 'external_manager': 'str', - 'firewall_policy': 'str', - 'groupnet': 'str', - 'id': 'str', - 'ifaces': 'list[SubnetsSubnetPoolIface]', - 'ipv6_perform_dad': 'bool', - 'linklayer': 'str', - 'name': 'str', - 'nfs_rroce_only': 'bool', - 'ranges': 'list[SubnetsSubnetPoolRange]', - 'rebalance_policy': 'str', - 'rules': 'list[str]', - 'sc_connect_policy': 'str', - 'sc_dns_zone': 'str', - 'sc_dns_zone_aliases': 'list[str]', - 'sc_failover_policy': 'str', - 'sc_subnet': 'str', - 'sc_suspended_nodes': 'list[int]', - 'sc_ttl': 'int', - 'static_routes': 'list[SubnetsSubnetPoolStaticRoute]', - 'subnet': 'str' - } - - attribute_map = { - 'access_zone': 'access_zone', - 'addr_family': 'addr_family', - 'aggregation_mode': 'aggregation_mode', - 'alloc_method': 'alloc_method', - 'description': 'description', - 'external_manager': 'external_manager', - 'firewall_policy': 'firewall_policy', - 'groupnet': 'groupnet', - 'id': 'id', - 'ifaces': 'ifaces', - 'ipv6_perform_dad': 'ipv6_perform_dad', - 'linklayer': 'linklayer', - 'name': 'name', - 'nfs_rroce_only': 'nfs_rroce_only', - 'ranges': 'ranges', - 'rebalance_policy': 'rebalance_policy', - 'rules': 'rules', - 'sc_connect_policy': 'sc_connect_policy', - 'sc_dns_zone': 'sc_dns_zone', - 'sc_dns_zone_aliases': 'sc_dns_zone_aliases', - 'sc_failover_policy': 'sc_failover_policy', - 'sc_subnet': 'sc_subnet', - 'sc_suspended_nodes': 'sc_suspended_nodes', - 'sc_ttl': 'sc_ttl', - 'static_routes': 'static_routes', - 'subnet': 'subnet' - } - - def __init__(self, access_zone=None, addr_family=None, aggregation_mode=None, alloc_method=None, description=None, external_manager=None, firewall_policy=None, groupnet=None, id=None, ifaces=None, ipv6_perform_dad=None, linklayer=None, name=None, nfs_rroce_only=None, ranges=None, rebalance_policy=None, rules=None, sc_connect_policy=None, sc_dns_zone=None, sc_dns_zone_aliases=None, sc_failover_policy=None, sc_subnet=None, sc_suspended_nodes=None, sc_ttl=None, static_routes=None, subnet=None): # noqa: E501 - """SubnetsSubnetPoolsPoolExtended - a model defined in Swagger""" # noqa: E501 - - self._access_zone = None - self._addr_family = None - self._aggregation_mode = None - self._alloc_method = None - self._description = None - self._external_manager = None - self._firewall_policy = None - self._groupnet = None - self._id = None - self._ifaces = None - self._ipv6_perform_dad = None - self._linklayer = None - self._name = None - self._nfs_rroce_only = None - self._ranges = None - self._rebalance_policy = None - self._rules = None - self._sc_connect_policy = None - self._sc_dns_zone = None - self._sc_dns_zone_aliases = None - self._sc_failover_policy = None - self._sc_subnet = None - self._sc_suspended_nodes = None - self._sc_ttl = None - self._static_routes = None - self._subnet = None - self.discriminator = None - - if access_zone is not None: - self.access_zone = access_zone - if addr_family is not None: - self.addr_family = addr_family - if aggregation_mode is not None: - self.aggregation_mode = aggregation_mode - if alloc_method is not None: - self.alloc_method = alloc_method - if description is not None: - self.description = description - if external_manager is not None: - self.external_manager = external_manager - if firewall_policy is not None: - self.firewall_policy = firewall_policy - if groupnet is not None: - self.groupnet = groupnet - if id is not None: - self.id = id - if ifaces is not None: - self.ifaces = ifaces - if ipv6_perform_dad is not None: - self.ipv6_perform_dad = ipv6_perform_dad - if linklayer is not None: - self.linklayer = linklayer - if name is not None: - self.name = name - if nfs_rroce_only is not None: - self.nfs_rroce_only = nfs_rroce_only - if ranges is not None: - self.ranges = ranges - if rebalance_policy is not None: - self.rebalance_policy = rebalance_policy - if rules is not None: - self.rules = rules - if sc_connect_policy is not None: - self.sc_connect_policy = sc_connect_policy - if sc_dns_zone is not None: - self.sc_dns_zone = sc_dns_zone - if sc_dns_zone_aliases is not None: - self.sc_dns_zone_aliases = sc_dns_zone_aliases - if sc_failover_policy is not None: - self.sc_failover_policy = sc_failover_policy - if sc_subnet is not None: - self.sc_subnet = sc_subnet - if sc_suspended_nodes is not None: - self.sc_suspended_nodes = sc_suspended_nodes - if sc_ttl is not None: - self.sc_ttl = sc_ttl - if static_routes is not None: - self.static_routes = static_routes - if subnet is not None: - self.subnet = subnet - - @property - def access_zone(self): - """Gets the access_zone of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - - Name of a valid access zone to map IP address pool to the zone. # noqa: E501 - - :return: The access_zone of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :rtype: str - """ - return self._access_zone - - @access_zone.setter - def access_zone(self, access_zone): - """Sets the access_zone of this SubnetsSubnetPoolsPoolExtended. - - Name of a valid access zone to map IP address pool to the zone. # noqa: E501 - - :param access_zone: The access_zone of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :type: str - """ - if access_zone is not None and len(access_zone) > 255: - raise ValueError("Invalid value for `access_zone`, length must be less than or equal to `255`") # noqa: E501 - if access_zone is not None and len(access_zone) < 1: - raise ValueError("Invalid value for `access_zone`, length must be greater than or equal to `1`") # noqa: E501 - - self._access_zone = access_zone - - @property - def addr_family(self): - """Gets the addr_family of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - - IP address format. # noqa: E501 - - :return: The addr_family of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :rtype: str - """ - return self._addr_family - - @addr_family.setter - def addr_family(self, addr_family): - """Sets the addr_family of this SubnetsSubnetPoolsPoolExtended. - - IP address format. # noqa: E501 - - :param addr_family: The addr_family of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :type: str - """ - allowed_values = ["ipv4", "ipv6"] # noqa: E501 - if addr_family not in allowed_values: - raise ValueError( - "Invalid value for `addr_family` ({0}), must be one of {1}" # noqa: E501 - .format(addr_family, allowed_values) - ) - - self._addr_family = addr_family - - @property - def aggregation_mode(self): - """Gets the aggregation_mode of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - - OneFS supports the following NIC aggregation modes. 'fec' was renamed to 'loadbalance' in OneFS 9.7. # noqa: E501 - - :return: The aggregation_mode of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :rtype: str - """ - return self._aggregation_mode - - @aggregation_mode.setter - def aggregation_mode(self, aggregation_mode): - """Sets the aggregation_mode of this SubnetsSubnetPoolsPoolExtended. - - OneFS supports the following NIC aggregation modes. 'fec' was renamed to 'loadbalance' in OneFS 9.7. # noqa: E501 - - :param aggregation_mode: The aggregation_mode of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :type: str - """ - allowed_values = ["roundrobin", "failover", "lacp", "loadbalance", "none"] # noqa: E501 - if aggregation_mode not in allowed_values: - raise ValueError( - "Invalid value for `aggregation_mode` ({0}), must be one of {1}" # noqa: E501 - .format(aggregation_mode, allowed_values) - ) - - self._aggregation_mode = aggregation_mode - - @property - def alloc_method(self): - """Gets the alloc_method of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - - Specifies how IP address allocation is done among pool members. # noqa: E501 - - :return: The alloc_method of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :rtype: str - """ - return self._alloc_method - - @alloc_method.setter - def alloc_method(self, alloc_method): - """Sets the alloc_method of this SubnetsSubnetPoolsPoolExtended. - - Specifies how IP address allocation is done among pool members. # noqa: E501 - - :param alloc_method: The alloc_method of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :type: str - """ - allowed_values = ["dynamic", "static", "externally_managed"] # noqa: E501 - if alloc_method not in allowed_values: - raise ValueError( - "Invalid value for `alloc_method` ({0}), must be one of {1}" # noqa: E501 - .format(alloc_method, allowed_values) - ) - - self._alloc_method = alloc_method - - @property - def description(self): - """Gets the description of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - - A description of the pool. # noqa: E501 - - :return: The description of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :rtype: str - """ - return self._description - - @description.setter - def description(self, description): - """Sets the description of this SubnetsSubnetPoolsPoolExtended. - - A description of the pool. # noqa: E501 - - :param description: The description of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :type: str - """ - if description is not None and len(description) > 128: - raise ValueError("Invalid value for `description`, length must be less than or equal to `128`") # noqa: E501 - if description is not None and len(description) < 0: - raise ValueError("Invalid value for `description`, length must be greater than or equal to `0`") # noqa: E501 - - self._description = description - - @property - def external_manager(self): - """Gets the external_manager of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - - Name of the system allocating the IPs for this Network Pool. # noqa: E501 - - :return: The external_manager of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :rtype: str - """ - return self._external_manager - - @external_manager.setter - def external_manager(self, external_manager): - """Sets the external_manager of this SubnetsSubnetPoolsPoolExtended. - - Name of the system allocating the IPs for this Network Pool. # noqa: E501 - - :param external_manager: The external_manager of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :type: str - """ - if external_manager is not None and len(external_manager) > 128: - raise ValueError("Invalid value for `external_manager`, length must be less than or equal to `128`") # noqa: E501 - if external_manager is not None and len(external_manager) < 0: - raise ValueError("Invalid value for `external_manager`, length must be greater than or equal to `0`") # noqa: E501 - - self._external_manager = external_manager - - @property - def firewall_policy(self): - """Gets the firewall_policy of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - - Name of the Firewall Policy associated with this Network Pool. # noqa: E501 - - :return: The firewall_policy of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :rtype: str - """ - return self._firewall_policy - - @firewall_policy.setter - def firewall_policy(self, firewall_policy): - """Sets the firewall_policy of this SubnetsSubnetPoolsPoolExtended. - - Name of the Firewall Policy associated with this Network Pool. # noqa: E501 - - :param firewall_policy: The firewall_policy of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :type: str - """ - if firewall_policy is not None and len(firewall_policy) > 32: - raise ValueError("Invalid value for `firewall_policy`, length must be less than or equal to `32`") # noqa: E501 - if firewall_policy is not None and len(firewall_policy) < 1: - raise ValueError("Invalid value for `firewall_policy`, length must be greater than or equal to `1`") # noqa: E501 - - self._firewall_policy = firewall_policy - - @property - def groupnet(self): - """Gets the groupnet of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - - Name of the groupnet this pool belongs to. # noqa: E501 - - :return: The groupnet of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :rtype: str - """ - return self._groupnet - - @groupnet.setter - def groupnet(self, groupnet): - """Sets the groupnet of this SubnetsSubnetPoolsPoolExtended. - - Name of the groupnet this pool belongs to. # noqa: E501 - - :param groupnet: The groupnet of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :type: str - """ - if groupnet is not None and len(groupnet) > 32: - raise ValueError("Invalid value for `groupnet`, length must be less than or equal to `32`") # noqa: E501 - if groupnet is not None and len(groupnet) < 1: - raise ValueError("Invalid value for `groupnet`, length must be greater than or equal to `1`") # noqa: E501 - - self._groupnet = groupnet - - @property - def id(self): - """Gets the id of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - - Unique Pool ID. # noqa: E501 - - :return: The id of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :rtype: str - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this SubnetsSubnetPoolsPoolExtended. - - Unique Pool ID. # noqa: E501 - - :param id: The id of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :type: str - """ - if id is not None and len(id) > 99: - raise ValueError("Invalid value for `id`, length must be less than or equal to `99`") # noqa: E501 - if id is not None and len(id) < 1: - raise ValueError("Invalid value for `id`, length must be greater than or equal to `1`") # noqa: E501 - - self._id = id - - @property - def ifaces(self): - """Gets the ifaces of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - - List of interface members in this pool. # noqa: E501 - - :return: The ifaces of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :rtype: list[SubnetsSubnetPoolIface] - """ - return self._ifaces - - @ifaces.setter - def ifaces(self, ifaces): - """Sets the ifaces of this SubnetsSubnetPoolsPoolExtended. - - List of interface members in this pool. # noqa: E501 - - :param ifaces: The ifaces of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :type: list[SubnetsSubnetPoolIface] - """ - - self._ifaces = ifaces - - @property - def ipv6_perform_dad(self): - """Gets the ipv6_perform_dad of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - - Indicates if the Network Pool should perform IPv6 Duplicate Address Detection when configuring the IPs. Only applies to IPv6 Network Pools. # noqa: E501 - - :return: The ipv6_perform_dad of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :rtype: bool - """ - return self._ipv6_perform_dad - - @ipv6_perform_dad.setter - def ipv6_perform_dad(self, ipv6_perform_dad): - """Sets the ipv6_perform_dad of this SubnetsSubnetPoolsPoolExtended. - - Indicates if the Network Pool should perform IPv6 Duplicate Address Detection when configuring the IPs. Only applies to IPv6 Network Pools. # noqa: E501 - - :param ipv6_perform_dad: The ipv6_perform_dad of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :type: bool - """ - - self._ipv6_perform_dad = ipv6_perform_dad - - @property - def linklayer(self): - """Gets the linklayer of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - - Specifies the type of network linklayer this Network Pool uses. # noqa: E501 - - :return: The linklayer of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :rtype: str - """ - return self._linklayer - - @linklayer.setter - def linklayer(self, linklayer): - """Sets the linklayer of this SubnetsSubnetPoolsPoolExtended. - - Specifies the type of network linklayer this Network Pool uses. # noqa: E501 - - :param linklayer: The linklayer of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :type: str - """ - allowed_values = ["ethernet", "infiniband"] # noqa: E501 - if linklayer not in allowed_values: - raise ValueError( - "Invalid value for `linklayer` ({0}), must be one of {1}" # noqa: E501 - .format(linklayer, allowed_values) - ) - - self._linklayer = linklayer - - @property - def name(self): - """Gets the name of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - - The name of the pool. It must be unique throughout the given subnet.It's a required field with POST method. # noqa: E501 - - :return: The name of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :rtype: str - """ - return self._name - - @name.setter - def name(self, name): - """Sets the name of this SubnetsSubnetPoolsPoolExtended. - - The name of the pool. It must be unique throughout the given subnet.It's a required field with POST method. # noqa: E501 - - :param name: The name of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :type: str - """ - if name is not None and len(name) > 32: - raise ValueError("Invalid value for `name`, length must be less than or equal to `32`") # noqa: E501 - if name is not None and len(name) < 1: - raise ValueError("Invalid value for `name`, length must be greater than or equal to `1`") # noqa: E501 - if name is not None and not re.search(r'^[0-9a-zA-Z_-]*$', name): # noqa: E501 - raise ValueError(r"Invalid value for `name`, must be a follow pattern or equal to `/^[0-9a-zA-Z_-]*$/`") # noqa: E501 - - self._name = name - - @property - def nfs_rroce_only(self): - """Gets the nfs_rroce_only of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - - Indicates that pool contains only RDMA RRoCE capable interfaces. # noqa: E501 - - :return: The nfs_rroce_only of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :rtype: bool - """ - return self._nfs_rroce_only - - @nfs_rroce_only.setter - def nfs_rroce_only(self, nfs_rroce_only): - """Sets the nfs_rroce_only of this SubnetsSubnetPoolsPoolExtended. - - Indicates that pool contains only RDMA RRoCE capable interfaces. # noqa: E501 - - :param nfs_rroce_only: The nfs_rroce_only of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :type: bool - """ - - self._nfs_rroce_only = nfs_rroce_only - - @property - def ranges(self): - """Gets the ranges of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - - List of IP address ranges in this pool. # noqa: E501 - - :return: The ranges of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :rtype: list[SubnetsSubnetPoolRange] - """ - return self._ranges - - @ranges.setter - def ranges(self, ranges): - """Sets the ranges of this SubnetsSubnetPoolsPoolExtended. - - List of IP address ranges in this pool. # noqa: E501 - - :param ranges: The ranges of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :type: list[SubnetsSubnetPoolRange] - """ - - self._ranges = ranges - - @property - def rebalance_policy(self): - """Gets the rebalance_policy of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - - Rebalance policy. # noqa: E501 - - :return: The rebalance_policy of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :rtype: str - """ - return self._rebalance_policy - - @rebalance_policy.setter - def rebalance_policy(self, rebalance_policy): - """Sets the rebalance_policy of this SubnetsSubnetPoolsPoolExtended. - - Rebalance policy. # noqa: E501 - - :param rebalance_policy: The rebalance_policy of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :type: str - """ - allowed_values = ["auto", "manual"] # noqa: E501 - if rebalance_policy not in allowed_values: - raise ValueError( - "Invalid value for `rebalance_policy` ({0}), must be one of {1}" # noqa: E501 - .format(rebalance_policy, allowed_values) - ) - - self._rebalance_policy = rebalance_policy - - @property - def rules(self): - """Gets the rules of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - - Names of the rules in this pool. # noqa: E501 - - :return: The rules of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :rtype: list[str] - """ - return self._rules - - @rules.setter - def rules(self, rules): - """Sets the rules of this SubnetsSubnetPoolsPoolExtended. - - Names of the rules in this pool. # noqa: E501 - - :param rules: The rules of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :type: list[str] - """ - - self._rules = rules - - @property - def sc_connect_policy(self): - """Gets the sc_connect_policy of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - - SmartConnect client connection balancing policy. # noqa: E501 - - :return: The sc_connect_policy of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :rtype: str - """ - return self._sc_connect_policy - - @sc_connect_policy.setter - def sc_connect_policy(self, sc_connect_policy): - """Sets the sc_connect_policy of this SubnetsSubnetPoolsPoolExtended. - - SmartConnect client connection balancing policy. # noqa: E501 - - :param sc_connect_policy: The sc_connect_policy of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :type: str - """ - allowed_values = ["round_robin", "conn_count", "throughput", "cpu_usage"] # noqa: E501 - if sc_connect_policy not in allowed_values: - raise ValueError( - "Invalid value for `sc_connect_policy` ({0}), must be one of {1}" # noqa: E501 - .format(sc_connect_policy, allowed_values) - ) - - self._sc_connect_policy = sc_connect_policy - - @property - def sc_dns_zone(self): - """Gets the sc_dns_zone of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - - SmartConnect zone name for the pool. # noqa: E501 - - :return: The sc_dns_zone of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :rtype: str - """ - return self._sc_dns_zone - - @sc_dns_zone.setter - def sc_dns_zone(self, sc_dns_zone): - """Sets the sc_dns_zone of this SubnetsSubnetPoolsPoolExtended. - - SmartConnect zone name for the pool. # noqa: E501 - - :param sc_dns_zone: The sc_dns_zone of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :type: str - """ - if sc_dns_zone is not None and len(sc_dns_zone) > 2048: - raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 - if sc_dns_zone is not None and len(sc_dns_zone) < 0: - raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 - - self._sc_dns_zone = sc_dns_zone - - @property - def sc_dns_zone_aliases(self): - """Gets the sc_dns_zone_aliases of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - - List of SmartConnect zone aliases (DNS names) to the pool. # noqa: E501 - - :return: The sc_dns_zone_aliases of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :rtype: list[str] - """ - return self._sc_dns_zone_aliases - - @sc_dns_zone_aliases.setter - def sc_dns_zone_aliases(self, sc_dns_zone_aliases): - """Sets the sc_dns_zone_aliases of this SubnetsSubnetPoolsPoolExtended. - - List of SmartConnect zone aliases (DNS names) to the pool. # noqa: E501 - - :param sc_dns_zone_aliases: The sc_dns_zone_aliases of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :type: list[str] - """ - - self._sc_dns_zone_aliases = sc_dns_zone_aliases - - @property - def sc_failover_policy(self): - """Gets the sc_failover_policy of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - - SmartConnect IP failover policy. # noqa: E501 - - :return: The sc_failover_policy of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :rtype: str - """ - return self._sc_failover_policy - - @sc_failover_policy.setter - def sc_failover_policy(self, sc_failover_policy): - """Sets the sc_failover_policy of this SubnetsSubnetPoolsPoolExtended. - - SmartConnect IP failover policy. # noqa: E501 - - :param sc_failover_policy: The sc_failover_policy of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :type: str - """ - allowed_values = ["round_robin", "conn_count", "throughput", "cpu_usage"] # noqa: E501 - if sc_failover_policy not in allowed_values: - raise ValueError( - "Invalid value for `sc_failover_policy` ({0}), must be one of {1}" # noqa: E501 - .format(sc_failover_policy, allowed_values) - ) - - self._sc_failover_policy = sc_failover_policy - - @property - def sc_subnet(self): - """Gets the sc_subnet of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - - Name of SmartConnect service subnet for this pool. # noqa: E501 - - :return: The sc_subnet of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :rtype: str - """ - return self._sc_subnet - - @sc_subnet.setter - def sc_subnet(self, sc_subnet): - """Sets the sc_subnet of this SubnetsSubnetPoolsPoolExtended. - - Name of SmartConnect service subnet for this pool. # noqa: E501 - - :param sc_subnet: The sc_subnet of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :type: str - """ - if sc_subnet is not None and len(sc_subnet) > 32: - raise ValueError("Invalid value for `sc_subnet`, length must be less than or equal to `32`") # noqa: E501 - if sc_subnet is not None and len(sc_subnet) < 0: - raise ValueError("Invalid value for `sc_subnet`, length must be greater than or equal to `0`") # noqa: E501 - - self._sc_subnet = sc_subnet - - @property - def sc_suspended_nodes(self): - """Gets the sc_suspended_nodes of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - - List of LNNs showing currently suspended nodes in SmartConnect. # noqa: E501 - - :return: The sc_suspended_nodes of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :rtype: list[int] - """ - return self._sc_suspended_nodes - - @sc_suspended_nodes.setter - def sc_suspended_nodes(self, sc_suspended_nodes): - """Sets the sc_suspended_nodes of this SubnetsSubnetPoolsPoolExtended. - - List of LNNs showing currently suspended nodes in SmartConnect. # noqa: E501 - - :param sc_suspended_nodes: The sc_suspended_nodes of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :type: list[int] - """ - - self._sc_suspended_nodes = sc_suspended_nodes - - @property - def sc_ttl(self): - """Gets the sc_ttl of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - - Time to live value for SmartConnect DNS query responses in seconds. # noqa: E501 - - :return: The sc_ttl of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :rtype: int - """ - return self._sc_ttl - - @sc_ttl.setter - def sc_ttl(self, sc_ttl): - """Sets the sc_ttl of this SubnetsSubnetPoolsPoolExtended. - - Time to live value for SmartConnect DNS query responses in seconds. # noqa: E501 - - :param sc_ttl: The sc_ttl of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :type: int - """ - if sc_ttl is not None and sc_ttl > 2147483647: # noqa: E501 - raise ValueError("Invalid value for `sc_ttl`, must be a value less than or equal to `2147483647`") # noqa: E501 - if sc_ttl is not None and sc_ttl < 0: # noqa: E501 - raise ValueError("Invalid value for `sc_ttl`, must be a value greater than or equal to `0`") # noqa: E501 - - self._sc_ttl = sc_ttl - - @property - def static_routes(self): - """Gets the static_routes of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - - List of configured static routes in this network pool # noqa: E501 - - :return: The static_routes of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :rtype: list[SubnetsSubnetPoolStaticRoute] - """ - return self._static_routes - - @static_routes.setter - def static_routes(self, static_routes): - """Sets the static_routes of this SubnetsSubnetPoolsPoolExtended. - - List of configured static routes in this network pool # noqa: E501 - - :param static_routes: The static_routes of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :type: list[SubnetsSubnetPoolStaticRoute] - """ - - self._static_routes = static_routes - - @property - def subnet(self): - """Gets the subnet of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - - The name of the subnet. # noqa: E501 - - :return: The subnet of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :rtype: str - """ - return self._subnet - - @subnet.setter - def subnet(self, subnet): - """Sets the subnet of this SubnetsSubnetPoolsPoolExtended. - - The name of the subnet. # noqa: E501 - - :param subnet: The subnet of this SubnetsSubnetPoolsPoolExtended. # noqa: E501 - :type: str - """ - if subnet is not None and len(subnet) > 32: - raise ValueError("Invalid value for `subnet`, length must be less than or equal to `32`") # noqa: E501 - if subnet is not None and len(subnet) < 1: - raise ValueError("Invalid value for `subnet`, length must be greater than or equal to `1`") # noqa: E501 - - self._subnet = subnet - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SubnetsSubnetPoolsPoolExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SubnetsSubnetPoolsPoolExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_data_item.py b/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_data_item.py deleted file mode 100644 index 76dcb41bc..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_data_item.py +++ /dev/null @@ -1,213 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SupportassistDataItem(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'contract_version': 'str', - 'data': 'SupportassistDataItemData', - 'payload_type': 'str', - 'payload_version': 'str' - } - - attribute_map = { - 'contract_version': 'contractVersion', - 'data': 'data', - 'payload_type': 'payloadType', - 'payload_version': 'payloadVersion' - } - - def __init__(self, contract_version=None, data=None, payload_type=None, payload_version='1.0'): # noqa: E501 - """SupportassistDataItem - a model defined in Swagger""" # noqa: E501 - - self._contract_version = None - self._data = None - self._payload_type = None - self._payload_version = None - self.discriminator = None - - if contract_version is not None: - self.contract_version = contract_version - if data is not None: - self.data = data - self.payload_type = payload_type - self.payload_version = payload_version - - @property - def contract_version(self): - """Gets the contract_version of this SupportassistDataItem. # noqa: E501 - - Contract Version. # noqa: E501 - - :return: The contract_version of this SupportassistDataItem. # noqa: E501 - :rtype: str - """ - return self._contract_version - - @contract_version.setter - def contract_version(self, contract_version): - """Sets the contract_version of this SupportassistDataItem. - - Contract Version. # noqa: E501 - - :param contract_version: The contract_version of this SupportassistDataItem. # noqa: E501 - :type: str - """ - if contract_version is not None and len(contract_version) > 255: - raise ValueError("Invalid value for `contract_version`, length must be less than or equal to `255`") # noqa: E501 - if contract_version is not None and len(contract_version) < 1: - raise ValueError("Invalid value for `contract_version`, length must be greater than or equal to `1`") # noqa: E501 - - self._contract_version = contract_version - - @property - def data(self): - """Gets the data of this SupportassistDataItem. # noqa: E501 - - # noqa: E501 - - :return: The data of this SupportassistDataItem. # noqa: E501 - :rtype: SupportassistDataItemData - """ - return self._data - - @data.setter - def data(self, data): - """Sets the data of this SupportassistDataItem. - - # noqa: E501 - - :param data: The data of this SupportassistDataItem. # noqa: E501 - :type: SupportassistDataItemData - """ - - self._data = data - - @property - def payload_type(self): - """Gets the payload_type of this SupportassistDataItem. # noqa: E501 - - Type of payload request. # noqa: E501 - - :return: The payload_type of this SupportassistDataItem. # noqa: E501 - :rtype: str - """ - return self._payload_type - - @payload_type.setter - def payload_type(self, payload_type): - """Sets the payload_type of this SupportassistDataItem. - - Type of payload request. # noqa: E501 - - :param payload_type: The payload_type of this SupportassistDataItem. # noqa: E501 - :type: str - """ - if payload_type is None: - raise ValueError("Invalid value for `payload_type`, must not be `None`") # noqa: E501 - if payload_type is not None and len(payload_type) > 255: - raise ValueError("Invalid value for `payload_type`, length must be less than or equal to `255`") # noqa: E501 - - self._payload_type = payload_type - - @property - def payload_version(self): - """Gets the payload_version of this SupportassistDataItem. # noqa: E501 - - Payload version. # noqa: E501 - - :return: The payload_version of this SupportassistDataItem. # noqa: E501 - :rtype: str - """ - return self._payload_version - - @payload_version.setter - def payload_version(self, payload_version): - """Sets the payload_version of this SupportassistDataItem. - - Payload version. # noqa: E501 - - :param payload_version: The payload_version of this SupportassistDataItem. # noqa: E501 - :type: str - """ - if payload_version is None: - raise ValueError("Invalid value for `payload_version`, must not be `None`") # noqa: E501 - if payload_version is not None and len(payload_version) > 255: - raise ValueError("Invalid value for `payload_version`, length must be less than or equal to `255`") # noqa: E501 - if payload_version is not None and len(payload_version) < 1: - raise ValueError("Invalid value for `payload_version`, length must be greater than or equal to `1`") # noqa: E501 - - self._payload_version = payload_version - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SupportassistDataItem, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SupportassistDataItem): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_data_item_data.py b/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_data_item_data.py deleted file mode 100644 index 34610f4b7..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_data_item_data.py +++ /dev/null @@ -1,253 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SupportassistDataItemData(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'message': 'str', - 'operation': 'str', - 'sent_transaction_id': 'str', - 'status': 'str', - 'transaction_id': 'str' - } - - attribute_map = { - 'message': 'message', - 'operation': 'operation', - 'sent_transaction_id': 'sent-transaction-id', - 'status': 'status', - 'transaction_id': 'transaction-id' - } - - def __init__(self, message=None, operation=None, sent_transaction_id=None, status=None, transaction_id=None): # noqa: E501 - """SupportassistDataItemData - a model defined in Swagger""" # noqa: E501 - - self._message = None - self._operation = None - self._sent_transaction_id = None - self._status = None - self._transaction_id = None - self.discriminator = None - - self.message = message - self.operation = operation - if sent_transaction_id is not None: - self.sent_transaction_id = sent_transaction_id - self.status = status - self.transaction_id = transaction_id - - @property - def message(self): - """Gets the message of this SupportassistDataItemData. # noqa: E501 - - It has two parts, first part shows status of message second part describes upload status, True-Upload Successful, False-Upload Failed # noqa: E501 - - :return: The message of this SupportassistDataItemData. # noqa: E501 - :rtype: str - """ - return self._message - - @message.setter - def message(self, message): - """Sets the message of this SupportassistDataItemData. - - It has two parts, first part shows status of message second part describes upload status, True-Upload Successful, False-Upload Failed # noqa: E501 - - :param message: The message of this SupportassistDataItemData. # noqa: E501 - :type: str - """ - if message is None: - raise ValueError("Invalid value for `message`, must not be `None`") # noqa: E501 - if message is not None and len(message) > 255: - raise ValueError("Invalid value for `message`, length must be less than or equal to `255`") # noqa: E501 - if message is not None and len(message) < 1: - raise ValueError("Invalid value for `message`, length must be greater than or equal to `1`") # noqa: E501 - - self._message = message - - @property - def operation(self): - """Gets the operation of this SupportassistDataItemData. # noqa: E501 - - Operation type of transaction. # noqa: E501 - - :return: The operation of this SupportassistDataItemData. # noqa: E501 - :rtype: str - """ - return self._operation - - @operation.setter - def operation(self, operation): - """Sets the operation of this SupportassistDataItemData. - - Operation type of transaction. # noqa: E501 - - :param operation: The operation of this SupportassistDataItemData. # noqa: E501 - :type: str - """ - if operation is None: - raise ValueError("Invalid value for `operation`, must not be `None`") # noqa: E501 - if operation is not None and len(operation) > 255: - raise ValueError("Invalid value for `operation`, length must be less than or equal to `255`") # noqa: E501 - if operation is not None and len(operation) < 1: - raise ValueError("Invalid value for `operation`, length must be greater than or equal to `1`") # noqa: E501 - - self._operation = operation - - @property - def sent_transaction_id(self): - """Gets the sent_transaction_id of this SupportassistDataItemData. # noqa: E501 - - Payload's sent-transaction-id. It contain the same value as `transaction-id` if one was not supplied as part of the request. If one was supplied with the request, the supplied value will be present here. # noqa: E501 - - :return: The sent_transaction_id of this SupportassistDataItemData. # noqa: E501 - :rtype: str - """ - return self._sent_transaction_id - - @sent_transaction_id.setter - def sent_transaction_id(self, sent_transaction_id): - """Sets the sent_transaction_id of this SupportassistDataItemData. - - Payload's sent-transaction-id. It contain the same value as `transaction-id` if one was not supplied as part of the request. If one was supplied with the request, the supplied value will be present here. # noqa: E501 - - :param sent_transaction_id: The sent_transaction_id of this SupportassistDataItemData. # noqa: E501 - :type: str - """ - if sent_transaction_id is not None and len(sent_transaction_id) > 255: - raise ValueError("Invalid value for `sent_transaction_id`, length must be less than or equal to `255`") # noqa: E501 - if sent_transaction_id is not None and len(sent_transaction_id) < 1: - raise ValueError("Invalid value for `sent_transaction_id`, length must be greater than or equal to `1`") # noqa: E501 - - self._sent_transaction_id = sent_transaction_id - - @property - def status(self): - """Gets the status of this SupportassistDataItemData. # noqa: E501 - - Payload status. # noqa: E501 - - :return: The status of this SupportassistDataItemData. # noqa: E501 - :rtype: str - """ - return self._status - - @status.setter - def status(self, status): - """Sets the status of this SupportassistDataItemData. - - Payload status. # noqa: E501 - - :param status: The status of this SupportassistDataItemData. # noqa: E501 - :type: str - """ - if status is None: - raise ValueError("Invalid value for `status`, must not be `None`") # noqa: E501 - if status is not None and len(status) > 255: - raise ValueError("Invalid value for `status`, length must be less than or equal to `255`") # noqa: E501 - if status is not None and len(status) < 1: - raise ValueError("Invalid value for `status`, length must be greater than or equal to `1`") # noqa: E501 - - self._status = status - - @property - def transaction_id(self): - """Gets the transaction_id of this SupportassistDataItemData. # noqa: E501 - - Payload's transaction ID - matches `x-dell-ese-trans-id` of the response header returned from Product -> ESE /Payload request. # noqa: E501 - - :return: The transaction_id of this SupportassistDataItemData. # noqa: E501 - :rtype: str - """ - return self._transaction_id - - @transaction_id.setter - def transaction_id(self, transaction_id): - """Sets the transaction_id of this SupportassistDataItemData. - - Payload's transaction ID - matches `x-dell-ese-trans-id` of the response header returned from Product -> ESE /Payload request. # noqa: E501 - - :param transaction_id: The transaction_id of this SupportassistDataItemData. # noqa: E501 - :type: str - """ - if transaction_id is None: - raise ValueError("Invalid value for `transaction_id`, must not be `None`") # noqa: E501 - if transaction_id is not None and len(transaction_id) > 255: - raise ValueError("Invalid value for `transaction_id`, length must be less than or equal to `255`") # noqa: E501 - if transaction_id is not None and len(transaction_id) < 1: - raise ValueError("Invalid value for `transaction_id`, length must be greater than or equal to `1`") # noqa: E501 - - self._transaction_id = transaction_id - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SupportassistDataItemData, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SupportassistDataItemData): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_license.py b/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_license.py deleted file mode 100644 index 000058777..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_license.py +++ /dev/null @@ -1,149 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SupportassistLicense(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'task': 'SupportassistLicenseTask', - 'warning': 'str' - } - - attribute_map = { - 'task': 'task', - 'warning': 'warning' - } - - def __init__(self, task=None, warning=None): # noqa: E501 - """SupportassistLicense - a model defined in Swagger""" # noqa: E501 - - self._task = None - self._warning = None - self.discriminator = None - - if task is not None: - self.task = task - if warning is not None: - self.warning = warning - - @property - def task(self): - """Gets the task of this SupportassistLicense. # noqa: E501 - - # noqa: E501 - - :return: The task of this SupportassistLicense. # noqa: E501 - :rtype: SupportassistLicenseTask - """ - return self._task - - @task.setter - def task(self, task): - """Sets the task of this SupportassistLicense. - - # noqa: E501 - - :param task: The task of this SupportassistLicense. # noqa: E501 - :type: SupportassistLicenseTask - """ - - self._task = task - - @property - def warning(self): - """Gets the warning of this SupportassistLicense. # noqa: E501 - - Error message when license not found # noqa: E501 - - :return: The warning of this SupportassistLicense. # noqa: E501 - :rtype: str - """ - return self._warning - - @warning.setter - def warning(self, warning): - """Sets the warning of this SupportassistLicense. - - Error message when license not found # noqa: E501 - - :param warning: The warning of this SupportassistLicense. # noqa: E501 - :type: str - """ - if warning is not None and len(warning) > 255: - raise ValueError("Invalid value for `warning`, length must be less than or equal to `255`") # noqa: E501 - if warning is not None and len(warning) < 0: - raise ValueError("Invalid value for `warning`, length must be greater than or equal to `0`") # noqa: E501 - - self._warning = warning - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SupportassistLicense, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SupportassistLicense): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_license_task.py b/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_license_task.py deleted file mode 100644 index 40fa36ed3..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_license_task.py +++ /dev/null @@ -1,440 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SupportassistLicenseTask(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'audit': 'SupportassistLicenseTaskAudit', - 'data': 'Empty', - 'description': 'str', - 'display_state': 'str', - 'display_state_history': 'list[str]', - 'error_msg': 'str', - 'source': 'str', - 'state': 'str', - 'sub_state': 'str', - 'success': 'bool', - 'task_id': 'str' - } - - attribute_map = { - 'audit': 'audit', - 'data': 'data', - 'description': 'description', - 'display_state': 'display_state', - 'display_state_history': 'display_state_history', - 'error_msg': 'error_msg', - 'source': 'source', - 'state': 'state', - 'sub_state': 'sub_state', - 'success': 'success', - 'task_id': 'task_id' - } - - def __init__(self, audit=None, data=None, description='null', display_state=None, display_state_history=None, error_msg='null', source=None, state=None, sub_state=None, success=None, task_id=None): # noqa: E501 - """SupportassistLicenseTask - a model defined in Swagger""" # noqa: E501 - - self._audit = None - self._data = None - self._description = None - self._display_state = None - self._display_state_history = None - self._error_msg = None - self._source = None - self._state = None - self._sub_state = None - self._success = None - self._task_id = None - self.discriminator = None - - if audit is not None: - self.audit = audit - self.data = data - self.description = description - self.display_state = display_state - self.display_state_history = display_state_history - if error_msg is not None: - self.error_msg = error_msg - if source is not None: - self.source = source - if state is not None: - self.state = state - if sub_state is not None: - self.sub_state = sub_state - if success is not None: - self.success = success - if task_id is not None: - self.task_id = task_id - - @property - def audit(self): - """Gets the audit of this SupportassistLicenseTask. # noqa: E501 - - The audit trail of the task # noqa: E501 - - :return: The audit of this SupportassistLicenseTask. # noqa: E501 - :rtype: SupportassistLicenseTaskAudit - """ - return self._audit - - @audit.setter - def audit(self, audit): - """Sets the audit of this SupportassistLicenseTask. - - The audit trail of the task # noqa: E501 - - :param audit: The audit of this SupportassistLicenseTask. # noqa: E501 - :type: SupportassistLicenseTaskAudit - """ - - self._audit = audit - - @property - def data(self): - """Gets the data of this SupportassistLicenseTask. # noqa: E501 - - This internal object is a free-form key value store necessary for processing the task. It includes transient data that is necessary to resume processing of a task if it is interrupted. The actual contents of this object are in flux and will be variable depending on the current task source, sub task, and state. # noqa: E501 - - :return: The data of this SupportassistLicenseTask. # noqa: E501 - :rtype: Empty - """ - return self._data - - @data.setter - def data(self, data): - """Sets the data of this SupportassistLicenseTask. - - This internal object is a free-form key value store necessary for processing the task. It includes transient data that is necessary to resume processing of a task if it is interrupted. The actual contents of this object are in flux and will be variable depending on the current task source, sub task, and state. # noqa: E501 - - :param data: The data of this SupportassistLicenseTask. # noqa: E501 - :type: Empty - """ - if data is None: - raise ValueError("Invalid value for `data`, must not be `None`") # noqa: E501 - - self._data = data - - @property - def description(self): - """Gets the description of this SupportassistLicenseTask. # noqa: E501 - - Describe current state detail # noqa: E501 - - :return: The description of this SupportassistLicenseTask. # noqa: E501 - :rtype: str - """ - return self._description - - @description.setter - def description(self, description): - """Sets the description of this SupportassistLicenseTask. - - Describe current state detail # noqa: E501 - - :param description: The description of this SupportassistLicenseTask. # noqa: E501 - :type: str - """ - if description is None: - raise ValueError("Invalid value for `description`, must not be `None`") # noqa: E501 - if description is not None and len(description) > 255: - raise ValueError("Invalid value for `description`, length must be less than or equal to `255`") # noqa: E501 - if description is not None and len(description) < 0: - raise ValueError("Invalid value for `description`, length must be greater than or equal to `0`") # noqa: E501 - - self._description = description - - @property - def display_state(self): - """Gets the display_state of this SupportassistLicenseTask. # noqa: E501 - - The state of the task should be displayed # noqa: E501 - - :return: The display_state of this SupportassistLicenseTask. # noqa: E501 - :rtype: str - """ - return self._display_state - - @display_state.setter - def display_state(self, display_state): - """Sets the display_state of this SupportassistLicenseTask. - - The state of the task should be displayed # noqa: E501 - - :param display_state: The display_state of this SupportassistLicenseTask. # noqa: E501 - :type: str - """ - if display_state is None: - raise ValueError("Invalid value for `display_state`, must not be `None`") # noqa: E501 - if display_state is not None and len(display_state) > 255: - raise ValueError("Invalid value for `display_state`, length must be less than or equal to `255`") # noqa: E501 - if display_state is not None and len(display_state) < 1: - raise ValueError("Invalid value for `display_state`, length must be greater than or equal to `1`") # noqa: E501 - - self._display_state = display_state - - @property - def display_state_history(self): - """Gets the display_state_history of this SupportassistLicenseTask. # noqa: E501 - - Array showing the history of display_state for this task # noqa: E501 - - :return: The display_state_history of this SupportassistLicenseTask. # noqa: E501 - :rtype: list[str] - """ - return self._display_state_history - - @display_state_history.setter - def display_state_history(self, display_state_history): - """Sets the display_state_history of this SupportassistLicenseTask. - - Array showing the history of display_state for this task # noqa: E501 - - :param display_state_history: The display_state_history of this SupportassistLicenseTask. # noqa: E501 - :type: list[str] - """ - if display_state_history is None: - raise ValueError("Invalid value for `display_state_history`, must not be `None`") # noqa: E501 - allowed_values = ["waiting", "pre_check", "verify", "post_check", "success", "failure", "posting", "installing", "upload_check", "getting", "deleting", "gathering", "cancelled"] # noqa: E501 - if not set(display_state_history).issubset(set(allowed_values)): - raise ValueError( - "Invalid values for `display_state_history` [{0}], must be a subset of [{1}]" # noqa: E501 - .format(", ".join(map(str, set(display_state_history) - set(allowed_values))), # noqa: E501 - ", ".join(map(str, allowed_values))) - ) - - self._display_state_history = display_state_history - - @property - def error_msg(self): - """Gets the error_msg of this SupportassistLicenseTask. # noqa: E501 - - The error of the task should be displayed # noqa: E501 - - :return: The error_msg of this SupportassistLicenseTask. # noqa: E501 - :rtype: str - """ - return self._error_msg - - @error_msg.setter - def error_msg(self, error_msg): - """Sets the error_msg of this SupportassistLicenseTask. - - The error of the task should be displayed # noqa: E501 - - :param error_msg: The error_msg of this SupportassistLicenseTask. # noqa: E501 - :type: str - """ - if error_msg is not None and len(error_msg) > 255: - raise ValueError("Invalid value for `error_msg`, length must be less than or equal to `255`") # noqa: E501 - if error_msg is not None and len(error_msg) < 0: - raise ValueError("Invalid value for `error_msg`, length must be greater than or equal to `0`") # noqa: E501 - - self._error_msg = error_msg - - @property - def source(self): - """Gets the source of this SupportassistLicenseTask. # noqa: E501 - - The source of the task # noqa: E501 - - :return: The source of this SupportassistLicenseTask. # noqa: E501 - :rtype: str - """ - return self._source - - @source.setter - def source(self, source): - """Sets the source of this SupportassistLicenseTask. - - The source of the task # noqa: E501 - - :param source: The source of this SupportassistLicenseTask. # noqa: E501 - :type: str - """ - allowed_values = ["CONFIG", "EVENT", "TELEMETRY", "LICENSE", "LOG", "DOWNLOAD"] # noqa: E501 - if source not in allowed_values: - raise ValueError( - "Invalid value for `source` ({0}), must be one of {1}" # noqa: E501 - .format(source, allowed_values) - ) - - self._source = source - - @property - def state(self): - """Gets the state of this SupportassistLicenseTask. # noqa: E501 - - The state of the task # noqa: E501 - - :return: The state of this SupportassistLicenseTask. # noqa: E501 - :rtype: str - """ - return self._state - - @state.setter - def state(self, state): - """Sets the state of this SupportassistLicenseTask. - - The state of the task # noqa: E501 - - :param state: The state of this SupportassistLicenseTask. # noqa: E501 - :type: str - """ - allowed_values = ["IN_PROGRESS", "COMPLETED", "INCOMING", "WAITING"] # noqa: E501 - if state not in allowed_values: - raise ValueError( - "Invalid value for `state` ({0}), must be one of {1}" # noqa: E501 - .format(state, allowed_values) - ) - - self._state = state - - @property - def sub_state(self): - """Gets the sub_state of this SupportassistLicenseTask. # noqa: E501 - - The sub-state of the task # noqa: E501 - - :return: The sub_state of this SupportassistLicenseTask. # noqa: E501 - :rtype: str - """ - return self._sub_state - - @sub_state.setter - def sub_state(self, sub_state): - """Sets the sub_state of this SupportassistLicenseTask. - - The sub-state of the task # noqa: E501 - - :param sub_state: The sub_state of this SupportassistLicenseTask. # noqa: E501 - :type: str - """ - if sub_state is not None and len(sub_state) > 255: - raise ValueError("Invalid value for `sub_state`, length must be less than or equal to `255`") # noqa: E501 - if sub_state is not None and len(sub_state) < 0: - raise ValueError("Invalid value for `sub_state`, length must be greater than or equal to `0`") # noqa: E501 - - self._sub_state = sub_state - - @property - def success(self): - """Gets the success of this SupportassistLicenseTask. # noqa: E501 - - The success state of the task # noqa: E501 - - :return: The success of this SupportassistLicenseTask. # noqa: E501 - :rtype: bool - """ - return self._success - - @success.setter - def success(self, success): - """Sets the success of this SupportassistLicenseTask. - - The success state of the task # noqa: E501 - - :param success: The success of this SupportassistLicenseTask. # noqa: E501 - :type: bool - """ - - self._success = success - - @property - def task_id(self): - """Gets the task_id of this SupportassistLicenseTask. # noqa: E501 - - Task ID # noqa: E501 - - :return: The task_id of this SupportassistLicenseTask. # noqa: E501 - :rtype: str - """ - return self._task_id - - @task_id.setter - def task_id(self, task_id): - """Sets the task_id of this SupportassistLicenseTask. - - Task ID # noqa: E501 - - :param task_id: The task_id of this SupportassistLicenseTask. # noqa: E501 - :type: str - """ - if task_id is not None and len(task_id) > 255: - raise ValueError("Invalid value for `task_id`, length must be less than or equal to `255`") # noqa: E501 - if task_id is not None and len(task_id) < 1: - raise ValueError("Invalid value for `task_id`, length must be greater than or equal to `1`") # noqa: E501 - - self._task_id = task_id - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SupportassistLicenseTask, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SupportassistLicenseTask): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_license_task_audit.py b/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_license_task_audit.py deleted file mode 100644 index fbef412fb..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_license_task_audit.py +++ /dev/null @@ -1,147 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SupportassistLicenseTaskAudit(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'state': 'SupportassistLicenseTaskAuditState', - 'sub_state': 'list[SupportassistLicenseTaskAuditSubStateItem]' - } - - attribute_map = { - 'state': 'state', - 'sub_state': 'sub_state' - } - - def __init__(self, state=None, sub_state=None): # noqa: E501 - """SupportassistLicenseTaskAudit - a model defined in Swagger""" # noqa: E501 - - self._state = None - self._sub_state = None - self.discriminator = None - - self.state = state - self.sub_state = sub_state - - @property - def state(self): - """Gets the state of this SupportassistLicenseTaskAudit. # noqa: E501 - - The timestamps of when a task entered a new state # noqa: E501 - - :return: The state of this SupportassistLicenseTaskAudit. # noqa: E501 - :rtype: SupportassistLicenseTaskAuditState - """ - return self._state - - @state.setter - def state(self, state): - """Sets the state of this SupportassistLicenseTaskAudit. - - The timestamps of when a task entered a new state # noqa: E501 - - :param state: The state of this SupportassistLicenseTaskAudit. # noqa: E501 - :type: SupportassistLicenseTaskAuditState - """ - if state is None: - raise ValueError("Invalid value for `state`, must not be `None`") # noqa: E501 - - self._state = state - - @property - def sub_state(self): - """Gets the sub_state of this SupportassistLicenseTaskAudit. # noqa: E501 - - Audit entries of the task # noqa: E501 - - :return: The sub_state of this SupportassistLicenseTaskAudit. # noqa: E501 - :rtype: list[SupportassistLicenseTaskAuditSubStateItem] - """ - return self._sub_state - - @sub_state.setter - def sub_state(self, sub_state): - """Sets the sub_state of this SupportassistLicenseTaskAudit. - - Audit entries of the task # noqa: E501 - - :param sub_state: The sub_state of this SupportassistLicenseTaskAudit. # noqa: E501 - :type: list[SupportassistLicenseTaskAuditSubStateItem] - """ - if sub_state is None: - raise ValueError("Invalid value for `sub_state`, must not be `None`") # noqa: E501 - - self._sub_state = sub_state - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SupportassistLicenseTaskAudit, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SupportassistLicenseTaskAudit): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_license_task_audit_state.py b/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_license_task_audit_state.py deleted file mode 100644 index 859964c09..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_license_task_audit_state.py +++ /dev/null @@ -1,241 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SupportassistLicenseTaskAuditState(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'completed': 'float', - 'in_progress': 'list[float]', - 'queued': 'float', - 'retry_wait': 'list[float]', - 'waiting': 'list[float]' - } - - attribute_map = { - 'completed': 'completed', - 'in_progress': 'in_progress', - 'queued': 'queued', - 'retry_wait': 'retry_wait', - 'waiting': 'waiting' - } - - def __init__(self, completed=None, in_progress=None, queued=None, retry_wait=None, waiting=None): # noqa: E501 - """SupportassistLicenseTaskAuditState - a model defined in Swagger""" # noqa: E501 - - self._completed = None - self._in_progress = None - self._queued = None - self._retry_wait = None - self._waiting = None - self.discriminator = None - - if completed is not None: - self.completed = completed - self.in_progress = in_progress - self.queued = queued - self.retry_wait = retry_wait - self.waiting = waiting - - @property - def completed(self): - """Gets the completed of this SupportassistLicenseTaskAuditState. # noqa: E501 - - Timestamp when the task was completed # noqa: E501 - - :return: The completed of this SupportassistLicenseTaskAuditState. # noqa: E501 - :rtype: float - """ - return self._completed - - @completed.setter - def completed(self, completed): - """Sets the completed of this SupportassistLicenseTaskAuditState. - - Timestamp when the task was completed # noqa: E501 - - :param completed: The completed of this SupportassistLicenseTaskAuditState. # noqa: E501 - :type: float - """ - if completed is not None and completed > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `completed`, must be a value less than or equal to `4294967295`") # noqa: E501 - if completed is not None and completed < 0: # noqa: E501 - raise ValueError("Invalid value for `completed`, must be a value greater than or equal to `0`") # noqa: E501 - - self._completed = completed - - @property - def in_progress(self): - """Gets the in_progress of this SupportassistLicenseTaskAuditState. # noqa: E501 - - Timestamps of when the task entered the in_progress state # noqa: E501 - - :return: The in_progress of this SupportassistLicenseTaskAuditState. # noqa: E501 - :rtype: list[float] - """ - return self._in_progress - - @in_progress.setter - def in_progress(self, in_progress): - """Sets the in_progress of this SupportassistLicenseTaskAuditState. - - Timestamps of when the task entered the in_progress state # noqa: E501 - - :param in_progress: The in_progress of this SupportassistLicenseTaskAuditState. # noqa: E501 - :type: list[float] - """ - if in_progress is None: - raise ValueError("Invalid value for `in_progress`, must not be `None`") # noqa: E501 - - self._in_progress = in_progress - - @property - def queued(self): - """Gets the queued of this SupportassistLicenseTaskAuditState. # noqa: E501 - - Timestamp when the task was submitted # noqa: E501 - - :return: The queued of this SupportassistLicenseTaskAuditState. # noqa: E501 - :rtype: float - """ - return self._queued - - @queued.setter - def queued(self, queued): - """Sets the queued of this SupportassistLicenseTaskAuditState. - - Timestamp when the task was submitted # noqa: E501 - - :param queued: The queued of this SupportassistLicenseTaskAuditState. # noqa: E501 - :type: float - """ - if queued is None: - raise ValueError("Invalid value for `queued`, must not be `None`") # noqa: E501 - if queued is not None and queued > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `queued`, must be a value less than or equal to `4294967295`") # noqa: E501 - if queued is not None and queued < 0: # noqa: E501 - raise ValueError("Invalid value for `queued`, must be a value greater than or equal to `0`") # noqa: E501 - - self._queued = queued - - @property - def retry_wait(self): - """Gets the retry_wait of this SupportassistLicenseTaskAuditState. # noqa: E501 - - Timestamps of when the task entered the retry wait state # noqa: E501 - - :return: The retry_wait of this SupportassistLicenseTaskAuditState. # noqa: E501 - :rtype: list[float] - """ - return self._retry_wait - - @retry_wait.setter - def retry_wait(self, retry_wait): - """Sets the retry_wait of this SupportassistLicenseTaskAuditState. - - Timestamps of when the task entered the retry wait state # noqa: E501 - - :param retry_wait: The retry_wait of this SupportassistLicenseTaskAuditState. # noqa: E501 - :type: list[float] - """ - if retry_wait is None: - raise ValueError("Invalid value for `retry_wait`, must not be `None`") # noqa: E501 - - self._retry_wait = retry_wait - - @property - def waiting(self): - """Gets the waiting of this SupportassistLicenseTaskAuditState. # noqa: E501 - - Timestamps of when the task entered the waiting state # noqa: E501 - - :return: The waiting of this SupportassistLicenseTaskAuditState. # noqa: E501 - :rtype: list[float] - """ - return self._waiting - - @waiting.setter - def waiting(self, waiting): - """Sets the waiting of this SupportassistLicenseTaskAuditState. - - Timestamps of when the task entered the waiting state # noqa: E501 - - :param waiting: The waiting of this SupportassistLicenseTaskAuditState. # noqa: E501 - :type: list[float] - """ - if waiting is None: - raise ValueError("Invalid value for `waiting`, must not be `None`") # noqa: E501 - - self._waiting = waiting - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SupportassistLicenseTaskAuditState, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SupportassistLicenseTaskAuditState): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_license_task_audit_sub_state_item.py b/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_license_task_audit_sub_state_item.py deleted file mode 100644 index d460c27fb..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_license_task_audit_sub_state_item.py +++ /dev/null @@ -1,284 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SupportassistLicenseTaskAuditSubStateItem(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'api_responds': 'int', - 'api_responds_obj': 'str', - 'error': 'str', - 'processing_lnn': 'str', - 'state': 'str', - 'time_stamp': 'float' - } - - attribute_map = { - 'api_responds': 'api_responds', - 'api_responds_obj': 'api_responds_obj', - 'error': 'error', - 'processing_lnn': 'processing_lnn', - 'state': 'state', - 'time_stamp': 'time_stamp' - } - - def __init__(self, api_responds=None, api_responds_obj=None, error=None, processing_lnn=None, state=None, time_stamp=None): # noqa: E501 - """SupportassistLicenseTaskAuditSubStateItem - a model defined in Swagger""" # noqa: E501 - - self._api_responds = None - self._api_responds_obj = None - self._error = None - self._processing_lnn = None - self._state = None - self._time_stamp = None - self.discriminator = None - - if api_responds is not None: - self.api_responds = api_responds - if api_responds_obj is not None: - self.api_responds_obj = api_responds_obj - if error is not None: - self.error = error - self.processing_lnn = processing_lnn - self.state = state - self.time_stamp = time_stamp - - @property - def api_responds(self): - """Gets the api_responds of this SupportassistLicenseTaskAuditSubStateItem. # noqa: E501 - - Connectivity API response code. # noqa: E501 - - :return: The api_responds of this SupportassistLicenseTaskAuditSubStateItem. # noqa: E501 - :rtype: int - """ - return self._api_responds - - @api_responds.setter - def api_responds(self, api_responds): - """Sets the api_responds of this SupportassistLicenseTaskAuditSubStateItem. - - Connectivity API response code. # noqa: E501 - - :param api_responds: The api_responds of this SupportassistLicenseTaskAuditSubStateItem. # noqa: E501 - :type: int - """ - if api_responds is not None and api_responds > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `api_responds`, must be a value less than or equal to `4294967295`") # noqa: E501 - if api_responds is not None and api_responds < 0: # noqa: E501 - raise ValueError("Invalid value for `api_responds`, must be a value greater than or equal to `0`") # noqa: E501 - - self._api_responds = api_responds - - @property - def api_responds_obj(self): - """Gets the api_responds_obj of this SupportassistLicenseTaskAuditSubStateItem. # noqa: E501 - - Connectivity API response JSON blob. # noqa: E501 - - :return: The api_responds_obj of this SupportassistLicenseTaskAuditSubStateItem. # noqa: E501 - :rtype: str - """ - return self._api_responds_obj - - @api_responds_obj.setter - def api_responds_obj(self, api_responds_obj): - """Sets the api_responds_obj of this SupportassistLicenseTaskAuditSubStateItem. - - Connectivity API response JSON blob. # noqa: E501 - - :param api_responds_obj: The api_responds_obj of this SupportassistLicenseTaskAuditSubStateItem. # noqa: E501 - :type: str - """ - if api_responds_obj is not None and len(api_responds_obj) > 8192: - raise ValueError("Invalid value for `api_responds_obj`, length must be less than or equal to `8192`") # noqa: E501 - if api_responds_obj is not None and len(api_responds_obj) < 1: - raise ValueError("Invalid value for `api_responds_obj`, length must be greater than or equal to `1`") # noqa: E501 - - self._api_responds_obj = api_responds_obj - - @property - def error(self): - """Gets the error of this SupportassistLicenseTaskAuditSubStateItem. # noqa: E501 - - The task sub-state error, if any # noqa: E501 - - :return: The error of this SupportassistLicenseTaskAuditSubStateItem. # noqa: E501 - :rtype: str - """ - return self._error - - @error.setter - def error(self, error): - """Sets the error of this SupportassistLicenseTaskAuditSubStateItem. - - The task sub-state error, if any # noqa: E501 - - :param error: The error of this SupportassistLicenseTaskAuditSubStateItem. # noqa: E501 - :type: str - """ - if error is not None and len(error) > 255: - raise ValueError("Invalid value for `error`, length must be less than or equal to `255`") # noqa: E501 - if error is not None and len(error) < 1: - raise ValueError("Invalid value for `error`, length must be greater than or equal to `1`") # noqa: E501 - - self._error = error - - @property - def processing_lnn(self): - """Gets the processing_lnn of this SupportassistLicenseTaskAuditSubStateItem. # noqa: E501 - - LNN of node that processed this sub-state # noqa: E501 - - :return: The processing_lnn of this SupportassistLicenseTaskAuditSubStateItem. # noqa: E501 - :rtype: str - """ - return self._processing_lnn - - @processing_lnn.setter - def processing_lnn(self, processing_lnn): - """Sets the processing_lnn of this SupportassistLicenseTaskAuditSubStateItem. - - LNN of node that processed this sub-state # noqa: E501 - - :param processing_lnn: The processing_lnn of this SupportassistLicenseTaskAuditSubStateItem. # noqa: E501 - :type: str - """ - if processing_lnn is None: - raise ValueError("Invalid value for `processing_lnn`, must not be `None`") # noqa: E501 - if processing_lnn is not None and len(processing_lnn) > 255: - raise ValueError("Invalid value for `processing_lnn`, length must be less than or equal to `255`") # noqa: E501 - if processing_lnn is not None and len(processing_lnn) < 1: - raise ValueError("Invalid value for `processing_lnn`, length must be greater than or equal to `1`") # noqa: E501 - - self._processing_lnn = processing_lnn - - @property - def state(self): - """Gets the state of this SupportassistLicenseTaskAuditSubStateItem. # noqa: E501 - - The sub-state of the task # noqa: E501 - - :return: The state of this SupportassistLicenseTaskAuditSubStateItem. # noqa: E501 - :rtype: str - """ - return self._state - - @state.setter - def state(self, state): - """Sets the state of this SupportassistLicenseTaskAuditSubStateItem. - - The sub-state of the task # noqa: E501 - - :param state: The state of this SupportassistLicenseTaskAuditSubStateItem. # noqa: E501 - :type: str - """ - if state is None: - raise ValueError("Invalid value for `state`, must not be `None`") # noqa: E501 - if state is not None and len(state) > 255: - raise ValueError("Invalid value for `state`, length must be less than or equal to `255`") # noqa: E501 - if state is not None and len(state) < 0: - raise ValueError("Invalid value for `state`, length must be greater than or equal to `0`") # noqa: E501 - - self._state = state - - @property - def time_stamp(self): - """Gets the time_stamp of this SupportassistLicenseTaskAuditSubStateItem. # noqa: E501 - - Timestamp when the task entered this sub-state # noqa: E501 - - :return: The time_stamp of this SupportassistLicenseTaskAuditSubStateItem. # noqa: E501 - :rtype: float - """ - return self._time_stamp - - @time_stamp.setter - def time_stamp(self, time_stamp): - """Sets the time_stamp of this SupportassistLicenseTaskAuditSubStateItem. - - Timestamp when the task entered this sub-state # noqa: E501 - - :param time_stamp: The time_stamp of this SupportassistLicenseTaskAuditSubStateItem. # noqa: E501 - :type: float - """ - if time_stamp is None: - raise ValueError("Invalid value for `time_stamp`, must not be `None`") # noqa: E501 - if time_stamp is not None and time_stamp > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `time_stamp`, must be a value less than or equal to `4294967295`") # noqa: E501 - if time_stamp is not None and time_stamp < 0: # noqa: E501 - raise ValueError("Invalid value for `time_stamp`, must be a value greater than or equal to `0`") # noqa: E501 - - self._time_stamp = time_stamp - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SupportassistLicenseTaskAuditSubStateItem, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SupportassistLicenseTaskAuditSubStateItem): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_payload_item.py b/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_payload_item.py deleted file mode 100644 index 2bfa14045..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_payload_item.py +++ /dev/null @@ -1,220 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SupportassistPayloadItem(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'payload_type': 'str', - 'payload_version': 'str', - 'sub_type': 'str', - 'timestamp': 'str' - } - - attribute_map = { - 'payload_type': 'payloadType', - 'payload_version': 'payloadVersion', - 'sub_type': 'subType', - 'timestamp': 'timestamp' - } - - def __init__(self, payload_type=None, payload_version='1.0', sub_type=None, timestamp=''): # noqa: E501 - """SupportassistPayloadItem - a model defined in Swagger""" # noqa: E501 - - self._payload_type = None - self._payload_version = None - self._sub_type = None - self._timestamp = None - self.discriminator = None - - self.payload_type = payload_type - if payload_version is not None: - self.payload_version = payload_version - if sub_type is not None: - self.sub_type = sub_type - if timestamp is not None: - self.timestamp = timestamp - - @property - def payload_type(self): - """Gets the payload_type of this SupportassistPayloadItem. # noqa: E501 - - Type of payload request. # noqa: E501 - - :return: The payload_type of this SupportassistPayloadItem. # noqa: E501 - :rtype: str - """ - return self._payload_type - - @payload_type.setter - def payload_type(self, payload_type): - """Sets the payload_type of this SupportassistPayloadItem. - - Type of payload request. # noqa: E501 - - :param payload_type: The payload_type of this SupportassistPayloadItem. # noqa: E501 - :type: str - """ - if payload_type is None: - raise ValueError("Invalid value for `payload_type`, must not be `None`") # noqa: E501 - allowed_values = ["topology", "testConnectivity", "customerContact"] # noqa: E501 - if payload_type not in allowed_values: - raise ValueError( - "Invalid value for `payload_type` ({0}), must be one of {1}" # noqa: E501 - .format(payload_type, allowed_values) - ) - - self._payload_type = payload_type - - @property - def payload_version(self): - """Gets the payload_version of this SupportassistPayloadItem. # noqa: E501 - - Payload version. # noqa: E501 - - :return: The payload_version of this SupportassistPayloadItem. # noqa: E501 - :rtype: str - """ - return self._payload_version - - @payload_version.setter - def payload_version(self, payload_version): - """Sets the payload_version of this SupportassistPayloadItem. - - Payload version. # noqa: E501 - - :param payload_version: The payload_version of this SupportassistPayloadItem. # noqa: E501 - :type: str - """ - if payload_version is not None and len(payload_version) > 255: - raise ValueError("Invalid value for `payload_version`, length must be less than or equal to `255`") # noqa: E501 - if payload_version is not None and len(payload_version) < 1: - raise ValueError("Invalid value for `payload_version`, length must be greater than or equal to `1`") # noqa: E501 - - self._payload_version = payload_version - - @property - def sub_type(self): - """Gets the sub_type of this SupportassistPayloadItem. # noqa: E501 - - Payload subtype. # noqa: E501 - - :return: The sub_type of this SupportassistPayloadItem. # noqa: E501 - :rtype: str - """ - return self._sub_type - - @sub_type.setter - def sub_type(self, sub_type): - """Sets the sub_type of this SupportassistPayloadItem. - - Payload subtype. # noqa: E501 - - :param sub_type: The sub_type of this SupportassistPayloadItem. # noqa: E501 - :type: str - """ - if sub_type is not None and len(sub_type) > 255: - raise ValueError("Invalid value for `sub_type`, length must be less than or equal to `255`") # noqa: E501 - if sub_type is not None and len(sub_type) < 0: - raise ValueError("Invalid value for `sub_type`, length must be greater than or equal to `0`") # noqa: E501 - - self._sub_type = sub_type - - @property - def timestamp(self): - """Gets the timestamp of this SupportassistPayloadItem. # noqa: E501 - - Current Timestamp. # noqa: E501 - - :return: The timestamp of this SupportassistPayloadItem. # noqa: E501 - :rtype: str - """ - return self._timestamp - - @timestamp.setter - def timestamp(self, timestamp): - """Sets the timestamp of this SupportassistPayloadItem. - - Current Timestamp. # noqa: E501 - - :param timestamp: The timestamp of this SupportassistPayloadItem. # noqa: E501 - :type: str - """ - if timestamp is not None and len(timestamp) > 255: - raise ValueError("Invalid value for `timestamp`, length must be less than or equal to `255`") # noqa: E501 - if timestamp is not None and len(timestamp) < 1: - raise ValueError("Invalid value for `timestamp`, length must be greater than or equal to `1`") # noqa: E501 - - self._timestamp = timestamp - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SupportassistPayloadItem, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SupportassistPayloadItem): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings.py b/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings.py deleted file mode 100644 index 78926b67b..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings.py +++ /dev/null @@ -1,352 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SupportassistSettings(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'automatic_case_creation': 'bool', - 'connection': 'SupportassistSettingsConnection', - 'connection_state': 'str', - 'contact': 'SupportassistSettingsContact', - 'enable_download': 'bool', - 'enable_remote_support': 'bool', - 'onefs_software_id': 'str', - 'supportassist_enabled': 'bool', - 'telemetry': 'SupportassistSettingsTelemetry' - } - - attribute_map = { - 'automatic_case_creation': 'automatic_case_creation', - 'connection': 'connection', - 'connection_state': 'connection_state', - 'contact': 'contact', - 'enable_download': 'enable_download', - 'enable_remote_support': 'enable_remote_support', - 'onefs_software_id': 'onefs_software_id', - 'supportassist_enabled': 'supportassist_enabled', - 'telemetry': 'telemetry' - } - - def __init__(self, automatic_case_creation=True, connection=None, connection_state=None, contact=None, enable_download=True, enable_remote_support=False, onefs_software_id=None, supportassist_enabled=None, telemetry=None): # noqa: E501 - """SupportassistSettings - a model defined in Swagger""" # noqa: E501 - - self._automatic_case_creation = None - self._connection = None - self._connection_state = None - self._contact = None - self._enable_download = None - self._enable_remote_support = None - self._onefs_software_id = None - self._supportassist_enabled = None - self._telemetry = None - self.discriminator = None - - if automatic_case_creation is not None: - self.automatic_case_creation = automatic_case_creation - if connection is not None: - self.connection = connection - if connection_state is not None: - self.connection_state = connection_state - if contact is not None: - self.contact = contact - if enable_download is not None: - self.enable_download = enable_download - if enable_remote_support is not None: - self.enable_remote_support = enable_remote_support - if onefs_software_id is not None: - self.onefs_software_id = onefs_software_id - self.supportassist_enabled = supportassist_enabled - if telemetry is not None: - self.telemetry = telemetry - - @property - def automatic_case_creation(self): - """Gets the automatic_case_creation of this SupportassistSettings. # noqa: E501 - - True indicates automatic case creation is enabled # noqa: E501 - - :return: The automatic_case_creation of this SupportassistSettings. # noqa: E501 - :rtype: bool - """ - return self._automatic_case_creation - - @automatic_case_creation.setter - def automatic_case_creation(self, automatic_case_creation): - """Sets the automatic_case_creation of this SupportassistSettings. - - True indicates automatic case creation is enabled # noqa: E501 - - :param automatic_case_creation: The automatic_case_creation of this SupportassistSettings. # noqa: E501 - :type: bool - """ - - self._automatic_case_creation = automatic_case_creation - - @property - def connection(self): - """Gets the connection of this SupportassistSettings. # noqa: E501 - - # noqa: E501 - - :return: The connection of this SupportassistSettings. # noqa: E501 - :rtype: SupportassistSettingsConnection - """ - return self._connection - - @connection.setter - def connection(self, connection): - """Sets the connection of this SupportassistSettings. - - # noqa: E501 - - :param connection: The connection of this SupportassistSettings. # noqa: E501 - :type: SupportassistSettingsConnection - """ - - self._connection = connection - - @property - def connection_state(self): - """Gets the connection_state of this SupportassistSettings. # noqa: E501 - - connection state. # noqa: E501 - - :return: The connection_state of this SupportassistSettings. # noqa: E501 - :rtype: str - """ - return self._connection_state - - @connection_state.setter - def connection_state(self, connection_state): - """Sets the connection_state of this SupportassistSettings. - - connection state. # noqa: E501 - - :param connection_state: The connection_state of this SupportassistSettings. # noqa: E501 - :type: str - """ - allowed_values = ["enabled", "disabled", "enabledinprogress", "disabledinprogress"] # noqa: E501 - if connection_state not in allowed_values: - raise ValueError( - "Invalid value for `connection_state` ({0}), must be one of {1}" # noqa: E501 - .format(connection_state, allowed_values) - ) - - self._connection_state = connection_state - - @property - def contact(self): - """Gets the contact of this SupportassistSettings. # noqa: E501 - - # noqa: E501 - - :return: The contact of this SupportassistSettings. # noqa: E501 - :rtype: SupportassistSettingsContact - """ - return self._contact - - @contact.setter - def contact(self, contact): - """Sets the contact of this SupportassistSettings. - - # noqa: E501 - - :param contact: The contact of this SupportassistSettings. # noqa: E501 - :type: SupportassistSettingsContact - """ - - self._contact = contact - - @property - def enable_download(self): - """Gets the enable_download of this SupportassistSettings. # noqa: E501 - - True indicates downloads are enabled # noqa: E501 - - :return: The enable_download of this SupportassistSettings. # noqa: E501 - :rtype: bool - """ - return self._enable_download - - @enable_download.setter - def enable_download(self, enable_download): - """Sets the enable_download of this SupportassistSettings. - - True indicates downloads are enabled # noqa: E501 - - :param enable_download: The enable_download of this SupportassistSettings. # noqa: E501 - :type: bool - """ - - self._enable_download = enable_download - - @property - def enable_remote_support(self): - """Gets the enable_remote_support of this SupportassistSettings. # noqa: E501 - - Whether remoteAccessEnabled is enabled # noqa: E501 - - :return: The enable_remote_support of this SupportassistSettings. # noqa: E501 - :rtype: bool - """ - return self._enable_remote_support - - @enable_remote_support.setter - def enable_remote_support(self, enable_remote_support): - """Sets the enable_remote_support of this SupportassistSettings. - - Whether remoteAccessEnabled is enabled # noqa: E501 - - :param enable_remote_support: The enable_remote_support of this SupportassistSettings. # noqa: E501 - :type: bool - """ - - self._enable_remote_support = enable_remote_support - - @property - def onefs_software_id(self): - """Gets the onefs_software_id of this SupportassistSettings. # noqa: E501 - - The software ID used by Dell Technologies connectivity services # noqa: E501 - - :return: The onefs_software_id of this SupportassistSettings. # noqa: E501 - :rtype: str - """ - return self._onefs_software_id - - @onefs_software_id.setter - def onefs_software_id(self, onefs_software_id): - """Sets the onefs_software_id of this SupportassistSettings. - - The software ID used by Dell Technologies connectivity services # noqa: E501 - - :param onefs_software_id: The onefs_software_id of this SupportassistSettings. # noqa: E501 - :type: str - """ - if onefs_software_id is not None and len(onefs_software_id) > 2048: - raise ValueError("Invalid value for `onefs_software_id`, length must be less than or equal to `2048`") # noqa: E501 - if onefs_software_id is not None and len(onefs_software_id) < 0: - raise ValueError("Invalid value for `onefs_software_id`, length must be greater than or equal to `0`") # noqa: E501 - - self._onefs_software_id = onefs_software_id - - @property - def supportassist_enabled(self): - """Gets the supportassist_enabled of this SupportassistSettings. # noqa: E501 - - Whether Dell Technologies connectivity services is enabled # noqa: E501 - - :return: The supportassist_enabled of this SupportassistSettings. # noqa: E501 - :rtype: bool - """ - return self._supportassist_enabled - - @supportassist_enabled.setter - def supportassist_enabled(self, supportassist_enabled): - """Sets the supportassist_enabled of this SupportassistSettings. - - Whether Dell Technologies connectivity services is enabled # noqa: E501 - - :param supportassist_enabled: The supportassist_enabled of this SupportassistSettings. # noqa: E501 - :type: bool - """ - if supportassist_enabled is None: - raise ValueError("Invalid value for `supportassist_enabled`, must not be `None`") # noqa: E501 - - self._supportassist_enabled = supportassist_enabled - - @property - def telemetry(self): - """Gets the telemetry of this SupportassistSettings. # noqa: E501 - - # noqa: E501 - - :return: The telemetry of this SupportassistSettings. # noqa: E501 - :rtype: SupportassistSettingsTelemetry - """ - return self._telemetry - - @telemetry.setter - def telemetry(self, telemetry): - """Sets the telemetry of this SupportassistSettings. - - # noqa: E501 - - :param telemetry: The telemetry of this SupportassistSettings. # noqa: E501 - :type: SupportassistSettingsTelemetry - """ - - self._telemetry = telemetry - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SupportassistSettings, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SupportassistSettings): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_connection.py b/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_connection.py deleted file mode 100644 index 5dcb03f40..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_connection.py +++ /dev/null @@ -1,178 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SupportassistSettingsConnection(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'gateway_endpoints': 'list[SupportassistSettingsConnectionGatewayEndpoint]', - 'mode': 'str', - 'network_pools': 'list[SupportassistSettingsConnectionNetworkPool]' - } - - attribute_map = { - 'gateway_endpoints': 'gateway_endpoints', - 'mode': 'mode', - 'network_pools': 'network_pools' - } - - def __init__(self, gateway_endpoints=None, mode=None, network_pools=None): # noqa: E501 - """SupportassistSettingsConnection - a model defined in Swagger""" # noqa: E501 - - self._gateway_endpoints = None - self._mode = None - self._network_pools = None - self.discriminator = None - - if gateway_endpoints is not None: - self.gateway_endpoints = gateway_endpoints - if mode is not None: - self.mode = mode - self.network_pools = network_pools - - @property - def gateway_endpoints(self): - """Gets the gateway_endpoints of this SupportassistSettingsConnection. # noqa: E501 - - - :return: The gateway_endpoints of this SupportassistSettingsConnection. # noqa: E501 - :rtype: list[SupportassistSettingsConnectionGatewayEndpoint] - """ - return self._gateway_endpoints - - @gateway_endpoints.setter - def gateway_endpoints(self, gateway_endpoints): - """Sets the gateway_endpoints of this SupportassistSettingsConnection. - - - :param gateway_endpoints: The gateway_endpoints of this SupportassistSettingsConnection. # noqa: E501 - :type: list[SupportassistSettingsConnectionGatewayEndpoint] - """ - - self._gateway_endpoints = gateway_endpoints - - @property - def mode(self): - """Gets the mode of this SupportassistSettingsConnection. # noqa: E501 - - Connection mode for Dell Technologies connectivity services. Use 'direct' for direct connectivity and 'gateway' for connecting through secure connect gateway. # noqa: E501 - - :return: The mode of this SupportassistSettingsConnection. # noqa: E501 - :rtype: str - """ - return self._mode - - @mode.setter - def mode(self, mode): - """Sets the mode of this SupportassistSettingsConnection. - - Connection mode for Dell Technologies connectivity services. Use 'direct' for direct connectivity and 'gateway' for connecting through secure connect gateway. # noqa: E501 - - :param mode: The mode of this SupportassistSettingsConnection. # noqa: E501 - :type: str - """ - allowed_values = ["direct", "gateway"] # noqa: E501 - if mode not in allowed_values: - raise ValueError( - "Invalid value for `mode` ({0}), must be one of {1}" # noqa: E501 - .format(mode, allowed_values) - ) - - self._mode = mode - - @property - def network_pools(self): - """Gets the network_pools of this SupportassistSettingsConnection. # noqa: E501 - - Network pools for use by Dell Technologies connectivity services. # noqa: E501 - - :return: The network_pools of this SupportassistSettingsConnection. # noqa: E501 - :rtype: list[SupportassistSettingsConnectionNetworkPool] - """ - return self._network_pools - - @network_pools.setter - def network_pools(self, network_pools): - """Sets the network_pools of this SupportassistSettingsConnection. - - Network pools for use by Dell Technologies connectivity services. # noqa: E501 - - :param network_pools: The network_pools of this SupportassistSettingsConnection. # noqa: E501 - :type: list[SupportassistSettingsConnectionNetworkPool] - """ - if network_pools is None: - raise ValueError("Invalid value for `network_pools`, must not be `None`") # noqa: E501 - - self._network_pools = network_pools - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SupportassistSettingsConnection, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SupportassistSettingsConnection): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_connection_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_connection_extended.py deleted file mode 100644 index 6314a72b8..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_connection_extended.py +++ /dev/null @@ -1,177 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SupportassistSettingsConnectionExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'gateway_endpoints': 'list[SupportassistSettingsConnectionGatewayEndpoint]', - 'mode': 'str', - 'network_pools': 'list[str]' - } - - attribute_map = { - 'gateway_endpoints': 'gateway_endpoints', - 'mode': 'mode', - 'network_pools': 'network_pools' - } - - def __init__(self, gateway_endpoints=None, mode=None, network_pools=None): # noqa: E501 - """SupportassistSettingsConnectionExtended - a model defined in Swagger""" # noqa: E501 - - self._gateway_endpoints = None - self._mode = None - self._network_pools = None - self.discriminator = None - - if gateway_endpoints is not None: - self.gateway_endpoints = gateway_endpoints - if mode is not None: - self.mode = mode - if network_pools is not None: - self.network_pools = network_pools - - @property - def gateway_endpoints(self): - """Gets the gateway_endpoints of this SupportassistSettingsConnectionExtended. # noqa: E501 - - - :return: The gateway_endpoints of this SupportassistSettingsConnectionExtended. # noqa: E501 - :rtype: list[SupportassistSettingsConnectionGatewayEndpoint] - """ - return self._gateway_endpoints - - @gateway_endpoints.setter - def gateway_endpoints(self, gateway_endpoints): - """Sets the gateway_endpoints of this SupportassistSettingsConnectionExtended. - - - :param gateway_endpoints: The gateway_endpoints of this SupportassistSettingsConnectionExtended. # noqa: E501 - :type: list[SupportassistSettingsConnectionGatewayEndpoint] - """ - - self._gateway_endpoints = gateway_endpoints - - @property - def mode(self): - """Gets the mode of this SupportassistSettingsConnectionExtended. # noqa: E501 - - Connection mode for Dell Technologies connectivity services. Use 'direct' for direct connectivity and 'gateway' for connecting through secure connect gateway. # noqa: E501 - - :return: The mode of this SupportassistSettingsConnectionExtended. # noqa: E501 - :rtype: str - """ - return self._mode - - @mode.setter - def mode(self, mode): - """Sets the mode of this SupportassistSettingsConnectionExtended. - - Connection mode for Dell Technologies connectivity services. Use 'direct' for direct connectivity and 'gateway' for connecting through secure connect gateway. # noqa: E501 - - :param mode: The mode of this SupportassistSettingsConnectionExtended. # noqa: E501 - :type: str - """ - allowed_values = ["direct", "gateway"] # noqa: E501 - if mode not in allowed_values: - raise ValueError( - "Invalid value for `mode` ({0}), must be one of {1}" # noqa: E501 - .format(mode, allowed_values) - ) - - self._mode = mode - - @property - def network_pools(self): - """Gets the network_pools of this SupportassistSettingsConnectionExtended. # noqa: E501 - - Network pools for Dell Technologies connectivity services. # noqa: E501 - - :return: The network_pools of this SupportassistSettingsConnectionExtended. # noqa: E501 - :rtype: list[str] - """ - return self._network_pools - - @network_pools.setter - def network_pools(self, network_pools): - """Sets the network_pools of this SupportassistSettingsConnectionExtended. - - Network pools for Dell Technologies connectivity services. # noqa: E501 - - :param network_pools: The network_pools of this SupportassistSettingsConnectionExtended. # noqa: E501 - :type: list[str] - """ - - self._network_pools = network_pools - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SupportassistSettingsConnectionExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SupportassistSettingsConnectionExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_connection_gateway_endpoint.py b/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_connection_gateway_endpoint.py deleted file mode 100644 index fbd85fde1..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_connection_gateway_endpoint.py +++ /dev/null @@ -1,272 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SupportassistSettingsConnectionGatewayEndpoint(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'enabled': 'bool', - 'host': 'str', - 'port': 'int', - 'priority': 'int', - 'use_proxy': 'bool', - 'validate_ssl': 'bool' - } - - attribute_map = { - 'enabled': 'enabled', - 'host': 'host', - 'port': 'port', - 'priority': 'priority', - 'use_proxy': 'use_proxy', - 'validate_ssl': 'validate_ssl' - } - - def __init__(self, enabled=True, host=None, port=None, priority=None, use_proxy=False, validate_ssl=False): # noqa: E501 - """SupportassistSettingsConnectionGatewayEndpoint - a model defined in Swagger""" # noqa: E501 - - self._enabled = None - self._host = None - self._port = None - self._priority = None - self._use_proxy = None - self._validate_ssl = None - self.discriminator = None - - if enabled is not None: - self.enabled = enabled - self.host = host - if port is not None: - self.port = port - if priority is not None: - self.priority = priority - if use_proxy is not None: - self.use_proxy = use_proxy - if validate_ssl is not None: - self.validate_ssl = validate_ssl - - @property - def enabled(self): - """Gets the enabled of this SupportassistSettingsConnectionGatewayEndpoint. # noqa: E501 - - Whether this secure connect gateway is enabled. # noqa: E501 - - :return: The enabled of this SupportassistSettingsConnectionGatewayEndpoint. # noqa: E501 - :rtype: bool - """ - return self._enabled - - @enabled.setter - def enabled(self, enabled): - """Sets the enabled of this SupportassistSettingsConnectionGatewayEndpoint. - - Whether this secure connect gateway is enabled. # noqa: E501 - - :param enabled: The enabled of this SupportassistSettingsConnectionGatewayEndpoint. # noqa: E501 - :type: bool - """ - - self._enabled = enabled - - @property - def host(self): - """Gets the host of this SupportassistSettingsConnectionGatewayEndpoint. # noqa: E501 - - Hostname, IPv4 address, or IPv6 address for the secure connect gateway. # noqa: E501 - - :return: The host of this SupportassistSettingsConnectionGatewayEndpoint. # noqa: E501 - :rtype: str - """ - return self._host - - @host.setter - def host(self, host): - """Sets the host of this SupportassistSettingsConnectionGatewayEndpoint. - - Hostname, IPv4 address, or IPv6 address for the secure connect gateway. # noqa: E501 - - :param host: The host of this SupportassistSettingsConnectionGatewayEndpoint. # noqa: E501 - :type: str - """ - if host is None: - raise ValueError("Invalid value for `host`, must not be `None`") # noqa: E501 - if host is not None and len(host) > 255: - raise ValueError("Invalid value for `host`, length must be less than or equal to `255`") # noqa: E501 - if host is not None and len(host) < 0: - raise ValueError("Invalid value for `host`, length must be greater than or equal to `0`") # noqa: E501 - if host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', host): # noqa: E501 - raise ValueError(r"Invalid value for `host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 - - self._host = host - - @property - def port(self): - """Gets the port of this SupportassistSettingsConnectionGatewayEndpoint. # noqa: E501 - - Port for the secure connect gateway. # noqa: E501 - - :return: The port of this SupportassistSettingsConnectionGatewayEndpoint. # noqa: E501 - :rtype: int - """ - return self._port - - @port.setter - def port(self, port): - """Sets the port of this SupportassistSettingsConnectionGatewayEndpoint. - - Port for the secure connect gateway. # noqa: E501 - - :param port: The port of this SupportassistSettingsConnectionGatewayEndpoint. # noqa: E501 - :type: int - """ - if port is not None and port > 65535: # noqa: E501 - raise ValueError("Invalid value for `port`, must be a value less than or equal to `65535`") # noqa: E501 - if port is not None and port < 1: # noqa: E501 - raise ValueError("Invalid value for `port`, must be a value greater than or equal to `1`") # noqa: E501 - - self._port = port - - @property - def priority(self): - """Gets the priority of this SupportassistSettingsConnectionGatewayEndpoint. # noqa: E501 - - Priority for using the secure connect gateway. # noqa: E501 - - :return: The priority of this SupportassistSettingsConnectionGatewayEndpoint. # noqa: E501 - :rtype: int - """ - return self._priority - - @priority.setter - def priority(self, priority): - """Sets the priority of this SupportassistSettingsConnectionGatewayEndpoint. - - Priority for using the secure connect gateway. # noqa: E501 - - :param priority: The priority of this SupportassistSettingsConnectionGatewayEndpoint. # noqa: E501 - :type: int - """ - if priority is not None and priority > 4: # noqa: E501 - raise ValueError("Invalid value for `priority`, must be a value less than or equal to `4`") # noqa: E501 - if priority is not None and priority < 1: # noqa: E501 - raise ValueError("Invalid value for `priority`, must be a value greater than or equal to `1`") # noqa: E501 - - self._priority = priority - - @property - def use_proxy(self): - """Gets the use_proxy of this SupportassistSettingsConnectionGatewayEndpoint. # noqa: E501 - - Whether to use Proxy for this secure connect gateway. # noqa: E501 - - :return: The use_proxy of this SupportassistSettingsConnectionGatewayEndpoint. # noqa: E501 - :rtype: bool - """ - return self._use_proxy - - @use_proxy.setter - def use_proxy(self, use_proxy): - """Sets the use_proxy of this SupportassistSettingsConnectionGatewayEndpoint. - - Whether to use Proxy for this secure connect gateway. # noqa: E501 - - :param use_proxy: The use_proxy of this SupportassistSettingsConnectionGatewayEndpoint. # noqa: E501 - :type: bool - """ - - self._use_proxy = use_proxy - - @property - def validate_ssl(self): - """Gets the validate_ssl of this SupportassistSettingsConnectionGatewayEndpoint. # noqa: E501 - - Whether to validate SSL for this secure connect gateway. # noqa: E501 - - :return: The validate_ssl of this SupportassistSettingsConnectionGatewayEndpoint. # noqa: E501 - :rtype: bool - """ - return self._validate_ssl - - @validate_ssl.setter - def validate_ssl(self, validate_ssl): - """Sets the validate_ssl of this SupportassistSettingsConnectionGatewayEndpoint. - - Whether to validate SSL for this secure connect gateway. # noqa: E501 - - :param validate_ssl: The validate_ssl of this SupportassistSettingsConnectionGatewayEndpoint. # noqa: E501 - :type: bool - """ - - self._validate_ssl = validate_ssl - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SupportassistSettingsConnectionGatewayEndpoint, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SupportassistSettingsConnectionGatewayEndpoint): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_connection_network_pool.py b/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_connection_network_pool.py deleted file mode 100644 index 28ab46494..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_connection_network_pool.py +++ /dev/null @@ -1,155 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SupportassistSettingsConnectionNetworkPool(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'pool': 'str', - 'subnet': 'str' - } - - attribute_map = { - 'pool': 'pool', - 'subnet': 'subnet' - } - - def __init__(self, pool=None, subnet=None): # noqa: E501 - """SupportassistSettingsConnectionNetworkPool - a model defined in Swagger""" # noqa: E501 - - self._pool = None - self._subnet = None - self.discriminator = None - - self.pool = pool - self.subnet = subnet - - @property - def pool(self): - """Gets the pool of this SupportassistSettingsConnectionNetworkPool. # noqa: E501 - - Pool of the network_pools # noqa: E501 - - :return: The pool of this SupportassistSettingsConnectionNetworkPool. # noqa: E501 - :rtype: str - """ - return self._pool - - @pool.setter - def pool(self, pool): - """Sets the pool of this SupportassistSettingsConnectionNetworkPool. - - Pool of the network_pools # noqa: E501 - - :param pool: The pool of this SupportassistSettingsConnectionNetworkPool. # noqa: E501 - :type: str - """ - if pool is None: - raise ValueError("Invalid value for `pool`, must not be `None`") # noqa: E501 - if pool is not None and len(pool) > 32: - raise ValueError("Invalid value for `pool`, length must be less than or equal to `32`") # noqa: E501 - if pool is not None and len(pool) < 0: - raise ValueError("Invalid value for `pool`, length must be greater than or equal to `0`") # noqa: E501 - - self._pool = pool - - @property - def subnet(self): - """Gets the subnet of this SupportassistSettingsConnectionNetworkPool. # noqa: E501 - - Subnet of the network_pools # noqa: E501 - - :return: The subnet of this SupportassistSettingsConnectionNetworkPool. # noqa: E501 - :rtype: str - """ - return self._subnet - - @subnet.setter - def subnet(self, subnet): - """Sets the subnet of this SupportassistSettingsConnectionNetworkPool. - - Subnet of the network_pools # noqa: E501 - - :param subnet: The subnet of this SupportassistSettingsConnectionNetworkPool. # noqa: E501 - :type: str - """ - if subnet is None: - raise ValueError("Invalid value for `subnet`, must not be `None`") # noqa: E501 - if subnet is not None and len(subnet) > 32: - raise ValueError("Invalid value for `subnet`, length must be less than or equal to `32`") # noqa: E501 - if subnet is not None and len(subnet) < 0: - raise ValueError("Invalid value for `subnet`, length must be greater than or equal to `0`") # noqa: E501 - - self._subnet = subnet - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SupportassistSettingsConnectionNetworkPool, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SupportassistSettingsConnectionNetworkPool): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_telemetry.py b/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_telemetry.py deleted file mode 100644 index 3110116dd..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_telemetry.py +++ /dev/null @@ -1,213 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SupportassistSettingsTelemetry(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'offline_collection_period': 'int', - 'telemetry_enabled': 'bool', - 'telemetry_persist': 'bool', - 'telemetry_threads': 'int' - } - - attribute_map = { - 'offline_collection_period': 'offline_collection_period', - 'telemetry_enabled': 'telemetry_enabled', - 'telemetry_persist': 'telemetry_persist', - 'telemetry_threads': 'telemetry_threads' - } - - def __init__(self, offline_collection_period=None, telemetry_enabled=None, telemetry_persist=None, telemetry_threads=None): # noqa: E501 - """SupportassistSettingsTelemetry - a model defined in Swagger""" # noqa: E501 - - self._offline_collection_period = None - self._telemetry_enabled = None - self._telemetry_persist = None - self._telemetry_threads = None - self.discriminator = None - - self.offline_collection_period = offline_collection_period - self.telemetry_enabled = telemetry_enabled - self.telemetry_persist = telemetry_persist - self.telemetry_threads = telemetry_threads - - @property - def offline_collection_period(self): - """Gets the offline_collection_period of this SupportassistSettingsTelemetry. # noqa: E501 - - Offline collection period in seconds when connectivity is down. # noqa: E501 - - :return: The offline_collection_period of this SupportassistSettingsTelemetry. # noqa: E501 - :rtype: int - """ - return self._offline_collection_period - - @offline_collection_period.setter - def offline_collection_period(self, offline_collection_period): - """Sets the offline_collection_period of this SupportassistSettingsTelemetry. - - Offline collection period in seconds when connectivity is down. # noqa: E501 - - :param offline_collection_period: The offline_collection_period of this SupportassistSettingsTelemetry. # noqa: E501 - :type: int - """ - if offline_collection_period is None: - raise ValueError("Invalid value for `offline_collection_period`, must not be `None`") # noqa: E501 - if offline_collection_period is not None and offline_collection_period > 86400: # noqa: E501 - raise ValueError("Invalid value for `offline_collection_period`, must be a value less than or equal to `86400`") # noqa: E501 - if offline_collection_period is not None and offline_collection_period < 0: # noqa: E501 - raise ValueError("Invalid value for `offline_collection_period`, must be a value greater than or equal to `0`") # noqa: E501 - - self._offline_collection_period = offline_collection_period - - @property - def telemetry_enabled(self): - """Gets the telemetry_enabled of this SupportassistSettingsTelemetry. # noqa: E501 - - True indicates telemetry is enabled. # noqa: E501 - - :return: The telemetry_enabled of this SupportassistSettingsTelemetry. # noqa: E501 - :rtype: bool - """ - return self._telemetry_enabled - - @telemetry_enabled.setter - def telemetry_enabled(self, telemetry_enabled): - """Sets the telemetry_enabled of this SupportassistSettingsTelemetry. - - True indicates telemetry is enabled. # noqa: E501 - - :param telemetry_enabled: The telemetry_enabled of this SupportassistSettingsTelemetry. # noqa: E501 - :type: bool - """ - if telemetry_enabled is None: - raise ValueError("Invalid value for `telemetry_enabled`, must not be `None`") # noqa: E501 - - self._telemetry_enabled = telemetry_enabled - - @property - def telemetry_persist(self): - """Gets the telemetry_persist of this SupportassistSettingsTelemetry. # noqa: E501 - - True indicates files are kept after upload. # noqa: E501 - - :return: The telemetry_persist of this SupportassistSettingsTelemetry. # noqa: E501 - :rtype: bool - """ - return self._telemetry_persist - - @telemetry_persist.setter - def telemetry_persist(self, telemetry_persist): - """Sets the telemetry_persist of this SupportassistSettingsTelemetry. - - True indicates files are kept after upload. # noqa: E501 - - :param telemetry_persist: The telemetry_persist of this SupportassistSettingsTelemetry. # noqa: E501 - :type: bool - """ - if telemetry_persist is None: - raise ValueError("Invalid value for `telemetry_persist`, must not be `None`") # noqa: E501 - - self._telemetry_persist = telemetry_persist - - @property - def telemetry_threads(self): - """Gets the telemetry_threads of this SupportassistSettingsTelemetry. # noqa: E501 - - The number of threads for telemetry gathers. # noqa: E501 - - :return: The telemetry_threads of this SupportassistSettingsTelemetry. # noqa: E501 - :rtype: int - """ - return self._telemetry_threads - - @telemetry_threads.setter - def telemetry_threads(self, telemetry_threads): - """Sets the telemetry_threads of this SupportassistSettingsTelemetry. - - The number of threads for telemetry gathers. # noqa: E501 - - :param telemetry_threads: The telemetry_threads of this SupportassistSettingsTelemetry. # noqa: E501 - :type: int - """ - if telemetry_threads is None: - raise ValueError("Invalid value for `telemetry_threads`, must not be `None`") # noqa: E501 - if telemetry_threads is not None and telemetry_threads > 64: # noqa: E501 - raise ValueError("Invalid value for `telemetry_threads`, must be a value less than or equal to `64`") # noqa: E501 - if telemetry_threads is not None and telemetry_threads < 1: # noqa: E501 - raise ValueError("Invalid value for `telemetry_threads`, must be a value greater than or equal to `1`") # noqa: E501 - - self._telemetry_threads = telemetry_threads - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SupportassistSettingsTelemetry, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SupportassistSettingsTelemetry): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_telemetry_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_telemetry_extended.py deleted file mode 100644 index 5f0e7240f..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_settings_telemetry_extended.py +++ /dev/null @@ -1,209 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SupportassistSettingsTelemetryExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'offline_collection_period': 'int', - 'telemetry_enabled': 'bool', - 'telemetry_persist': 'bool', - 'telemetry_threads': 'int' - } - - attribute_map = { - 'offline_collection_period': 'offline_collection_period', - 'telemetry_enabled': 'telemetry_enabled', - 'telemetry_persist': 'telemetry_persist', - 'telemetry_threads': 'telemetry_threads' - } - - def __init__(self, offline_collection_period=None, telemetry_enabled=None, telemetry_persist=None, telemetry_threads=None): # noqa: E501 - """SupportassistSettingsTelemetryExtended - a model defined in Swagger""" # noqa: E501 - - self._offline_collection_period = None - self._telemetry_enabled = None - self._telemetry_persist = None - self._telemetry_threads = None - self.discriminator = None - - if offline_collection_period is not None: - self.offline_collection_period = offline_collection_period - if telemetry_enabled is not None: - self.telemetry_enabled = telemetry_enabled - if telemetry_persist is not None: - self.telemetry_persist = telemetry_persist - if telemetry_threads is not None: - self.telemetry_threads = telemetry_threads - - @property - def offline_collection_period(self): - """Gets the offline_collection_period of this SupportassistSettingsTelemetryExtended. # noqa: E501 - - Change the offline collection period for when connectivity is down. # noqa: E501 - - :return: The offline_collection_period of this SupportassistSettingsTelemetryExtended. # noqa: E501 - :rtype: int - """ - return self._offline_collection_period - - @offline_collection_period.setter - def offline_collection_period(self, offline_collection_period): - """Sets the offline_collection_period of this SupportassistSettingsTelemetryExtended. - - Change the offline collection period for when connectivity is down. # noqa: E501 - - :param offline_collection_period: The offline_collection_period of this SupportassistSettingsTelemetryExtended. # noqa: E501 - :type: int - """ - if offline_collection_period is not None and offline_collection_period > 86400: # noqa: E501 - raise ValueError("Invalid value for `offline_collection_period`, must be a value less than or equal to `86400`") # noqa: E501 - if offline_collection_period is not None and offline_collection_period < 0: # noqa: E501 - raise ValueError("Invalid value for `offline_collection_period`, must be a value greater than or equal to `0`") # noqa: E501 - - self._offline_collection_period = offline_collection_period - - @property - def telemetry_enabled(self): - """Gets the telemetry_enabled of this SupportassistSettingsTelemetryExtended. # noqa: E501 - - Change the status of telemetry. # noqa: E501 - - :return: The telemetry_enabled of this SupportassistSettingsTelemetryExtended. # noqa: E501 - :rtype: bool - """ - return self._telemetry_enabled - - @telemetry_enabled.setter - def telemetry_enabled(self, telemetry_enabled): - """Sets the telemetry_enabled of this SupportassistSettingsTelemetryExtended. - - Change the status of telemetry. # noqa: E501 - - :param telemetry_enabled: The telemetry_enabled of this SupportassistSettingsTelemetryExtended. # noqa: E501 - :type: bool - """ - - self._telemetry_enabled = telemetry_enabled - - @property - def telemetry_persist(self): - """Gets the telemetry_persist of this SupportassistSettingsTelemetryExtended. # noqa: E501 - - Change if files are kept after upload. # noqa: E501 - - :return: The telemetry_persist of this SupportassistSettingsTelemetryExtended. # noqa: E501 - :rtype: bool - """ - return self._telemetry_persist - - @telemetry_persist.setter - def telemetry_persist(self, telemetry_persist): - """Sets the telemetry_persist of this SupportassistSettingsTelemetryExtended. - - Change if files are kept after upload. # noqa: E501 - - :param telemetry_persist: The telemetry_persist of this SupportassistSettingsTelemetryExtended. # noqa: E501 - :type: bool - """ - - self._telemetry_persist = telemetry_persist - - @property - def telemetry_threads(self): - """Gets the telemetry_threads of this SupportassistSettingsTelemetryExtended. # noqa: E501 - - Change the number of threads for telemetry gathers. # noqa: E501 - - :return: The telemetry_threads of this SupportassistSettingsTelemetryExtended. # noqa: E501 - :rtype: int - """ - return self._telemetry_threads - - @telemetry_threads.setter - def telemetry_threads(self, telemetry_threads): - """Sets the telemetry_threads of this SupportassistSettingsTelemetryExtended. - - Change the number of threads for telemetry gathers. # noqa: E501 - - :param telemetry_threads: The telemetry_threads of this SupportassistSettingsTelemetryExtended. # noqa: E501 - :type: int - """ - if telemetry_threads is not None and telemetry_threads > 64: # noqa: E501 - raise ValueError("Invalid value for `telemetry_threads`, must be a value less than or equal to `64`") # noqa: E501 - if telemetry_threads is not None and telemetry_threads < 1: # noqa: E501 - raise ValueError("Invalid value for `telemetry_threads`, must be a value greater than or equal to `1`") # noqa: E501 - - self._telemetry_threads = telemetry_threads - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SupportassistSettingsTelemetryExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SupportassistSettingsTelemetryExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_status.py b/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_status.py deleted file mode 100644 index f00d6aee6..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_status.py +++ /dev/null @@ -1,117 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SupportassistStatus(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'status': 'SupportassistStatusStatus' - } - - attribute_map = { - 'status': 'status' - } - - def __init__(self, status=None): # noqa: E501 - """SupportassistStatus - a model defined in Swagger""" # noqa: E501 - - self._status = None - self.discriminator = None - - if status is not None: - self.status = status - - @property - def status(self): - """Gets the status of this SupportassistStatus. # noqa: E501 - - # noqa: E501 - - :return: The status of this SupportassistStatus. # noqa: E501 - :rtype: SupportassistStatusStatus - """ - return self._status - - @status.setter - def status(self, status): - """Sets the status of this SupportassistStatus. - - # noqa: E501 - - :param status: The status of this SupportassistStatus. # noqa: E501 - :type: SupportassistStatusStatus - """ - - self._status = status - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SupportassistStatus, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SupportassistStatus): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_status_extended.py b/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_status_extended.py deleted file mode 100644 index 988da44ab..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_status_extended.py +++ /dev/null @@ -1,145 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SupportassistStatusExtended(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'enabled': 'bool', - 'supportassist_dismissed': 'bool' - } - - attribute_map = { - 'enabled': 'enabled', - 'supportassist_dismissed': 'supportassist_dismissed' - } - - def __init__(self, enabled=None, supportassist_dismissed=None): # noqa: E501 - """SupportassistStatusExtended - a model defined in Swagger""" # noqa: E501 - - self._enabled = None - self._supportassist_dismissed = None - self.discriminator = None - - if enabled is not None: - self.enabled = enabled - if supportassist_dismissed is not None: - self.supportassist_dismissed = supportassist_dismissed - - @property - def enabled(self): - """Gets the enabled of this SupportassistStatusExtended. # noqa: E501 - - Setting to true or yes will enable Dell Technologies connectivity services. Setting to false or no will disable Dell Technologies connectivity services. # noqa: E501 - - :return: The enabled of this SupportassistStatusExtended. # noqa: E501 - :rtype: bool - """ - return self._enabled - - @enabled.setter - def enabled(self, enabled): - """Sets the enabled of this SupportassistStatusExtended. - - Setting to true or yes will enable Dell Technologies connectivity services. Setting to false or no will disable Dell Technologies connectivity services. # noqa: E501 - - :param enabled: The enabled of this SupportassistStatusExtended. # noqa: E501 - :type: bool - """ - - self._enabled = enabled - - @property - def supportassist_dismissed(self): - """Gets the supportassist_dismissed of this SupportassistStatusExtended. # noqa: E501 - - Whether Dell Technologies connectivity services prompt should be dismissed # noqa: E501 - - :return: The supportassist_dismissed of this SupportassistStatusExtended. # noqa: E501 - :rtype: bool - """ - return self._supportassist_dismissed - - @supportassist_dismissed.setter - def supportassist_dismissed(self, supportassist_dismissed): - """Sets the supportassist_dismissed of this SupportassistStatusExtended. - - Whether Dell Technologies connectivity services prompt should be dismissed # noqa: E501 - - :param supportassist_dismissed: The supportassist_dismissed of this SupportassistStatusExtended. # noqa: E501 - :type: bool - """ - - self._supportassist_dismissed = supportassist_dismissed - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SupportassistStatusExtended, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SupportassistStatusExtended): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_status_status.py b/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_status_status.py deleted file mode 100644 index d6a8fc93f..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_status_status.py +++ /dev/null @@ -1,366 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SupportassistStatusStatus(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'connection_status': 'str', - 'hardware_key_present': 'bool', - 'provisioned': 'bool', - 'srs_disabled': 'bool', - 'supportassist_connected': 'bool', - 'supportassist_dismissed': 'bool', - 'supportassist_enabled': 'bool', - 'swid': 'str', - 'ui_state': 'str' - } - - attribute_map = { - 'connection_status': 'connection_status', - 'hardware_key_present': 'hardware_key_present', - 'provisioned': 'provisioned', - 'srs_disabled': 'srs_disabled', - 'supportassist_connected': 'supportassist_connected', - 'supportassist_dismissed': 'supportassist_dismissed', - 'supportassist_enabled': 'supportassist_enabled', - 'swid': 'swid', - 'ui_state': 'ui_state' - } - - def __init__(self, connection_status=None, hardware_key_present=None, provisioned=None, srs_disabled=None, supportassist_connected=None, supportassist_dismissed=None, supportassist_enabled=None, swid=None, ui_state=None): # noqa: E501 - """SupportassistStatusStatus - a model defined in Swagger""" # noqa: E501 - - self._connection_status = None - self._hardware_key_present = None - self._provisioned = None - self._srs_disabled = None - self._supportassist_connected = None - self._supportassist_dismissed = None - self._supportassist_enabled = None - self._swid = None - self._ui_state = None - self.discriminator = None - - self.connection_status = connection_status - self.hardware_key_present = hardware_key_present - self.provisioned = provisioned - self.srs_disabled = srs_disabled - self.supportassist_connected = supportassist_connected - self.supportassist_dismissed = supportassist_dismissed - self.supportassist_enabled = supportassist_enabled - self.swid = swid - self.ui_state = ui_state - - @property - def connection_status(self): - """Gets the connection_status of this SupportassistStatusStatus. # noqa: E501 - - The current connection status of Dell Technologies connectivity services. # noqa: E501 - - :return: The connection_status of this SupportassistStatusStatus. # noqa: E501 - :rtype: str - """ - return self._connection_status - - @connection_status.setter - def connection_status(self, connection_status): - """Sets the connection_status of this SupportassistStatusStatus. - - The current connection status of Dell Technologies connectivity services. # noqa: E501 - - :param connection_status: The connection_status of this SupportassistStatusStatus. # noqa: E501 - :type: str - """ - if connection_status is None: - raise ValueError("Invalid value for `connection_status`, must not be `None`") # noqa: E501 - allowed_values = ["Connected", "Connecting", "Disconnected"] # noqa: E501 - if connection_status not in allowed_values: - raise ValueError( - "Invalid value for `connection_status` ({0}), must be one of {1}" # noqa: E501 - .format(connection_status, allowed_values) - ) - - self._connection_status = connection_status - - @property - def hardware_key_present(self): - """Gets the hardware_key_present of this SupportassistStatusStatus. # noqa: E501 - - Whether Hardware key is present. # noqa: E501 - - :return: The hardware_key_present of this SupportassistStatusStatus. # noqa: E501 - :rtype: bool - """ - return self._hardware_key_present - - @hardware_key_present.setter - def hardware_key_present(self, hardware_key_present): - """Sets the hardware_key_present of this SupportassistStatusStatus. - - Whether Hardware key is present. # noqa: E501 - - :param hardware_key_present: The hardware_key_present of this SupportassistStatusStatus. # noqa: E501 - :type: bool - """ - if hardware_key_present is None: - raise ValueError("Invalid value for `hardware_key_present`, must not be `None`") # noqa: E501 - - self._hardware_key_present = hardware_key_present - - @property - def provisioned(self): - """Gets the provisioned of this SupportassistStatusStatus. # noqa: E501 - - True indicates Dell Technologies connectivity services provisioning is done. # noqa: E501 - - :return: The provisioned of this SupportassistStatusStatus. # noqa: E501 - :rtype: bool - """ - return self._provisioned - - @provisioned.setter - def provisioned(self, provisioned): - """Sets the provisioned of this SupportassistStatusStatus. - - True indicates Dell Technologies connectivity services provisioning is done. # noqa: E501 - - :param provisioned: The provisioned of this SupportassistStatusStatus. # noqa: E501 - :type: bool - """ - if provisioned is None: - raise ValueError("Invalid value for `provisioned`, must not be `None`") # noqa: E501 - - self._provisioned = provisioned - - @property - def srs_disabled(self): - """Gets the srs_disabled of this SupportassistStatusStatus. # noqa: E501 - - False indicates Remote Support is disabled. # noqa: E501 - - :return: The srs_disabled of this SupportassistStatusStatus. # noqa: E501 - :rtype: bool - """ - return self._srs_disabled - - @srs_disabled.setter - def srs_disabled(self, srs_disabled): - """Sets the srs_disabled of this SupportassistStatusStatus. - - False indicates Remote Support is disabled. # noqa: E501 - - :param srs_disabled: The srs_disabled of this SupportassistStatusStatus. # noqa: E501 - :type: bool - """ - if srs_disabled is None: - raise ValueError("Invalid value for `srs_disabled`, must not be `None`") # noqa: E501 - - self._srs_disabled = srs_disabled - - @property - def supportassist_connected(self): - """Gets the supportassist_connected of this SupportassistStatusStatus. # noqa: E501 - - Whether Dell Technologies connectivity services is connected. # noqa: E501 - - :return: The supportassist_connected of this SupportassistStatusStatus. # noqa: E501 - :rtype: bool - """ - return self._supportassist_connected - - @supportassist_connected.setter - def supportassist_connected(self, supportassist_connected): - """Sets the supportassist_connected of this SupportassistStatusStatus. - - Whether Dell Technologies connectivity services is connected. # noqa: E501 - - :param supportassist_connected: The supportassist_connected of this SupportassistStatusStatus. # noqa: E501 - :type: bool - """ - if supportassist_connected is None: - raise ValueError("Invalid value for `supportassist_connected`, must not be `None`") # noqa: E501 - - self._supportassist_connected = supportassist_connected - - @property - def supportassist_dismissed(self): - """Gets the supportassist_dismissed of this SupportassistStatusStatus. # noqa: E501 - - Whether Dell Technologies connectivity services prompt should be dismissed. # noqa: E501 - - :return: The supportassist_dismissed of this SupportassistStatusStatus. # noqa: E501 - :rtype: bool - """ - return self._supportassist_dismissed - - @supportassist_dismissed.setter - def supportassist_dismissed(self, supportassist_dismissed): - """Sets the supportassist_dismissed of this SupportassistStatusStatus. - - Whether Dell Technologies connectivity services prompt should be dismissed. # noqa: E501 - - :param supportassist_dismissed: The supportassist_dismissed of this SupportassistStatusStatus. # noqa: E501 - :type: bool - """ - if supportassist_dismissed is None: - raise ValueError("Invalid value for `supportassist_dismissed`, must not be `None`") # noqa: E501 - - self._supportassist_dismissed = supportassist_dismissed - - @property - def supportassist_enabled(self): - """Gets the supportassist_enabled of this SupportassistStatusStatus. # noqa: E501 - - Whether Dell Technologies connectivity services is enabled. # noqa: E501 - - :return: The supportassist_enabled of this SupportassistStatusStatus. # noqa: E501 - :rtype: bool - """ - return self._supportassist_enabled - - @supportassist_enabled.setter - def supportassist_enabled(self, supportassist_enabled): - """Sets the supportassist_enabled of this SupportassistStatusStatus. - - Whether Dell Technologies connectivity services is enabled. # noqa: E501 - - :param supportassist_enabled: The supportassist_enabled of this SupportassistStatusStatus. # noqa: E501 - :type: bool - """ - if supportassist_enabled is None: - raise ValueError("Invalid value for `supportassist_enabled`, must not be `None`") # noqa: E501 - - self._supportassist_enabled = supportassist_enabled - - @property - def swid(self): - """Gets the swid of this SupportassistStatusStatus. # noqa: E501 - - The software ID used by Dell Technologies connectivity services. # noqa: E501 - - :return: The swid of this SupportassistStatusStatus. # noqa: E501 - :rtype: str - """ - return self._swid - - @swid.setter - def swid(self, swid): - """Sets the swid of this SupportassistStatusStatus. - - The software ID used by Dell Technologies connectivity services. # noqa: E501 - - :param swid: The swid of this SupportassistStatusStatus. # noqa: E501 - :type: str - """ - if swid is None: - raise ValueError("Invalid value for `swid`, must not be `None`") # noqa: E501 - if swid is not None and len(swid) > 50: - raise ValueError("Invalid value for `swid`, length must be less than or equal to `50`") # noqa: E501 - if swid is not None and len(swid) < 0: - raise ValueError("Invalid value for `swid`, length must be greater than or equal to `0`") # noqa: E501 - - self._swid = swid - - @property - def ui_state(self): - """Gets the ui_state of this SupportassistStatusStatus. # noqa: E501 - - Connectivity system state. # noqa: E501 - - :return: The ui_state of this SupportassistStatusStatus. # noqa: E501 - :rtype: str - """ - return self._ui_state - - @ui_state.setter - def ui_state(self, ui_state): - """Sets the ui_state of this SupportassistStatusStatus. - - Connectivity system state. # noqa: E501 - - :param ui_state: The ui_state of this SupportassistStatusStatus. # noqa: E501 - :type: str - """ - if ui_state is None: - raise ValueError("Invalid value for `ui_state`, must not be `None`") # noqa: E501 - allowed_values = ["terms", "setup", "monitor"] # noqa: E501 - if ui_state not in allowed_values: - raise ValueError( - "Invalid value for `ui_state` ({0}), must be one of {1}" # noqa: E501 - .format(ui_state, allowed_values) - ) - - self._ui_state = ui_state - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SupportassistStatusStatus, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SupportassistStatusStatus): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_task.py b/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_task.py deleted file mode 100644 index 348992b37..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_task.py +++ /dev/null @@ -1,117 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SupportassistTask(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'tasks': 'list[SupportassistLicenseTask]' - } - - attribute_map = { - 'tasks': 'tasks' - } - - def __init__(self, tasks=None): # noqa: E501 - """SupportassistTask - a model defined in Swagger""" # noqa: E501 - - self._tasks = None - self.discriminator = None - - if tasks is not None: - self.tasks = tasks - - @property - def tasks(self): - """Gets the tasks of this SupportassistTask. # noqa: E501 - - List of recent Dell Technologies connectivity services tasks # noqa: E501 - - :return: The tasks of this SupportassistTask. # noqa: E501 - :rtype: list[SupportassistLicenseTask] - """ - return self._tasks - - @tasks.setter - def tasks(self, tasks): - """Sets the tasks of this SupportassistTask. - - List of recent Dell Technologies connectivity services tasks # noqa: E501 - - :param tasks: The tasks of this SupportassistTask. # noqa: E501 - :type: list[SupportassistLicenseTask] - """ - - self._tasks = tasks - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SupportassistTask, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SupportassistTask): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_task_item_task_params.py b/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_task_item_task_params.py deleted file mode 100644 index 5653a7e54..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_task_item_task_params.py +++ /dev/null @@ -1,248 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SupportassistTaskItemTaskParams(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'delete_on_transaction': 'bool', - 'file_path': 'str', - 'payload_type': 'str', - 'sub_type': 'str', - 'transaction_id': 'str' - } - - attribute_map = { - 'delete_on_transaction': 'delete_on_transaction', - 'file_path': 'file_path', - 'payload_type': 'payload_type', - 'sub_type': 'sub_type', - 'transaction_id': 'transaction_id' - } - - def __init__(self, delete_on_transaction=False, file_path=None, payload_type=None, sub_type=None, transaction_id=None): # noqa: E501 - """SupportassistTaskItemTaskParams - a model defined in Swagger""" # noqa: E501 - - self._delete_on_transaction = None - self._file_path = None - self._payload_type = None - self._sub_type = None - self._transaction_id = None - self.discriminator = None - - if delete_on_transaction is not None: - self.delete_on_transaction = delete_on_transaction - self.file_path = file_path - self.payload_type = payload_type - self.sub_type = sub_type - if transaction_id is not None: - self.transaction_id = transaction_id - - @property - def delete_on_transaction(self): - """Gets the delete_on_transaction of this SupportassistTaskItemTaskParams. # noqa: E501 - - Indicates whether the payload should be deleted after the transaction is completed. # noqa: E501 - - :return: The delete_on_transaction of this SupportassistTaskItemTaskParams. # noqa: E501 - :rtype: bool - """ - return self._delete_on_transaction - - @delete_on_transaction.setter - def delete_on_transaction(self, delete_on_transaction): - """Sets the delete_on_transaction of this SupportassistTaskItemTaskParams. - - Indicates whether the payload should be deleted after the transaction is completed. # noqa: E501 - - :param delete_on_transaction: The delete_on_transaction of this SupportassistTaskItemTaskParams. # noqa: E501 - :type: bool - """ - - self._delete_on_transaction = delete_on_transaction - - @property - def file_path(self): - """Gets the file_path of this SupportassistTaskItemTaskParams. # noqa: E501 - - The path to the file that will be uploaded. # noqa: E501 - - :return: The file_path of this SupportassistTaskItemTaskParams. # noqa: E501 - :rtype: str - """ - return self._file_path - - @file_path.setter - def file_path(self, file_path): - """Sets the file_path of this SupportassistTaskItemTaskParams. - - The path to the file that will be uploaded. # noqa: E501 - - :param file_path: The file_path of this SupportassistTaskItemTaskParams. # noqa: E501 - :type: str - """ - if file_path is None: - raise ValueError("Invalid value for `file_path`, must not be `None`") # noqa: E501 - if file_path is not None and len(file_path) > 4096: - raise ValueError("Invalid value for `file_path`, length must be less than or equal to `4096`") # noqa: E501 - if file_path is not None and len(file_path) < 1: - raise ValueError("Invalid value for `file_path`, length must be greater than or equal to `1`") # noqa: E501 - - self._file_path = file_path - - @property - def payload_type(self): - """Gets the payload_type of this SupportassistTaskItemTaskParams. # noqa: E501 - - The binary payload format being sent. # noqa: E501 - - :return: The payload_type of this SupportassistTaskItemTaskParams. # noqa: E501 - :rtype: str - """ - return self._payload_type - - @payload_type.setter - def payload_type(self, payload_type): - """Sets the payload_type of this SupportassistTaskItemTaskParams. - - The binary payload format being sent. # noqa: E501 - - :param payload_type: The payload_type of this SupportassistTaskItemTaskParams. # noqa: E501 - :type: str - """ - if payload_type is None: - raise ValueError("Invalid value for `payload_type`, must not be `None`") # noqa: E501 - if payload_type is not None and len(payload_type) > 255: - raise ValueError("Invalid value for `payload_type`, length must be less than or equal to `255`") # noqa: E501 - if payload_type is not None and len(payload_type) < 0: - raise ValueError("Invalid value for `payload_type`, length must be greater than or equal to `0`") # noqa: E501 - - self._payload_type = payload_type - - @property - def sub_type(self): - """Gets the sub_type of this SupportassistTaskItemTaskParams. # noqa: E501 - - sub_type is not yet defined, but is intended to allow differentiation of syslog types. # noqa: E501 - - :return: The sub_type of this SupportassistTaskItemTaskParams. # noqa: E501 - :rtype: str - """ - return self._sub_type - - @sub_type.setter - def sub_type(self, sub_type): - """Sets the sub_type of this SupportassistTaskItemTaskParams. - - sub_type is not yet defined, but is intended to allow differentiation of syslog types. # noqa: E501 - - :param sub_type: The sub_type of this SupportassistTaskItemTaskParams. # noqa: E501 - :type: str - """ - if sub_type is None: - raise ValueError("Invalid value for `sub_type`, must not be `None`") # noqa: E501 - if sub_type is not None and len(sub_type) > 255: - raise ValueError("Invalid value for `sub_type`, length must be less than or equal to `255`") # noqa: E501 - if sub_type is not None and len(sub_type) < 0: - raise ValueError("Invalid value for `sub_type`, length must be greater than or equal to `0`") # noqa: E501 - - self._sub_type = sub_type - - @property - def transaction_id(self): - """Gets the transaction_id of this SupportassistTaskItemTaskParams. # noqa: E501 - - Optional ID that will inform Dell Technologies connectivity services to associate payload uploads together. # noqa: E501 - - :return: The transaction_id of this SupportassistTaskItemTaskParams. # noqa: E501 - :rtype: str - """ - return self._transaction_id - - @transaction_id.setter - def transaction_id(self, transaction_id): - """Sets the transaction_id of this SupportassistTaskItemTaskParams. - - Optional ID that will inform Dell Technologies connectivity services to associate payload uploads together. # noqa: E501 - - :param transaction_id: The transaction_id of this SupportassistTaskItemTaskParams. # noqa: E501 - :type: str - """ - if transaction_id is not None and len(transaction_id) > 255: - raise ValueError("Invalid value for `transaction_id`, length must be less than or equal to `255`") # noqa: E501 - if transaction_id is not None and len(transaction_id) < 0: - raise ValueError("Invalid value for `transaction_id`, length must be greater than or equal to `0`") # noqa: E501 - - self._transaction_id = transaction_id - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SupportassistTaskItemTaskParams, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SupportassistTaskItemTaskParams): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_terms.py b/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_terms.py deleted file mode 100644 index 38e630e40..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_terms.py +++ /dev/null @@ -1,117 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SupportassistTerms(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'terms': 'SupportassistTermsTerms' - } - - attribute_map = { - 'terms': 'terms' - } - - def __init__(self, terms=None): # noqa: E501 - """SupportassistTerms - a model defined in Swagger""" # noqa: E501 - - self._terms = None - self.discriminator = None - - if terms is not None: - self.terms = terms - - @property - def terms(self): - """Gets the terms of this SupportassistTerms. # noqa: E501 - - # noqa: E501 - - :return: The terms of this SupportassistTerms. # noqa: E501 - :rtype: SupportassistTermsTerms - """ - return self._terms - - @terms.setter - def terms(self, terms): - """Sets the terms of this SupportassistTerms. - - # noqa: E501 - - :param terms: The terms of this SupportassistTerms. # noqa: E501 - :type: SupportassistTermsTerms - """ - - self._terms = terms - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SupportassistTerms, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SupportassistTerms): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_terms_terms.py b/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_terms_terms.py deleted file mode 100644 index 9ec3ae712..000000000 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_terms_terms.py +++ /dev/null @@ -1,151 +0,0 @@ -# coding: utf-8 - -""" - Isilon SDK - - Isilon SDK - Language bindings for the OneFS API # noqa: E501 - - OpenAPI spec version: 22 - Contact: sdk@isilon.com - Generated by: https://github.com/swagger-api/swagger-codegen.git -""" - - -import pprint -import re # noqa: F401 - -import six - - -class SupportassistTermsTerms(object): - """NOTE: This class is auto generated by the swagger code generator program. - - Do not edit the class manually. - """ - - """ - Attributes: - swagger_types (dict): The key is attribute name - and the value is attribute type. - attribute_map (dict): The key is attribute name - and the value is json key in definition. - """ - swagger_types = { - 'accepted': 'bool', - 'terms_and_conditions': 'str' - } - - attribute_map = { - 'accepted': 'accepted', - 'terms_and_conditions': 'terms_and_conditions' - } - - def __init__(self, accepted=None, terms_and_conditions=None): # noqa: E501 - """SupportassistTermsTerms - a model defined in Swagger""" # noqa: E501 - - self._accepted = None - self._terms_and_conditions = None - self.discriminator = None - - self.accepted = accepted - self.terms_and_conditions = terms_and_conditions - - @property - def accepted(self): - """Gets the accepted of this SupportassistTermsTerms. # noqa: E501 - - True indicates the Telemetry Notice is accepted. # noqa: E501 - - :return: The accepted of this SupportassistTermsTerms. # noqa: E501 - :rtype: bool - """ - return self._accepted - - @accepted.setter - def accepted(self, accepted): - """Sets the accepted of this SupportassistTermsTerms. - - True indicates the Telemetry Notice is accepted. # noqa: E501 - - :param accepted: The accepted of this SupportassistTermsTerms. # noqa: E501 - :type: bool - """ - if accepted is None: - raise ValueError("Invalid value for `accepted`, must not be `None`") # noqa: E501 - - self._accepted = accepted - - @property - def terms_and_conditions(self): - """Gets the terms_and_conditions of this SupportassistTermsTerms. # noqa: E501 - - The Telemetry Notice text for Dell Technologies connectivity services. # noqa: E501 - - :return: The terms_and_conditions of this SupportassistTermsTerms. # noqa: E501 - :rtype: str - """ - return self._terms_and_conditions - - @terms_and_conditions.setter - def terms_and_conditions(self, terms_and_conditions): - """Sets the terms_and_conditions of this SupportassistTermsTerms. - - The Telemetry Notice text for Dell Technologies connectivity services. # noqa: E501 - - :param terms_and_conditions: The terms_and_conditions of this SupportassistTermsTerms. # noqa: E501 - :type: str - """ - if terms_and_conditions is None: - raise ValueError("Invalid value for `terms_and_conditions`, must not be `None`") # noqa: E501 - if terms_and_conditions is not None and len(terms_and_conditions) > 4000: - raise ValueError("Invalid value for `terms_and_conditions`, length must be less than or equal to `4000`") # noqa: E501 - if terms_and_conditions is not None and len(terms_and_conditions) < 1: - raise ValueError("Invalid value for `terms_and_conditions`, length must be greater than or equal to `1`") # noqa: E501 - - self._terms_and_conditions = terms_and_conditions - - def to_dict(self): - """Returns the model properties as a dict""" - result = {} - - for attr, _ in six.iteritems(self.swagger_types): - value = getattr(self, attr) - if isinstance(value, list): - result[attr] = list(map( - lambda x: x.to_dict() if hasattr(x, "to_dict") else x, - value - )) - elif hasattr(value, "to_dict"): - result[attr] = value.to_dict() - elif isinstance(value, dict): - result[attr] = dict(map( - lambda item: (item[0], item[1].to_dict()) - if hasattr(item[1], "to_dict") else item, - value.items() - )) - else: - result[attr] = value - if issubclass(SupportassistTermsTerms, dict): - for key, value in self.items(): - result[key] = value - - return result - - def to_str(self): - """Returns the string representation of the model""" - return pprint.pformat(self.to_dict()) - - def __repr__(self): - """For `print` and `pprint`""" - return self.to_str() - - def __eq__(self, other): - """Returns true if both objects are equal""" - if not isinstance(other, SupportassistTermsTerms): - return False - - return self.__dict__ == other.__dict__ - - def __ne__(self, other): - """Returns true if both objects are not equal""" - return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/README.md b/isilon_sdk/isilon_sdk/v9_4_0/README.md similarity index 78% rename from isilon_sdk/isilon_sdk/v9_11_0/README.md rename to isilon_sdk/isilon_sdk/v9_4_0/README.md index e3dddb46e..879cd648e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/README.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/README.md @@ -12,13 +12,13 @@ maintenance, and monitoring of your Isilon cluster. [Stat Key Browser](https://github.com/isilon/isilon_stat_browser.git) GitHub repository. -# isilon-sdk.v9-11-0 +# isilon-sdk.v9-4-0 Isilon SDK - Language bindings for the OneFS API This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project: -- API version: 22 -- Package version: 0.6.0 +- API version: 15 +- Package version: 0.5.0 - Build package: io.swagger.codegen.languages.PythonClientCodegen For more information, please visit [https://github.com/Isilon/isilon_sdk](https://github.com/Isilon/isilon_sdk) @@ -37,7 +37,7 @@ pip install isilon-sdk Then import the package: ```python -import isilon_sdk.v9_11_0 +import isilon_sdk.v9_4_0 ``` ## Getting Started @@ -50,22 +50,22 @@ from pprint import pprint import time import urllib3 -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException urllib3.disable_warnings() # configure cluster connection: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.host = 'https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080' configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' configuration.verify_ssl = False # create an instance of the API class -api_client = isilon_sdk.v9_11_0.ApiClient(configuration) -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(api_client) +api_client = isilon_sdk.v9_4_0.ApiClient(configuration) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(api_client) # get all exports sort = 'description' @@ -112,148 +112,110 @@ Class | Method | HTTP request | Description *ApiApi* | [**create_sessions_rekey_item**](docs/ApiApi.md#create_sessions_rekey_item) | **POST** /platform/14/api/sessions/rekey | *ApiApi* | [**delete_sessions_invalidation**](docs/ApiApi.md#delete_sessions_invalidation) | **DELETE** /platform/14/api/sessions/invalidations/{SessionsInvalidationId} | *ApiApi* | [**get_sessions_invalidation**](docs/ApiApi.md#get_sessions_invalidation) | **GET** /platform/14/api/sessions/invalidations/{SessionsInvalidationId} | -*ApiApi* | [**get_settings_sessions**](docs/ApiApi.md#get_settings_sessions) | **GET** /platform/16/api/settings/sessions | +*ApiApi* | [**get_settings_sessions**](docs/ApiApi.md#get_settings_sessions) | **GET** /platform/14/api/settings/sessions | *ApiApi* | [**list_sessions_invalidations**](docs/ApiApi.md#list_sessions_invalidations) | **GET** /platform/14/api/sessions/invalidations | *ApiApi* | [**update_sessions_invalidation**](docs/ApiApi.md#update_sessions_invalidation) | **PUT** /platform/14/api/sessions/invalidations/{SessionsInvalidationId} | -*ApiApi* | [**update_settings_sessions**](docs/ApiApi.md#update_settings_sessions) | **PUT** /platform/16/api/settings/sessions | +*ApiApi* | [**update_settings_sessions**](docs/ApiApi.md#update_settings_sessions) | **PUT** /platform/14/api/settings/sessions | *AuditApi* | [**create_audit_topic**](docs/AuditApi.md#create_audit_topic) | **POST** /platform/1/audit/topics | -*AuditApi* | [**create_certificates_syslog_item**](docs/AuditApi.md#create_certificates_syslog_item) | **POST** /platform/16/audit/certificates/syslog | *AuditApi* | [**delete_audit_logs**](docs/AuditApi.md#delete_audit_logs) | **DELETE** /platform/11/audit/logs | *AuditApi* | [**delete_audit_topic**](docs/AuditApi.md#delete_audit_topic) | **DELETE** /platform/1/audit/topics/{AuditTopicId} | -*AuditApi* | [**delete_certificates_syslog_by_id**](docs/AuditApi.md#delete_certificates_syslog_by_id) | **DELETE** /platform/16/audit/certificates/syslog/{CertificatesSyslogId} | *AuditApi* | [**get_audit_logs**](docs/AuditApi.md#get_audit_logs) | **GET** /platform/11/audit/logs | *AuditApi* | [**get_audit_progress**](docs/AuditApi.md#get_audit_progress) | **GET** /platform/4/audit/progress | -*AuditApi* | [**get_audit_settings**](docs/AuditApi.md#get_audit_settings) | **GET** /platform/16/audit/settings | +*AuditApi* | [**get_audit_settings**](docs/AuditApi.md#get_audit_settings) | **GET** /platform/7/audit/settings | *AuditApi* | [**get_audit_topic**](docs/AuditApi.md#get_audit_topic) | **GET** /platform/1/audit/topics/{AuditTopicId} | -*AuditApi* | [**get_certificates_syslog_by_id**](docs/AuditApi.md#get_certificates_syslog_by_id) | **GET** /platform/16/audit/certificates/syslog/{CertificatesSyslogId} | *AuditApi* | [**get_progress_global**](docs/AuditApi.md#get_progress_global) | **GET** /platform/4/audit/progress/global | -*AuditApi* | [**get_settings_global**](docs/AuditApi.md#get_settings_global) | **GET** /platform/16/audit/settings/global | +*AuditApi* | [**get_settings_global**](docs/AuditApi.md#get_settings_global) | **GET** /platform/11/audit/settings/global | *AuditApi* | [**list_audit_topics**](docs/AuditApi.md#list_audit_topics) | **GET** /platform/1/audit/topics | -*AuditApi* | [**list_certificates_syslog**](docs/AuditApi.md#list_certificates_syslog) | **GET** /platform/16/audit/certificates/syslog | -*AuditApi* | [**update_audit_settings**](docs/AuditApi.md#update_audit_settings) | **PUT** /platform/16/audit/settings | +*AuditApi* | [**update_audit_settings**](docs/AuditApi.md#update_audit_settings) | **PUT** /platform/7/audit/settings | *AuditApi* | [**update_audit_topic**](docs/AuditApi.md#update_audit_topic) | **PUT** /platform/1/audit/topics/{AuditTopicId} | -*AuditApi* | [**update_certificates_syslog_by_id**](docs/AuditApi.md#update_certificates_syslog_by_id) | **PUT** /platform/16/audit/certificates/syslog/{CertificatesSyslogId} | -*AuditApi* | [**update_settings_global**](docs/AuditApi.md#update_settings_global) | **PUT** /platform/16/audit/settings/global | +*AuditApi* | [**update_settings_global**](docs/AuditApi.md#update_settings_global) | **PUT** /platform/11/audit/settings/global | *AuthApi* | [**create_auth_cache_item**](docs/AuthApi.md#create_auth_cache_item) | **POST** /platform/4/auth/cache | -*AuthApi* | [**create_auth_group**](docs/AuthApi.md#create_auth_group) | **POST** /platform/17/auth/groups | +*AuthApi* | [**create_auth_group**](docs/AuthApi.md#create_auth_group) | **POST** /platform/1/auth/groups | *AuthApi* | [**create_auth_refresh_item**](docs/AuthApi.md#create_auth_refresh_item) | **POST** /platform/3/auth/refresh | -*AuthApi* | [**create_auth_role**](docs/AuthApi.md#create_auth_role) | **POST** /platform/18/auth/roles | -*AuthApi* | [**create_auth_user**](docs/AuthApi.md#create_auth_user) | **POST** /platform/17/auth/users | +*AuthApi* | [**create_auth_role**](docs/AuthApi.md#create_auth_role) | **POST** /platform/14/auth/roles | +*AuthApi* | [**create_auth_user**](docs/AuthApi.md#create_auth_user) | **POST** /platform/7/auth/users | *AuthApi* | [**create_mapping_identities**](docs/AuthApi.md#create_mapping_identities) | **POST** /platform/1/auth/mapping/identities | *AuthApi* | [**create_mapping_identity**](docs/AuthApi.md#create_mapping_identity) | **POST** /platform/1/auth/mapping/identities/{MappingIdentityId} | -*AuthApi* | [**create_oauth_certificate**](docs/AuthApi.md#create_oauth_certificate) | **POST** /platform/19/auth/oauth/certificates | -*AuthApi* | [**create_oauth_oauth2_client**](docs/AuthApi.md#create_oauth_oauth2_client) | **POST** /platform/19/auth/oauth/oauth2clients | -*AuthApi* | [**create_oauth_oauth2_token_exchange**](docs/AuthApi.md#create_oauth_oauth2_token_exchange) | **POST** /platform/19/auth/oauth/oauth2-token-exchanges | *AuthApi* | [**create_providers_ads_item**](docs/AuthApi.md#create_providers_ads_item) | **POST** /platform/14/auth/providers/ads | -*AuthApi* | [**create_providers_file_item**](docs/AuthApi.md#create_providers_file_item) | **POST** /platform/16/auth/providers/file | +*AuthApi* | [**create_providers_file_item**](docs/AuthApi.md#create_providers_file_item) | **POST** /platform/7/auth/providers/file | *AuthApi* | [**create_providers_krb5_item**](docs/AuthApi.md#create_providers_krb5_item) | **POST** /platform/7/auth/providers/krb5 | -*AuthApi* | [**create_providers_ldap_item**](docs/AuthApi.md#create_providers_ldap_item) | **POST** /platform/16/auth/providers/ldap | +*AuthApi* | [**create_providers_ldap_item**](docs/AuthApi.md#create_providers_ldap_item) | **POST** /platform/11/auth/providers/ldap | *AuthApi* | [**create_providers_nis_item**](docs/AuthApi.md#create_providers_nis_item) | **POST** /platform/7/auth/providers/nis | -*AuthApi* | [**create_providers_saml_services_cert_extract_item**](docs/AuthApi.md#create_providers_saml_services_cert_extract_item) | **POST** /platform/16/auth/providers/saml-services/cert-extract | -*AuthApi* | [**create_providers_saml_services_idp**](docs/AuthApi.md#create_providers_saml_services_idp) | **POST** /platform/16/auth/providers/saml-services/idps | -*AuthApi* | [**create_providers_saml_services_metadata_extract_item**](docs/AuthApi.md#create_providers_saml_services_metadata_extract_item) | **POST** /platform/16/auth/providers/saml-services/metadata-extract | -*AuthApi* | [**create_providers_saml_services_sp_signing_key_rekey_item**](docs/AuthApi.md#create_providers_saml_services_sp_signing_key_rekey_item) | **POST** /platform/16/auth/providers/saml-services/sp/signing-key/rekey | *AuthApi* | [**create_settings_krb5_domain**](docs/AuthApi.md#create_settings_krb5_domain) | **POST** /platform/1/auth/settings/krb5/domains | *AuthApi* | [**create_settings_krb5_realm**](docs/AuthApi.md#create_settings_krb5_realm) | **POST** /platform/1/auth/settings/krb5/realms | -*AuthApi* | [**delete_auth_group**](docs/AuthApi.md#delete_auth_group) | **DELETE** /platform/17/auth/groups/{AuthGroupId} | -*AuthApi* | [**delete_auth_groups**](docs/AuthApi.md#delete_auth_groups) | **DELETE** /platform/17/auth/groups | -*AuthApi* | [**delete_auth_role**](docs/AuthApi.md#delete_auth_role) | **DELETE** /platform/18/auth/roles/{AuthRoleId} | -*AuthApi* | [**delete_auth_user**](docs/AuthApi.md#delete_auth_user) | **DELETE** /platform/17/auth/users/{AuthUserId} | -*AuthApi* | [**delete_auth_users**](docs/AuthApi.md#delete_auth_users) | **DELETE** /platform/17/auth/users | +*AuthApi* | [**delete_auth_group**](docs/AuthApi.md#delete_auth_group) | **DELETE** /platform/1/auth/groups/{AuthGroupId} | +*AuthApi* | [**delete_auth_groups**](docs/AuthApi.md#delete_auth_groups) | **DELETE** /platform/1/auth/groups | +*AuthApi* | [**delete_auth_role**](docs/AuthApi.md#delete_auth_role) | **DELETE** /platform/14/auth/roles/{AuthRoleId} | +*AuthApi* | [**delete_auth_user**](docs/AuthApi.md#delete_auth_user) | **DELETE** /platform/7/auth/users/{AuthUserId} | +*AuthApi* | [**delete_auth_users**](docs/AuthApi.md#delete_auth_users) | **DELETE** /platform/7/auth/users | *AuthApi* | [**delete_mapping_identities**](docs/AuthApi.md#delete_mapping_identities) | **DELETE** /platform/1/auth/mapping/identities | *AuthApi* | [**delete_mapping_identity**](docs/AuthApi.md#delete_mapping_identity) | **DELETE** /platform/1/auth/mapping/identities/{MappingIdentityId} | -*AuthApi* | [**delete_oauth_certificate**](docs/AuthApi.md#delete_oauth_certificate) | **DELETE** /platform/19/auth/oauth/certificates/{OauthCertificateId} | -*AuthApi* | [**delete_oauth_oauth2_client**](docs/AuthApi.md#delete_oauth_oauth2_client) | **DELETE** /platform/19/auth/oauth/oauth2clients/{OauthOauth2ClientId} | -*AuthApi* | [**delete_oauth_oauth2_token_exchange**](docs/AuthApi.md#delete_oauth_oauth2_token_exchange) | **DELETE** /platform/19/auth/oauth/oauth2-token-exchanges/{OauthOauth2TokenExchangeId} | *AuthApi* | [**delete_providers_ads_by_id**](docs/AuthApi.md#delete_providers_ads_by_id) | **DELETE** /platform/14/auth/providers/ads/{ProvidersAdsId} | -*AuthApi* | [**delete_providers_file_by_id**](docs/AuthApi.md#delete_providers_file_by_id) | **DELETE** /platform/16/auth/providers/file/{ProvidersFileId} | +*AuthApi* | [**delete_providers_file_by_id**](docs/AuthApi.md#delete_providers_file_by_id) | **DELETE** /platform/7/auth/providers/file/{ProvidersFileId} | *AuthApi* | [**delete_providers_krb5_by_id**](docs/AuthApi.md#delete_providers_krb5_by_id) | **DELETE** /platform/7/auth/providers/krb5/{ProvidersKrb5Id} | -*AuthApi* | [**delete_providers_ldap_by_id**](docs/AuthApi.md#delete_providers_ldap_by_id) | **DELETE** /platform/16/auth/providers/ldap/{ProvidersLdapId} | +*AuthApi* | [**delete_providers_ldap_by_id**](docs/AuthApi.md#delete_providers_ldap_by_id) | **DELETE** /platform/11/auth/providers/ldap/{ProvidersLdapId} | *AuthApi* | [**delete_providers_nis_by_id**](docs/AuthApi.md#delete_providers_nis_by_id) | **DELETE** /platform/7/auth/providers/nis/{ProvidersNisId} | -*AuthApi* | [**delete_providers_saml_services_idp**](docs/AuthApi.md#delete_providers_saml_services_idp) | **DELETE** /platform/16/auth/providers/saml-services/idps/{ProvidersSamlServicesIdpId} | *AuthApi* | [**delete_settings_krb5_domain**](docs/AuthApi.md#delete_settings_krb5_domain) | **DELETE** /platform/1/auth/settings/krb5/domains/{SettingsKrb5DomainId} | *AuthApi* | [**delete_settings_krb5_realm**](docs/AuthApi.md#delete_settings_krb5_realm) | **DELETE** /platform/1/auth/settings/krb5/realms/{SettingsKrb5RealmId} | *AuthApi* | [**get_auth_access_user**](docs/AuthApi.md#get_auth_access_user) | **GET** /platform/1/auth/access/{AuthAccessUser} | *AuthApi* | [**get_auth_error_error**](docs/AuthApi.md#get_auth_error_error) | **GET** /platform/7/auth/error/{AuthErrorError} | -*AuthApi* | [**get_auth_group**](docs/AuthApi.md#get_auth_group) | **GET** /platform/17/auth/groups/{AuthGroupId} | -*AuthApi* | [**get_auth_id**](docs/AuthApi.md#get_auth_id) | **GET** /platform/18/auth/id | +*AuthApi* | [**get_auth_group**](docs/AuthApi.md#get_auth_group) | **GET** /platform/1/auth/groups/{AuthGroupId} | +*AuthApi* | [**get_auth_id**](docs/AuthApi.md#get_auth_id) | **GET** /platform/14/auth/id | *AuthApi* | [**get_auth_ldap_template**](docs/AuthApi.md#get_auth_ldap_template) | **GET** /platform/7/auth/ldap-templates/{AuthLdapTemplateId} | *AuthApi* | [**get_auth_ldap_templates**](docs/AuthApi.md#get_auth_ldap_templates) | **GET** /platform/7/auth/ldap-templates | *AuthApi* | [**get_auth_log_level**](docs/AuthApi.md#get_auth_log_level) | **GET** /platform/12/auth/log-level | *AuthApi* | [**get_auth_netgroup**](docs/AuthApi.md#get_auth_netgroup) | **GET** /platform/1/auth/netgroups/{AuthNetgroupId} | *AuthApi* | [**get_auth_privileges**](docs/AuthApi.md#get_auth_privileges) | **GET** /platform/14/auth/privileges | -*AuthApi* | [**get_auth_role**](docs/AuthApi.md#get_auth_role) | **GET** /platform/18/auth/roles/{AuthRoleId} | +*AuthApi* | [**get_auth_role**](docs/AuthApi.md#get_auth_role) | **GET** /platform/14/auth/roles/{AuthRoleId} | *AuthApi* | [**get_auth_shells**](docs/AuthApi.md#get_auth_shells) | **GET** /platform/1/auth/shells | -*AuthApi* | [**get_auth_user**](docs/AuthApi.md#get_auth_user) | **GET** /platform/17/auth/users/{AuthUserId} | +*AuthApi* | [**get_auth_user**](docs/AuthApi.md#get_auth_user) | **GET** /platform/7/auth/users/{AuthUserId} | *AuthApi* | [**get_auth_wellknown**](docs/AuthApi.md#get_auth_wellknown) | **GET** /platform/1/auth/wellknowns/{AuthWellknownId} | *AuthApi* | [**get_auth_wellknowns**](docs/AuthApi.md#get_auth_wellknowns) | **GET** /platform/1/auth/wellknowns | *AuthApi* | [**get_mapping_dump**](docs/AuthApi.md#get_mapping_dump) | **GET** /platform/3/auth/mapping/dump | *AuthApi* | [**get_mapping_identity**](docs/AuthApi.md#get_mapping_identity) | **GET** /platform/1/auth/mapping/identities/{MappingIdentityId} | -*AuthApi* | [**get_mapping_users_lookup**](docs/AuthApi.md#get_mapping_users_lookup) | **GET** /platform/20/auth/mapping/users/lookup | +*AuthApi* | [**get_mapping_users_lookup**](docs/AuthApi.md#get_mapping_users_lookup) | **GET** /platform/1/auth/mapping/users/lookup | *AuthApi* | [**get_mapping_users_rules**](docs/AuthApi.md#get_mapping_users_rules) | **GET** /platform/1/auth/mapping/users/rules | -*AuthApi* | [**get_oauth_certificate**](docs/AuthApi.md#get_oauth_certificate) | **GET** /platform/19/auth/oauth/certificates/{OauthCertificateId} | -*AuthApi* | [**get_oauth_oauth2_client**](docs/AuthApi.md#get_oauth_oauth2_client) | **GET** /platform/19/auth/oauth/oauth2clients/{OauthOauth2ClientId} | -*AuthApi* | [**get_oauth_oauth2_token_exchange**](docs/AuthApi.md#get_oauth_oauth2_token_exchange) | **GET** /platform/19/auth/oauth/oauth2-token-exchanges/{OauthOauth2TokenExchangeId} | -*AuthApi* | [**get_oauth_settings**](docs/AuthApi.md#get_oauth_settings) | **GET** /platform/19/auth/oauth/settings | *AuthApi* | [**get_providers_ads_by_id**](docs/AuthApi.md#get_providers_ads_by_id) | **GET** /platform/14/auth/providers/ads/{ProvidersAdsId} | *AuthApi* | [**get_providers_duo**](docs/AuthApi.md#get_providers_duo) | **GET** /platform/7/auth/providers/duo | -*AuthApi* | [**get_providers_file_by_id**](docs/AuthApi.md#get_providers_file_by_id) | **GET** /platform/16/auth/providers/file/{ProvidersFileId} | +*AuthApi* | [**get_providers_file_by_id**](docs/AuthApi.md#get_providers_file_by_id) | **GET** /platform/7/auth/providers/file/{ProvidersFileId} | *AuthApi* | [**get_providers_krb5_by_id**](docs/AuthApi.md#get_providers_krb5_by_id) | **GET** /platform/7/auth/providers/krb5/{ProvidersKrb5Id} | -*AuthApi* | [**get_providers_ldap_by_id**](docs/AuthApi.md#get_providers_ldap_by_id) | **GET** /platform/16/auth/providers/ldap/{ProvidersLdapId} | -*AuthApi* | [**get_providers_local**](docs/AuthApi.md#get_providers_local) | **GET** /platform/16/auth/providers/local | -*AuthApi* | [**get_providers_local_by_id**](docs/AuthApi.md#get_providers_local_by_id) | **GET** /platform/16/auth/providers/local/{ProvidersLocalId} | +*AuthApi* | [**get_providers_ldap_by_id**](docs/AuthApi.md#get_providers_ldap_by_id) | **GET** /platform/11/auth/providers/ldap/{ProvidersLdapId} | +*AuthApi* | [**get_providers_local**](docs/AuthApi.md#get_providers_local) | **GET** /platform/7/auth/providers/local | +*AuthApi* | [**get_providers_local_by_id**](docs/AuthApi.md#get_providers_local_by_id) | **GET** /platform/7/auth/providers/local/{ProvidersLocalId} | *AuthApi* | [**get_providers_nis_by_id**](docs/AuthApi.md#get_providers_nis_by_id) | **GET** /platform/7/auth/providers/nis/{ProvidersNisId} | -*AuthApi* | [**get_providers_saml_services_idp**](docs/AuthApi.md#get_providers_saml_services_idp) | **GET** /platform/16/auth/providers/saml-services/idps/{ProvidersSamlServicesIdpId} | -*AuthApi* | [**get_providers_saml_services_settings**](docs/AuthApi.md#get_providers_saml_services_settings) | **GET** /platform/16/auth/providers/saml-services/settings | -*AuthApi* | [**get_providers_saml_services_sp**](docs/AuthApi.md#get_providers_saml_services_sp) | **GET** /platform/18/auth/providers/saml-services/sp | -*AuthApi* | [**get_providers_saml_services_sp_signing_key_settings**](docs/AuthApi.md#get_providers_saml_services_sp_signing_key_settings) | **GET** /platform/16/auth/providers/saml-services/sp/signing-key/settings | -*AuthApi* | [**get_providers_saml_services_sp_signing_key_status**](docs/AuthApi.md#get_providers_saml_services_sp_signing_key_status) | **GET** /platform/16/auth/providers/saml-services/sp/signing-key/status | *AuthApi* | [**get_providers_summary**](docs/AuthApi.md#get_providers_summary) | **GET** /platform/11/auth/providers/summary | -*AuthApi* | [**get_settings_acls**](docs/AuthApi.md#get_settings_acls) | **GET** /platform/18/auth/settings/acls | -*AuthApi* | [**get_settings_global**](docs/AuthApi.md#get_settings_global) | **GET** /platform/16/auth/settings/global | -*AuthApi* | [**get_settings_krb5_defaults**](docs/AuthApi.md#get_settings_krb5_defaults) | **GET** /platform/19/auth/settings/krb5/defaults | +*AuthApi* | [**get_settings_acls**](docs/AuthApi.md#get_settings_acls) | **GET** /platform/11/auth/settings/acls | +*AuthApi* | [**get_settings_global**](docs/AuthApi.md#get_settings_global) | **GET** /platform/1/auth/settings/global | +*AuthApi* | [**get_settings_krb5_defaults**](docs/AuthApi.md#get_settings_krb5_defaults) | **GET** /platform/1/auth/settings/krb5/defaults | *AuthApi* | [**get_settings_krb5_domain**](docs/AuthApi.md#get_settings_krb5_domain) | **GET** /platform/1/auth/settings/krb5/domains/{SettingsKrb5DomainId} | *AuthApi* | [**get_settings_krb5_realm**](docs/AuthApi.md#get_settings_krb5_realm) | **GET** /platform/1/auth/settings/krb5/realms/{SettingsKrb5RealmId} | *AuthApi* | [**get_settings_mapping**](docs/AuthApi.md#get_settings_mapping) | **GET** /platform/1/auth/settings/mapping | -*AuthApi* | [**list_auth_groups**](docs/AuthApi.md#list_auth_groups) | **GET** /platform/17/auth/groups | -*AuthApi* | [**list_auth_roles**](docs/AuthApi.md#list_auth_roles) | **GET** /platform/18/auth/roles | -*AuthApi* | [**list_auth_users**](docs/AuthApi.md#list_auth_users) | **GET** /platform/17/auth/users | -*AuthApi* | [**list_oauth_certificates**](docs/AuthApi.md#list_oauth_certificates) | **GET** /platform/19/auth/oauth/certificates | -*AuthApi* | [**list_oauth_oauth2_clients**](docs/AuthApi.md#list_oauth_oauth2_clients) | **GET** /platform/19/auth/oauth/oauth2clients | -*AuthApi* | [**list_oauth_oauth2_token_exchanges**](docs/AuthApi.md#list_oauth_oauth2_token_exchanges) | **GET** /platform/19/auth/oauth/oauth2-token-exchanges | +*AuthApi* | [**list_auth_groups**](docs/AuthApi.md#list_auth_groups) | **GET** /platform/1/auth/groups | +*AuthApi* | [**list_auth_roles**](docs/AuthApi.md#list_auth_roles) | **GET** /platform/14/auth/roles | +*AuthApi* | [**list_auth_users**](docs/AuthApi.md#list_auth_users) | **GET** /platform/7/auth/users | *AuthApi* | [**list_providers_ads**](docs/AuthApi.md#list_providers_ads) | **GET** /platform/14/auth/providers/ads | -*AuthApi* | [**list_providers_file**](docs/AuthApi.md#list_providers_file) | **GET** /platform/16/auth/providers/file | +*AuthApi* | [**list_providers_file**](docs/AuthApi.md#list_providers_file) | **GET** /platform/7/auth/providers/file | *AuthApi* | [**list_providers_krb5**](docs/AuthApi.md#list_providers_krb5) | **GET** /platform/7/auth/providers/krb5 | -*AuthApi* | [**list_providers_ldap**](docs/AuthApi.md#list_providers_ldap) | **GET** /platform/16/auth/providers/ldap | +*AuthApi* | [**list_providers_ldap**](docs/AuthApi.md#list_providers_ldap) | **GET** /platform/11/auth/providers/ldap | *AuthApi* | [**list_providers_nis**](docs/AuthApi.md#list_providers_nis) | **GET** /platform/7/auth/providers/nis | -*AuthApi* | [**list_providers_saml_services_cert_extract**](docs/AuthApi.md#list_providers_saml_services_cert_extract) | **GET** /platform/16/auth/providers/saml-services/cert-extract | -*AuthApi* | [**list_providers_saml_services_idps**](docs/AuthApi.md#list_providers_saml_services_idps) | **GET** /platform/16/auth/providers/saml-services/idps | *AuthApi* | [**list_settings_krb5_domains**](docs/AuthApi.md#list_settings_krb5_domains) | **GET** /platform/1/auth/settings/krb5/domains | *AuthApi* | [**list_settings_krb5_realms**](docs/AuthApi.md#list_settings_krb5_realms) | **GET** /platform/1/auth/settings/krb5/realms | -*AuthApi* | [**update_auth_group**](docs/AuthApi.md#update_auth_group) | **PUT** /platform/17/auth/groups/{AuthGroupId} | +*AuthApi* | [**update_auth_group**](docs/AuthApi.md#update_auth_group) | **PUT** /platform/1/auth/groups/{AuthGroupId} | *AuthApi* | [**update_auth_log_level**](docs/AuthApi.md#update_auth_log_level) | **PUT** /platform/12/auth/log-level | -*AuthApi* | [**update_auth_role**](docs/AuthApi.md#update_auth_role) | **PUT** /platform/18/auth/roles/{AuthRoleId} | -*AuthApi* | [**update_auth_user**](docs/AuthApi.md#update_auth_user) | **PUT** /platform/17/auth/users/{AuthUserId} | +*AuthApi* | [**update_auth_role**](docs/AuthApi.md#update_auth_role) | **PUT** /platform/14/auth/roles/{AuthRoleId} | +*AuthApi* | [**update_auth_user**](docs/AuthApi.md#update_auth_user) | **PUT** /platform/7/auth/users/{AuthUserId} | *AuthApi* | [**update_mapping_import**](docs/AuthApi.md#update_mapping_import) | **PUT** /platform/3/auth/mapping/import | *AuthApi* | [**update_mapping_users_rules**](docs/AuthApi.md#update_mapping_users_rules) | **PUT** /platform/1/auth/mapping/users/rules | -*AuthApi* | [**update_oauth_certificate**](docs/AuthApi.md#update_oauth_certificate) | **PUT** /platform/19/auth/oauth/certificates/{OauthCertificateId} | -*AuthApi* | [**update_oauth_oauth2_client**](docs/AuthApi.md#update_oauth_oauth2_client) | **PUT** /platform/19/auth/oauth/oauth2clients/{OauthOauth2ClientId} | -*AuthApi* | [**update_oauth_oauth2_token_exchange**](docs/AuthApi.md#update_oauth_oauth2_token_exchange) | **PUT** /platform/19/auth/oauth/oauth2-token-exchanges/{OauthOauth2TokenExchangeId} | -*AuthApi* | [**update_oauth_settings**](docs/AuthApi.md#update_oauth_settings) | **PUT** /platform/19/auth/oauth/settings | *AuthApi* | [**update_providers_ads_by_id**](docs/AuthApi.md#update_providers_ads_by_id) | **PUT** /platform/14/auth/providers/ads/{ProvidersAdsId} | *AuthApi* | [**update_providers_duo**](docs/AuthApi.md#update_providers_duo) | **PUT** /platform/7/auth/providers/duo | -*AuthApi* | [**update_providers_file_by_id**](docs/AuthApi.md#update_providers_file_by_id) | **PUT** /platform/16/auth/providers/file/{ProvidersFileId} | +*AuthApi* | [**update_providers_file_by_id**](docs/AuthApi.md#update_providers_file_by_id) | **PUT** /platform/7/auth/providers/file/{ProvidersFileId} | *AuthApi* | [**update_providers_krb5_by_id**](docs/AuthApi.md#update_providers_krb5_by_id) | **PUT** /platform/7/auth/providers/krb5/{ProvidersKrb5Id} | -*AuthApi* | [**update_providers_ldap_by_id**](docs/AuthApi.md#update_providers_ldap_by_id) | **PUT** /platform/16/auth/providers/ldap/{ProvidersLdapId} | -*AuthApi* | [**update_providers_local_by_id**](docs/AuthApi.md#update_providers_local_by_id) | **PUT** /platform/16/auth/providers/local/{ProvidersLocalId} | +*AuthApi* | [**update_providers_ldap_by_id**](docs/AuthApi.md#update_providers_ldap_by_id) | **PUT** /platform/11/auth/providers/ldap/{ProvidersLdapId} | +*AuthApi* | [**update_providers_local_by_id**](docs/AuthApi.md#update_providers_local_by_id) | **PUT** /platform/7/auth/providers/local/{ProvidersLocalId} | *AuthApi* | [**update_providers_nis_by_id**](docs/AuthApi.md#update_providers_nis_by_id) | **PUT** /platform/7/auth/providers/nis/{ProvidersNisId} | -*AuthApi* | [**update_providers_saml_services_idp**](docs/AuthApi.md#update_providers_saml_services_idp) | **PUT** /platform/16/auth/providers/saml-services/idps/{ProvidersSamlServicesIdpId} | -*AuthApi* | [**update_providers_saml_services_settings**](docs/AuthApi.md#update_providers_saml_services_settings) | **PUT** /platform/16/auth/providers/saml-services/settings | -*AuthApi* | [**update_providers_saml_services_sp**](docs/AuthApi.md#update_providers_saml_services_sp) | **PUT** /platform/18/auth/providers/saml-services/sp | -*AuthApi* | [**update_providers_saml_services_sp_signing_key_settings**](docs/AuthApi.md#update_providers_saml_services_sp_signing_key_settings) | **PUT** /platform/16/auth/providers/saml-services/sp/signing-key/settings | -*AuthApi* | [**update_settings_acls**](docs/AuthApi.md#update_settings_acls) | **PUT** /platform/18/auth/settings/acls | -*AuthApi* | [**update_settings_global**](docs/AuthApi.md#update_settings_global) | **PUT** /platform/16/auth/settings/global | -*AuthApi* | [**update_settings_krb5_defaults**](docs/AuthApi.md#update_settings_krb5_defaults) | **PUT** /platform/19/auth/settings/krb5/defaults | +*AuthApi* | [**update_settings_acls**](docs/AuthApi.md#update_settings_acls) | **PUT** /platform/11/auth/settings/acls | +*AuthApi* | [**update_settings_global**](docs/AuthApi.md#update_settings_global) | **PUT** /platform/1/auth/settings/global | +*AuthApi* | [**update_settings_krb5_defaults**](docs/AuthApi.md#update_settings_krb5_defaults) | **PUT** /platform/1/auth/settings/krb5/defaults | *AuthApi* | [**update_settings_krb5_domain**](docs/AuthApi.md#update_settings_krb5_domain) | **PUT** /platform/1/auth/settings/krb5/domains/{SettingsKrb5DomainId} | *AuthApi* | [**update_settings_krb5_realm**](docs/AuthApi.md#update_settings_krb5_realm) | **PUT** /platform/1/auth/settings/krb5/realms/{SettingsKrb5RealmId} | *AuthApi* | [**update_settings_mapping**](docs/AuthApi.md#update_settings_mapping) | **PUT** /platform/1/auth/settings/mapping | @@ -265,13 +227,12 @@ Class | Method | HTTP request | Description *AuthProvidersApi* | [**get_ads_provider_domain**](docs/AuthProvidersApi.md#get_ads_provider_domain) | **GET** /platform/7/auth/providers/ads/{Id}/domains/{AdsProviderDomainId} | *AuthProvidersApi* | [**get_ads_provider_domains**](docs/AuthProvidersApi.md#get_ads_provider_domains) | **GET** /platform/7/auth/providers/ads/{Id}/domains | *AuthRolesApi* | [**create_role_member**](docs/AuthRolesApi.md#create_role_member) | **POST** /platform/8/auth/roles/{Role}/members | -*AuthRolesApi* | [**create_role_privilege**](docs/AuthRolesApi.md#create_role_privilege) | **POST** /platform/18/auth/roles/{Role}/privileges | +*AuthRolesApi* | [**create_role_privilege**](docs/AuthRolesApi.md#create_role_privilege) | **POST** /platform/14/auth/roles/{Role}/privileges | *AuthRolesApi* | [**delete_role_member**](docs/AuthRolesApi.md#delete_role_member) | **DELETE** /platform/8/auth/roles/{Role}/members/{RoleMemberId} | -*AuthRolesApi* | [**delete_role_privilege**](docs/AuthRolesApi.md#delete_role_privilege) | **DELETE** /platform/18/auth/roles/{Role}/privileges/{RolePrivilegeId} | +*AuthRolesApi* | [**delete_role_privilege**](docs/AuthRolesApi.md#delete_role_privilege) | **DELETE** /platform/14/auth/roles/{Role}/privileges/{RolePrivilegeId} | *AuthRolesApi* | [**list_role_members**](docs/AuthRolesApi.md#list_role_members) | **GET** /platform/8/auth/roles/{Role}/members | -*AuthRolesApi* | [**list_role_privileges**](docs/AuthRolesApi.md#list_role_privileges) | **GET** /platform/18/auth/roles/{Role}/privileges | +*AuthRolesApi* | [**list_role_privileges**](docs/AuthRolesApi.md#list_role_privileges) | **GET** /platform/14/auth/roles/{Role}/privileges | *AuthUsersApi* | [**create_user_member_of_item**](docs/AuthUsersApi.md#create_user_member_of_item) | **POST** /platform/3/auth/users/{User}/member-of | -*AuthUsersApi* | [**create_user_reset_password_item**](docs/AuthUsersApi.md#create_user_reset_password_item) | **POST** /platform/16/auth/users/{User}/reset-password | *AuthUsersApi* | [**delete_user_member_of_member_of**](docs/AuthUsersApi.md#delete_user_member_of_member_of) | **DELETE** /platform/3/auth/users/{User}/member-of/{UserMemberOfMemberOf} | *AuthUsersApi* | [**list_user_member_of**](docs/AuthUsersApi.md#list_user_member_of) | **GET** /platform/3/auth/users/{User}/member-of | *AuthUsersApi* | [**update_user_change_password**](docs/AuthUsersApi.md#update_user_change_password) | **PUT** /platform/3/auth/users/{User}/change-password | @@ -349,18 +310,18 @@ Class | Method | HTTP request | Description *CloudApi* | [**update_cloud_proxy**](docs/CloudApi.md#update_cloud_proxy) | **PUT** /platform/4/cloud/proxies/{CloudProxyId} | *CloudApi* | [**update_cloud_settings**](docs/CloudApi.md#update_cloud_settings) | **PUT** /platform/3/cloud/settings | *ClusterApi* | [**create_cluster_ac**](docs/ClusterApi.md#create_cluster_ac) | **POST** /platform/14/cluster/acs | -*ClusterApi* | [**create_cluster_add_node_item**](docs/ClusterApi.md#create_cluster_add_node_item) | **POST** /platform/16/cluster/add-node | -*ClusterApi* | [**create_diagnostics_gather_start_item**](docs/ClusterApi.md#create_diagnostics_gather_start_item) | **POST** /platform/21/cluster/diagnostics/gather/start | +*ClusterApi* | [**create_cluster_add_node_item**](docs/ClusterApi.md#create_cluster_add_node_item) | **POST** /platform/3/cluster/add-node | +*ClusterApi* | [**create_diagnostics_gather_start_item**](docs/ClusterApi.md#create_diagnostics_gather_start_item) | **POST** /platform/3/cluster/diagnostics/gather/start | *ClusterApi* | [**create_diagnostics_gather_stop_item**](docs/ClusterApi.md#create_diagnostics_gather_stop_item) | **POST** /platform/3/cluster/diagnostics/gather/stop | -*ClusterApi* | [**create_diagnostics_netlogger_start_item**](docs/ClusterApi.md#create_diagnostics_netlogger_start_item) | **POST** /platform/21/cluster/diagnostics/netlogger/start | +*ClusterApi* | [**create_diagnostics_netlogger_start_item**](docs/ClusterApi.md#create_diagnostics_netlogger_start_item) | **POST** /platform/3/cluster/diagnostics/netlogger/start | *ClusterApi* | [**create_diagnostics_netlogger_stop_item**](docs/ClusterApi.md#create_diagnostics_netlogger_stop_item) | **POST** /platform/3/cluster/diagnostics/netlogger/stop | -*ClusterApi* | [**get_cluster_config**](docs/ClusterApi.md#get_cluster_config) | **GET** /platform/17/cluster/config | -*ClusterApi* | [**get_cluster_email**](docs/ClusterApi.md#get_cluster_email) | **GET** /platform/21/cluster/email | +*ClusterApi* | [**get_cluster_config**](docs/ClusterApi.md#get_cluster_config) | **GET** /platform/3/cluster/config | +*ClusterApi* | [**get_cluster_email**](docs/ClusterApi.md#get_cluster_email) | **GET** /platform/1/cluster/email | *ClusterApi* | [**get_cluster_external_ips**](docs/ClusterApi.md#get_cluster_external_ips) | **GET** /platform/2/cluster/external-ips | *ClusterApi* | [**get_cluster_identity**](docs/ClusterApi.md#get_cluster_identity) | **GET** /platform/5/cluster/identity | *ClusterApi* | [**get_cluster_internal_networks**](docs/ClusterApi.md#get_cluster_internal_networks) | **GET** /platform/7/cluster/internal-networks | -*ClusterApi* | [**get_cluster_node**](docs/ClusterApi.md#get_cluster_node) | **GET** /platform/16/cluster/nodes/{ClusterNodeId} | -*ClusterApi* | [**get_cluster_nodes**](docs/ClusterApi.md#get_cluster_nodes) | **GET** /platform/16/cluster/nodes | +*ClusterApi* | [**get_cluster_node**](docs/ClusterApi.md#get_cluster_node) | **GET** /platform/15/cluster/nodes/{ClusterNodeId} | +*ClusterApi* | [**get_cluster_nodes**](docs/ClusterApi.md#get_cluster_nodes) | **GET** /platform/15/cluster/nodes | *ClusterApi* | [**get_cluster_nodes_available**](docs/ClusterApi.md#get_cluster_nodes_available) | **GET** /platform/3/cluster/nodes-available | *ClusterApi* | [**get_cluster_owner**](docs/ClusterApi.md#get_cluster_owner) | **GET** /platform/1/cluster/owner | *ClusterApi* | [**get_cluster_services**](docs/ClusterApi.md#get_cluster_services) | **GET** /platform/15/cluster/services | @@ -369,31 +330,26 @@ Class | Method | HTTP request | Description *ClusterApi* | [**get_cluster_timezone**](docs/ClusterApi.md#get_cluster_timezone) | **GET** /platform/3/cluster/timezone | *ClusterApi* | [**get_cluster_version**](docs/ClusterApi.md#get_cluster_version) | **GET** /platform/3/cluster/version | *ClusterApi* | [**get_diagnostics_gather**](docs/ClusterApi.md#get_diagnostics_gather) | **GET** /platform/3/cluster/diagnostics/gather | -*ClusterApi* | [**get_diagnostics_gather_groups**](docs/ClusterApi.md#get_diagnostics_gather_groups) | **GET** /platform/19/cluster/diagnostics/gather/groups | -*ClusterApi* | [**get_diagnostics_gather_settings**](docs/ClusterApi.md#get_diagnostics_gather_settings) | **GET** /platform/21/cluster/diagnostics/gather/settings | -*ClusterApi* | [**get_diagnostics_gather_status**](docs/ClusterApi.md#get_diagnostics_gather_status) | **GET** /platform/21/cluster/diagnostics/gather/status | +*ClusterApi* | [**get_diagnostics_gather_settings**](docs/ClusterApi.md#get_diagnostics_gather_settings) | **GET** /platform/3/cluster/diagnostics/gather/settings | +*ClusterApi* | [**get_diagnostics_gather_status**](docs/ClusterApi.md#get_diagnostics_gather_status) | **GET** /platform/3/cluster/diagnostics/gather/status | *ClusterApi* | [**get_diagnostics_netlogger**](docs/ClusterApi.md#get_diagnostics_netlogger) | **GET** /platform/3/cluster/diagnostics/netlogger | -*ClusterApi* | [**get_diagnostics_netlogger_settings**](docs/ClusterApi.md#get_diagnostics_netlogger_settings) | **GET** /platform/20/cluster/diagnostics/netlogger/settings | +*ClusterApi* | [**get_diagnostics_netlogger_settings**](docs/ClusterApi.md#get_diagnostics_netlogger_settings) | **GET** /platform/3/cluster/diagnostics/netlogger/settings | *ClusterApi* | [**get_diagnostics_netlogger_status**](docs/ClusterApi.md#get_diagnostics_netlogger_status) | **GET** /platform/3/cluster/diagnostics/netlogger/status | -*ClusterApi* | [**get_iceage_settings**](docs/ClusterApi.md#get_iceage_settings) | **GET** /platform/16/cluster/iceage/settings | *ClusterApi* | [**get_internal_networks_settings**](docs/ClusterApi.md#get_internal_networks_settings) | **GET** /platform/14/cluster/internal-networks/settings | -*ClusterApi* | [**get_maintenance_settings**](docs/ClusterApi.md#get_maintenance_settings) | **GET** /platform/20/cluster/maintenance/settings | *ClusterApi* | [**get_timezone_region**](docs/ClusterApi.md#get_timezone_region) | **GET** /platform/3/cluster/timezone/regions/{TimezoneRegionId} | *ClusterApi* | [**get_timezone_settings**](docs/ClusterApi.md#get_timezone_settings) | **GET** /platform/3/cluster/timezone/settings | *ClusterApi* | [**list_cluster_acs**](docs/ClusterApi.md#list_cluster_acs) | **GET** /platform/14/cluster/acs | -*ClusterApi* | [**update_cluster_email**](docs/ClusterApi.md#update_cluster_email) | **PUT** /platform/21/cluster/email | +*ClusterApi* | [**update_cluster_email**](docs/ClusterApi.md#update_cluster_email) | **PUT** /platform/1/cluster/email | *ClusterApi* | [**update_cluster_identity**](docs/ClusterApi.md#update_cluster_identity) | **PUT** /platform/5/cluster/identity | *ClusterApi* | [**update_cluster_internal_networks**](docs/ClusterApi.md#update_cluster_internal_networks) | **PUT** /platform/7/cluster/internal-networks | *ClusterApi* | [**update_cluster_owner**](docs/ClusterApi.md#update_cluster_owner) | **PUT** /platform/1/cluster/owner | *ClusterApi* | [**update_cluster_time**](docs/ClusterApi.md#update_cluster_time) | **PUT** /platform/3/cluster/time | *ClusterApi* | [**update_cluster_timezone**](docs/ClusterApi.md#update_cluster_timezone) | **PUT** /platform/3/cluster/timezone | *ClusterApi* | [**update_cluster_update_lnns**](docs/ClusterApi.md#update_cluster_update_lnns) | **PUT** /platform/7/cluster/update-lnns | -*ClusterApi* | [**update_diagnostics_gather_settings**](docs/ClusterApi.md#update_diagnostics_gather_settings) | **PUT** /platform/21/cluster/diagnostics/gather/settings | -*ClusterApi* | [**update_diagnostics_netlogger_settings**](docs/ClusterApi.md#update_diagnostics_netlogger_settings) | **PUT** /platform/20/cluster/diagnostics/netlogger/settings | -*ClusterApi* | [**update_iceage_settings**](docs/ClusterApi.md#update_iceage_settings) | **PUT** /platform/16/cluster/iceage/settings | +*ClusterApi* | [**update_diagnostics_gather_settings**](docs/ClusterApi.md#update_diagnostics_gather_settings) | **PUT** /platform/3/cluster/diagnostics/gather/settings | +*ClusterApi* | [**update_diagnostics_netlogger_settings**](docs/ClusterApi.md#update_diagnostics_netlogger_settings) | **PUT** /platform/3/cluster/diagnostics/netlogger/settings | *ClusterApi* | [**update_internal_networks_preferred_network**](docs/ClusterApi.md#update_internal_networks_preferred_network) | **PUT** /platform/14/cluster/internal-networks/preferred-network | *ClusterApi* | [**update_internal_networks_settings**](docs/ClusterApi.md#update_internal_networks_settings) | **PUT** /platform/14/cluster/internal-networks/settings | -*ClusterApi* | [**update_maintenance_settings**](docs/ClusterApi.md#update_maintenance_settings) | **PUT** /platform/20/cluster/maintenance/settings | *ClusterApi* | [**update_timezone_settings**](docs/ClusterApi.md#update_timezone_settings) | **PUT** /platform/3/cluster/timezone/settings | *ClusterModeApi* | [**get_cluster_mode_settings**](docs/ClusterModeApi.md#get_cluster_mode_settings) | **GET** /platform/14/cluster-mode/settings | *ClusterModeApi* | [**update_cluster_mode_settings**](docs/ClusterModeApi.md#update_cluster_mode_settings) | **PUT** /platform/14/cluster-mode/settings | @@ -407,11 +363,11 @@ Class | Method | HTTP request | Description *ClusterNodesApi* | [**create_node_reboot_item**](docs/ClusterNodesApi.md#create_node_reboot_item) | **POST** /platform/5/cluster/nodes/{Lnn}/reboot | *ClusterNodesApi* | [**create_node_shutdown_item**](docs/ClusterNodesApi.md#create_node_shutdown_item) | **POST** /platform/5/cluster/nodes/{Lnn}/shutdown | *ClusterNodesApi* | [**get_drives_drive_firmware**](docs/ClusterNodesApi.md#get_drives_drive_firmware) | **GET** /platform/7/cluster/nodes/{Lnn}/drives/{Driveid}/firmware | -*ClusterNodesApi* | [**get_node_drive**](docs/ClusterNodesApi.md#get_node_drive) | **GET** /platform/16/cluster/nodes/{Lnn}/drives/{NodeDriveId} | +*ClusterNodesApi* | [**get_node_drive**](docs/ClusterNodesApi.md#get_node_drive) | **GET** /platform/15/cluster/nodes/{Lnn}/drives/{NodeDriveId} | *ClusterNodesApi* | [**get_node_driveconfig**](docs/ClusterNodesApi.md#get_node_driveconfig) | **GET** /platform/14/cluster/nodes/{Lnn}/driveconfig | -*ClusterNodesApi* | [**get_node_drives**](docs/ClusterNodesApi.md#get_node_drives) | **GET** /platform/16/cluster/nodes/{Lnn}/drives | +*ClusterNodesApi* | [**get_node_drives**](docs/ClusterNodesApi.md#get_node_drives) | **GET** /platform/15/cluster/nodes/{Lnn}/drives | *ClusterNodesApi* | [**get_node_drives_purposelist**](docs/ClusterNodesApi.md#get_node_drives_purposelist) | **GET** /platform/3/cluster/nodes/{Lnn}/drives-purposelist | -*ClusterNodesApi* | [**get_node_hardware**](docs/ClusterNodesApi.md#get_node_hardware) | **GET** /platform/19/cluster/nodes/{Lnn}/hardware | +*ClusterNodesApi* | [**get_node_hardware**](docs/ClusterNodesApi.md#get_node_hardware) | **GET** /platform/12/cluster/nodes/{Lnn}/hardware | *ClusterNodesApi* | [**get_node_hardware_fast**](docs/ClusterNodesApi.md#get_node_hardware_fast) | **GET** /platform/3/cluster/nodes/{Lnn}/hardware-fast | *ClusterNodesApi* | [**get_node_internal_ip_address**](docs/ClusterNodesApi.md#get_node_internal_ip_address) | **GET** /platform/7/cluster/nodes/{Lnn}/internal-ip-address | *ClusterNodesApi* | [**get_node_partitions**](docs/ClusterNodesApi.md#get_node_partitions) | **GET** /platform/3/cluster/nodes/{Lnn}/partitions | @@ -422,10 +378,9 @@ Class | Method | HTTP request | Description *ClusterNodesApi* | [**get_node_state_readonly**](docs/ClusterNodesApi.md#get_node_state_readonly) | **GET** /platform/3/cluster/nodes/{Lnn}/state/readonly | *ClusterNodesApi* | [**get_node_state_servicelight**](docs/ClusterNodesApi.md#get_node_state_servicelight) | **GET** /platform/12/cluster/nodes/{Lnn}/state/servicelight | *ClusterNodesApi* | [**get_node_state_smartfail**](docs/ClusterNodesApi.md#get_node_state_smartfail) | **GET** /platform/3/cluster/nodes/{Lnn}/state/smartfail | -*ClusterNodesApi* | [**get_node_status**](docs/ClusterNodesApi.md#get_node_status) | **GET** /platform/16/cluster/nodes/{Lnn}/status | +*ClusterNodesApi* | [**get_node_status**](docs/ClusterNodesApi.md#get_node_status) | **GET** /platform/12/cluster/nodes/{Lnn}/status | *ClusterNodesApi* | [**get_node_status_batterystatus**](docs/ClusterNodesApi.md#get_node_status_batterystatus) | **GET** /platform/3/cluster/nodes/{Lnn}/status/batterystatus | *ClusterNodesApi* | [**get_node_status_cpu**](docs/ClusterNodesApi.md#get_node_status_cpu) | **GET** /platform/10/cluster/nodes/{Lnn}/status/cpu | -*ClusterNodesApi* | [**get_node_status_drive_security_level**](docs/ClusterNodesApi.md#get_node_status_drive_security_level) | **GET** /platform/16/cluster/nodes/{Lnn}/status/drive_security_level | *ClusterNodesApi* | [**get_node_status_nvram**](docs/ClusterNodesApi.md#get_node_status_nvram) | **GET** /platform/12/cluster/nodes/{Lnn}/status/nvram | *ClusterNodesApi* | [**get_node_status_powersupplies**](docs/ClusterNodesApi.md#get_node_status_powersupplies) | **GET** /platform/12/cluster/nodes/{Lnn}/status/powersupplies | *ClusterNodesApi* | [**list_drives_drive_firmware_update**](docs/ClusterNodesApi.md#list_drives_drive_firmware_update) | **GET** /platform/3/cluster/nodes/{Lnn}/drives/{Driveid}/firmware/update | @@ -433,82 +388,51 @@ Class | Method | HTTP request | Description *ClusterNodesApi* | [**update_node_state_readonly**](docs/ClusterNodesApi.md#update_node_state_readonly) | **PUT** /platform/3/cluster/nodes/{Lnn}/state/readonly | *ClusterNodesApi* | [**update_node_state_servicelight**](docs/ClusterNodesApi.md#update_node_state_servicelight) | **PUT** /platform/12/cluster/nodes/{Lnn}/state/servicelight | *ClusterNodesApi* | [**update_node_state_smartfail**](docs/ClusterNodesApi.md#update_node_state_smartfail) | **PUT** /platform/3/cluster/nodes/{Lnn}/state/smartfail | -*ConfigApi* | [**create_config_export**](docs/ConfigApi.md#create_config_export) | **POST** /platform/20/config/exports | -*ConfigApi* | [**create_config_import**](docs/ConfigApi.md#create_config_import) | **POST** /platform/20/config/imports | -*ConfigApi* | [**get_config_config_lock**](docs/ConfigApi.md#get_config_config_lock) | **GET** /platform/18/config/config-lock | -*ConfigApi* | [**get_config_export**](docs/ConfigApi.md#get_config_export) | **GET** /platform/20/config/exports/{ConfigExportId} | -*ConfigApi* | [**get_config_import**](docs/ConfigApi.md#get_config_import) | **GET** /platform/20/config/imports/{ConfigImportId} | -*ConfigApi* | [**list_config_exports**](docs/ConfigApi.md#list_config_exports) | **GET** /platform/20/config/exports | -*ConfigApi* | [**list_config_imports**](docs/ConfigApi.md#list_config_imports) | **GET** /platform/20/config/imports | -*ConfigApi* | [**update_config_config_lock**](docs/ConfigApi.md#update_config_config_lock) | **PUT** /platform/18/config/config-lock | -*ConfigCatalogApi* | [**get_config_catalog_status**](docs/ConfigCatalogApi.md#get_config_catalog_status) | **GET** /platform/19/config-catalog/status | -*ConfigCatalogApi* | [**update_config_catalog_status**](docs/ConfigCatalogApi.md#update_config_catalog_status) | **PUT** /platform/19/config-catalog/status | -*ConnectivityApi* | [**create_connectivity_data_item**](docs/ConnectivityApi.md#create_connectivity_data_item) | **POST** /platform/21/connectivity/data | -*ConnectivityApi* | [**create_connectivity_payload_item**](docs/ConnectivityApi.md#create_connectivity_payload_item) | **POST** /platform/21/connectivity/payload | -*ConnectivityApi* | [**create_connectivity_task_item**](docs/ConnectivityApi.md#create_connectivity_task_item) | **POST** /platform/21/connectivity/task | -*ConnectivityApi* | [**delete_connectivity_task_by_id**](docs/ConnectivityApi.md#delete_connectivity_task_by_id) | **DELETE** /platform/21/connectivity/task/{ConnectivityTaskId} | -*ConnectivityApi* | [**get_connectivity_license**](docs/ConnectivityApi.md#get_connectivity_license) | **GET** /platform/21/connectivity/license | -*ConnectivityApi* | [**get_connectivity_settings**](docs/ConnectivityApi.md#get_connectivity_settings) | **GET** /platform/21/connectivity/settings | -*ConnectivityApi* | [**get_connectivity_status**](docs/ConnectivityApi.md#get_connectivity_status) | **GET** /platform/22/connectivity/status | -*ConnectivityApi* | [**get_connectivity_task_by_id**](docs/ConnectivityApi.md#get_connectivity_task_by_id) | **GET** /platform/21/connectivity/task/{ConnectivityTaskId} | -*ConnectivityApi* | [**get_connectivity_terms**](docs/ConnectivityApi.md#get_connectivity_terms) | **GET** /platform/21/connectivity/terms | -*ConnectivityApi* | [**list_connectivity_task**](docs/ConnectivityApi.md#list_connectivity_task) | **GET** /platform/21/connectivity/task | -*ConnectivityApi* | [**update_connectivity_settings**](docs/ConnectivityApi.md#update_connectivity_settings) | **PUT** /platform/21/connectivity/settings | -*ConnectivityApi* | [**update_connectivity_status**](docs/ConnectivityApi.md#update_connectivity_status) | **PUT** /platform/22/connectivity/status | -*ConnectivityApi* | [**update_connectivity_terms**](docs/ConnectivityApi.md#update_connectivity_terms) | **PUT** /platform/21/connectivity/terms | -*DatamoverApi* | [**create_certificates_ca_item**](docs/DatamoverApi.md#create_certificates_ca_item) | **POST** /platform/18/datamover/certificates/ca | -*DatamoverApi* | [**create_certificates_identity_item**](docs/DatamoverApi.md#create_certificates_identity_item) | **POST** /platform/18/datamover/certificates/identity | -*DatamoverApi* | [**create_datamover_account**](docs/DatamoverApi.md#create_datamover_account) | **POST** /platform/22/datamover/accounts | +*ConfigApi* | [**create_config_export**](docs/ConfigApi.md#create_config_export) | **POST** /platform/12/config/exports | +*ConfigApi* | [**create_config_import**](docs/ConfigApi.md#create_config_import) | **POST** /platform/12/config/imports | +*ConfigApi* | [**get_config_export**](docs/ConfigApi.md#get_config_export) | **GET** /platform/12/config/exports/{ConfigExportId} | +*ConfigApi* | [**get_config_import**](docs/ConfigApi.md#get_config_import) | **GET** /platform/12/config/imports/{ConfigImportId} | +*ConfigApi* | [**list_config_exports**](docs/ConfigApi.md#list_config_exports) | **GET** /platform/12/config/exports | +*ConfigApi* | [**list_config_imports**](docs/ConfigApi.md#list_config_imports) | **GET** /platform/12/config/imports | +*DatamoverApi* | [**create_certificates_ca_item**](docs/DatamoverApi.md#create_certificates_ca_item) | **POST** /platform/15/datamover/certificates/ca | +*DatamoverApi* | [**create_certificates_identity_item**](docs/DatamoverApi.md#create_certificates_identity_item) | **POST** /platform/15/datamover/certificates/identity | +*DatamoverApi* | [**create_datamover_account**](docs/DatamoverApi.md#create_datamover_account) | **POST** /platform/15/datamover/accounts | *DatamoverApi* | [**create_datamover_base_policy**](docs/DatamoverApi.md#create_datamover_base_policy) | **POST** /platform/15/datamover/base-policies | -*DatamoverApi* | [**create_datamover_policy**](docs/DatamoverApi.md#create_datamover_policy) | **POST** /platform/22/datamover/policies | +*DatamoverApi* | [**create_datamover_policy**](docs/DatamoverApi.md#create_datamover_policy) | **POST** /platform/15/datamover/policies | *DatamoverApi* | [**create_throttling_bw_rule**](docs/DatamoverApi.md#create_throttling_bw_rule) | **POST** /platform/15/datamover/throttling/bw-rules | -*DatamoverApi* | [**delete_certificates_ca_by_id**](docs/DatamoverApi.md#delete_certificates_ca_by_id) | **DELETE** /platform/18/datamover/certificates/ca/{CertificatesCaId} | -*DatamoverApi* | [**delete_certificates_identity_by_id**](docs/DatamoverApi.md#delete_certificates_identity_by_id) | **DELETE** /platform/18/datamover/certificates/identity/{CertificatesIdentityId} | -*DatamoverApi* | [**delete_datamover_account**](docs/DatamoverApi.md#delete_datamover_account) | **DELETE** /platform/22/datamover/accounts/{DatamoverAccountId} | +*DatamoverApi* | [**delete_certificates_ca_by_id**](docs/DatamoverApi.md#delete_certificates_ca_by_id) | **DELETE** /platform/15/datamover/certificates/ca/{CertificatesCaId} | +*DatamoverApi* | [**delete_certificates_identity_by_id**](docs/DatamoverApi.md#delete_certificates_identity_by_id) | **DELETE** /platform/15/datamover/certificates/identity/{CertificatesIdentityId} | +*DatamoverApi* | [**delete_datamover_account**](docs/DatamoverApi.md#delete_datamover_account) | **DELETE** /platform/15/datamover/accounts/{DatamoverAccountId} | *DatamoverApi* | [**delete_datamover_base_policy**](docs/DatamoverApi.md#delete_datamover_base_policy) | **DELETE** /platform/15/datamover/base-policies/{DatamoverBasePolicyId} | -*DatamoverApi* | [**delete_datamover_historical_jobs**](docs/DatamoverApi.md#delete_datamover_historical_jobs) | **DELETE** /platform/18/datamover/historical-jobs | -*DatamoverApi* | [**delete_datamover_policy**](docs/DatamoverApi.md#delete_datamover_policy) | **DELETE** /platform/22/datamover/policies/{DatamoverPolicyId} | -*DatamoverApi* | [**delete_datamover_reports**](docs/DatamoverApi.md#delete_datamover_reports) | **DELETE** /platform/21/datamover/reports | +*DatamoverApi* | [**delete_datamover_historical_jobs**](docs/DatamoverApi.md#delete_datamover_historical_jobs) | **DELETE** /platform/15/datamover/historical-jobs | +*DatamoverApi* | [**delete_datamover_policy**](docs/DatamoverApi.md#delete_datamover_policy) | **DELETE** /platform/15/datamover/policies/{DatamoverPolicyId} | *DatamoverApi* | [**delete_throttling_bw_rule**](docs/DatamoverApi.md#delete_throttling_bw_rule) | **DELETE** /platform/15/datamover/throttling/bw-rules/{ThrottlingBwRuleId} | -*DatamoverApi* | [**get_certificates_ca_by_id**](docs/DatamoverApi.md#get_certificates_ca_by_id) | **GET** /platform/18/datamover/certificates/ca/{CertificatesCaId} | -*DatamoverApi* | [**get_certificates_identity_by_id**](docs/DatamoverApi.md#get_certificates_identity_by_id) | **GET** /platform/18/datamover/certificates/identity/{CertificatesIdentityId} | -*DatamoverApi* | [**get_certificates_settings**](docs/DatamoverApi.md#get_certificates_settings) | **GET** /platform/16/datamover/certificates/settings | -*DatamoverApi* | [**get_config_namespace_by_id**](docs/DatamoverApi.md#get_config_namespace_by_id) | **GET** /platform/21/datamover/config/{Namespace}/{ConfigNamespaceId} | -*DatamoverApi* | [**get_datamover_account**](docs/DatamoverApi.md#get_datamover_account) | **GET** /platform/22/datamover/accounts/{DatamoverAccountId} | +*DatamoverApi* | [**get_certificates_ca_by_id**](docs/DatamoverApi.md#get_certificates_ca_by_id) | **GET** /platform/15/datamover/certificates/ca/{CertificatesCaId} | +*DatamoverApi* | [**get_certificates_identity_by_id**](docs/DatamoverApi.md#get_certificates_identity_by_id) | **GET** /platform/15/datamover/certificates/identity/{CertificatesIdentityId} | +*DatamoverApi* | [**get_datamover_account**](docs/DatamoverApi.md#get_datamover_account) | **GET** /platform/15/datamover/accounts/{DatamoverAccountId} | *DatamoverApi* | [**get_datamover_base_policy**](docs/DatamoverApi.md#get_datamover_base_policy) | **GET** /platform/15/datamover/base-policies/{DatamoverBasePolicyId} | -*DatamoverApi* | [**get_datamover_config**](docs/DatamoverApi.md#get_datamover_config) | **GET** /platform/21/datamover/config | -*DatamoverApi* | [**get_datamover_config_namespace**](docs/DatamoverApi.md#get_datamover_config_namespace) | **GET** /platform/21/datamover/config/{DatamoverConfigNamespace} | -*DatamoverApi* | [**get_datamover_dataset**](docs/DatamoverApi.md#get_datamover_dataset) | **GET** /platform/19/datamover/datasets/{DatamoverDatasetId} | -*DatamoverApi* | [**get_datamover_datasets**](docs/DatamoverApi.md#get_datamover_datasets) | **GET** /platform/19/datamover/datasets | -*DatamoverApi* | [**get_datamover_historical_jobs**](docs/DatamoverApi.md#get_datamover_historical_jobs) | **GET** /platform/18/datamover/historical-jobs | -*DatamoverApi* | [**get_datamover_job**](docs/DatamoverApi.md#get_datamover_job) | **GET** /platform/21/datamover/jobs/{DatamoverJobId} | -*DatamoverApi* | [**get_datamover_jobs**](docs/DatamoverApi.md#get_datamover_jobs) | **GET** /platform/21/datamover/jobs | -*DatamoverApi* | [**get_datamover_policy**](docs/DatamoverApi.md#get_datamover_policy) | **GET** /platform/22/datamover/policies/{DatamoverPolicyId} | -*DatamoverApi* | [**get_datamover_report**](docs/DatamoverApi.md#get_datamover_report) | **GET** /platform/21/datamover/reports/{DatamoverReportId} | -*DatamoverApi* | [**get_datamover_reports**](docs/DatamoverApi.md#get_datamover_reports) | **GET** /platform/21/datamover/reports | -*DatamoverApi* | [**get_network_discover_accid**](docs/DatamoverApi.md#get_network_discover_accid) | **GET** /platform/17/datamover/network/discover/{NetworkDiscoverAccid} | -*DatamoverApi* | [**get_network_ping_accid**](docs/DatamoverApi.md#get_network_ping_accid) | **GET** /platform/17/datamover/network/ping/{NetworkPingAccid} | -*DatamoverApi* | [**get_settings_reports**](docs/DatamoverApi.md#get_settings_reports) | **GET** /platform/21/datamover/settings/reports | +*DatamoverApi* | [**get_datamover_dataset**](docs/DatamoverApi.md#get_datamover_dataset) | **GET** /platform/15/datamover/datasets/{DatamoverDatasetId} | +*DatamoverApi* | [**get_datamover_datasets**](docs/DatamoverApi.md#get_datamover_datasets) | **GET** /platform/15/datamover/datasets | +*DatamoverApi* | [**get_datamover_historical_jobs**](docs/DatamoverApi.md#get_datamover_historical_jobs) | **GET** /platform/15/datamover/historical-jobs | +*DatamoverApi* | [**get_datamover_job**](docs/DatamoverApi.md#get_datamover_job) | **GET** /platform/15/datamover/jobs/{DatamoverJobId} | +*DatamoverApi* | [**get_datamover_jobs**](docs/DatamoverApi.md#get_datamover_jobs) | **GET** /platform/15/datamover/jobs | +*DatamoverApi* | [**get_datamover_policy**](docs/DatamoverApi.md#get_datamover_policy) | **GET** /platform/15/datamover/policies/{DatamoverPolicyId} | *DatamoverApi* | [**get_throttling_bw_rule**](docs/DatamoverApi.md#get_throttling_bw_rule) | **GET** /platform/15/datamover/throttling/bw-rules/{ThrottlingBwRuleId} | *DatamoverApi* | [**get_throttling_settings**](docs/DatamoverApi.md#get_throttling_settings) | **GET** /platform/15/datamover/throttling/settings | -*DatamoverApi* | [**list_certificates_ca**](docs/DatamoverApi.md#list_certificates_ca) | **GET** /platform/18/datamover/certificates/ca | -*DatamoverApi* | [**list_certificates_identity**](docs/DatamoverApi.md#list_certificates_identity) | **GET** /platform/18/datamover/certificates/identity | -*DatamoverApi* | [**list_datamover_accounts**](docs/DatamoverApi.md#list_datamover_accounts) | **GET** /platform/22/datamover/accounts | +*DatamoverApi* | [**list_certificates_ca**](docs/DatamoverApi.md#list_certificates_ca) | **GET** /platform/15/datamover/certificates/ca | +*DatamoverApi* | [**list_certificates_identity**](docs/DatamoverApi.md#list_certificates_identity) | **GET** /platform/15/datamover/certificates/identity | +*DatamoverApi* | [**list_datamover_accounts**](docs/DatamoverApi.md#list_datamover_accounts) | **GET** /platform/15/datamover/accounts | *DatamoverApi* | [**list_datamover_base_policies**](docs/DatamoverApi.md#list_datamover_base_policies) | **GET** /platform/15/datamover/base-policies | -*DatamoverApi* | [**list_datamover_policies**](docs/DatamoverApi.md#list_datamover_policies) | **GET** /platform/22/datamover/policies | +*DatamoverApi* | [**list_datamover_policies**](docs/DatamoverApi.md#list_datamover_policies) | **GET** /platform/15/datamover/policies | *DatamoverApi* | [**list_throttling_bw_rules**](docs/DatamoverApi.md#list_throttling_bw_rules) | **GET** /platform/15/datamover/throttling/bw-rules | -*DatamoverApi* | [**update_certificates_ca_by_id**](docs/DatamoverApi.md#update_certificates_ca_by_id) | **PUT** /platform/18/datamover/certificates/ca/{CertificatesCaId} | -*DatamoverApi* | [**update_certificates_identity_by_id**](docs/DatamoverApi.md#update_certificates_identity_by_id) | **PUT** /platform/18/datamover/certificates/identity/{CertificatesIdentityId} | -*DatamoverApi* | [**update_certificates_settings**](docs/DatamoverApi.md#update_certificates_settings) | **PUT** /platform/16/datamover/certificates/settings | -*DatamoverApi* | [**update_config_namespace_by_id**](docs/DatamoverApi.md#update_config_namespace_by_id) | **PUT** /platform/21/datamover/config/{Namespace}/{ConfigNamespaceId} | -*DatamoverApi* | [**update_datamover_account**](docs/DatamoverApi.md#update_datamover_account) | **PUT** /platform/22/datamover/accounts/{DatamoverAccountId} | +*DatamoverApi* | [**update_certificates_ca_by_id**](docs/DatamoverApi.md#update_certificates_ca_by_id) | **PUT** /platform/15/datamover/certificates/ca/{CertificatesCaId} | +*DatamoverApi* | [**update_certificates_identity_by_id**](docs/DatamoverApi.md#update_certificates_identity_by_id) | **PUT** /platform/15/datamover/certificates/identity/{CertificatesIdentityId} | +*DatamoverApi* | [**update_datamover_account**](docs/DatamoverApi.md#update_datamover_account) | **PUT** /platform/15/datamover/accounts/{DatamoverAccountId} | *DatamoverApi* | [**update_datamover_base_policy**](docs/DatamoverApi.md#update_datamover_base_policy) | **PUT** /platform/15/datamover/base-policies/{DatamoverBasePolicyId} | -*DatamoverApi* | [**update_datamover_job**](docs/DatamoverApi.md#update_datamover_job) | **PUT** /platform/21/datamover/jobs/{DatamoverJobId} | -*DatamoverApi* | [**update_datamover_policy**](docs/DatamoverApi.md#update_datamover_policy) | **PUT** /platform/22/datamover/policies/{DatamoverPolicyId} | -*DatamoverApi* | [**update_settings_reports**](docs/DatamoverApi.md#update_settings_reports) | **PUT** /platform/21/datamover/settings/reports | +*DatamoverApi* | [**update_datamover_job**](docs/DatamoverApi.md#update_datamover_job) | **PUT** /platform/15/datamover/jobs/{DatamoverJobId} | +*DatamoverApi* | [**update_datamover_policy**](docs/DatamoverApi.md#update_datamover_policy) | **PUT** /platform/15/datamover/policies/{DatamoverPolicyId} | *DatamoverApi* | [**update_throttling_bw_rule**](docs/DatamoverApi.md#update_throttling_bw_rule) | **PUT** /platform/15/datamover/throttling/bw-rules/{ThrottlingBwRuleId} | *DatamoverApi* | [**update_throttling_settings**](docs/DatamoverApi.md#update_throttling_settings) | **PUT** /platform/15/datamover/throttling/settings | -*DatamoverPoliciesApi* | [**get_policy_last_job**](docs/DatamoverPoliciesApi.md#get_policy_last_job) | **GET** /platform/19/datamover/policies/{Policyid}/last-job | *DebugApi* | [**delete_debug_stats**](docs/DebugApi.md#delete_debug_stats) | **DELETE** /platform/1/debug/stats | *DebugApi* | [**get_debug_stats**](docs/DebugApi.md#get_debug_stats) | **GET** /platform/1/debug/stats | *DedupeApi* | [**get_dedupe_dedupe_summary**](docs/DedupeApi.md#get_dedupe_dedupe_summary) | **GET** /platform/1/dedupe/dedupe-summary | @@ -518,21 +442,21 @@ Class | Method | HTTP request | Description *DedupeApi* | [**get_inline_settings**](docs/DedupeApi.md#get_inline_settings) | **GET** /platform/6/dedupe/inline/settings | *DedupeApi* | [**update_dedupe_settings**](docs/DedupeApi.md#update_dedupe_settings) | **PUT** /platform/1/dedupe/settings | *DedupeApi* | [**update_inline_settings**](docs/DedupeApi.md#update_inline_settings) | **PUT** /platform/6/dedupe/inline/settings | -*EventApi* | [**create_event_alert_condition**](docs/EventApi.md#create_event_alert_condition) | **POST** /platform/22/event/alert-conditions | -*EventApi* | [**create_event_channel**](docs/EventApi.md#create_event_channel) | **POST** /platform/21/event/channels | -*EventApi* | [**create_event_channel_0**](docs/EventApi.md#create_event_channel_0) | **POST** /platform/21/event/channels/{EventChannelId} | +*EventApi* | [**create_event_alert_condition**](docs/EventApi.md#create_event_alert_condition) | **POST** /platform/15/event/alert-conditions | +*EventApi* | [**create_event_channel**](docs/EventApi.md#create_event_channel) | **POST** /platform/12/event/channels | +*EventApi* | [**create_event_channel_0**](docs/EventApi.md#create_event_channel_0) | **POST** /platform/12/event/channels/{EventChannelId} | *EventApi* | [**create_event_event**](docs/EventApi.md#create_event_event) | **POST** /platform/3/event/events | -*EventApi* | [**delete_event_alert_condition**](docs/EventApi.md#delete_event_alert_condition) | **DELETE** /platform/22/event/alert-conditions/{EventAlertConditionId} | -*EventApi* | [**delete_event_alert_conditions**](docs/EventApi.md#delete_event_alert_conditions) | **DELETE** /platform/22/event/alert-conditions | -*EventApi* | [**delete_event_channel**](docs/EventApi.md#delete_event_channel) | **DELETE** /platform/21/event/channels/{EventChannelId} | -*EventApi* | [**get_event_alert_condition**](docs/EventApi.md#get_event_alert_condition) | **GET** /platform/22/event/alert-conditions/{EventAlertConditionId} | +*EventApi* | [**delete_event_alert_condition**](docs/EventApi.md#delete_event_alert_condition) | **DELETE** /platform/15/event/alert-conditions/{EventAlertConditionId} | +*EventApi* | [**delete_event_alert_conditions**](docs/EventApi.md#delete_event_alert_conditions) | **DELETE** /platform/15/event/alert-conditions | +*EventApi* | [**delete_event_channel**](docs/EventApi.md#delete_event_channel) | **DELETE** /platform/12/event/channels/{EventChannelId} | +*EventApi* | [**get_event_alert_condition**](docs/EventApi.md#get_event_alert_condition) | **GET** /platform/15/event/alert-conditions/{EventAlertConditionId} | *EventApi* | [**get_event_categories**](docs/EventApi.md#get_event_categories) | **GET** /platform/3/event/categories | *EventApi* | [**get_event_category**](docs/EventApi.md#get_event_category) | **GET** /platform/3/event/categories/{EventCategoryId} | -*EventApi* | [**get_event_channel**](docs/EventApi.md#get_event_channel) | **GET** /platform/21/event/channels/{EventChannelId} | -*EventApi* | [**get_event_eventgroup_definition**](docs/EventApi.md#get_event_eventgroup_definition) | **GET** /platform/17/event/eventgroup-definitions/{EventEventgroupDefinitionId} | -*EventApi* | [**get_event_eventgroup_definitions**](docs/EventApi.md#get_event_eventgroup_definitions) | **GET** /platform/17/event/eventgroup-definitions | -*EventApi* | [**get_event_eventgroup_occurrence**](docs/EventApi.md#get_event_eventgroup_occurrence) | **GET** /platform/19/event/eventgroup-occurrences/{EventEventgroupOccurrenceId} | -*EventApi* | [**get_event_eventgroup_occurrences**](docs/EventApi.md#get_event_eventgroup_occurrences) | **GET** /platform/19/event/eventgroup-occurrences | +*EventApi* | [**get_event_channel**](docs/EventApi.md#get_event_channel) | **GET** /platform/12/event/channels/{EventChannelId} | +*EventApi* | [**get_event_eventgroup_definition**](docs/EventApi.md#get_event_eventgroup_definition) | **GET** /platform/12/event/eventgroup-definitions/{EventEventgroupDefinitionId} | +*EventApi* | [**get_event_eventgroup_definitions**](docs/EventApi.md#get_event_eventgroup_definitions) | **GET** /platform/12/event/eventgroup-definitions | +*EventApi* | [**get_event_eventgroup_occurrence**](docs/EventApi.md#get_event_eventgroup_occurrence) | **GET** /platform/12/event/eventgroup-occurrences/{EventEventgroupOccurrenceId} | +*EventApi* | [**get_event_eventgroup_occurrences**](docs/EventApi.md#get_event_eventgroup_occurrences) | **GET** /platform/12/event/eventgroup-occurrences | *EventApi* | [**get_event_eventlist**](docs/EventApi.md#get_event_eventlist) | **GET** /platform/7/event/eventlists/{EventEventlistId} | *EventApi* | [**get_event_eventlists**](docs/EventApi.md#get_event_eventlists) | **GET** /platform/7/event/eventlists | *EventApi* | [**get_event_maintenance**](docs/EventApi.md#get_event_maintenance) | **GET** /platform/12/event/maintenance | @@ -541,12 +465,12 @@ Class | Method | HTTP request | Description *EventApi* | [**get_event_suppress_by_id**](docs/EventApi.md#get_event_suppress_by_id) | **GET** /platform/12/event/suppress/{EventSuppressId} | *EventApi* | [**get_event_threshold**](docs/EventApi.md#get_event_threshold) | **GET** /platform/11/event/thresholds/{EventThresholdId} | *EventApi* | [**get_event_thresholds**](docs/EventApi.md#get_event_thresholds) | **GET** /platform/11/event/thresholds | -*EventApi* | [**list_event_alert_conditions**](docs/EventApi.md#list_event_alert_conditions) | **GET** /platform/22/event/alert-conditions | -*EventApi* | [**list_event_channels**](docs/EventApi.md#list_event_channels) | **GET** /platform/21/event/channels | -*EventApi* | [**update_event_alert_condition**](docs/EventApi.md#update_event_alert_condition) | **PUT** /platform/22/event/alert-conditions/{EventAlertConditionId} | -*EventApi* | [**update_event_channel**](docs/EventApi.md#update_event_channel) | **PUT** /platform/21/event/channels/{EventChannelId} | -*EventApi* | [**update_event_eventgroup_occurrence**](docs/EventApi.md#update_event_eventgroup_occurrence) | **PUT** /platform/19/event/eventgroup-occurrences/{EventEventgroupOccurrenceId} | -*EventApi* | [**update_event_eventgroup_occurrences**](docs/EventApi.md#update_event_eventgroup_occurrences) | **PUT** /platform/19/event/eventgroup-occurrences | +*EventApi* | [**list_event_alert_conditions**](docs/EventApi.md#list_event_alert_conditions) | **GET** /platform/15/event/alert-conditions | +*EventApi* | [**list_event_channels**](docs/EventApi.md#list_event_channels) | **GET** /platform/12/event/channels | +*EventApi* | [**update_event_alert_condition**](docs/EventApi.md#update_event_alert_condition) | **PUT** /platform/15/event/alert-conditions/{EventAlertConditionId} | +*EventApi* | [**update_event_channel**](docs/EventApi.md#update_event_channel) | **PUT** /platform/12/event/channels/{EventChannelId} | +*EventApi* | [**update_event_eventgroup_occurrence**](docs/EventApi.md#update_event_eventgroup_occurrence) | **PUT** /platform/12/event/eventgroup-occurrences/{EventEventgroupOccurrenceId} | +*EventApi* | [**update_event_eventgroup_occurrences**](docs/EventApi.md#update_event_eventgroup_occurrences) | **PUT** /platform/12/event/eventgroup-occurrences | *EventApi* | [**update_event_maintenance**](docs/EventApi.md#update_event_maintenance) | **PUT** /platform/12/event/maintenance | *EventApi* | [**update_event_settings**](docs/EventApi.md#update_event_settings) | **PUT** /platform/14/event/settings | *EventApi* | [**update_event_suppress_by_id**](docs/EventApi.md#update_event_suppress_by_id) | **PUT** /platform/12/event/suppress/{EventSuppressId} | @@ -591,12 +515,11 @@ Class | Method | HTTP request | Description *FsaResultsApi* | [**get_result_top_file**](docs/FsaResultsApi.md#get_result_top_file) | **GET** /platform/3/fsa/results/{Id}/top-files/{ResultTopFileId} | *FsaResultsApi* | [**get_result_top_files**](docs/FsaResultsApi.md#get_result_top_files) | **GET** /platform/3/fsa/results/{Id}/top-files | *GroupnetsSummaryApi* | [**get_groupnets_summary**](docs/GroupnetsSummaryApi.md#get_groupnets_summary) | **GET** /platform/5/groupnets-summary | -*HardeningApi* | [**create_hardening_apply_item**](docs/HardeningApi.md#create_hardening_apply_item) | **POST** /platform/16/hardening/apply | -*HardeningApi* | [**create_hardening_disable_item**](docs/HardeningApi.md#create_hardening_disable_item) | **POST** /platform/16/hardening/disable | -*HardeningApi* | [**create_hardening_report**](docs/HardeningApi.md#create_hardening_report) | **POST** /platform/16/hardening/reports | -*HardeningApi* | [**get_hardening_list**](docs/HardeningApi.md#get_hardening_list) | **GET** /platform/16/hardening/list | -*HardeningApi* | [**get_hardening_state**](docs/HardeningApi.md#get_hardening_state) | **GET** /platform/16/hardening/state | -*HardeningApi* | [**list_hardening_reports**](docs/HardeningApi.md#list_hardening_reports) | **GET** /platform/16/hardening/reports | +*HardeningApi* | [**create_hardening_apply_item**](docs/HardeningApi.md#create_hardening_apply_item) | **POST** /platform/3/hardening/apply | +*HardeningApi* | [**create_hardening_resolve_item**](docs/HardeningApi.md#create_hardening_resolve_item) | **POST** /platform/3/hardening/resolve | +*HardeningApi* | [**create_hardening_revert_item**](docs/HardeningApi.md#create_hardening_revert_item) | **POST** /platform/3/hardening/revert | +*HardeningApi* | [**get_hardening_state**](docs/HardeningApi.md#get_hardening_state) | **GET** /platform/3/hardening/state | +*HardeningApi* | [**get_hardening_status**](docs/HardeningApi.md#get_hardening_status) | **GET** /platform/3/hardening/status | *HardwareApi* | [**create_hardware_tape_name**](docs/HardwareApi.md#create_hardware_tape_name) | **POST** /platform/3/hardware/tape/{HardwareTapeName} | *HardwareApi* | [**delete_hardware_tape_name**](docs/HardwareApi.md#delete_hardware_tape_name) | **DELETE** /platform/3/hardware/tape/{HardwareTapeName} | *HardwareApi* | [**get_hardware_fcport**](docs/HardwareApi.md#get_hardware_fcport) | **GET** /platform/3/hardware/fcports/{HardwareFcportId} | @@ -604,32 +527,28 @@ Class | Method | HTTP request | Description *HardwareApi* | [**get_hardware_tapes**](docs/HardwareApi.md#get_hardware_tapes) | **GET** /platform/3/hardware/tapes | *HardwareApi* | [**update_hardware_fcport**](docs/HardwareApi.md#update_hardware_fcport) | **PUT** /platform/3/hardware/fcports/{HardwareFcportId} | *HardwareApi* | [**update_hardware_tape_name**](docs/HardwareApi.md#update_hardware_tape_name) | **PUT** /platform/3/hardware/tape/{HardwareTapeName} | -*HealthcheckApi* | [**create_healthcheck_definition**](docs/HealthcheckApi.md#create_healthcheck_definition) | **POST** /platform/16/healthcheck/definitions | -*HealthcheckApi* | [**create_healthcheck_evaluation**](docs/HealthcheckApi.md#create_healthcheck_evaluation) | **POST** /platform/22/healthcheck/evaluations | +*HealthcheckApi* | [**create_healthcheck_evaluation**](docs/HealthcheckApi.md#create_healthcheck_evaluation) | **POST** /platform/10/healthcheck/evaluations | *HealthcheckApi* | [**create_healthcheck_parameter**](docs/HealthcheckApi.md#create_healthcheck_parameter) | **POST** /platform/3/healthcheck/parameters | -*HealthcheckApi* | [**create_healthcheck_schedule**](docs/HealthcheckApi.md#create_healthcheck_schedule) | **POST** /platform/16/healthcheck/schedules | -*HealthcheckApi* | [**delete_healthcheck_definition**](docs/HealthcheckApi.md#delete_healthcheck_definition) | **DELETE** /platform/16/healthcheck/definitions/{HealthcheckDefinitionId} | -*HealthcheckApi* | [**delete_healthcheck_evaluation**](docs/HealthcheckApi.md#delete_healthcheck_evaluation) | **DELETE** /platform/22/healthcheck/evaluations/{HealthcheckEvaluationId} | +*HealthcheckApi* | [**create_healthcheck_schedule**](docs/HealthcheckApi.md#create_healthcheck_schedule) | **POST** /platform/10/healthcheck/schedules | +*HealthcheckApi* | [**delete_healthcheck_evaluation**](docs/HealthcheckApi.md#delete_healthcheck_evaluation) | **DELETE** /platform/10/healthcheck/evaluations/{HealthcheckEvaluationId} | *HealthcheckApi* | [**delete_healthcheck_parameter**](docs/HealthcheckApi.md#delete_healthcheck_parameter) | **DELETE** /platform/3/healthcheck/parameters/{HealthcheckParameterId} | -*HealthcheckApi* | [**delete_healthcheck_schedule**](docs/HealthcheckApi.md#delete_healthcheck_schedule) | **DELETE** /platform/16/healthcheck/schedules/{HealthcheckScheduleId} | +*HealthcheckApi* | [**delete_healthcheck_schedule**](docs/HealthcheckApi.md#delete_healthcheck_schedule) | **DELETE** /platform/10/healthcheck/schedules/{HealthcheckScheduleId} | *HealthcheckApi* | [**get_healthcheck_autoupdate**](docs/HealthcheckApi.md#get_healthcheck_autoupdate) | **GET** /platform/15/healthcheck/autoupdate | -*HealthcheckApi* | [**get_healthcheck_checklist**](docs/HealthcheckApi.md#get_healthcheck_checklist) | **GET** /platform/20/healthcheck/checklists/{HealthcheckChecklistId} | -*HealthcheckApi* | [**get_healthcheck_checklists**](docs/HealthcheckApi.md#get_healthcheck_checklists) | **GET** /platform/20/healthcheck/checklists | -*HealthcheckApi* | [**get_healthcheck_definition**](docs/HealthcheckApi.md#get_healthcheck_definition) | **GET** /platform/16/healthcheck/definitions/{HealthcheckDefinitionId} | -*HealthcheckApi* | [**get_healthcheck_evaluation**](docs/HealthcheckApi.md#get_healthcheck_evaluation) | **GET** /platform/22/healthcheck/evaluations/{HealthcheckEvaluationId} | -*HealthcheckApi* | [**get_healthcheck_item**](docs/HealthcheckApi.md#get_healthcheck_item) | **GET** /platform/19/healthcheck/items/{HealthcheckItemId} | -*HealthcheckApi* | [**get_healthcheck_items**](docs/HealthcheckApi.md#get_healthcheck_items) | **GET** /platform/19/healthcheck/items | +*HealthcheckApi* | [**get_healthcheck_checklist**](docs/HealthcheckApi.md#get_healthcheck_checklist) | **GET** /platform/10/healthcheck/checklists/{HealthcheckChecklistId} | +*HealthcheckApi* | [**get_healthcheck_checklists**](docs/HealthcheckApi.md#get_healthcheck_checklists) | **GET** /platform/10/healthcheck/checklists | +*HealthcheckApi* | [**get_healthcheck_evaluation**](docs/HealthcheckApi.md#get_healthcheck_evaluation) | **GET** /platform/10/healthcheck/evaluations/{HealthcheckEvaluationId} | +*HealthcheckApi* | [**get_healthcheck_item**](docs/HealthcheckApi.md#get_healthcheck_item) | **GET** /platform/3/healthcheck/items/{HealthcheckItemId} | +*HealthcheckApi* | [**get_healthcheck_items**](docs/HealthcheckApi.md#get_healthcheck_items) | **GET** /platform/3/healthcheck/items | *HealthcheckApi* | [**get_healthcheck_parameter**](docs/HealthcheckApi.md#get_healthcheck_parameter) | **GET** /platform/3/healthcheck/parameters/{HealthcheckParameterId} | -*HealthcheckApi* | [**get_healthcheck_schedule**](docs/HealthcheckApi.md#get_healthcheck_schedule) | **GET** /platform/16/healthcheck/schedules/{HealthcheckScheduleId} | +*HealthcheckApi* | [**get_healthcheck_schedule**](docs/HealthcheckApi.md#get_healthcheck_schedule) | **GET** /platform/10/healthcheck/schedules/{HealthcheckScheduleId} | *HealthcheckApi* | [**get_healthcheck_version**](docs/HealthcheckApi.md#get_healthcheck_version) | **GET** /platform/15/healthcheck/version | -*HealthcheckApi* | [**list_healthcheck_definitions**](docs/HealthcheckApi.md#list_healthcheck_definitions) | **GET** /platform/16/healthcheck/definitions | -*HealthcheckApi* | [**list_healthcheck_evaluations**](docs/HealthcheckApi.md#list_healthcheck_evaluations) | **GET** /platform/22/healthcheck/evaluations | +*HealthcheckApi* | [**list_healthcheck_evaluations**](docs/HealthcheckApi.md#list_healthcheck_evaluations) | **GET** /platform/10/healthcheck/evaluations | *HealthcheckApi* | [**list_healthcheck_parameters**](docs/HealthcheckApi.md#list_healthcheck_parameters) | **GET** /platform/3/healthcheck/parameters | -*HealthcheckApi* | [**list_healthcheck_schedules**](docs/HealthcheckApi.md#list_healthcheck_schedules) | **GET** /platform/16/healthcheck/schedules | -*HealthcheckApi* | [**update_healthcheck_checklist**](docs/HealthcheckApi.md#update_healthcheck_checklist) | **PUT** /platform/20/healthcheck/checklists/{HealthcheckChecklistId} | -*HealthcheckApi* | [**update_healthcheck_evaluation**](docs/HealthcheckApi.md#update_healthcheck_evaluation) | **PUT** /platform/22/healthcheck/evaluations/{HealthcheckEvaluationId} | +*HealthcheckApi* | [**list_healthcheck_schedules**](docs/HealthcheckApi.md#list_healthcheck_schedules) | **GET** /platform/10/healthcheck/schedules | +*HealthcheckApi* | [**update_healthcheck_checklist**](docs/HealthcheckApi.md#update_healthcheck_checklist) | **PUT** /platform/10/healthcheck/checklists/{HealthcheckChecklistId} | +*HealthcheckApi* | [**update_healthcheck_evaluation**](docs/HealthcheckApi.md#update_healthcheck_evaluation) | **PUT** /platform/10/healthcheck/evaluations/{HealthcheckEvaluationId} | *HealthcheckApi* | [**update_healthcheck_parameter**](docs/HealthcheckApi.md#update_healthcheck_parameter) | **PUT** /platform/3/healthcheck/parameters/{HealthcheckParameterId} | -*HealthcheckApi* | [**update_healthcheck_schedule**](docs/HealthcheckApi.md#update_healthcheck_schedule) | **PUT** /platform/16/healthcheck/schedules/{HealthcheckScheduleId} | +*HealthcheckApi* | [**update_healthcheck_schedule**](docs/HealthcheckApi.md#update_healthcheck_schedule) | **PUT** /platform/10/healthcheck/schedules/{HealthcheckScheduleId} | *IdResolutionApi* | [**get_id_resolution_domain**](docs/IdResolutionApi.md#get_id_resolution_domain) | **GET** /platform/7/id-resolution/domains/{IdResolutionDomainId} | *IdResolutionApi* | [**get_id_resolution_domains**](docs/IdResolutionApi.md#get_id_resolution_domains) | **GET** /platform/7/id-resolution/domains | *IdResolutionApi* | [**get_id_resolution_lin**](docs/IdResolutionApi.md#get_id_resolution_lin) | **GET** /platform/7/id-resolution/lins/{IdResolutionLinId} | @@ -651,43 +570,33 @@ Class | Method | HTTP request | Description *IpmiApi* | [**update_config_network**](docs/IpmiApi.md#update_config_network) | **PUT** /platform/10/ipmi/config/network | *IpmiApi* | [**update_config_settings**](docs/IpmiApi.md#update_config_settings) | **PUT** /platform/10/ipmi/config/settings | *IpmiApi* | [**update_config_user**](docs/IpmiApi.md#update_config_user) | **PUT** /platform/10/ipmi/config/user | -*JobApi* | [**create_job_job**](docs/JobApi.md#create_job_job) | **POST** /platform/21/job/jobs | +*JobApi* | [**create_job_job**](docs/JobApi.md#create_job_job) | **POST** /platform/10/job/jobs | *JobApi* | [**create_job_policy**](docs/JobApi.md#create_job_policy) | **POST** /platform/1/job/policies | *JobApi* | [**delete_job_policy**](docs/JobApi.md#delete_job_policy) | **DELETE** /platform/1/job/policies/{JobPolicyId} | *JobApi* | [**get_job_events**](docs/JobApi.md#get_job_events) | **GET** /platform/3/job/events | -*JobApi* | [**get_job_job**](docs/JobApi.md#get_job_job) | **GET** /platform/21/job/jobs/{JobJobId} | -*JobApi* | [**get_job_job_summary**](docs/JobApi.md#get_job_job_summary) | **GET** /platform/19/job/job-summary | +*JobApi* | [**get_job_job**](docs/JobApi.md#get_job_job) | **GET** /platform/10/job/jobs/{JobJobId} | +*JobApi* | [**get_job_job_summary**](docs/JobApi.md#get_job_job_summary) | **GET** /platform/12/job/job-summary | *JobApi* | [**get_job_policy**](docs/JobApi.md#get_job_policy) | **GET** /platform/1/job/policies/{JobPolicyId} | *JobApi* | [**get_job_recent**](docs/JobApi.md#get_job_recent) | **GET** /platform/3/job/recent | *JobApi* | [**get_job_reports**](docs/JobApi.md#get_job_reports) | **GET** /platform/7/job/reports | -*JobApi* | [**get_job_settings**](docs/JobApi.md#get_job_settings) | **GET** /platform/19/job/settings | *JobApi* | [**get_job_statistics**](docs/JobApi.md#get_job_statistics) | **GET** /platform/1/job/statistics | *JobApi* | [**get_job_type**](docs/JobApi.md#get_job_type) | **GET** /platform/1/job/types/{JobTypeId} | *JobApi* | [**get_job_types**](docs/JobApi.md#get_job_types) | **GET** /platform/1/job/types | -*JobApi* | [**list_job_jobs**](docs/JobApi.md#list_job_jobs) | **GET** /platform/21/job/jobs | +*JobApi* | [**list_job_jobs**](docs/JobApi.md#list_job_jobs) | **GET** /platform/10/job/jobs | *JobApi* | [**list_job_policies**](docs/JobApi.md#list_job_policies) | **GET** /platform/1/job/policies | -*JobApi* | [**update_job_job**](docs/JobApi.md#update_job_job) | **PUT** /platform/21/job/jobs/{JobJobId} | +*JobApi* | [**update_job_job**](docs/JobApi.md#update_job_job) | **PUT** /platform/10/job/jobs/{JobJobId} | *JobApi* | [**update_job_policy**](docs/JobApi.md#update_job_policy) | **PUT** /platform/1/job/policies/{JobPolicyId} | -*JobApi* | [**update_job_settings**](docs/JobApi.md#update_job_settings) | **PUT** /platform/19/job/settings | *JobApi* | [**update_job_type**](docs/JobApi.md#update_job_type) | **PUT** /platform/1/job/types/{JobTypeId} | -*KeymanagerApi* | [**create_cluster_rekey_item**](docs/KeymanagerApi.md#create_cluster_rekey_item) | **POST** /platform/16/keymanager/cluster/rekey | -*KeymanagerApi* | [**create_kmip_server**](docs/KeymanagerApi.md#create_kmip_server) | **POST** /platform/19/keymanager/kmip/servers | +*KeymanagerApi* | [**create_kmip_server**](docs/KeymanagerApi.md#create_kmip_server) | **POST** /platform/12/keymanager/kmip/servers | *KeymanagerApi* | [**create_kmip_server_verify_item**](docs/KeymanagerApi.md#create_kmip_server_verify_item) | **POST** /platform/12/keymanager/kmip/server/verify | *KeymanagerApi* | [**create_sed_migrate_item**](docs/KeymanagerApi.md#create_sed_migrate_item) | **POST** /platform/12/keymanager/sed/migrate | -*KeymanagerApi* | [**create_sed_rekey_item**](docs/KeymanagerApi.md#create_sed_rekey_item) | **POST** /platform/16/keymanager/sed/rekey | -*KeymanagerApi* | [**delete_kmip_server**](docs/KeymanagerApi.md#delete_kmip_server) | **DELETE** /platform/19/keymanager/kmip/servers/{KmipServerId} | -*KeymanagerApi* | [**get_cluster_status**](docs/KeymanagerApi.md#get_cluster_status) | **GET** /platform/16/keymanager/cluster/status | -*KeymanagerApi* | [**get_keymanager_cluster**](docs/KeymanagerApi.md#get_keymanager_cluster) | **GET** /platform/16/keymanager/cluster | -*KeymanagerApi* | [**get_kmip_server**](docs/KeymanagerApi.md#get_kmip_server) | **GET** /platform/19/keymanager/kmip/servers/{KmipServerId} | +*KeymanagerApi* | [**delete_kmip_server**](docs/KeymanagerApi.md#delete_kmip_server) | **DELETE** /platform/12/keymanager/kmip/servers/{KmipServerId} | +*KeymanagerApi* | [**get_kmip_server**](docs/KeymanagerApi.md#get_kmip_server) | **GET** /platform/12/keymanager/kmip/servers/{KmipServerId} | *KeymanagerApi* | [**get_sed_settings**](docs/KeymanagerApi.md#get_sed_settings) | **GET** /platform/12/keymanager/sed/settings | -*KeymanagerApi* | [**get_sed_status**](docs/KeymanagerApi.md#get_sed_status) | **GET** /platform/16/keymanager/sed/status | -*KeymanagerApi* | [**get_sed_status_lnn**](docs/KeymanagerApi.md#get_sed_status_lnn) | **GET** /platform/16/keymanager/sed/status/{SedStatusLnn} | -*KeymanagerApi* | [**list_cluster_rekey**](docs/KeymanagerApi.md#list_cluster_rekey) | **GET** /platform/16/keymanager/cluster/rekey | -*KeymanagerApi* | [**list_kmip_servers**](docs/KeymanagerApi.md#list_kmip_servers) | **GET** /platform/19/keymanager/kmip/servers | -*KeymanagerApi* | [**list_sed_rekey**](docs/KeymanagerApi.md#list_sed_rekey) | **GET** /platform/16/keymanager/sed/rekey | -*KeymanagerApi* | [**update_cluster_rekey**](docs/KeymanagerApi.md#update_cluster_rekey) | **PUT** /platform/16/keymanager/cluster/rekey | -*KeymanagerApi* | [**update_kmip_server**](docs/KeymanagerApi.md#update_kmip_server) | **PUT** /platform/19/keymanager/kmip/servers/{KmipServerId} | -*KeymanagerApi* | [**update_sed_rekey**](docs/KeymanagerApi.md#update_sed_rekey) | **PUT** /platform/16/keymanager/sed/rekey | +*KeymanagerApi* | [**get_sed_status**](docs/KeymanagerApi.md#get_sed_status) | **GET** /platform/12/keymanager/sed/status | +*KeymanagerApi* | [**get_sed_status_lnn**](docs/KeymanagerApi.md#get_sed_status_lnn) | **GET** /platform/12/keymanager/sed/status/{SedStatusLnn} | +*KeymanagerApi* | [**list_kmip_servers**](docs/KeymanagerApi.md#list_kmip_servers) | **GET** /platform/12/keymanager/kmip/servers | +*KeymanagerApi* | [**update_kmip_server**](docs/KeymanagerApi.md#update_kmip_server) | **PUT** /platform/12/keymanager/kmip/servers/{KmipServerId} | *KeymanagerApi* | [**update_sed_settings**](docs/KeymanagerApi.md#update_sed_settings) | **PUT** /platform/12/keymanager/sed/settings | *LfnApi* | [**create_lfn_item**](docs/LfnApi.md#create_lfn_item) | **POST** /platform/12/lfn | *LfnApi* | [**delete_lfn**](docs/LfnApi.md#delete_lfn) | **DELETE** /platform/12/lfn | @@ -696,23 +605,17 @@ Class | Method | HTTP request | Description *LfnApi* | [**list_lfn**](docs/LfnApi.md#list_lfn) | **GET** /platform/12/lfn | *LfnApi* | [**update_lfn_path**](docs/LfnApi.md#update_lfn_path) | **PUT** /platform/12/lfn/{LfnPath} | *LicenseApi* | [**create_license_activation_item**](docs/LicenseApi.md#create_license_activation_item) | **POST** /platform/11/license/activation | -*LicenseApi* | [**create_license_license**](docs/LicenseApi.md#create_license_license) | **POST** /platform/17/license/licenses | +*LicenseApi* | [**create_license_license**](docs/LicenseApi.md#create_license_license) | **POST** /platform/5/license/licenses | *LicenseApi* | [**get_license_generate**](docs/LicenseApi.md#get_license_generate) | **GET** /platform/5/license/generate | -*LicenseApi* | [**get_license_license**](docs/LicenseApi.md#get_license_license) | **GET** /platform/17/license/licenses/{LicenseLicenseId} | +*LicenseApi* | [**get_license_license**](docs/LicenseApi.md#get_license_license) | **GET** /platform/5/license/licenses/{LicenseLicenseId} | *LicenseApi* | [**list_license_activation**](docs/LicenseApi.md#list_license_activation) | **GET** /platform/11/license/activation | -*LicenseApi* | [**list_license_licenses**](docs/LicenseApi.md#list_license_licenses) | **GET** /platform/17/license/licenses | +*LicenseApi* | [**list_license_licenses**](docs/LicenseApi.md#list_license_licenses) | **GET** /platform/5/license/licenses | *LocalApi* | [**get_cluster_time**](docs/LocalApi.md#get_cluster_time) | **GET** /platform/3/local/cluster/time | -*LocalApi* | [**get_network_interfaces**](docs/LocalApi.md#get_network_interfaces) | **GET** /platform/21/local/network/interfaces | +*LocalApi* | [**get_network_interfaces**](docs/LocalApi.md#get_network_interfaces) | **GET** /platform/14/local/network/interfaces | *LocalApi* | [**get_protocols_smb_sessions**](docs/LocalApi.md#get_protocols_smb_sessions) | **GET** /platform/11/local/protocols/smb/sessions | *LocalApi* | [**get_upgrade_cluster_firmware_device**](docs/LocalApi.md#get_upgrade_cluster_firmware_device) | **GET** /platform/10/local/upgrade/cluster/firmware/device | *LocalApi* | [**get_upgrade_cluster_firmware_status**](docs/LocalApi.md#get_upgrade_cluster_firmware_status) | **GET** /platform/3/local/upgrade/cluster/firmware/status | *LocalClusterApi* | [**get_nodes_node_internal_ip_address**](docs/LocalClusterApi.md#get_nodes_node_internal_ip_address) | **GET** /platform/7/local/cluster/nodes/{Lnn}/internal-ip-address | -*MetadataiqApi* | [**create_metadataiq_reset_item**](docs/MetadataiqApi.md#create_metadataiq_reset_item) | **POST** /platform/21/metadataiq/reset | -*MetadataiqApi* | [**delete_metadataiq_reset**](docs/MetadataiqApi.md#delete_metadataiq_reset) | **DELETE** /platform/21/metadataiq/reset | -*MetadataiqApi* | [**get_metadataiq_certificate**](docs/MetadataiqApi.md#get_metadataiq_certificate) | **GET** /platform/22/metadataiq/certificate | -*MetadataiqApi* | [**get_metadataiq_settings**](docs/MetadataiqApi.md#get_metadataiq_settings) | **GET** /platform/21/metadataiq/settings | -*MetadataiqApi* | [**get_metadataiq_status**](docs/MetadataiqApi.md#get_metadataiq_status) | **GET** /platform/22/metadataiq/status | -*MetadataiqApi* | [**update_metadataiq_settings**](docs/MetadataiqApi.md#update_metadataiq_settings) | **PUT** /platform/21/metadataiq/settings | *NamespaceApi* | [**copy_directory**](docs/NamespaceApi.md#copy_directory) | **PUT** /namespace/{DirectoryCopyTarget} | *NamespaceApi* | [**copy_file**](docs/NamespaceApi.md#copy_file) | **PUT** /namespace/{FileCopyTarget} | *NamespaceApi* | [**create_access_point**](docs/NamespaceApi.md#create_access_point) | **PUT** /namespace/{AccessPointName} | @@ -742,85 +645,63 @@ Class | Method | HTTP request | Description *NamespaceApi* | [**set_file_metadata**](docs/NamespaceApi.md#set_file_metadata) | **PUT** /namespace/{FileMetadataPath} | *NamespaceApi* | [**set_worm_properties**](docs/NamespaceApi.md#set_worm_properties) | **PUT** /namespace/{WormFilePath} | *NetworkApi* | [**create_dnscache_flush_item**](docs/NetworkApi.md#create_dnscache_flush_item) | **POST** /platform/3/network/dnscache/flush | -*NetworkApi* | [**create_firewall_policy**](docs/NetworkApi.md#create_firewall_policy) | **POST** /platform/16/network/firewall/policies | -*NetworkApi* | [**create_firewall_reset_dscp_setting_item**](docs/NetworkApi.md#create_firewall_reset_dscp_setting_item) | **POST** /platform/20/network/firewall/reset-dscp-setting | -*NetworkApi* | [**create_firewall_reset_global_policy_item**](docs/NetworkApi.md#create_firewall_reset_global_policy_item) | **POST** /platform/16/network/firewall/reset-global-policy | *NetworkApi* | [**create_network_groupnet**](docs/NetworkApi.md#create_network_groupnet) | **POST** /platform/10/network/groupnets | *NetworkApi* | [**create_network_sc_rebalance_all_item**](docs/NetworkApi.md#create_network_sc_rebalance_all_item) | **POST** /platform/3/network/sc-rebalance-all | -*NetworkApi* | [**delete_firewall_policy**](docs/NetworkApi.md#delete_firewall_policy) | **DELETE** /platform/16/network/firewall/policies/{FirewallPolicyId} | *NetworkApi* | [**delete_network_groupnet**](docs/NetworkApi.md#delete_network_groupnet) | **DELETE** /platform/10/network/groupnets/{NetworkGroupnetId} | -*NetworkApi* | [**get_firewall_dscp**](docs/NetworkApi.md#get_firewall_dscp) | **GET** /platform/20/network/firewall/dscp | -*NetworkApi* | [**get_firewall_dscp_rule**](docs/NetworkApi.md#get_firewall_dscp_rule) | **GET** /platform/20/network/firewall/dscp/{FirewallDscpRule} | -*NetworkApi* | [**get_firewall_policy**](docs/NetworkApi.md#get_firewall_policy) | **GET** /platform/16/network/firewall/policies/{FirewallPolicyId} | -*NetworkApi* | [**get_firewall_rules**](docs/NetworkApi.md#get_firewall_rules) | **GET** /platform/16/network/firewall/rules | -*NetworkApi* | [**get_firewall_services**](docs/NetworkApi.md#get_firewall_services) | **GET** /platform/16/network/firewall/services | -*NetworkApi* | [**get_firewall_settings**](docs/NetworkApi.md#get_firewall_settings) | **GET** /platform/20/network/firewall/settings | *NetworkApi* | [**get_network_dnscache**](docs/NetworkApi.md#get_network_dnscache) | **GET** /platform/3/network/dnscache | -*NetworkApi* | [**get_network_external**](docs/NetworkApi.md#get_network_external) | **GET** /platform/16/network/external | +*NetworkApi* | [**get_network_external**](docs/NetworkApi.md#get_network_external) | **GET** /platform/12/network/external | *NetworkApi* | [**get_network_groupnet**](docs/NetworkApi.md#get_network_groupnet) | **GET** /platform/10/network/groupnets/{NetworkGroupnetId} | -*NetworkApi* | [**get_network_interface_names**](docs/NetworkApi.md#get_network_interface_names) | **GET** /platform/21/network/interface-names | -*NetworkApi* | [**get_network_interfaces**](docs/NetworkApi.md#get_network_interfaces) | **GET** /platform/21/network/interfaces | -*NetworkApi* | [**get_network_pools**](docs/NetworkApi.md#get_network_pools) | **GET** /platform/21/network/pools | -*NetworkApi* | [**get_network_rules**](docs/NetworkApi.md#get_network_rules) | **GET** /platform/21/network/rules | -*NetworkApi* | [**get_network_subnets**](docs/NetworkApi.md#get_network_subnets) | **GET** /platform/21/network/subnets | -*NetworkApi* | [**list_firewall_policies**](docs/NetworkApi.md#list_firewall_policies) | **GET** /platform/16/network/firewall/policies | +*NetworkApi* | [**get_network_interfaces**](docs/NetworkApi.md#get_network_interfaces) | **GET** /platform/14/network/interfaces | +*NetworkApi* | [**get_network_pools**](docs/NetworkApi.md#get_network_pools) | **GET** /platform/12/network/pools | +*NetworkApi* | [**get_network_rules**](docs/NetworkApi.md#get_network_rules) | **GET** /platform/3/network/rules | +*NetworkApi* | [**get_network_subnets**](docs/NetworkApi.md#get_network_subnets) | **GET** /platform/7/network/subnets | *NetworkApi* | [**list_network_groupnets**](docs/NetworkApi.md#list_network_groupnets) | **GET** /platform/10/network/groupnets | -*NetworkApi* | [**update_firewall_dscp_rule**](docs/NetworkApi.md#update_firewall_dscp_rule) | **PUT** /platform/20/network/firewall/dscp/{FirewallDscpRule} | -*NetworkApi* | [**update_firewall_policy**](docs/NetworkApi.md#update_firewall_policy) | **PUT** /platform/16/network/firewall/policies/{FirewallPolicyId} | -*NetworkApi* | [**update_firewall_settings**](docs/NetworkApi.md#update_firewall_settings) | **PUT** /platform/20/network/firewall/settings | *NetworkApi* | [**update_network_dnscache**](docs/NetworkApi.md#update_network_dnscache) | **PUT** /platform/3/network/dnscache | -*NetworkApi* | [**update_network_external**](docs/NetworkApi.md#update_network_external) | **PUT** /platform/16/network/external | +*NetworkApi* | [**update_network_external**](docs/NetworkApi.md#update_network_external) | **PUT** /platform/12/network/external | *NetworkApi* | [**update_network_groupnet**](docs/NetworkApi.md#update_network_groupnet) | **PUT** /platform/10/network/groupnets/{NetworkGroupnetId} | -*NetworkFirewallApi* | [**create_policies_policy_rule**](docs/NetworkFirewallApi.md#create_policies_policy_rule) | **POST** /platform/16/network/firewall/policies/{Policy}/rules | -*NetworkFirewallApi* | [**delete_policies_policy_rule**](docs/NetworkFirewallApi.md#delete_policies_policy_rule) | **DELETE** /platform/16/network/firewall/policies/{Policy}/rules/{PoliciesPolicyRuleId} | -*NetworkFirewallApi* | [**get_policies_policy_rule**](docs/NetworkFirewallApi.md#get_policies_policy_rule) | **GET** /platform/16/network/firewall/policies/{Policy}/rules/{PoliciesPolicyRuleId} | -*NetworkFirewallApi* | [**list_policies_policy_rules**](docs/NetworkFirewallApi.md#list_policies_policy_rules) | **GET** /platform/16/network/firewall/policies/{Policy}/rules | -*NetworkFirewallApi* | [**update_policies_policy_rule**](docs/NetworkFirewallApi.md#update_policies_policy_rule) | **PUT** /platform/16/network/firewall/policies/{Policy}/rules/{PoliciesPolicyRuleId} | -*NetworkGroupnetsApi* | [**create_groupnet_subnet**](docs/NetworkGroupnetsApi.md#create_groupnet_subnet) | **POST** /platform/21/network/groupnets/{Groupnet}/subnets | -*NetworkGroupnetsApi* | [**create_subnets_subnet_pool**](docs/NetworkGroupnetsApi.md#create_subnets_subnet_pool) | **POST** /platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools | -*NetworkGroupnetsApi* | [**delete_groupnet_subnet**](docs/NetworkGroupnetsApi.md#delete_groupnet_subnet) | **DELETE** /platform/21/network/groupnets/{Groupnet}/subnets/{GroupnetSubnetId} | -*NetworkGroupnetsApi* | [**delete_subnets_subnet_pool**](docs/NetworkGroupnetsApi.md#delete_subnets_subnet_pool) | **DELETE** /platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{SubnetsSubnetPoolId} | -*NetworkGroupnetsApi* | [**get_groupnet_subnet**](docs/NetworkGroupnetsApi.md#get_groupnet_subnet) | **GET** /platform/21/network/groupnets/{Groupnet}/subnets/{GroupnetSubnetId} | -*NetworkGroupnetsApi* | [**get_subnets_subnet_pool**](docs/NetworkGroupnetsApi.md#get_subnets_subnet_pool) | **GET** /platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{SubnetsSubnetPoolId} | -*NetworkGroupnetsApi* | [**list_groupnet_subnets**](docs/NetworkGroupnetsApi.md#list_groupnet_subnets) | **GET** /platform/21/network/groupnets/{Groupnet}/subnets | -*NetworkGroupnetsApi* | [**list_subnets_subnet_pools**](docs/NetworkGroupnetsApi.md#list_subnets_subnet_pools) | **GET** /platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools | -*NetworkGroupnetsApi* | [**update_groupnet_subnet**](docs/NetworkGroupnetsApi.md#update_groupnet_subnet) | **PUT** /platform/21/network/groupnets/{Groupnet}/subnets/{GroupnetSubnetId} | -*NetworkGroupnetsApi* | [**update_subnets_subnet_pool**](docs/NetworkGroupnetsApi.md#update_subnets_subnet_pool) | **PUT** /platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{SubnetsSubnetPoolId} | +*NetworkGroupnetsApi* | [**create_groupnet_subnet**](docs/NetworkGroupnetsApi.md#create_groupnet_subnet) | **POST** /platform/12/network/groupnets/{Groupnet}/subnets | +*NetworkGroupnetsApi* | [**create_subnets_subnet_pool**](docs/NetworkGroupnetsApi.md#create_subnets_subnet_pool) | **POST** /platform/12/network/groupnets/{Groupnet}/subnets/{Subnet}/pools | +*NetworkGroupnetsApi* | [**delete_groupnet_subnet**](docs/NetworkGroupnetsApi.md#delete_groupnet_subnet) | **DELETE** /platform/12/network/groupnets/{Groupnet}/subnets/{GroupnetSubnetId} | +*NetworkGroupnetsApi* | [**delete_subnets_subnet_pool**](docs/NetworkGroupnetsApi.md#delete_subnets_subnet_pool) | **DELETE** /platform/12/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{SubnetsSubnetPoolId} | +*NetworkGroupnetsApi* | [**get_groupnet_subnet**](docs/NetworkGroupnetsApi.md#get_groupnet_subnet) | **GET** /platform/12/network/groupnets/{Groupnet}/subnets/{GroupnetSubnetId} | +*NetworkGroupnetsApi* | [**get_subnets_subnet_pool**](docs/NetworkGroupnetsApi.md#get_subnets_subnet_pool) | **GET** /platform/12/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{SubnetsSubnetPoolId} | +*NetworkGroupnetsApi* | [**list_groupnet_subnets**](docs/NetworkGroupnetsApi.md#list_groupnet_subnets) | **GET** /platform/12/network/groupnets/{Groupnet}/subnets | +*NetworkGroupnetsApi* | [**list_subnets_subnet_pools**](docs/NetworkGroupnetsApi.md#list_subnets_subnet_pools) | **GET** /platform/12/network/groupnets/{Groupnet}/subnets/{Subnet}/pools | +*NetworkGroupnetsApi* | [**update_groupnet_subnet**](docs/NetworkGroupnetsApi.md#update_groupnet_subnet) | **PUT** /platform/12/network/groupnets/{Groupnet}/subnets/{GroupnetSubnetId} | +*NetworkGroupnetsApi* | [**update_subnets_subnet_pool**](docs/NetworkGroupnetsApi.md#update_subnets_subnet_pool) | **PUT** /platform/12/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{SubnetsSubnetPoolId} | *NetworkGroupnetsSubnetsApi* | [**create_pools_pool_rebalance_ip**](docs/NetworkGroupnetsSubnetsApi.md#create_pools_pool_rebalance_ip) | **POST** /platform/3/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rebalance-ips | -*NetworkGroupnetsSubnetsApi* | [**create_pools_pool_rule**](docs/NetworkGroupnetsSubnetsApi.md#create_pools_pool_rule) | **POST** /platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules | +*NetworkGroupnetsSubnetsApi* | [**create_pools_pool_rule**](docs/NetworkGroupnetsSubnetsApi.md#create_pools_pool_rule) | **POST** /platform/3/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules | *NetworkGroupnetsSubnetsApi* | [**create_pools_pool_sc_resume_node**](docs/NetworkGroupnetsSubnetsApi.md#create_pools_pool_sc_resume_node) | **POST** /platform/3/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/sc-resume-nodes | *NetworkGroupnetsSubnetsApi* | [**create_pools_pool_sc_suspend_node**](docs/NetworkGroupnetsSubnetsApi.md#create_pools_pool_sc_suspend_node) | **POST** /platform/3/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/sc-suspend-nodes | -*NetworkGroupnetsSubnetsApi* | [**delete_pools_pool_rule**](docs/NetworkGroupnetsSubnetsApi.md#delete_pools_pool_rule) | **DELETE** /platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules/{PoolsPoolRuleId} | +*NetworkGroupnetsSubnetsApi* | [**delete_pools_pool_rule**](docs/NetworkGroupnetsSubnetsApi.md#delete_pools_pool_rule) | **DELETE** /platform/3/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules/{PoolsPoolRuleId} | *NetworkGroupnetsSubnetsApi* | [**get_pools_pool_interfaces**](docs/NetworkGroupnetsSubnetsApi.md#get_pools_pool_interfaces) | **GET** /platform/7/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/interfaces | -*NetworkGroupnetsSubnetsApi* | [**get_pools_pool_rule**](docs/NetworkGroupnetsSubnetsApi.md#get_pools_pool_rule) | **GET** /platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules/{PoolsPoolRuleId} | +*NetworkGroupnetsSubnetsApi* | [**get_pools_pool_rule**](docs/NetworkGroupnetsSubnetsApi.md#get_pools_pool_rule) | **GET** /platform/3/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules/{PoolsPoolRuleId} | *NetworkGroupnetsSubnetsApi* | [**get_pools_pool_status**](docs/NetworkGroupnetsSubnetsApi.md#get_pools_pool_status) | **GET** /platform/15/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/status | -*NetworkGroupnetsSubnetsApi* | [**list_pools_pool_rules**](docs/NetworkGroupnetsSubnetsApi.md#list_pools_pool_rules) | **GET** /platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules | -*NetworkGroupnetsSubnetsApi* | [**update_pools_pool_rule**](docs/NetworkGroupnetsSubnetsApi.md#update_pools_pool_rule) | **PUT** /platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules/{PoolsPoolRuleId} | -*OsApi* | [**get_os_security**](docs/OsApi.md#get_os_security) | **GET** /platform/16/os/security | -*PapiApi* | [**get_papi_settings**](docs/PapiApi.md#get_papi_settings) | **GET** /platform/18/papi/settings | -*PapiApi* | [**update_papi_settings**](docs/PapiApi.md#update_papi_settings) | **PUT** /platform/18/papi/settings | -*PerformanceApi* | [**create_performance_dataset**](docs/PerformanceApi.md#create_performance_dataset) | **POST** /platform/19/performance/datasets | -*PerformanceApi* | [**delete_datasets_dataset_workloads_workload_limit**](docs/PerformanceApi.md#delete_datasets_dataset_workloads_workload_limit) | **DELETE** /platform/16/performance/datasets/{Dataset}/workloads/{Workload}/limits/{DatasetsDatasetWorkloadsWorkloadLimitId} | -*PerformanceApi* | [**delete_performance_dataset**](docs/PerformanceApi.md#delete_performance_dataset) | **DELETE** /platform/19/performance/datasets/{PerformanceDatasetId} | -*PerformanceApi* | [**get_performance_dataset**](docs/PerformanceApi.md#get_performance_dataset) | **GET** /platform/19/performance/datasets/{PerformanceDatasetId} | -*PerformanceApi* | [**get_performance_metric**](docs/PerformanceApi.md#get_performance_metric) | **GET** /platform/19/performance/metrics/{PerformanceMetricId} | -*PerformanceApi* | [**get_performance_metrics**](docs/PerformanceApi.md#get_performance_metrics) | **GET** /platform/19/performance/metrics | -*PerformanceApi* | [**get_performance_settings**](docs/PerformanceApi.md#get_performance_settings) | **GET** /platform/19/performance/settings | -*PerformanceApi* | [**list_performance_datasets**](docs/PerformanceApi.md#list_performance_datasets) | **GET** /platform/19/performance/datasets | -*PerformanceApi* | [**update_performance_dataset**](docs/PerformanceApi.md#update_performance_dataset) | **PUT** /platform/19/performance/datasets/{PerformanceDatasetId} | -*PerformanceApi* | [**update_performance_settings**](docs/PerformanceApi.md#update_performance_settings) | **PUT** /platform/19/performance/settings | -*PerformanceDatasetsApi* | [**create_dataset_filter**](docs/PerformanceDatasetsApi.md#create_dataset_filter) | **POST** /platform/19/performance/datasets/{Dataset}/filters | -*PerformanceDatasetsApi* | [**create_dataset_workload**](docs/PerformanceDatasetsApi.md#create_dataset_workload) | **POST** /platform/19/performance/datasets/{Dataset}/workloads | -*PerformanceDatasetsApi* | [**delete_dataset_filter**](docs/PerformanceDatasetsApi.md#delete_dataset_filter) | **DELETE** /platform/19/performance/datasets/{Dataset}/filters/{DatasetFilterId} | -*PerformanceDatasetsApi* | [**delete_dataset_filters**](docs/PerformanceDatasetsApi.md#delete_dataset_filters) | **DELETE** /platform/19/performance/datasets/{Dataset}/filters | -*PerformanceDatasetsApi* | [**delete_dataset_workload**](docs/PerformanceDatasetsApi.md#delete_dataset_workload) | **DELETE** /platform/19/performance/datasets/{Dataset}/workloads/{DatasetWorkloadId} | -*PerformanceDatasetsApi* | [**delete_dataset_workloads**](docs/PerformanceDatasetsApi.md#delete_dataset_workloads) | **DELETE** /platform/19/performance/datasets/{Dataset}/workloads | -*PerformanceDatasetsApi* | [**get_dataset_filter**](docs/PerformanceDatasetsApi.md#get_dataset_filter) | **GET** /platform/19/performance/datasets/{Dataset}/filters/{DatasetFilterId} | -*PerformanceDatasetsApi* | [**get_dataset_workload**](docs/PerformanceDatasetsApi.md#get_dataset_workload) | **GET** /platform/19/performance/datasets/{Dataset}/workloads/{DatasetWorkloadId} | -*PerformanceDatasetsApi* | [**list_dataset_filters**](docs/PerformanceDatasetsApi.md#list_dataset_filters) | **GET** /platform/19/performance/datasets/{Dataset}/filters | -*PerformanceDatasetsApi* | [**list_dataset_workloads**](docs/PerformanceDatasetsApi.md#list_dataset_workloads) | **GET** /platform/19/performance/datasets/{Dataset}/workloads | -*PerformanceDatasetsApi* | [**update_dataset_filter**](docs/PerformanceDatasetsApi.md#update_dataset_filter) | **PUT** /platform/19/performance/datasets/{Dataset}/filters/{DatasetFilterId} | -*PerformanceDatasetsApi* | [**update_dataset_workload**](docs/PerformanceDatasetsApi.md#update_dataset_workload) | **PUT** /platform/19/performance/datasets/{Dataset}/workloads/{DatasetWorkloadId} | +*NetworkGroupnetsSubnetsApi* | [**list_pools_pool_rules**](docs/NetworkGroupnetsSubnetsApi.md#list_pools_pool_rules) | **GET** /platform/3/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules | +*NetworkGroupnetsSubnetsApi* | [**update_pools_pool_rule**](docs/NetworkGroupnetsSubnetsApi.md#update_pools_pool_rule) | **PUT** /platform/3/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules/{PoolsPoolRuleId} | +*PapiApi* | [**get_papi_settings**](docs/PapiApi.md#get_papi_settings) | **GET** /platform/14/papi/settings | +*PapiApi* | [**update_papi_settings**](docs/PapiApi.md#update_papi_settings) | **PUT** /platform/14/papi/settings | +*PerformanceApi* | [**create_performance_dataset**](docs/PerformanceApi.md#create_performance_dataset) | **POST** /platform/12/performance/datasets | +*PerformanceApi* | [**delete_performance_dataset**](docs/PerformanceApi.md#delete_performance_dataset) | **DELETE** /platform/12/performance/datasets/{PerformanceDatasetId} | +*PerformanceApi* | [**get_performance_dataset**](docs/PerformanceApi.md#get_performance_dataset) | **GET** /platform/12/performance/datasets/{PerformanceDatasetId} | +*PerformanceApi* | [**get_performance_metric**](docs/PerformanceApi.md#get_performance_metric) | **GET** /platform/12/performance/metrics/{PerformanceMetricId} | +*PerformanceApi* | [**get_performance_metrics**](docs/PerformanceApi.md#get_performance_metrics) | **GET** /platform/12/performance/metrics | +*PerformanceApi* | [**get_performance_settings**](docs/PerformanceApi.md#get_performance_settings) | **GET** /platform/12/performance/settings | +*PerformanceApi* | [**list_performance_datasets**](docs/PerformanceApi.md#list_performance_datasets) | **GET** /platform/12/performance/datasets | +*PerformanceApi* | [**update_performance_dataset**](docs/PerformanceApi.md#update_performance_dataset) | **PUT** /platform/12/performance/datasets/{PerformanceDatasetId} | +*PerformanceApi* | [**update_performance_settings**](docs/PerformanceApi.md#update_performance_settings) | **PUT** /platform/12/performance/settings | +*PerformanceDatasetsApi* | [**create_dataset_filter**](docs/PerformanceDatasetsApi.md#create_dataset_filter) | **POST** /platform/12/performance/datasets/{Dataset}/filters | +*PerformanceDatasetsApi* | [**create_dataset_workload**](docs/PerformanceDatasetsApi.md#create_dataset_workload) | **POST** /platform/12/performance/datasets/{Dataset}/workloads | +*PerformanceDatasetsApi* | [**delete_dataset_filter**](docs/PerformanceDatasetsApi.md#delete_dataset_filter) | **DELETE** /platform/12/performance/datasets/{Dataset}/filters/{DatasetFilterId} | +*PerformanceDatasetsApi* | [**delete_dataset_filters**](docs/PerformanceDatasetsApi.md#delete_dataset_filters) | **DELETE** /platform/12/performance/datasets/{Dataset}/filters | +*PerformanceDatasetsApi* | [**delete_dataset_workload**](docs/PerformanceDatasetsApi.md#delete_dataset_workload) | **DELETE** /platform/12/performance/datasets/{Dataset}/workloads/{DatasetWorkloadId} | +*PerformanceDatasetsApi* | [**delete_dataset_workloads**](docs/PerformanceDatasetsApi.md#delete_dataset_workloads) | **DELETE** /platform/12/performance/datasets/{Dataset}/workloads | +*PerformanceDatasetsApi* | [**get_dataset_filter**](docs/PerformanceDatasetsApi.md#get_dataset_filter) | **GET** /platform/12/performance/datasets/{Dataset}/filters/{DatasetFilterId} | +*PerformanceDatasetsApi* | [**get_dataset_workload**](docs/PerformanceDatasetsApi.md#get_dataset_workload) | **GET** /platform/12/performance/datasets/{Dataset}/workloads/{DatasetWorkloadId} | +*PerformanceDatasetsApi* | [**list_dataset_filters**](docs/PerformanceDatasetsApi.md#list_dataset_filters) | **GET** /platform/12/performance/datasets/{Dataset}/filters | +*PerformanceDatasetsApi* | [**list_dataset_workloads**](docs/PerformanceDatasetsApi.md#list_dataset_workloads) | **GET** /platform/12/performance/datasets/{Dataset}/workloads | +*PerformanceDatasetsApi* | [**update_dataset_filter**](docs/PerformanceDatasetsApi.md#update_dataset_filter) | **PUT** /platform/12/performance/datasets/{Dataset}/filters/{DatasetFilterId} | +*PerformanceDatasetsApi* | [**update_dataset_workload**](docs/PerformanceDatasetsApi.md#update_dataset_workload) | **PUT** /platform/12/performance/datasets/{Dataset}/workloads/{DatasetWorkloadId} | *ProtocolsApi* | [**create_hdfs_crypto_encryption_zone**](docs/ProtocolsApi.md#create_hdfs_crypto_encryption_zone) | **POST** /platform/7/protocols/hdfs/crypto/encryption-zones | *ProtocolsApi* | [**create_hdfs_proxyuser**](docs/ProtocolsApi.md#create_hdfs_proxyuser) | **POST** /platform/1/protocols/hdfs/proxyusers | *ProtocolsApi* | [**create_hdfs_rack**](docs/ProtocolsApi.md#create_hdfs_rack) | **POST** /platform/1/protocols/hdfs/racks | @@ -828,7 +709,7 @@ Class | Method | HTTP request | Description *ProtocolsApi* | [**create_ndmp_settings_variable**](docs/ProtocolsApi.md#create_ndmp_settings_variable) | **POST** /platform/3/protocols/ndmp/settings/variables/{NdmpSettingsVariableId} | *ProtocolsApi* | [**create_ndmp_user**](docs/ProtocolsApi.md#create_ndmp_user) | **POST** /platform/3/protocols/ndmp/users | *ProtocolsApi* | [**create_nfs_alias**](docs/ProtocolsApi.md#create_nfs_alias) | **POST** /platform/15/protocols/nfs/aliases | -*ProtocolsApi* | [**create_nfs_export**](docs/ProtocolsApi.md#create_nfs_export) | **POST** /platform/22/protocols/nfs/exports | +*ProtocolsApi* | [**create_nfs_export**](docs/ProtocolsApi.md#create_nfs_export) | **POST** /platform/4/protocols/nfs/exports | *ProtocolsApi* | [**create_nfs_netgroup_check_item**](docs/ProtocolsApi.md#create_nfs_netgroup_check_item) | **POST** /platform/3/protocols/nfs/netgroup/check | *ProtocolsApi* | [**create_nfs_netgroup_flush_item**](docs/ProtocolsApi.md#create_nfs_netgroup_flush_item) | **POST** /platform/3/protocols/nfs/netgroup/flush | *ProtocolsApi* | [**create_nfs_netgroup_save_item**](docs/ProtocolsApi.md#create_nfs_netgroup_save_item) | **POST** /platform/12/protocols/nfs/netgroup/save | @@ -839,7 +720,8 @@ Class | Method | HTTP request | Description *ProtocolsApi* | [**create_s3_key**](docs/ProtocolsApi.md#create_s3_key) | **POST** /platform/10/protocols/s3/keys/{S3KeyId} | *ProtocolsApi* | [**create_s3_mykey**](docs/ProtocolsApi.md#create_s3_mykey) | **POST** /platform/10/protocols/s3/mykeys | *ProtocolsApi* | [**create_smb_log_level_filter**](docs/ProtocolsApi.md#create_smb_log_level_filter) | **POST** /platform/3/protocols/smb/log-level/filters | -*ProtocolsApi* | [**create_smb_share**](docs/ProtocolsApi.md#create_smb_share) | **POST** /platform/22/protocols/smb/shares | +*ProtocolsApi* | [**create_smb_share**](docs/ProtocolsApi.md#create_smb_share) | **POST** /platform/12/protocols/smb/shares | +*ProtocolsApi* | [**create_swift_account**](docs/ProtocolsApi.md#create_swift_account) | **POST** /platform/3/protocols/swift/accounts | *ProtocolsApi* | [**delete_hdfs_fsimage_latest**](docs/ProtocolsApi.md#delete_hdfs_fsimage_latest) | **DELETE** /platform/5/protocols/hdfs/fsimage/latest | *ProtocolsApi* | [**delete_hdfs_inotify_stream**](docs/ProtocolsApi.md#delete_hdfs_inotify_stream) | **DELETE** /platform/5/protocols/hdfs/inotify/stream | *ProtocolsApi* | [**delete_hdfs_proxyuser**](docs/ProtocolsApi.md#delete_hdfs_proxyuser) | **DELETE** /platform/1/protocols/hdfs/proxyusers/{HdfsProxyuserId} | @@ -853,7 +735,7 @@ Class | Method | HTTP request | Description *ProtocolsApi* | [**delete_ndmp_settings_variable**](docs/ProtocolsApi.md#delete_ndmp_settings_variable) | **DELETE** /platform/3/protocols/ndmp/settings/variables/{NdmpSettingsVariableId} | *ProtocolsApi* | [**delete_ndmp_user**](docs/ProtocolsApi.md#delete_ndmp_user) | **DELETE** /platform/3/protocols/ndmp/users/{NdmpUserId} | *ProtocolsApi* | [**delete_nfs_alias**](docs/ProtocolsApi.md#delete_nfs_alias) | **DELETE** /platform/15/protocols/nfs/aliases/{NfsAliasId} | -*ProtocolsApi* | [**delete_nfs_export**](docs/ProtocolsApi.md#delete_nfs_export) | **DELETE** /platform/22/protocols/nfs/exports/{NfsExportId} | +*ProtocolsApi* | [**delete_nfs_export**](docs/ProtocolsApi.md#delete_nfs_export) | **DELETE** /platform/4/protocols/nfs/exports/{NfsExportId} | *ProtocolsApi* | [**delete_nfs_nlm_session**](docs/ProtocolsApi.md#delete_nfs_nlm_session) | **DELETE** /platform/3/protocols/nfs/nlm/sessions/{NfsNlmSessionId} | *ProtocolsApi* | [**delete_ntp_server**](docs/ProtocolsApi.md#delete_ntp_server) | **DELETE** /platform/3/protocols/ntp/servers/{NtpServerId} | *ProtocolsApi* | [**delete_ntp_servers**](docs/ProtocolsApi.md#delete_ntp_servers) | **DELETE** /platform/3/protocols/ntp/servers | @@ -865,9 +747,10 @@ Class | Method | HTTP request | Description *ProtocolsApi* | [**delete_smb_openfile**](docs/ProtocolsApi.md#delete_smb_openfile) | **DELETE** /platform/1/protocols/smb/openfiles/{SmbOpenfileId} | *ProtocolsApi* | [**delete_smb_session**](docs/ProtocolsApi.md#delete_smb_session) | **DELETE** /platform/11/protocols/smb/sessions/{SmbSessionId} | *ProtocolsApi* | [**delete_smb_sessions_computer_user**](docs/ProtocolsApi.md#delete_smb_sessions_computer_user) | **DELETE** /platform/1/protocols/smb/sessions/{Computer}/{SmbSessionsComputerUser} | -*ProtocolsApi* | [**delete_smb_share**](docs/ProtocolsApi.md#delete_smb_share) | **DELETE** /platform/22/protocols/smb/shares/{SmbShareId} | -*ProtocolsApi* | [**delete_smb_shares**](docs/ProtocolsApi.md#delete_smb_shares) | **DELETE** /platform/22/protocols/smb/shares | -*ProtocolsApi* | [**get_ftp_settings**](docs/ProtocolsApi.md#get_ftp_settings) | **GET** /platform/16/protocols/ftp/settings | +*ProtocolsApi* | [**delete_smb_share**](docs/ProtocolsApi.md#delete_smb_share) | **DELETE** /platform/12/protocols/smb/shares/{SmbShareId} | +*ProtocolsApi* | [**delete_smb_shares**](docs/ProtocolsApi.md#delete_smb_shares) | **DELETE** /platform/12/protocols/smb/shares | +*ProtocolsApi* | [**delete_swift_account**](docs/ProtocolsApi.md#delete_swift_account) | **DELETE** /platform/3/protocols/swift/accounts/{SwiftAccountId} | +*ProtocolsApi* | [**get_ftp_settings**](docs/ProtocolsApi.md#get_ftp_settings) | **GET** /platform/3/protocols/ftp/settings | *ProtocolsApi* | [**get_hdfs_crypto_settings**](docs/ProtocolsApi.md#get_hdfs_crypto_settings) | **GET** /platform/7/protocols/hdfs/crypto/settings | *ProtocolsApi* | [**get_hdfs_fsimage_job**](docs/ProtocolsApi.md#get_hdfs_fsimage_job) | **GET** /platform/5/protocols/hdfs/fsimage/job | *ProtocolsApi* | [**get_hdfs_fsimage_job_settings**](docs/ProtocolsApi.md#get_hdfs_fsimage_job_settings) | **GET** /platform/5/protocols/hdfs/fsimage/job/settings | @@ -883,7 +766,7 @@ Class | Method | HTTP request | Description *ProtocolsApi* | [**get_hdfs_settings_global**](docs/ProtocolsApi.md#get_hdfs_settings_global) | **GET** /platform/11/protocols/hdfs/settings/global | *ProtocolsApi* | [**get_http_service**](docs/ProtocolsApi.md#get_http_service) | **GET** /platform/15/protocols/http/services/{HttpServiceId} | *ProtocolsApi* | [**get_http_services**](docs/ProtocolsApi.md#get_http_services) | **GET** /platform/15/protocols/http/services | -*ProtocolsApi* | [**get_http_settings**](docs/ProtocolsApi.md#get_http_settings) | **GET** /platform/16/protocols/http/settings | +*ProtocolsApi* | [**get_http_settings**](docs/ProtocolsApi.md#get_http_settings) | **GET** /platform/3/protocols/http/settings | *ProtocolsApi* | [**get_ndmp_contexts_backup**](docs/ProtocolsApi.md#get_ndmp_contexts_backup) | **GET** /platform/3/protocols/ndmp/contexts/backup | *ProtocolsApi* | [**get_ndmp_contexts_backup_by_id**](docs/ProtocolsApi.md#get_ndmp_contexts_backup_by_id) | **GET** /platform/3/protocols/ndmp/contexts/backup/{NdmpContextsBackupId} | *ProtocolsApi* | [**get_ndmp_contexts_bre**](docs/ProtocolsApi.md#get_ndmp_contexts_bre) | **GET** /platform/3/protocols/ndmp/contexts/bre | @@ -896,15 +779,14 @@ Class | Method | HTTP request | Description *ProtocolsApi* | [**get_ndmp_session**](docs/ProtocolsApi.md#get_ndmp_session) | **GET** /platform/3/protocols/ndmp/sessions/{NdmpSessionId} | *ProtocolsApi* | [**get_ndmp_sessions**](docs/ProtocolsApi.md#get_ndmp_sessions) | **GET** /platform/3/protocols/ndmp/sessions | *ProtocolsApi* | [**get_ndmp_settings_dmas**](docs/ProtocolsApi.md#get_ndmp_settings_dmas) | **GET** /platform/3/protocols/ndmp/settings/dmas | -*ProtocolsApi* | [**get_ndmp_settings_global**](docs/ProtocolsApi.md#get_ndmp_settings_global) | **GET** /platform/20/protocols/ndmp/settings/global | +*ProtocolsApi* | [**get_ndmp_settings_global**](docs/ProtocolsApi.md#get_ndmp_settings_global) | **GET** /platform/3/protocols/ndmp/settings/global | *ProtocolsApi* | [**get_ndmp_settings_preferred_ip**](docs/ProtocolsApi.md#get_ndmp_settings_preferred_ip) | **GET** /platform/4/protocols/ndmp/settings/preferred-ips/{NdmpSettingsPreferredIpId} | *ProtocolsApi* | [**get_ndmp_settings_variable**](docs/ProtocolsApi.md#get_ndmp_settings_variable) | **GET** /platform/3/protocols/ndmp/settings/variables/{NdmpSettingsVariableId} | *ProtocolsApi* | [**get_ndmp_user**](docs/ProtocolsApi.md#get_ndmp_user) | **GET** /platform/3/protocols/ndmp/users/{NdmpUserId} | *ProtocolsApi* | [**get_nfs_alias**](docs/ProtocolsApi.md#get_nfs_alias) | **GET** /platform/15/protocols/nfs/aliases/{NfsAliasId} | *ProtocolsApi* | [**get_nfs_check**](docs/ProtocolsApi.md#get_nfs_check) | **GET** /platform/2/protocols/nfs/check | -*ProtocolsApi* | [**get_nfs_export**](docs/ProtocolsApi.md#get_nfs_export) | **GET** /platform/22/protocols/nfs/exports/{NfsExportId} | +*ProtocolsApi* | [**get_nfs_export**](docs/ProtocolsApi.md#get_nfs_export) | **GET** /platform/4/protocols/nfs/exports/{NfsExportId} | *ProtocolsApi* | [**get_nfs_exports_summary**](docs/ProtocolsApi.md#get_nfs_exports_summary) | **GET** /platform/2/protocols/nfs/exports-summary | -*ProtocolsApi* | [**get_nfs_locks**](docs/ProtocolsApi.md#get_nfs_locks) | **GET** /platform/16/protocols/nfs/locks | *ProtocolsApi* | [**get_nfs_log_level**](docs/ProtocolsApi.md#get_nfs_log_level) | **GET** /platform/12/protocols/nfs/log-level | *ProtocolsApi* | [**get_nfs_netgroup**](docs/ProtocolsApi.md#get_nfs_netgroup) | **GET** /platform/3/protocols/nfs/netgroup | *ProtocolsApi* | [**get_nfs_nlm_locks**](docs/ProtocolsApi.md#get_nfs_nlm_locks) | **GET** /platform/2/protocols/nfs/nlm/locks | @@ -912,9 +794,8 @@ Class | Method | HTTP request | Description *ProtocolsApi* | [**get_nfs_nlm_sessions**](docs/ProtocolsApi.md#get_nfs_nlm_sessions) | **GET** /platform/3/protocols/nfs/nlm/sessions | *ProtocolsApi* | [**get_nfs_nlm_waiters**](docs/ProtocolsApi.md#get_nfs_nlm_waiters) | **GET** /platform/2/protocols/nfs/nlm/waiters | *ProtocolsApi* | [**get_nfs_settings_export**](docs/ProtocolsApi.md#get_nfs_settings_export) | **GET** /platform/2/protocols/nfs/settings/export | -*ProtocolsApi* | [**get_nfs_settings_global**](docs/ProtocolsApi.md#get_nfs_settings_global) | **GET** /platform/19/protocols/nfs/settings/global | +*ProtocolsApi* | [**get_nfs_settings_global**](docs/ProtocolsApi.md#get_nfs_settings_global) | **GET** /platform/14/protocols/nfs/settings/global | *ProtocolsApi* | [**get_nfs_settings_zone**](docs/ProtocolsApi.md#get_nfs_settings_zone) | **GET** /platform/2/protocols/nfs/settings/zone | -*ProtocolsApi* | [**get_nfs_waiters**](docs/ProtocolsApi.md#get_nfs_waiters) | **GET** /platform/16/protocols/nfs/waiters | *ProtocolsApi* | [**get_ntp_server**](docs/ProtocolsApi.md#get_ntp_server) | **GET** /platform/3/protocols/ntp/servers/{NtpServerId} | *ProtocolsApi* | [**get_ntp_settings**](docs/ProtocolsApi.md#get_ntp_settings) | **GET** /platform/3/protocols/ntp/settings | *ProtocolsApi* | [**get_s3_bucket**](docs/ProtocolsApi.md#get_s3_bucket) | **GET** /platform/15/protocols/s3/buckets/{S3BucketId} | @@ -926,26 +807,28 @@ Class | Method | HTTP request | Description *ProtocolsApi* | [**get_smb_log_level_filter**](docs/ProtocolsApi.md#get_smb_log_level_filter) | **GET** /platform/3/protocols/smb/log-level/filters/{SmbLogLevelFilterId} | *ProtocolsApi* | [**get_smb_openfiles**](docs/ProtocolsApi.md#get_smb_openfiles) | **GET** /platform/1/protocols/smb/openfiles | *ProtocolsApi* | [**get_smb_sessions**](docs/ProtocolsApi.md#get_smb_sessions) | **GET** /platform/11/protocols/smb/sessions | -*ProtocolsApi* | [**get_smb_settings_global**](docs/ProtocolsApi.md#get_smb_settings_global) | **GET** /platform/17/protocols/smb/settings/global | +*ProtocolsApi* | [**get_smb_settings_global**](docs/ProtocolsApi.md#get_smb_settings_global) | **GET** /platform/7/protocols/smb/settings/global | *ProtocolsApi* | [**get_smb_settings_share**](docs/ProtocolsApi.md#get_smb_settings_share) | **GET** /platform/7/protocols/smb/settings/share | -*ProtocolsApi* | [**get_smb_settings_zone**](docs/ProtocolsApi.md#get_smb_settings_zone) | **GET** /platform/17/protocols/smb/settings/zone | -*ProtocolsApi* | [**get_smb_share**](docs/ProtocolsApi.md#get_smb_share) | **GET** /platform/22/protocols/smb/shares/{SmbShareId} | +*ProtocolsApi* | [**get_smb_settings_zone**](docs/ProtocolsApi.md#get_smb_settings_zone) | **GET** /platform/6/protocols/smb/settings/zone | +*ProtocolsApi* | [**get_smb_share**](docs/ProtocolsApi.md#get_smb_share) | **GET** /platform/12/protocols/smb/shares/{SmbShareId} | *ProtocolsApi* | [**get_smb_shares_summary**](docs/ProtocolsApi.md#get_smb_shares_summary) | **GET** /platform/1/protocols/smb/shares-summary | -*ProtocolsApi* | [**get_snmp_settings**](docs/ProtocolsApi.md#get_snmp_settings) | **GET** /platform/16/protocols/snmp/settings | -*ProtocolsApi* | [**get_ssh_settings**](docs/ProtocolsApi.md#get_ssh_settings) | **GET** /platform/22/protocols/ssh/settings | +*ProtocolsApi* | [**get_snmp_settings**](docs/ProtocolsApi.md#get_snmp_settings) | **GET** /platform/5/protocols/snmp/settings | +*ProtocolsApi* | [**get_ssh_settings**](docs/ProtocolsApi.md#get_ssh_settings) | **GET** /platform/8/protocols/ssh/settings | +*ProtocolsApi* | [**get_swift_account**](docs/ProtocolsApi.md#get_swift_account) | **GET** /platform/3/protocols/swift/accounts/{SwiftAccountId} | *ProtocolsApi* | [**list_hdfs_crypto_encryption_zones**](docs/ProtocolsApi.md#list_hdfs_crypto_encryption_zones) | **GET** /platform/7/protocols/hdfs/crypto/encryption-zones | *ProtocolsApi* | [**list_hdfs_proxyusers**](docs/ProtocolsApi.md#list_hdfs_proxyusers) | **GET** /platform/1/protocols/hdfs/proxyusers | *ProtocolsApi* | [**list_hdfs_racks**](docs/ProtocolsApi.md#list_hdfs_racks) | **GET** /platform/1/protocols/hdfs/racks | *ProtocolsApi* | [**list_ndmp_settings_preferred_ips**](docs/ProtocolsApi.md#list_ndmp_settings_preferred_ips) | **GET** /platform/4/protocols/ndmp/settings/preferred-ips | *ProtocolsApi* | [**list_ndmp_users**](docs/ProtocolsApi.md#list_ndmp_users) | **GET** /platform/3/protocols/ndmp/users | *ProtocolsApi* | [**list_nfs_aliases**](docs/ProtocolsApi.md#list_nfs_aliases) | **GET** /platform/15/protocols/nfs/aliases | -*ProtocolsApi* | [**list_nfs_exports**](docs/ProtocolsApi.md#list_nfs_exports) | **GET** /platform/22/protocols/nfs/exports | +*ProtocolsApi* | [**list_nfs_exports**](docs/ProtocolsApi.md#list_nfs_exports) | **GET** /platform/4/protocols/nfs/exports | *ProtocolsApi* | [**list_ntp_servers**](docs/ProtocolsApi.md#list_ntp_servers) | **GET** /platform/3/protocols/ntp/servers | *ProtocolsApi* | [**list_s3_buckets**](docs/ProtocolsApi.md#list_s3_buckets) | **GET** /platform/15/protocols/s3/buckets | *ProtocolsApi* | [**list_s3_mykeys**](docs/ProtocolsApi.md#list_s3_mykeys) | **GET** /platform/10/protocols/s3/mykeys | *ProtocolsApi* | [**list_smb_log_level_filters**](docs/ProtocolsApi.md#list_smb_log_level_filters) | **GET** /platform/3/protocols/smb/log-level/filters | -*ProtocolsApi* | [**list_smb_shares**](docs/ProtocolsApi.md#list_smb_shares) | **GET** /platform/22/protocols/smb/shares | -*ProtocolsApi* | [**update_ftp_settings**](docs/ProtocolsApi.md#update_ftp_settings) | **PUT** /platform/16/protocols/ftp/settings | +*ProtocolsApi* | [**list_smb_shares**](docs/ProtocolsApi.md#list_smb_shares) | **GET** /platform/12/protocols/smb/shares | +*ProtocolsApi* | [**list_swift_accounts**](docs/ProtocolsApi.md#list_swift_accounts) | **GET** /platform/3/protocols/swift/accounts | +*ProtocolsApi* | [**update_ftp_settings**](docs/ProtocolsApi.md#update_ftp_settings) | **PUT** /platform/3/protocols/ftp/settings | *ProtocolsApi* | [**update_hdfs_crypto_settings**](docs/ProtocolsApi.md#update_hdfs_crypto_settings) | **PUT** /platform/7/protocols/hdfs/crypto/settings | *ProtocolsApi* | [**update_hdfs_fsimage_job_settings**](docs/ProtocolsApi.md#update_hdfs_fsimage_job_settings) | **PUT** /platform/5/protocols/hdfs/fsimage/job/settings | *ProtocolsApi* | [**update_hdfs_fsimage_settings**](docs/ProtocolsApi.md#update_hdfs_fsimage_settings) | **PUT** /platform/5/protocols/hdfs/fsimage/settings | @@ -957,18 +840,18 @@ Class | Method | HTTP request | Description *ProtocolsApi* | [**update_hdfs_settings**](docs/ProtocolsApi.md#update_hdfs_settings) | **PUT** /platform/12/protocols/hdfs/settings | *ProtocolsApi* | [**update_hdfs_settings_global**](docs/ProtocolsApi.md#update_hdfs_settings_global) | **PUT** /platform/11/protocols/hdfs/settings/global | *ProtocolsApi* | [**update_http_service**](docs/ProtocolsApi.md#update_http_service) | **PUT** /platform/15/protocols/http/services/{HttpServiceId} | -*ProtocolsApi* | [**update_http_settings**](docs/ProtocolsApi.md#update_http_settings) | **PUT** /platform/16/protocols/http/settings | +*ProtocolsApi* | [**update_http_settings**](docs/ProtocolsApi.md#update_http_settings) | **PUT** /platform/3/protocols/http/settings | *ProtocolsApi* | [**update_ndmp_diagnostics**](docs/ProtocolsApi.md#update_ndmp_diagnostics) | **PUT** /platform/3/protocols/ndmp/diagnostics | -*ProtocolsApi* | [**update_ndmp_settings_global**](docs/ProtocolsApi.md#update_ndmp_settings_global) | **PUT** /platform/20/protocols/ndmp/settings/global | +*ProtocolsApi* | [**update_ndmp_settings_global**](docs/ProtocolsApi.md#update_ndmp_settings_global) | **PUT** /platform/3/protocols/ndmp/settings/global | *ProtocolsApi* | [**update_ndmp_settings_preferred_ip**](docs/ProtocolsApi.md#update_ndmp_settings_preferred_ip) | **PUT** /platform/4/protocols/ndmp/settings/preferred-ips/{NdmpSettingsPreferredIpId} | *ProtocolsApi* | [**update_ndmp_settings_variable**](docs/ProtocolsApi.md#update_ndmp_settings_variable) | **PUT** /platform/3/protocols/ndmp/settings/variables/{NdmpSettingsVariableId} | *ProtocolsApi* | [**update_ndmp_user**](docs/ProtocolsApi.md#update_ndmp_user) | **PUT** /platform/3/protocols/ndmp/users/{NdmpUserId} | *ProtocolsApi* | [**update_nfs_alias**](docs/ProtocolsApi.md#update_nfs_alias) | **PUT** /platform/15/protocols/nfs/aliases/{NfsAliasId} | -*ProtocolsApi* | [**update_nfs_export**](docs/ProtocolsApi.md#update_nfs_export) | **PUT** /platform/22/protocols/nfs/exports/{NfsExportId} | +*ProtocolsApi* | [**update_nfs_export**](docs/ProtocolsApi.md#update_nfs_export) | **PUT** /platform/4/protocols/nfs/exports/{NfsExportId} | *ProtocolsApi* | [**update_nfs_log_level**](docs/ProtocolsApi.md#update_nfs_log_level) | **PUT** /platform/12/protocols/nfs/log-level | *ProtocolsApi* | [**update_nfs_netgroup**](docs/ProtocolsApi.md#update_nfs_netgroup) | **PUT** /platform/3/protocols/nfs/netgroup | *ProtocolsApi* | [**update_nfs_settings_export**](docs/ProtocolsApi.md#update_nfs_settings_export) | **PUT** /platform/2/protocols/nfs/settings/export | -*ProtocolsApi* | [**update_nfs_settings_global**](docs/ProtocolsApi.md#update_nfs_settings_global) | **PUT** /platform/19/protocols/nfs/settings/global | +*ProtocolsApi* | [**update_nfs_settings_global**](docs/ProtocolsApi.md#update_nfs_settings_global) | **PUT** /platform/14/protocols/nfs/settings/global | *ProtocolsApi* | [**update_nfs_settings_zone**](docs/ProtocolsApi.md#update_nfs_settings_zone) | **PUT** /platform/2/protocols/nfs/settings/zone | *ProtocolsApi* | [**update_ntp_server**](docs/ProtocolsApi.md#update_ntp_server) | **PUT** /platform/3/protocols/ntp/servers/{NtpServerId} | *ProtocolsApi* | [**update_ntp_settings**](docs/ProtocolsApi.md#update_ntp_settings) | **PUT** /platform/3/protocols/ntp/settings | @@ -977,39 +860,40 @@ Class | Method | HTTP request | Description *ProtocolsApi* | [**update_s3_settings_global**](docs/ProtocolsApi.md#update_s3_settings_global) | **PUT** /platform/10/protocols/s3/settings/global | *ProtocolsApi* | [**update_s3_settings_zone**](docs/ProtocolsApi.md#update_s3_settings_zone) | **PUT** /platform/12/protocols/s3/settings/zone | *ProtocolsApi* | [**update_smb_log_level**](docs/ProtocolsApi.md#update_smb_log_level) | **PUT** /platform/12/protocols/smb/log-level | -*ProtocolsApi* | [**update_smb_settings_global**](docs/ProtocolsApi.md#update_smb_settings_global) | **PUT** /platform/17/protocols/smb/settings/global | +*ProtocolsApi* | [**update_smb_settings_global**](docs/ProtocolsApi.md#update_smb_settings_global) | **PUT** /platform/7/protocols/smb/settings/global | *ProtocolsApi* | [**update_smb_settings_share**](docs/ProtocolsApi.md#update_smb_settings_share) | **PUT** /platform/7/protocols/smb/settings/share | -*ProtocolsApi* | [**update_smb_settings_zone**](docs/ProtocolsApi.md#update_smb_settings_zone) | **PUT** /platform/17/protocols/smb/settings/zone | -*ProtocolsApi* | [**update_smb_share**](docs/ProtocolsApi.md#update_smb_share) | **PUT** /platform/22/protocols/smb/shares/{SmbShareId} | -*ProtocolsApi* | [**update_snmp_settings**](docs/ProtocolsApi.md#update_snmp_settings) | **PUT** /platform/16/protocols/snmp/settings | -*ProtocolsApi* | [**update_ssh_settings**](docs/ProtocolsApi.md#update_ssh_settings) | **PUT** /platform/22/protocols/ssh/settings | +*ProtocolsApi* | [**update_smb_settings_zone**](docs/ProtocolsApi.md#update_smb_settings_zone) | **PUT** /platform/6/protocols/smb/settings/zone | +*ProtocolsApi* | [**update_smb_share**](docs/ProtocolsApi.md#update_smb_share) | **PUT** /platform/12/protocols/smb/shares/{SmbShareId} | +*ProtocolsApi* | [**update_snmp_settings**](docs/ProtocolsApi.md#update_snmp_settings) | **PUT** /platform/5/protocols/snmp/settings | +*ProtocolsApi* | [**update_ssh_settings**](docs/ProtocolsApi.md#update_ssh_settings) | **PUT** /platform/8/protocols/ssh/settings | +*ProtocolsApi* | [**update_swift_account**](docs/ProtocolsApi.md#update_swift_account) | **PUT** /platform/3/protocols/swift/accounts/{SwiftAccountId} | *ProtocolsHdfsApi* | [**create_proxyusers_name_member**](docs/ProtocolsHdfsApi.md#create_proxyusers_name_member) | **POST** /platform/1/protocols/hdfs/proxyusers/{Name}/members | *ProtocolsHdfsApi* | [**delete_proxyusers_name_member**](docs/ProtocolsHdfsApi.md#delete_proxyusers_name_member) | **DELETE** /platform/1/protocols/hdfs/proxyusers/{Name}/members/{ProxyusersNameMemberId} | *ProtocolsHdfsApi* | [**list_proxyusers_name_members**](docs/ProtocolsHdfsApi.md#list_proxyusers_name_members) | **GET** /platform/1/protocols/hdfs/proxyusers/{Name}/members | *ProtocolsHdfsApi* | [**update_proxyusers_name_member**](docs/ProtocolsHdfsApi.md#update_proxyusers_name_member) | **PUT** /platform/1/protocols/hdfs/proxyusers/{Name}/members/{ProxyusersNameMemberId} | -*QuotaApi* | [**create_quota_quota**](docs/QuotaApi.md#create_quota_quota) | **POST** /platform/19/quota/quotas | +*QuotaApi* | [**create_quota_quota**](docs/QuotaApi.md#create_quota_quota) | **POST** /platform/15/quota/quotas | *QuotaApi* | [**create_quota_report**](docs/QuotaApi.md#create_quota_report) | **POST** /platform/1/quota/reports | *QuotaApi* | [**create_settings_mapping**](docs/QuotaApi.md#create_settings_mapping) | **POST** /platform/1/quota/settings/mappings | *QuotaApi* | [**create_settings_notification**](docs/QuotaApi.md#create_settings_notification) | **POST** /platform/7/quota/settings/notifications | -*QuotaApi* | [**delete_quota_quota**](docs/QuotaApi.md#delete_quota_quota) | **DELETE** /platform/19/quota/quotas/{QuotaQuotaId} | -*QuotaApi* | [**delete_quota_quotas**](docs/QuotaApi.md#delete_quota_quotas) | **DELETE** /platform/19/quota/quotas | +*QuotaApi* | [**delete_quota_quota**](docs/QuotaApi.md#delete_quota_quota) | **DELETE** /platform/15/quota/quotas/{QuotaQuotaId} | +*QuotaApi* | [**delete_quota_quotas**](docs/QuotaApi.md#delete_quota_quotas) | **DELETE** /platform/15/quota/quotas | *QuotaApi* | [**delete_quota_report**](docs/QuotaApi.md#delete_quota_report) | **DELETE** /platform/1/quota/reports/{QuotaReportId} | *QuotaApi* | [**delete_settings_mapping**](docs/QuotaApi.md#delete_settings_mapping) | **DELETE** /platform/1/quota/settings/mappings/{SettingsMappingId} | *QuotaApi* | [**delete_settings_mappings**](docs/QuotaApi.md#delete_settings_mappings) | **DELETE** /platform/1/quota/settings/mappings | *QuotaApi* | [**delete_settings_notification**](docs/QuotaApi.md#delete_settings_notification) | **DELETE** /platform/7/quota/settings/notifications/{SettingsNotificationId} | *QuotaApi* | [**delete_settings_notifications**](docs/QuotaApi.md#delete_settings_notifications) | **DELETE** /platform/7/quota/settings/notifications | *QuotaApi* | [**get_quota_license**](docs/QuotaApi.md#get_quota_license) | **GET** /platform/5/quota/license | -*QuotaApi* | [**get_quota_quota**](docs/QuotaApi.md#get_quota_quota) | **GET** /platform/19/quota/quotas/{QuotaQuotaId} | +*QuotaApi* | [**get_quota_quota**](docs/QuotaApi.md#get_quota_quota) | **GET** /platform/15/quota/quotas/{QuotaQuotaId} | *QuotaApi* | [**get_quota_quotas_summary**](docs/QuotaApi.md#get_quota_quotas_summary) | **GET** /platform/1/quota/quotas-summary | *QuotaApi* | [**get_quota_report**](docs/QuotaApi.md#get_quota_report) | **GET** /platform/1/quota/reports/{QuotaReportId} | *QuotaApi* | [**get_settings_mapping**](docs/QuotaApi.md#get_settings_mapping) | **GET** /platform/1/quota/settings/mappings/{SettingsMappingId} | *QuotaApi* | [**get_settings_notification**](docs/QuotaApi.md#get_settings_notification) | **GET** /platform/7/quota/settings/notifications/{SettingsNotificationId} | *QuotaApi* | [**get_settings_reports**](docs/QuotaApi.md#get_settings_reports) | **GET** /platform/1/quota/settings/reports | -*QuotaApi* | [**list_quota_quotas**](docs/QuotaApi.md#list_quota_quotas) | **GET** /platform/19/quota/quotas | +*QuotaApi* | [**list_quota_quotas**](docs/QuotaApi.md#list_quota_quotas) | **GET** /platform/15/quota/quotas | *QuotaApi* | [**list_quota_reports**](docs/QuotaApi.md#list_quota_reports) | **GET** /platform/1/quota/reports | *QuotaApi* | [**list_settings_mappings**](docs/QuotaApi.md#list_settings_mappings) | **GET** /platform/1/quota/settings/mappings | *QuotaApi* | [**list_settings_notifications**](docs/QuotaApi.md#list_settings_notifications) | **GET** /platform/7/quota/settings/notifications | -*QuotaApi* | [**update_quota_quota**](docs/QuotaApi.md#update_quota_quota) | **PUT** /platform/19/quota/quotas/{QuotaQuotaId} | +*QuotaApi* | [**update_quota_quota**](docs/QuotaApi.md#update_quota_quota) | **PUT** /platform/15/quota/quotas/{QuotaQuotaId} | *QuotaApi* | [**update_settings_mapping**](docs/QuotaApi.md#update_settings_mapping) | **PUT** /platform/1/quota/settings/mappings/{SettingsMappingId} | *QuotaApi* | [**update_settings_notification**](docs/QuotaApi.md#update_settings_notification) | **PUT** /platform/7/quota/settings/notifications/{SettingsNotificationId} | *QuotaApi* | [**update_settings_reports**](docs/QuotaApi.md#update_settings_reports) | **PUT** /platform/1/quota/settings/reports | @@ -1024,10 +908,10 @@ Class | Method | HTTP request | Description *SecurityApi* | [**create_security_check_item**](docs/SecurityApi.md#create_security_check_item) | **POST** /platform/15/security/check | *SecurityApi* | [**get_check_report**](docs/SecurityApi.md#get_check_report) | **GET** /platform/15/security/check/report | *SecurityApi* | [**get_check_settings**](docs/SecurityApi.md#get_check_settings) | **GET** /platform/15/security/check/settings | -*SecurityApi* | [**get_security_settings**](docs/SecurityApi.md#get_security_settings) | **GET** /platform/16/security/settings | +*SecurityApi* | [**get_security_settings**](docs/SecurityApi.md#get_security_settings) | **GET** /platform/15/security/settings | *SecurityApi* | [**list_security_check**](docs/SecurityApi.md#list_security_check) | **GET** /platform/15/security/check | *SecurityApi* | [**update_check_settings**](docs/SecurityApi.md#update_check_settings) | **PUT** /platform/15/security/check/settings | -*SecurityApi* | [**update_security_settings**](docs/SecurityApi.md#update_security_settings) | **PUT** /platform/16/security/settings | +*SecurityApi* | [**update_security_settings**](docs/SecurityApi.md#update_security_settings) | **PUT** /platform/15/security/settings | *SnapshotApi* | [**create_snapshot_alias**](docs/SnapshotApi.md#create_snapshot_alias) | **POST** /platform/1/snapshot/aliases | *SnapshotApi* | [**create_snapshot_schedule**](docs/SnapshotApi.md#create_snapshot_schedule) | **POST** /platform/3/snapshot/schedules | *SnapshotApi* | [**create_snapshot_snapshot**](docs/SnapshotApi.md#create_snapshot_snapshot) | **POST** /platform/1/snapshot/snapshots | @@ -1088,45 +972,32 @@ Class | Method | HTTP request | Description *StatisticsApi* | [**get_summary_protocol_stats**](docs/StatisticsApi.md#get_summary_protocol_stats) | **GET** /platform/3/statistics/summary/protocol-stats | *StatisticsApi* | [**get_summary_system**](docs/StatisticsApi.md#get_summary_system) | **GET** /platform/3/statistics/summary/system | *StatisticsApi* | [**get_summary_workload**](docs/StatisticsApi.md#get_summary_workload) | **GET** /platform/10/statistics/summary/workload | -*StoragepoolApi* | [**create_storagepool_nodepool**](docs/StoragepoolApi.md#create_storagepool_nodepool) | **POST** /platform/22/storagepool/nodepools | -*StoragepoolApi* | [**create_storagepool_tier**](docs/StoragepoolApi.md#create_storagepool_tier) | **POST** /platform/16/storagepool/tiers | -*StoragepoolApi* | [**delete_storagepool_nodepool**](docs/StoragepoolApi.md#delete_storagepool_nodepool) | **DELETE** /platform/22/storagepool/nodepools/{StoragepoolNodepoolId} | -*StoragepoolApi* | [**delete_storagepool_nodepools**](docs/StoragepoolApi.md#delete_storagepool_nodepools) | **DELETE** /platform/22/storagepool/nodepools | -*StoragepoolApi* | [**delete_storagepool_tier**](docs/StoragepoolApi.md#delete_storagepool_tier) | **DELETE** /platform/16/storagepool/tiers/{StoragepoolTierId} | -*StoragepoolApi* | [**delete_storagepool_tiers**](docs/StoragepoolApi.md#delete_storagepool_tiers) | **DELETE** /platform/16/storagepool/tiers | -*StoragepoolApi* | [**get_storagepool_nodepool**](docs/StoragepoolApi.md#get_storagepool_nodepool) | **GET** /platform/22/storagepool/nodepools/{StoragepoolNodepoolId} | -*StoragepoolApi* | [**get_storagepool_nodetype**](docs/StoragepoolApi.md#get_storagepool_nodetype) | **GET** /platform/22/storagepool/nodetypes/{StoragepoolNodetypeId} | -*StoragepoolApi* | [**get_storagepool_nodetypes**](docs/StoragepoolApi.md#get_storagepool_nodetypes) | **GET** /platform/22/storagepool/nodetypes | -*StoragepoolApi* | [**get_storagepool_settings**](docs/StoragepoolApi.md#get_storagepool_settings) | **GET** /platform/18/storagepool/settings | +*StoragepoolApi* | [**create_storagepool_nodepool**](docs/StoragepoolApi.md#create_storagepool_nodepool) | **POST** /platform/9/storagepool/nodepools | +*StoragepoolApi* | [**create_storagepool_tier**](docs/StoragepoolApi.md#create_storagepool_tier) | **POST** /platform/1/storagepool/tiers | +*StoragepoolApi* | [**delete_storagepool_nodepool**](docs/StoragepoolApi.md#delete_storagepool_nodepool) | **DELETE** /platform/9/storagepool/nodepools/{StoragepoolNodepoolId} | +*StoragepoolApi* | [**delete_storagepool_nodepools**](docs/StoragepoolApi.md#delete_storagepool_nodepools) | **DELETE** /platform/9/storagepool/nodepools | +*StoragepoolApi* | [**delete_storagepool_tier**](docs/StoragepoolApi.md#delete_storagepool_tier) | **DELETE** /platform/1/storagepool/tiers/{StoragepoolTierId} | +*StoragepoolApi* | [**delete_storagepool_tiers**](docs/StoragepoolApi.md#delete_storagepool_tiers) | **DELETE** /platform/1/storagepool/tiers | +*StoragepoolApi* | [**get_storagepool_nodepool**](docs/StoragepoolApi.md#get_storagepool_nodepool) | **GET** /platform/9/storagepool/nodepools/{StoragepoolNodepoolId} | +*StoragepoolApi* | [**get_storagepool_nodetype**](docs/StoragepoolApi.md#get_storagepool_nodetype) | **GET** /platform/12/storagepool/nodetypes/{StoragepoolNodetypeId} | +*StoragepoolApi* | [**get_storagepool_nodetypes**](docs/StoragepoolApi.md#get_storagepool_nodetypes) | **GET** /platform/12/storagepool/nodetypes | +*StoragepoolApi* | [**get_storagepool_settings**](docs/StoragepoolApi.md#get_storagepool_settings) | **GET** /platform/5/storagepool/settings | *StoragepoolApi* | [**get_storagepool_status**](docs/StoragepoolApi.md#get_storagepool_status) | **GET** /platform/1/storagepool/status | -*StoragepoolApi* | [**get_storagepool_storagepools**](docs/StoragepoolApi.md#get_storagepool_storagepools) | **GET** /platform/16/storagepool/storagepools | +*StoragepoolApi* | [**get_storagepool_storagepools**](docs/StoragepoolApi.md#get_storagepool_storagepools) | **GET** /platform/9/storagepool/storagepools | *StoragepoolApi* | [**get_storagepool_suggested_protection_nid**](docs/StoragepoolApi.md#get_storagepool_suggested_protection_nid) | **GET** /platform/3/storagepool/suggested-protection/{StoragepoolSuggestedProtectionNid} | -*StoragepoolApi* | [**get_storagepool_tier**](docs/StoragepoolApi.md#get_storagepool_tier) | **GET** /platform/16/storagepool/tiers/{StoragepoolTierId} | +*StoragepoolApi* | [**get_storagepool_tier**](docs/StoragepoolApi.md#get_storagepool_tier) | **GET** /platform/1/storagepool/tiers/{StoragepoolTierId} | *StoragepoolApi* | [**get_storagepool_unprovisioned**](docs/StoragepoolApi.md#get_storagepool_unprovisioned) | **GET** /platform/1/storagepool/unprovisioned | -*StoragepoolApi* | [**list_storagepool_nodepools**](docs/StoragepoolApi.md#list_storagepool_nodepools) | **GET** /platform/22/storagepool/nodepools | -*StoragepoolApi* | [**list_storagepool_tiers**](docs/StoragepoolApi.md#list_storagepool_tiers) | **GET** /platform/16/storagepool/tiers | -*StoragepoolApi* | [**update_storagepool_nodepool**](docs/StoragepoolApi.md#update_storagepool_nodepool) | **PUT** /platform/22/storagepool/nodepools/{StoragepoolNodepoolId} | -*StoragepoolApi* | [**update_storagepool_settings**](docs/StoragepoolApi.md#update_storagepool_settings) | **PUT** /platform/18/storagepool/settings | -*StoragepoolApi* | [**update_storagepool_tier**](docs/StoragepoolApi.md#update_storagepool_tier) | **PUT** /platform/16/storagepool/tiers/{StoragepoolTierId} | +*StoragepoolApi* | [**list_storagepool_nodepools**](docs/StoragepoolApi.md#list_storagepool_nodepools) | **GET** /platform/9/storagepool/nodepools | +*StoragepoolApi* | [**list_storagepool_tiers**](docs/StoragepoolApi.md#list_storagepool_tiers) | **GET** /platform/1/storagepool/tiers | +*StoragepoolApi* | [**update_storagepool_nodepool**](docs/StoragepoolApi.md#update_storagepool_nodepool) | **PUT** /platform/9/storagepool/nodepools/{StoragepoolNodepoolId} | +*StoragepoolApi* | [**update_storagepool_settings**](docs/StoragepoolApi.md#update_storagepool_settings) | **PUT** /platform/5/storagepool/settings | +*StoragepoolApi* | [**update_storagepool_tier**](docs/StoragepoolApi.md#update_storagepool_tier) | **PUT** /platform/1/storagepool/tiers/{StoragepoolTierId} | *StoragepoolNodetypesApi* | [**get_nodetype_assess**](docs/StoragepoolNodetypesApi.md#get_nodetype_assess) | **GET** /platform/12/storagepool/nodetypes/{Nid}/assess | -*SupportassistApi* | [**create_supportassist_data_item**](docs/SupportassistApi.md#create_supportassist_data_item) | **POST** /platform/16/supportassist/data | -*SupportassistApi* | [**create_supportassist_payload_item**](docs/SupportassistApi.md#create_supportassist_payload_item) | **POST** /platform/16/supportassist/payload | -*SupportassistApi* | [**create_supportassist_task_item**](docs/SupportassistApi.md#create_supportassist_task_item) | **POST** /platform/17/supportassist/task | -*SupportassistApi* | [**delete_supportassist_task_by_id**](docs/SupportassistApi.md#delete_supportassist_task_by_id) | **DELETE** /platform/17/supportassist/task/{SupportassistTaskId} | -*SupportassistApi* | [**get_supportassist_license**](docs/SupportassistApi.md#get_supportassist_license) | **GET** /platform/16/supportassist/license | -*SupportassistApi* | [**get_supportassist_settings**](docs/SupportassistApi.md#get_supportassist_settings) | **GET** /platform/20/supportassist/settings | -*SupportassistApi* | [**get_supportassist_status**](docs/SupportassistApi.md#get_supportassist_status) | **GET** /platform/20/supportassist/status | -*SupportassistApi* | [**get_supportassist_task_by_id**](docs/SupportassistApi.md#get_supportassist_task_by_id) | **GET** /platform/17/supportassist/task/{SupportassistTaskId} | -*SupportassistApi* | [**get_supportassist_terms**](docs/SupportassistApi.md#get_supportassist_terms) | **GET** /platform/16/supportassist/terms | -*SupportassistApi* | [**list_supportassist_task**](docs/SupportassistApi.md#list_supportassist_task) | **GET** /platform/17/supportassist/task | -*SupportassistApi* | [**update_supportassist_settings**](docs/SupportassistApi.md#update_supportassist_settings) | **PUT** /platform/20/supportassist/settings | -*SupportassistApi* | [**update_supportassist_status**](docs/SupportassistApi.md#update_supportassist_status) | **PUT** /platform/20/supportassist/status | -*SupportassistApi* | [**update_supportassist_terms**](docs/SupportassistApi.md#update_supportassist_terms) | **PUT** /platform/16/supportassist/terms | *SyncApi* | [**create_certificates_peer_item**](docs/SyncApi.md#create_certificates_peer_item) | **POST** /platform/7/sync/certificates/peer | *SyncApi* | [**create_certificates_server_item**](docs/SyncApi.md#create_certificates_server_item) | **POST** /platform/7/sync/certificates/server | *SyncApi* | [**create_service_policy**](docs/SyncApi.md#create_service_policy) | **POST** /platform/7/sync/service/policies | -*SyncApi* | [**create_sync_job**](docs/SyncApi.md#create_sync_job) | **POST** /platform/22/sync/jobs | -*SyncApi* | [**create_sync_policy**](docs/SyncApi.md#create_sync_policy) | **POST** /platform/18/sync/policies | +*SyncApi* | [**create_sync_job**](docs/SyncApi.md#create_sync_job) | **POST** /platform/15/sync/jobs | +*SyncApi* | [**create_sync_policy**](docs/SyncApi.md#create_sync_policy) | **POST** /platform/14/sync/policies | *SyncApi* | [**create_sync_reports_rotate_item**](docs/SyncApi.md#create_sync_reports_rotate_item) | **POST** /platform/1/sync/reports-rotate | *SyncApi* | [**create_sync_rule**](docs/SyncApi.md#create_sync_rule) | **POST** /platform/3/sync/rules | *SyncApi* | [**delete_certificates_peer_by_id**](docs/SyncApi.md#delete_certificates_peer_by_id) | **DELETE** /platform/7/sync/certificates/peer/{CertificatesPeerId} | @@ -1134,12 +1005,12 @@ Class | Method | HTTP request | Description *SyncApi* | [**delete_service_policies**](docs/SyncApi.md#delete_service_policies) | **DELETE** /platform/7/sync/service/policies | *SyncApi* | [**delete_service_policy**](docs/SyncApi.md#delete_service_policy) | **DELETE** /platform/7/sync/service/policies/{ServicePolicyId} | *SyncApi* | [**delete_service_target_policy**](docs/SyncApi.md#delete_service_target_policy) | **DELETE** /platform/7/sync/service/target/policies/{ServiceTargetPolicyId} | -*SyncApi* | [**delete_sync_jobs**](docs/SyncApi.md#delete_sync_jobs) | **DELETE** /platform/22/sync/jobs | -*SyncApi* | [**delete_sync_policies**](docs/SyncApi.md#delete_sync_policies) | **DELETE** /platform/18/sync/policies | -*SyncApi* | [**delete_sync_policy**](docs/SyncApi.md#delete_sync_policy) | **DELETE** /platform/18/sync/policies/{SyncPolicyId} | +*SyncApi* | [**delete_sync_jobs**](docs/SyncApi.md#delete_sync_jobs) | **DELETE** /platform/15/sync/jobs | +*SyncApi* | [**delete_sync_policies**](docs/SyncApi.md#delete_sync_policies) | **DELETE** /platform/14/sync/policies | +*SyncApi* | [**delete_sync_policy**](docs/SyncApi.md#delete_sync_policy) | **DELETE** /platform/14/sync/policies/{SyncPolicyId} | *SyncApi* | [**delete_sync_rule**](docs/SyncApi.md#delete_sync_rule) | **DELETE** /platform/3/sync/rules/{SyncRuleId} | *SyncApi* | [**delete_sync_rules**](docs/SyncApi.md#delete_sync_rules) | **DELETE** /platform/3/sync/rules | -*SyncApi* | [**delete_target_policy**](docs/SyncApi.md#delete_target_policy) | **DELETE** /platform/18/sync/target/policies/{TargetPolicyId} | +*SyncApi* | [**delete_target_policy**](docs/SyncApi.md#delete_target_policy) | **DELETE** /platform/1/sync/target/policies/{TargetPolicyId} | *SyncApi* | [**get_certificates_peer_by_id**](docs/SyncApi.md#get_certificates_peer_by_id) | **GET** /platform/7/sync/certificates/peer/{CertificatesPeerId} | *SyncApi* | [**get_certificates_server_by_id**](docs/SyncApi.md#get_certificates_server_by_id) | **GET** /platform/7/sync/certificates/server/{CertificatesServerId} | *SyncApi* | [**get_history_cpu**](docs/SyncApi.md#get_history_cpu) | **GET** /platform/3/sync/history/cpu | @@ -1149,78 +1020,75 @@ Class | Method | HTTP request | Description *SyncApi* | [**get_service_policy**](docs/SyncApi.md#get_service_policy) | **GET** /platform/7/sync/service/policies/{ServicePolicyId} | *SyncApi* | [**get_service_target_policies**](docs/SyncApi.md#get_service_target_policies) | **GET** /platform/7/sync/service/target/policies | *SyncApi* | [**get_service_target_policy**](docs/SyncApi.md#get_service_target_policy) | **GET** /platform/7/sync/service/target/policies/{ServiceTargetPolicyId} | -*SyncApi* | [**get_sync_job**](docs/SyncApi.md#get_sync_job) | **GET** /platform/22/sync/jobs/{SyncJobId} | +*SyncApi* | [**get_sync_job**](docs/SyncApi.md#get_sync_job) | **GET** /platform/15/sync/jobs/{SyncJobId} | *SyncApi* | [**get_sync_license**](docs/SyncApi.md#get_sync_license) | **GET** /platform/5/sync/license | -*SyncApi* | [**get_sync_policy**](docs/SyncApi.md#get_sync_policy) | **GET** /platform/18/sync/policies/{SyncPolicyId} | -*SyncApi* | [**get_sync_report**](docs/SyncApi.md#get_sync_report) | **GET** /platform/22/sync/reports/{SyncReportId} | -*SyncApi* | [**get_sync_reports**](docs/SyncApi.md#get_sync_reports) | **GET** /platform/22/sync/reports | +*SyncApi* | [**get_sync_policy**](docs/SyncApi.md#get_sync_policy) | **GET** /platform/14/sync/policies/{SyncPolicyId} | +*SyncApi* | [**get_sync_report**](docs/SyncApi.md#get_sync_report) | **GET** /platform/15/sync/reports/{SyncReportId} | +*SyncApi* | [**get_sync_reports**](docs/SyncApi.md#get_sync_reports) | **GET** /platform/15/sync/reports | *SyncApi* | [**get_sync_rule**](docs/SyncApi.md#get_sync_rule) | **GET** /platform/3/sync/rules/{SyncRuleId} | -*SyncApi* | [**get_sync_settings**](docs/SyncApi.md#get_sync_settings) | **GET** /platform/22/sync/settings | -*SyncApi* | [**get_target_policies**](docs/SyncApi.md#get_target_policies) | **GET** /platform/18/sync/target/policies | -*SyncApi* | [**get_target_policy**](docs/SyncApi.md#get_target_policy) | **GET** /platform/18/sync/target/policies/{TargetPolicyId} | -*SyncApi* | [**get_target_report**](docs/SyncApi.md#get_target_report) | **GET** /platform/22/sync/target/reports/{TargetReportId} | -*SyncApi* | [**get_target_reports**](docs/SyncApi.md#get_target_reports) | **GET** /platform/22/sync/target/reports | +*SyncApi* | [**get_sync_settings**](docs/SyncApi.md#get_sync_settings) | **GET** /platform/14/sync/settings | +*SyncApi* | [**get_target_policies**](docs/SyncApi.md#get_target_policies) | **GET** /platform/1/sync/target/policies | +*SyncApi* | [**get_target_policy**](docs/SyncApi.md#get_target_policy) | **GET** /platform/1/sync/target/policies/{TargetPolicyId} | +*SyncApi* | [**get_target_report**](docs/SyncApi.md#get_target_report) | **GET** /platform/15/sync/target/reports/{TargetReportId} | +*SyncApi* | [**get_target_reports**](docs/SyncApi.md#get_target_reports) | **GET** /platform/15/sync/target/reports | *SyncApi* | [**list_certificates_peer**](docs/SyncApi.md#list_certificates_peer) | **GET** /platform/7/sync/certificates/peer | *SyncApi* | [**list_certificates_server**](docs/SyncApi.md#list_certificates_server) | **GET** /platform/7/sync/certificates/server | *SyncApi* | [**list_service_policies**](docs/SyncApi.md#list_service_policies) | **GET** /platform/7/sync/service/policies | -*SyncApi* | [**list_sync_jobs**](docs/SyncApi.md#list_sync_jobs) | **GET** /platform/22/sync/jobs | -*SyncApi* | [**list_sync_policies**](docs/SyncApi.md#list_sync_policies) | **GET** /platform/18/sync/policies | +*SyncApi* | [**list_sync_jobs**](docs/SyncApi.md#list_sync_jobs) | **GET** /platform/15/sync/jobs | +*SyncApi* | [**list_sync_policies**](docs/SyncApi.md#list_sync_policies) | **GET** /platform/14/sync/policies | *SyncApi* | [**list_sync_reports_rotate**](docs/SyncApi.md#list_sync_reports_rotate) | **GET** /platform/1/sync/reports-rotate | *SyncApi* | [**list_sync_rules**](docs/SyncApi.md#list_sync_rules) | **GET** /platform/3/sync/rules | *SyncApi* | [**update_certificates_peer_by_id**](docs/SyncApi.md#update_certificates_peer_by_id) | **PUT** /platform/7/sync/certificates/peer/{CertificatesPeerId} | *SyncApi* | [**update_certificates_server_by_id**](docs/SyncApi.md#update_certificates_server_by_id) | **PUT** /platform/7/sync/certificates/server/{CertificatesServerId} | *SyncApi* | [**update_service_policy**](docs/SyncApi.md#update_service_policy) | **PUT** /platform/7/sync/service/policies/{ServicePolicyId} | -*SyncApi* | [**update_sync_job**](docs/SyncApi.md#update_sync_job) | **PUT** /platform/22/sync/jobs/{SyncJobId} | -*SyncApi* | [**update_sync_policy**](docs/SyncApi.md#update_sync_policy) | **PUT** /platform/18/sync/policies/{SyncPolicyId} | +*SyncApi* | [**update_sync_job**](docs/SyncApi.md#update_sync_job) | **PUT** /platform/15/sync/jobs/{SyncJobId} | +*SyncApi* | [**update_sync_policy**](docs/SyncApi.md#update_sync_policy) | **PUT** /platform/14/sync/policies/{SyncPolicyId} | *SyncApi* | [**update_sync_rule**](docs/SyncApi.md#update_sync_rule) | **PUT** /platform/3/sync/rules/{SyncRuleId} | -*SyncApi* | [**update_sync_settings**](docs/SyncApi.md#update_sync_settings) | **PUT** /platform/22/sync/settings | +*SyncApi* | [**update_sync_settings**](docs/SyncApi.md#update_sync_settings) | **PUT** /platform/14/sync/settings | *SyncPoliciesApi* | [**create_policy_reset_item**](docs/SyncPoliciesApi.md#create_policy_reset_item) | **POST** /platform/1/sync/policies/{Policy}/reset | -*SyncReportsApi* | [**get_report_subreport**](docs/SyncReportsApi.md#get_report_subreport) | **GET** /platform/22/sync/reports/{Rid}/subreports/{ReportSubreportId} | -*SyncReportsApi* | [**get_report_subreports**](docs/SyncReportsApi.md#get_report_subreports) | **GET** /platform/22/sync/reports/{Rid}/subreports | +*SyncReportsApi* | [**get_report_subreport**](docs/SyncReportsApi.md#get_report_subreport) | **GET** /platform/15/sync/reports/{Rid}/subreports/{ReportSubreportId} | +*SyncReportsApi* | [**get_report_subreports**](docs/SyncReportsApi.md#get_report_subreports) | **GET** /platform/15/sync/reports/{Rid}/subreports | *SyncServiceApi* | [**create_policies_policy_reset_item**](docs/SyncServiceApi.md#create_policies_policy_reset_item) | **POST** /platform/7/sync/service/policies/{Policy}/reset | *SyncServiceTargetApi* | [**create_policies_policy_cancel_item**](docs/SyncServiceTargetApi.md#create_policies_policy_cancel_item) | **POST** /platform/7/sync/service/target/policies/{Policy}/cancel | *SyncTargetApi* | [**create_policies_policy_cancel_item**](docs/SyncTargetApi.md#create_policies_policy_cancel_item) | **POST** /platform/1/sync/target/policies/{Policy}/cancel | -*SyncTargetApi* | [**get_reports_report_subreport**](docs/SyncTargetApi.md#get_reports_report_subreport) | **GET** /platform/22/sync/target/reports/{Rid}/subreports/{ReportsReportSubreportId} | -*SyncTargetApi* | [**get_reports_report_subreports**](docs/SyncTargetApi.md#get_reports_report_subreports) | **GET** /platform/22/sync/target/reports/{Rid}/subreports | +*SyncTargetApi* | [**get_reports_report_subreport**](docs/SyncTargetApi.md#get_reports_report_subreport) | **GET** /platform/15/sync/target/reports/{Rid}/subreports/{ReportsReportSubreportId} | +*SyncTargetApi* | [**get_reports_report_subreports**](docs/SyncTargetApi.md#get_reports_report_subreports) | **GET** /platform/15/sync/target/reports/{Rid}/subreports | *UpgradeApi* | [**create_cluster_add_remaining_node**](docs/UpgradeApi.md#create_cluster_add_remaining_node) | **POST** /platform/3/upgrade/cluster/add_remaining_nodes | *UpgradeApi* | [**create_cluster_archive_item**](docs/UpgradeApi.md#create_cluster_archive_item) | **POST** /platform/3/upgrade/cluster/archive | -*UpgradeApi* | [**create_cluster_assess_item**](docs/UpgradeApi.md#create_cluster_assess_item) | **POST** /platform/20/upgrade/cluster/assess | +*UpgradeApi* | [**create_cluster_assess_item**](docs/UpgradeApi.md#create_cluster_assess_item) | **POST** /platform/5/upgrade/cluster/assess | *UpgradeApi* | [**create_cluster_commit_item**](docs/UpgradeApi.md#create_cluster_commit_item) | **POST** /platform/3/upgrade/cluster/commit | *UpgradeApi* | [**create_cluster_firmware_assess_item**](docs/UpgradeApi.md#create_cluster_firmware_assess_item) | **POST** /platform/10/upgrade/cluster/firmware/assess | *UpgradeApi* | [**create_cluster_firmware_upgrade_item**](docs/UpgradeApi.md#create_cluster_firmware_upgrade_item) | **POST** /platform/12/upgrade/cluster/firmware/upgrade | *UpgradeApi* | [**create_cluster_patch_abort_item**](docs/UpgradeApi.md#create_cluster_patch_abort_item) | **POST** /platform/3/upgrade/cluster/patch/abort | -*UpgradeApi* | [**create_cluster_patch_patch**](docs/UpgradeApi.md#create_cluster_patch_patch) | **POST** /platform/16/upgrade/cluster/patch/patches | +*UpgradeApi* | [**create_cluster_patch_patch**](docs/UpgradeApi.md#create_cluster_patch_patch) | **POST** /platform/14/upgrade/cluster/patch/patches | *UpgradeApi* | [**create_cluster_pause_item**](docs/UpgradeApi.md#create_cluster_pause_item) | **POST** /platform/7/upgrade/cluster/pause | *UpgradeApi* | [**create_cluster_resume_item**](docs/UpgradeApi.md#create_cluster_resume_item) | **POST** /platform/7/upgrade/cluster/resume | *UpgradeApi* | [**create_cluster_retry_last_action_item**](docs/UpgradeApi.md#create_cluster_retry_last_action_item) | **POST** /platform/3/upgrade/cluster/retry_last_action | *UpgradeApi* | [**create_cluster_rollback_item**](docs/UpgradeApi.md#create_cluster_rollback_item) | **POST** /platform/3/upgrade/cluster/rollback | *UpgradeApi* | [**create_cluster_upgrade_item**](docs/UpgradeApi.md#create_cluster_upgrade_item) | **POST** /platform/12/upgrade/cluster/upgrade | -*UpgradeApi* | [**delete_cluster_patch_patch**](docs/UpgradeApi.md#delete_cluster_patch_patch) | **DELETE** /platform/16/upgrade/cluster/patch/patches/{ClusterPatchPatchId} | +*UpgradeApi* | [**delete_cluster_patch_patch**](docs/UpgradeApi.md#delete_cluster_patch_patch) | **DELETE** /platform/14/upgrade/cluster/patch/patches/{ClusterPatchPatchId} | *UpgradeApi* | [**get_cluster_drain_list**](docs/UpgradeApi.md#get_cluster_drain_list) | **GET** /platform/12/upgrade/cluster/drain/list | *UpgradeApi* | [**get_cluster_drain_timeout**](docs/UpgradeApi.md#get_cluster_drain_timeout) | **GET** /platform/12/upgrade/cluster/drain/timeout | *UpgradeApi* | [**get_cluster_firmware_device**](docs/UpgradeApi.md#get_cluster_firmware_device) | **GET** /platform/10/upgrade/cluster/firmware/device | *UpgradeApi* | [**get_cluster_firmware_progress**](docs/UpgradeApi.md#get_cluster_firmware_progress) | **GET** /platform/3/upgrade/cluster/firmware/progress | *UpgradeApi* | [**get_cluster_firmware_status**](docs/UpgradeApi.md#get_cluster_firmware_status) | **GET** /platform/10/upgrade/cluster/firmware/status | -*UpgradeApi* | [**get_cluster_mixed_mode**](docs/UpgradeApi.md#get_cluster_mixed_mode) | **GET** /platform/16/upgrade/cluster/mixed-mode | *UpgradeApi* | [**get_cluster_node**](docs/UpgradeApi.md#get_cluster_node) | **GET** /platform/12/upgrade/cluster/nodes/{ClusterNodeId} | *UpgradeApi* | [**get_cluster_nodes**](docs/UpgradeApi.md#get_cluster_nodes) | **GET** /platform/12/upgrade/cluster/nodes | -*UpgradeApi* | [**get_cluster_patch_patch**](docs/UpgradeApi.md#get_cluster_patch_patch) | **GET** /platform/16/upgrade/cluster/patch/patches/{ClusterPatchPatchId} | -*UpgradeApi* | [**get_upgrade_cluster**](docs/UpgradeApi.md#get_upgrade_cluster) | **GET** /platform/20/upgrade/cluster | -*UpgradeApi* | [**list_cluster_assess**](docs/UpgradeApi.md#list_cluster_assess) | **GET** /platform/20/upgrade/cluster/assess | -*UpgradeApi* | [**list_cluster_patch_patches**](docs/UpgradeApi.md#list_cluster_patch_patches) | **GET** /platform/16/upgrade/cluster/patch/patches | +*UpgradeApi* | [**get_cluster_patch_patch**](docs/UpgradeApi.md#get_cluster_patch_patch) | **GET** /platform/14/upgrade/cluster/patch/patches/{ClusterPatchPatchId} | +*UpgradeApi* | [**get_upgrade_cluster**](docs/UpgradeApi.md#get_upgrade_cluster) | **GET** /platform/12/upgrade/cluster | +*UpgradeApi* | [**list_cluster_patch_patches**](docs/UpgradeApi.md#list_cluster_patch_patches) | **GET** /platform/14/upgrade/cluster/patch/patches | *UpgradeApi* | [**update_cluster_drain**](docs/UpgradeApi.md#update_cluster_drain) | **PUT** /platform/12/upgrade/cluster/drain | *UpgradeApi* | [**update_cluster_drain_timeout**](docs/UpgradeApi.md#update_cluster_drain_timeout) | **PUT** /platform/12/upgrade/cluster/drain/timeout | -*UpgradeApi* | [**update_cluster_skip_optional**](docs/UpgradeApi.md#update_cluster_skip_optional) | **PUT** /platform/20/upgrade/cluster/skip-optional | -*UpgradeApi* | [**update_cluster_unblock**](docs/UpgradeApi.md#update_cluster_unblock) | **PUT** /platform/22/upgrade/cluster/unblock | +*UpgradeApi* | [**update_cluster_unblock**](docs/UpgradeApi.md#update_cluster_unblock) | **PUT** /platform/9/upgrade/cluster/unblock | *UpgradeApi* | [**update_cluster_upgrade**](docs/UpgradeApi.md#update_cluster_upgrade) | **PUT** /platform/12/upgrade/cluster/upgrade | *UpgradeClusterApi* | [**create_nodes_node_patch_sync_item**](docs/UpgradeClusterApi.md#create_nodes_node_patch_sync_item) | **POST** /platform/4/upgrade/cluster/nodes/{Lnn}/patch/sync | *UpgradeClusterApi* | [**get_nodes_node_firmware_device**](docs/UpgradeClusterApi.md#get_nodes_node_firmware_device) | **GET** /platform/10/upgrade/cluster/nodes/{Lnn}/firmware/device | *UpgradeClusterApi* | [**get_nodes_node_firmware_status**](docs/UpgradeClusterApi.md#get_nodes_node_firmware_status) | **GET** /platform/10/upgrade/cluster/nodes/{Lnn}/firmware/status | -*WormApi* | [**create_worm_domain**](docs/WormApi.md#create_worm_domain) | **POST** /platform/20/worm/domains | -*WormApi* | [**get_worm_domain**](docs/WormApi.md#get_worm_domain) | **GET** /platform/20/worm/domains/{WormDomainId} | +*WormApi* | [**create_worm_domain**](docs/WormApi.md#create_worm_domain) | **POST** /platform/7/worm/domains | +*WormApi* | [**get_worm_domain**](docs/WormApi.md#get_worm_domain) | **GET** /platform/7/worm/domains/{WormDomainId} | *WormApi* | [**get_worm_settings**](docs/WormApi.md#get_worm_settings) | **GET** /platform/1/worm/settings | -*WormApi* | [**list_worm_domains**](docs/WormApi.md#list_worm_domains) | **GET** /platform/20/worm/domains | -*WormApi* | [**update_worm_domain**](docs/WormApi.md#update_worm_domain) | **PUT** /platform/20/worm/domains/{WormDomainId} | +*WormApi* | [**list_worm_domains**](docs/WormApi.md#list_worm_domains) | **GET** /platform/7/worm/domains | +*WormApi* | [**update_worm_domain**](docs/WormApi.md#update_worm_domain) | **PUT** /platform/7/worm/domains/{WormDomainId} | *WormApi* | [**update_worm_settings**](docs/WormApi.md#update_worm_settings) | **PUT** /platform/1/worm/settings | *ZonesApi* | [**create_zone**](docs/ZonesApi.md#create_zone) | **POST** /platform/3/zones | *ZonesApi* | [**delete_zone**](docs/ZonesApi.md#delete_zone) | **DELETE** /platform/3/zones/{ZoneId} | @@ -1264,6 +1132,7 @@ Class | Method | HTTP request | Description - [AuthAccessAccessItem](docs/AuthAccessAccessItem.md) - [AuthAccessAccessItemFile](docs/AuthAccessAccessItemFile.md) - [AuthAccessAccessItemFileFilePermissions](docs/AuthAccessAccessItemFileFilePermissions.md) + - [AuthAccessAccessItemFileFilePermissionsRelevantAce](docs/AuthAccessAccessItemFileFilePermissionsRelevantAce.md) - [AuthAccessAccessItemFileGroup](docs/AuthAccessAccessItemFileGroup.md) - [AuthAccessAccessItemShare](docs/AuthAccessAccessItemShare.md) - [AuthAccessAccessItemShareEffectiveUser](docs/AuthAccessAccessItemShareEffectiveUser.md) @@ -1321,9 +1190,14 @@ Class | Method | HTTP request | Description - [CatalogVerify](docs/CatalogVerify.md) - [CatalogVerifyArtifact](docs/CatalogVerifyArtifact.md) - [CertificateAuthorityItem](docs/CertificateAuthorityItem.md) + - [CertificateServerIdParams](docs/CertificateServerIdParams.md) + - [CertificateServerItem](docs/CertificateServerItem.md) - [CertificateSettings](docs/CertificateSettings.md) - [CertificateSettingsExtended](docs/CertificateSettingsExtended.md) - [CertificateSettingsSettings](docs/CertificateSettingsSettings.md) + - [CertificatesCa](docs/CertificatesCa.md) + - [CertificatesCaCertificate](docs/CertificatesCaCertificate.md) + - [CertificatesCaCertificateFingerprint](docs/CertificatesCaCertificateFingerprint.md) - [CertificatesCaIdParams](docs/CertificatesCaIdParams.md) - [CertificatesCaItem](docs/CertificatesCaItem.md) - [CertificatesIdentity](docs/CertificatesIdentity.md) @@ -1331,13 +1205,6 @@ Class | Method | HTTP request | Description - [CertificatesIdentityItem](docs/CertificatesIdentityItem.md) - [CertificatesPeer](docs/CertificatesPeer.md) - [CertificatesServer](docs/CertificatesServer.md) - - [CertificatesSettings](docs/CertificatesSettings.md) - - [CertificatesSettingsSettings](docs/CertificatesSettingsSettings.md) - - [CertificatesSyslog](docs/CertificatesSyslog.md) - - [CertificatesSyslogCertificate](docs/CertificatesSyslogCertificate.md) - - [CertificatesSyslogCertificateFingerprint](docs/CertificatesSyslogCertificateFingerprint.md) - - [CertificatesSyslogIdParams](docs/CertificatesSyslogIdParams.md) - - [CertificatesSyslogItem](docs/CertificatesSyslogItem.md) - [ChangelistEntries](docs/ChangelistEntries.md) - [ChangelistEntriesExtended](docs/ChangelistEntriesExtended.md) - [ChangelistEntry](docs/ChangelistEntry.md) @@ -1410,7 +1277,6 @@ Class | Method | HTTP request | Description - [ClusterIdentityLogonExtended](docs/ClusterIdentityLogonExtended.md) - [ClusterInternalNetworks](docs/ClusterInternalNetworks.md) - [ClusterInternalNetworksExtended](docs/ClusterInternalNetworksExtended.md) - - [ClusterMixedMode](docs/ClusterMixedMode.md) - [ClusterModeSettings](docs/ClusterModeSettings.md) - [ClusterModeSettingsExtended](docs/ClusterModeSettingsExtended.md) - [ClusterNode](docs/ClusterNode.md) @@ -1439,17 +1305,13 @@ Class | Method | HTTP request | Description - [ClusterPatchPatch](docs/ClusterPatchPatch.md) - [ClusterPatchPatches](docs/ClusterPatchPatches.md) - [ClusterPatchPatchesPatch](docs/ClusterPatchPatchesPatch.md) - - [ClusterRekey](docs/ClusterRekey.md) - - [ClusterRekeyExtended](docs/ClusterRekeyExtended.md) - - [ClusterRekeyItem](docs/ClusterRekeyItem.md) + - [ClusterPatchPatchesPatchFile](docs/ClusterPatchPatchesPatchFile.md) + - [ClusterPatchPatchesPatchService](docs/ClusterPatchPatchesPatchService.md) - [ClusterRetryLastActionItem](docs/ClusterRetryLastActionItem.md) - [ClusterServices](docs/ClusterServices.md) - [ClusterServicesNode](docs/ClusterServicesNode.md) - [ClusterServicesNodeService](docs/ClusterServicesNodeService.md) - - [ClusterSkipOptional](docs/ClusterSkipOptional.md) - [ClusterStatfs](docs/ClusterStatfs.md) - - [ClusterStatus](docs/ClusterStatus.md) - - [ClusterStatusDomain](docs/ClusterStatusDomain.md) - [ClusterTime](docs/ClusterTime.md) - [ClusterTimeExtended](docs/ClusterTimeExtended.md) - [ClusterTimeExtendedExtended](docs/ClusterTimeExtendedExtended.md) @@ -1465,10 +1327,6 @@ Class | Method | HTTP request | Description - [ClusterUpgradeItem](docs/ClusterUpgradeItem.md) - [ClusterVersion](docs/ClusterVersion.md) - [ClusterVersionNode](docs/ClusterVersionNode.md) - - [ConfigCatalogStatus](docs/ConfigCatalogStatus.md) - - [ConfigCatalogStatusExtended](docs/ConfigCatalogStatusExtended.md) - - [ConfigCatalogStatusLastFailedPackage](docs/ConfigCatalogStatusLastFailedPackage.md) - - [ConfigConfigLock](docs/ConfigConfigLock.md) - [ConfigExport](docs/ConfigExport.md) - [ConfigExportCreateParams](docs/ConfigExportCreateParams.md) - [ConfigExports](docs/ConfigExports.md) @@ -1477,13 +1335,7 @@ Class | Method | HTTP request | Description - [ConfigFeaturesExtended](docs/ConfigFeaturesExtended.md) - [ConfigImport](docs/ConfigImport.md) - [ConfigImportCreateParams](docs/ConfigImportCreateParams.md) - - [ConfigImportRules](docs/ConfigImportRules.md) - - [ConfigImportRulesNetwork](docs/ConfigImportRulesNetwork.md) - - [ConfigImportRulesNetworkRestore](docs/ConfigImportRulesNetworkRestore.md) - [ConfigImports](docs/ConfigImports.md) - - [ConfigNamespace](docs/ConfigNamespace.md) - - [ConfigNamespaceEntry](docs/ConfigNamespaceEntry.md) - - [ConfigNamespaceIdParams](docs/ConfigNamespaceIdParams.md) - [ConfigNetwork](docs/ConfigNetwork.md) - [ConfigNetworkNetwork](docs/ConfigNetworkNetwork.md) - [ConfigNetworkNetworkRange](docs/ConfigNetworkNetworkRange.md) @@ -1493,12 +1345,7 @@ Class | Method | HTTP request | Description - [ConfigSettings](docs/ConfigSettings.md) - [ConfigSettingsSettings](docs/ConfigSettingsSettings.md) - [ConfigUser](docs/ConfigUser.md) - - [ConfigUserExtended](docs/ConfigUserExtended.md) - [ConfigUserUser](docs/ConfigUserUser.md) - - [ConnectivitySettings](docs/ConnectivitySettings.md) - - [ConnectivityStatus](docs/ConnectivityStatus.md) - - [ConnectivityStatusExtended](docs/ConnectivityStatusExtended.md) - - [ConnectivityStatusStatus](docs/ConnectivityStatusStatus.md) - [CopyErrors](docs/CopyErrors.md) - [CopyErrorsCopyErrors](docs/CopyErrorsCopyErrors.md) - [CreateAdsProviderSearchItemResponse](docs/CreateAdsProviderSearchItemResponse.md) @@ -1508,16 +1355,16 @@ Class | Method | HTTP request | Description - [CreateCloudJobResponse](docs/CreateCloudJobResponse.md) - [CreateCloudPoolResponse](docs/CreateCloudPoolResponse.md) - [CreateCloudProxyResponse](docs/CreateCloudProxyResponse.md) - - [CreateClusterRekeyItemResponse](docs/CreateClusterRekeyItemResponse.md) - [CreateConfigExportResponse](docs/CreateConfigExportResponse.md) - [CreateConfigImportResponse](docs/CreateConfigImportResponse.md) - [CreateDatamoverAccountResponse](docs/CreateDatamoverAccountResponse.md) - [CreateDatamoverBasePolicyResponse](docs/CreateDatamoverBasePolicyResponse.md) - - [CreateDatamoverPolicyResponse](docs/CreateDatamoverPolicyResponse.md) - [CreateDatasetFilterResponse](docs/CreateDatasetFilterResponse.md) - [CreateDatasetWorkloadResponse](docs/CreateDatasetWorkloadResponse.md) - [CreateFilepoolPolicyResponse](docs/CreateFilepoolPolicyResponse.md) - [CreateHardeningApplyItemResponse](docs/CreateHardeningApplyItemResponse.md) + - [CreateHardeningResolveItemResponse](docs/CreateHardeningResolveItemResponse.md) + - [CreateHardeningRevertItemResponse](docs/CreateHardeningRevertItemResponse.md) - [CreateHardwareTapeNameResponse](docs/CreateHardwareTapeNameResponse.md) - [CreateHardwareTapeNameResponseNode](docs/CreateHardwareTapeNameResponseNode.md) - [CreateHardwareTapeNameResponseNodeRescanReportItem](docs/CreateHardwareTapeNameResponseNodeRescanReportItem.md) @@ -1526,34 +1373,21 @@ Class | Method | HTTP request | Description - [CreateKmipServerVerifyItemResponseNode](docs/CreateKmipServerVerifyItemResponseNode.md) - [CreateNfsAliasResponse](docs/CreateNfsAliasResponse.md) - [CreateNfsNlmSessionsCheckItemResponse](docs/CreateNfsNlmSessionsCheckItemResponse.md) - - [CreateOauthCertificateResponse](docs/CreateOauthCertificateResponse.md) - - [CreateOauthOauth2ClientResponse](docs/CreateOauthOauth2ClientResponse.md) - - [CreateOauthOauth2TokenExchangeResponse](docs/CreateOauthOauth2TokenExchangeResponse.md) - [CreatePerformanceDatasetResponse](docs/CreatePerformanceDatasetResponse.md) - - [CreateProvidersSamlServicesCertExtractItemResponse](docs/CreateProvidersSamlServicesCertExtractItemResponse.md) - - [CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo](docs/CreateProvidersSamlServicesCertExtractItemResponseCertificateInfo.md) - - [CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue](docs/CreateProvidersSamlServicesCertExtractItemResponseCertificateInfoValue.md) - - [CreateProvidersSamlServicesIdpResponse](docs/CreateProvidersSamlServicesIdpResponse.md) - - [CreateProvidersSamlServicesMetadataExtractItemResponse](docs/CreateProvidersSamlServicesMetadataExtractItemResponse.md) - - [CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint](docs/CreateProvidersSamlServicesMetadataExtractItemResponseLoginEndpoint.md) - - [CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint](docs/CreateProvidersSamlServicesMetadataExtractItemResponseLogoutEndpoint.md) - - [CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate](docs/CreateProvidersSamlServicesMetadataExtractItemResponseSigningCertificate.md) - [CreateQuotaReportResponse](docs/CreateQuotaReportResponse.md) - [CreateResponse](docs/CreateResponse.md) - [CreateS3KeyResponse](docs/CreateS3KeyResponse.md) - [CreateS3KeyResponseKeys](docs/CreateS3KeyResponseKeys.md) - [CreateSedMigrateItemResponse](docs/CreateSedMigrateItemResponse.md) + - [CreateSedMigrateItemResponseSettings](docs/CreateSedMigrateItemResponseSettings.md) - [CreateSmbLogLevelFilterResponse](docs/CreateSmbLogLevelFilterResponse.md) - [CreateSmbShareResponse](docs/CreateSmbShareResponse.md) - [CreateSnapshotAliasResponse](docs/CreateSnapshotAliasResponse.md) - [CreateSnapshotLockResponse](docs/CreateSnapshotLockResponse.md) - [CreateSnapshotScheduleResponse](docs/CreateSnapshotScheduleResponse.md) - - [CreateSnapshotSnapshotResponse](docs/CreateSnapshotSnapshotResponse.md) - [CreateStoragepoolTierResponse](docs/CreateStoragepoolTierResponse.md) - - [CreateSupportassistTaskItemResponse](docs/CreateSupportassistTaskItemResponse.md) - [CreateSyncReportsRotateItemResponse](docs/CreateSyncReportsRotateItemResponse.md) - [CreateThrottlingBwRuleResponse](docs/CreateThrottlingBwRuleResponse.md) - - [CreateUserResetPasswordItemResponse](docs/CreateUserResetPasswordItemResponse.md) - [DatamoverAccount](docs/DatamoverAccount.md) - [DatamoverAccountCreateParams](docs/DatamoverAccountCreateParams.md) - [DatamoverAccountCredentials](docs/DatamoverAccountCredentials.md) @@ -1572,9 +1406,6 @@ Class | Method | HTTP request | Description - [DatamoverBasePolicy](docs/DatamoverBasePolicy.md) - [DatamoverBasePolicySchedule](docs/DatamoverBasePolicySchedule.md) - [DatamoverBasePolicySrcDatasetRetention](docs/DatamoverBasePolicySrcDatasetRetention.md) - - [DatamoverConfig](docs/DatamoverConfig.md) - - [DatamoverConfigExtended](docs/DatamoverConfigExtended.md) - - [DatamoverConfigNamespace](docs/DatamoverConfigNamespace.md) - [DatamoverDataset](docs/DatamoverDataset.md) - [DatamoverDatasetDatasetGlobalId](docs/DatamoverDatasetDatasetGlobalId.md) - [DatamoverDatasetDatasetGlobalIdDatasetRevision](docs/DatamoverDatasetDatasetGlobalIdDatasetRevision.md) @@ -1583,22 +1414,18 @@ Class | Method | HTTP request | Description - [DatamoverDatasetsExtended](docs/DatamoverDatasetsExtended.md) - [DatamoverHistoricalJobs](docs/DatamoverHistoricalJobs.md) - [DatamoverHistoricalJobsJob](docs/DatamoverHistoricalJobsJob.md) - - [DatamoverHistoricalJobsJobJobFailedTask](docs/DatamoverHistoricalJobsJobJobFailedTask.md) - [DatamoverHistoricalJobsJobJobTypeSpecificAttrs](docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrs.md) - [DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJob](docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJob.md) - - [DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics](docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics.md) - [DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJob](docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJob.md) - [DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJobStatistics](docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJobStatistics.md) - [DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJob](docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJob.md) - - [DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics](docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics.md) - [DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJob](docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJob.md) - - [DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics](docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics.md) - [DatamoverJob](docs/DatamoverJob.md) - [DatamoverJobJobTypeSpecificAttrs](docs/DatamoverJobJobTypeSpecificAttrs.md) - [DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob](docs/DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob.md) - - [DatamoverJobJobTypeSpecificAttrsDatasetCreationJob](docs/DatamoverJobJobTypeSpecificAttrsDatasetCreationJob.md) - - [DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob](docs/DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob.md) + - [DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics](docs/DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics.md) - [DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob](docs/DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob.md) + - [DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics](docs/DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics.md) - [DatamoverJobs](docs/DatamoverJobs.md) - [DatamoverPolicies](docs/DatamoverPolicies.md) - [DatamoverPolicy](docs/DatamoverPolicy.md) @@ -1612,15 +1439,12 @@ Class | Method | HTTP request | Description - [DatamoverPolicyPolicySpecificAttrExpirationPolicy](docs/DatamoverPolicyPolicySpecificAttrExpirationPolicy.md) - [DatamoverPolicyPolicySpecificAttrExtended](docs/DatamoverPolicyPolicySpecificAttrExtended.md) - [DatamoverPolicyPolicySpecificAttrRepeatCopyPolicy](docs/DatamoverPolicyPolicySpecificAttrRepeatCopyPolicy.md) - - [DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended](docs/DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended.md) - - [DatamoverPolicySchedule](docs/DatamoverPolicySchedule.md) - [DatasetFilter](docs/DatasetFilter.md) - [DatasetFilterMetricValues](docs/DatasetFilterMetricValues.md) - [DatasetFilterMetricValuesCreateParams](docs/DatasetFilterMetricValuesCreateParams.md) - [DatasetFilters](docs/DatasetFilters.md) - [DatasetFiltersExtended](docs/DatasetFiltersExtended.md) - [DatasetWorkload](docs/DatasetWorkload.md) - - [DatasetWorkloadLimits](docs/DatasetWorkloadLimits.md) - [DatasetWorkloads](docs/DatasetWorkloads.md) - [DatasetWorkloadsExtended](docs/DatasetWorkloadsExtended.md) - [DebugStats](docs/DebugStats.md) @@ -1634,16 +1458,11 @@ Class | Method | HTTP request | Description - [DedupeSettings](docs/DedupeSettings.md) - [DedupeSettingsExtended](docs/DedupeSettingsExtended.md) - [DedupeSettingsSettings](docs/DedupeSettingsSettings.md) - - [DiagnosticsGather](docs/DiagnosticsGather.md) - - [DiagnosticsGatherGather](docs/DiagnosticsGatherGather.md) - - [DiagnosticsGatherGroups](docs/DiagnosticsGatherGroups.md) - [DiagnosticsGatherSettings](docs/DiagnosticsGatherSettings.md) - [DiagnosticsGatherSettingsExtended](docs/DiagnosticsGatherSettingsExtended.md) - [DiagnosticsGatherSettingsSettings](docs/DiagnosticsGatherSettingsSettings.md) - - [DiagnosticsGatherStartItem](docs/DiagnosticsGatherStartItem.md) - [DiagnosticsGatherStatus](docs/DiagnosticsGatherStatus.md) - [DiagnosticsGatherStatusGather](docs/DiagnosticsGatherStatusGather.md) - - [DiagnosticsGatherStatusGatherExtended](docs/DiagnosticsGatherStatusGatherExtended.md) - [DiagnosticsGatherStatusGatherStatus](docs/DiagnosticsGatherStatusGatherStatus.md) - [DiagnosticsNetloggerSettings](docs/DiagnosticsNetloggerSettings.md) - [DiagnosticsNetloggerSettingsSettings](docs/DiagnosticsNetloggerSettingsSettings.md) @@ -1681,7 +1500,6 @@ Class | Method | HTTP request | Description - [EventEventlists](docs/EventEventlists.md) - [EventMaintenance](docs/EventMaintenance.md) - [EventMaintenanceExtended](docs/EventMaintenanceExtended.md) - - [EventMaintenanceHistoryItem](docs/EventMaintenanceHistoryItem.md) - [EventSettings](docs/EventSettings.md) - [EventSettingsSettings](docs/EventSettingsSettings.md) - [EventSuppress](docs/EventSuppress.md) @@ -1715,21 +1533,6 @@ Class | Method | HTTP request | Description - [FilepoolTemplateExtended](docs/FilepoolTemplateExtended.md) - [FilepoolTemplates](docs/FilepoolTemplates.md) - [FilepoolTemplatesExtended](docs/FilepoolTemplatesExtended.md) - - [FirewallDscp](docs/FirewallDscp.md) - - [FirewallDscpExtended](docs/FirewallDscpExtended.md) - - [FirewallDscpRule](docs/FirewallDscpRule.md) - - [FirewallDscpRuleParams](docs/FirewallDscpRuleParams.md) - - [FirewallDscpRuleParamsDstPorts](docs/FirewallDscpRuleParamsDstPorts.md) - - [FirewallPolicies](docs/FirewallPolicies.md) - - [FirewallPoliciesExtended](docs/FirewallPoliciesExtended.md) - - [FirewallPolicy](docs/FirewallPolicy.md) - - [FirewallPolicyCreateParams](docs/FirewallPolicyCreateParams.md) - - [FirewallRules](docs/FirewallRules.md) - - [FirewallService](docs/FirewallService.md) - - [FirewallServices](docs/FirewallServices.md) - - [FirewallSettings](docs/FirewallSettings.md) - - [FirewallSettingsExtended](docs/FirewallSettingsExtended.md) - - [FirewallSettingsSettings](docs/FirewallSettingsSettings.md) - [FsaIndex](docs/FsaIndex.md) - [FsaResult](docs/FsaResult.md) - [FsaResults](docs/FsaResults.md) @@ -1745,18 +1548,11 @@ Class | Method | HTTP request | Description - [GroupnetsSummarySummary](docs/GroupnetsSummarySummary.md) - [GroupnetsSummarySummaryListItem](docs/GroupnetsSummarySummaryListItem.md) - [HardeningApplyItem](docs/HardeningApplyItem.md) - - [HardeningList](docs/HardeningList.md) - - [HardeningListProfile](docs/HardeningListProfile.md) - - [HardeningReports](docs/HardeningReports.md) - - [HardeningReportsReport](docs/HardeningReportsReport.md) - - [HardeningReportsReportProfile](docs/HardeningReportsReportProfile.md) - - [HardeningReportsReportProfileClusterWide](docs/HardeningReportsReportProfileClusterWide.md) - - [HardeningReportsReportProfileClusterWideRule](docs/HardeningReportsReportProfileClusterWideRule.md) - - [HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItem](docs/HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItem.md) - - [HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison](docs/HardeningReportsReportProfileClusterWideRuleSettingsComparisonsListItemComparison.md) - - [HardeningReportsReportProfileNode](docs/HardeningReportsReportProfileNode.md) + - [HardeningResolveItem](docs/HardeningResolveItem.md) - [HardeningState](docs/HardeningState.md) - [HardeningStateState](docs/HardeningStateState.md) + - [HardeningStatus](docs/HardeningStatus.md) + - [HardeningStatusStatus](docs/HardeningStatusStatus.md) - [HardwareFcport](docs/HardwareFcport.md) - [HardwareFcports](docs/HardwareFcports.md) - [HardwareFcportsNode](docs/HardwareFcportsNode.md) @@ -1804,17 +1600,11 @@ Class | Method | HTTP request | Description - [HealthcheckChecklistItem](docs/HealthcheckChecklistItem.md) - [HealthcheckChecklistItemThresholds](docs/HealthcheckChecklistItemThresholds.md) - [HealthcheckChecklists](docs/HealthcheckChecklists.md) - - [HealthcheckDefinition](docs/HealthcheckDefinition.md) - - [HealthcheckDefinitionCreateParams](docs/HealthcheckDefinitionCreateParams.md) - - [HealthcheckDefinitionFile](docs/HealthcheckDefinitionFile.md) - - [HealthcheckDefinitionService](docs/HealthcheckDefinitionService.md) - - [HealthcheckDefinitions](docs/HealthcheckDefinitions.md) - [HealthcheckEvaluation](docs/HealthcheckEvaluation.md) - [HealthcheckEvaluationCreateParams](docs/HealthcheckEvaluationCreateParams.md) - [HealthcheckEvaluationDetail](docs/HealthcheckEvaluationDetail.md) - [HealthcheckEvaluationExtended](docs/HealthcheckEvaluationExtended.md) - [HealthcheckEvaluationOverride](docs/HealthcheckEvaluationOverride.md) - - [HealthcheckEvaluationSmartlog](docs/HealthcheckEvaluationSmartlog.md) - [HealthcheckEvaluations](docs/HealthcheckEvaluations.md) - [HealthcheckItem](docs/HealthcheckItem.md) - [HealthcheckItemParameter](docs/HealthcheckItemParameter.md) @@ -1834,10 +1624,7 @@ Class | Method | HTTP request | Description - [HttpServices](docs/HttpServices.md) - [HttpServicesExtended](docs/HttpServicesExtended.md) - [HttpSettings](docs/HttpSettings.md) - - [HttpSettingsExtended](docs/HttpSettingsExtended.md) - [HttpSettingsSettings](docs/HttpSettingsSettings.md) - - [IceageSettings](docs/IceageSettings.md) - - [IceageSettingsSettings](docs/IceageSettingsSettings.md) - [IdResolutionDomains](docs/IdResolutionDomains.md) - [IdResolutionDomainsError](docs/IdResolutionDomainsError.md) - [IdResolutionDomainsPath](docs/IdResolutionDomainsPath.md) @@ -1879,8 +1666,6 @@ Class | Method | HTTP request | Description - [JobRecentRecentJob](docs/JobRecentRecentJob.md) - [JobReport](docs/JobReport.md) - [JobReports](docs/JobReports.md) - - [JobSettings](docs/JobSettings.md) - - [JobSettingsSettings](docs/JobSettingsSettings.md) - [JobStatistics](docs/JobStatistics.md) - [JobStatisticsJob](docs/JobStatisticsJob.md) - [JobStatisticsJobNode](docs/JobStatisticsJobNode.md) @@ -1894,10 +1679,8 @@ Class | Method | HTTP request | Description - [JobStatisticsJobNodeWorker](docs/JobStatisticsJobNodeWorker.md) - [JobType](docs/JobType.md) - [JobTypes](docs/JobTypes.md) - - [KeymanagerCluster](docs/KeymanagerCluster.md) - - [KeymanagerClusterDomain](docs/KeymanagerClusterDomain.md) - [KmipServer](docs/KmipServer.md) - - [KmipServerCaChainItem](docs/KmipServerCaChainItem.md) + - [KmipServerCaCert](docs/KmipServerCaCert.md) - [KmipServerClientCert](docs/KmipServerClientCert.md) - [KmipServerExtended](docs/KmipServerExtended.md) - [KmipServerVerifyItem](docs/KmipServerVerifyItem.md) @@ -1916,10 +1699,6 @@ Class | Method | HTTP request | Description - [LicenseLicenseTier](docs/LicenseLicenseTier.md) - [LicenseLicenseTierEntitlementsExceededAlert](docs/LicenseLicenseTierEntitlementsExceededAlert.md) - [LicenseLicenses](docs/LicenseLicenses.md) - - [MaintenanceSettings](docs/MaintenanceSettings.md) - - [MaintenanceSettingsComponent](docs/MaintenanceSettingsComponent.md) - - [MaintenanceSettingsExtended](docs/MaintenanceSettingsExtended.md) - - [MaintenanceSettingsHistoryItem](docs/MaintenanceSettingsHistoryItem.md) - [MappingDump](docs/MappingDump.md) - [MappingIdentities](docs/MappingIdentities.md) - [MappingIdentitiesCreateParams](docs/MappingIdentitiesCreateParams.md) @@ -1929,6 +1708,8 @@ Class | Method | HTTP request | Description - [MappingUsersLookup](docs/MappingUsersLookup.md) - [MappingUsersLookupMappingItem](docs/MappingUsersLookupMappingItem.md) - [MappingUsersLookupMappingItemGroup](docs/MappingUsersLookupMappingItemGroup.md) + - [MappingUsersLookupMappingItemPrivilege](docs/MappingUsersLookupMappingItemPrivilege.md) + - [MappingUsersLookupMappingItemUser](docs/MappingUsersLookupMappingItemUser.md) - [MappingUsersRules](docs/MappingUsersRules.md) - [MappingUsersRulesExtended](docs/MappingUsersRulesExtended.md) - [MappingUsersRulesParameters](docs/MappingUsersRulesParameters.md) @@ -1940,16 +1721,6 @@ Class | Method | HTTP request | Description - [MappingUsersRulesRulesParameters](docs/MappingUsersRulesRulesParameters.md) - [MappingUsersRulesRulesParametersDefaultUnixUser](docs/MappingUsersRulesRulesParametersDefaultUnixUser.md) - [MemberObject](docs/MemberObject.md) - - [MetadataiqCertificate](docs/MetadataiqCertificate.md) - - [MetadataiqSettings](docs/MetadataiqSettings.md) - - [MetadataiqSettingsSettings](docs/MetadataiqSettingsSettings.md) - - [MetadataiqSettingsSettingsConsumer](docs/MetadataiqSettingsSettingsConsumer.md) - - [MetadataiqSettingsSettingsConsumerDatabaseInfo](docs/MetadataiqSettingsSettingsConsumerDatabaseInfo.md) - - [MetadataiqSettingsSettingsProducer](docs/MetadataiqSettingsSettingsProducer.md) - - [MetadataiqStatus](docs/MetadataiqStatus.md) - - [MetadataiqStatusStatus](docs/MetadataiqStatusStatus.md) - - [MetadataiqStatusStatusConsumer](docs/MetadataiqStatusStatusConsumer.md) - - [MetadataiqStatusStatusProducer](docs/MetadataiqStatusStatusProducer.md) - [NameLin](docs/NameLin.md) - [NameLins](docs/NameLins.md) - [NameLinsExtended](docs/NameLinsExtended.md) @@ -1998,8 +1769,6 @@ Class | Method | HTTP request | Description - [NdmpUser](docs/NdmpUser.md) - [NdmpUserExtended](docs/NdmpUserExtended.md) - [NdmpUsers](docs/NdmpUsers.md) - - [NetworkDiscover](docs/NetworkDiscover.md) - - [NetworkDiscoverDiscover](docs/NetworkDiscoverDiscover.md) - [NetworkDnscache](docs/NetworkDnscache.md) - [NetworkDnscacheExtended](docs/NetworkDnscacheExtended.md) - [NetworkDnscacheSettings](docs/NetworkDnscacheSettings.md) @@ -2009,13 +1778,9 @@ Class | Method | HTTP request | Description - [NetworkGroupnet](docs/NetworkGroupnet.md) - [NetworkGroupnets](docs/NetworkGroupnets.md) - [NetworkInterface](docs/NetworkInterface.md) - - [NetworkInterfaceName](docs/NetworkInterfaceName.md) - - [NetworkInterfaceNames](docs/NetworkInterfaceNames.md) - [NetworkInterfaceOwner](docs/NetworkInterfaceOwner.md) - [NetworkInterfaceVlan](docs/NetworkInterfaceVlan.md) - [NetworkInterfaces](docs/NetworkInterfaces.md) - - [NetworkPing](docs/NetworkPing.md) - - [NetworkPingPing](docs/NetworkPingPing.md) - [NetworkPool](docs/NetworkPool.md) - [NetworkPools](docs/NetworkPools.md) - [NfsAlias](docs/NfsAlias.md) @@ -2025,15 +1790,14 @@ Class | Method | HTTP request | Description - [NfsCheck](docs/NfsCheck.md) - [NfsCheckExtended](docs/NfsCheckExtended.md) - [NfsExport](docs/NfsExport.md) - - [NfsExportExtended](docs/NfsExportExtended.md) + - [NfsExportCreateParams](docs/NfsExportCreateParams.md) + - [NfsExportExtendedExtended](docs/NfsExportExtendedExtended.md) - [NfsExportMapAll](docs/NfsExportMapAll.md) - [NfsExportMapAllSecondaryGroups](docs/NfsExportMapAllSecondaryGroups.md) - [NfsExports](docs/NfsExports.md) - [NfsExportsExtended](docs/NfsExportsExtended.md) - [NfsExportsSummary](docs/NfsExportsSummary.md) - [NfsExportsSummarySummary](docs/NfsExportsSummarySummary.md) - - [NfsLock](docs/NfsLock.md) - - [NfsLocks](docs/NfsLocks.md) - [NfsLogLevel](docs/NfsLogLevel.md) - [NfsNetgroup](docs/NfsNetgroup.md) - [NfsNetgroupSettings](docs/NfsNetgroupSettings.md) @@ -2050,7 +1814,6 @@ Class | Method | HTTP request | Description - [NfsSettingsGlobalSettings](docs/NfsSettingsGlobalSettings.md) - [NfsSettingsZone](docs/NfsSettingsZone.md) - [NfsSettingsZoneSettings](docs/NfsSettingsZoneSettings.md) - - [NfsWaiters](docs/NfsWaiters.md) - [NodeDriveconfig](docs/NodeDriveconfig.md) - [NodeDriveconfigExtended](docs/NodeDriveconfigExtended.md) - [NodeDriveconfigNode](docs/NodeDriveconfigNode.md) @@ -2099,14 +1862,11 @@ Class | Method | HTTP request | Description - [NodeStatusCpu](docs/NodeStatusCpu.md) - [NodeStatusCpuError](docs/NodeStatusCpuError.md) - [NodeStatusCpuNode](docs/NodeStatusCpuNode.md) - - [NodeStatusDriveSecurityLevel](docs/NodeStatusDriveSecurityLevel.md) - - [NodeStatusDriveSecurityLevelNode](docs/NodeStatusDriveSecurityLevelNode.md) - [NodeStatusExtended](docs/NodeStatusExtended.md) - [NodeStatusNode](docs/NodeStatusNode.md) - [NodeStatusNodeBatterystatus](docs/NodeStatusNodeBatterystatus.md) - [NodeStatusNodeCapacityItem](docs/NodeStatusNodeCapacityItem.md) - [NodeStatusNodeCpu](docs/NodeStatusNodeCpu.md) - - [NodeStatusNodeDriveSecurityLevel](docs/NodeStatusNodeDriveSecurityLevel.md) - [NodeStatusNodeExtended](docs/NodeStatusNodeExtended.md) - [NodeStatusNodeNvram](docs/NodeStatusNodeNvram.md) - [NodeStatusNodePowersupplies](docs/NodeStatusNodePowersupplies.md) @@ -2129,23 +1889,7 @@ Class | Method | HTTP request | Description - [NtpServers](docs/NtpServers.md) - [NtpSettings](docs/NtpSettings.md) - [NtpSettingsSettings](docs/NtpSettingsSettings.md) - - [OauthCertificate](docs/OauthCertificate.md) - - [OauthCertificateCreateParams](docs/OauthCertificateCreateParams.md) - - [OauthCertificates](docs/OauthCertificates.md) - - [OauthCertificatesExtended](docs/OauthCertificatesExtended.md) - - [OauthOauth2Client](docs/OauthOauth2Client.md) - - [OauthOauth2Clients](docs/OauthOauth2Clients.md) - - [OauthOauth2ClientsExtended](docs/OauthOauth2ClientsExtended.md) - - [OauthOauth2TokenExchange](docs/OauthOauth2TokenExchange.md) - - [OauthOauth2TokenExchanges](docs/OauthOauth2TokenExchanges.md) - - [OauthOauth2TokenExchangesExtended](docs/OauthOauth2TokenExchangesExtended.md) - - [OauthSettings](docs/OauthSettings.md) - - [OauthSettingsSettings](docs/OauthSettingsSettings.md) - - [OsSecurity](docs/OsSecurity.md) - - [OsSecurityNode](docs/OsSecurityNode.md) - [PapiSettings](docs/PapiSettings.md) - - [PapiSettingsChildSettings](docs/PapiSettingsChildSettings.md) - - [PapiSettingsExtended](docs/PapiSettingsExtended.md) - [PapiSettingsPapiSettings](docs/PapiSettingsPapiSettings.md) - [PapiSettingsPapiSettingsChildSettings](docs/PapiSettingsPapiSettingsChildSettings.md) - [PerformanceDataset](docs/PerformanceDataset.md) @@ -2157,17 +1901,6 @@ Class | Method | HTTP request | Description - [PerformanceSettings](docs/PerformanceSettings.md) - [PerformanceSettingsExtended](docs/PerformanceSettingsExtended.md) - [PerformanceSettingsSettings](docs/PerformanceSettingsSettings.md) - - [PerformanceSettingsSettingsClientImpact](docs/PerformanceSettingsSettingsClientImpact.md) - - [PerformanceSettingsSettingsCpuLimitUs](docs/PerformanceSettingsSettingsCpuLimitUs.md) - - [PerformanceSettingsSettingsCpuLimitUsHealthModifier](docs/PerformanceSettingsSettingsCpuLimitUsHealthModifier.md) - - [PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh](docs/PerformanceSettingsSettingsCpuLimitUsHealthModifierImpactHigh.md) - - [PerformanceSettingsSettingsCpuLimitUsImpactMultiplier](docs/PerformanceSettingsSettingsCpuLimitUsImpactMultiplier.md) - - [PoliciesPolicyRule](docs/PoliciesPolicyRule.md) - - [PoliciesPolicyRuleDstPorts](docs/PoliciesPolicyRuleDstPorts.md) - - [PoliciesPolicyRules](docs/PoliciesPolicyRules.md) - - [PoliciesPolicyRulesRule](docs/PoliciesPolicyRulesRule.md) - - [PolicyLastJob](docs/PolicyLastJob.md) - - [PolicyLastJobPolicyJobDetails](docs/PolicyLastJobPolicyJobDetails.md) - [PoolsPoolInterfaces](docs/PoolsPoolInterfaces.md) - [PoolsPoolInterfacesInterface](docs/PoolsPoolInterfacesInterface.md) - [PoolsPoolInterfacesInterfaceOwner](docs/PoolsPoolInterfacesInterfaceOwner.md) @@ -2177,10 +1910,10 @@ Class | Method | HTTP request | Description - [PoolsPoolRulesRule](docs/PoolsPoolRulesRule.md) - [PoolsPoolScResumeNode](docs/PoolsPoolScResumeNode.md) - [PoolsPoolStatus](docs/PoolsPoolStatus.md) - - [PoolsPoolStatusStatus](docs/PoolsPoolStatusStatus.md) - - [PoolsPoolStatusStatusNode](docs/PoolsPoolStatusStatusNode.md) - - [PoolsPoolStatusStatusNodeInterfaceStatus](docs/PoolsPoolStatusStatusNodeInterfaceStatus.md) - - [PoolsPoolStatusStatusScDnsOverview](docs/PoolsPoolStatusStatusScDnsOverview.md) + - [PoolsPoolStatusSettings](docs/PoolsPoolStatusSettings.md) + - [PoolsPoolStatusSettingsNode](docs/PoolsPoolStatusSettingsNode.md) + - [PoolsPoolStatusSettingsNodeInterfaceStatus](docs/PoolsPoolStatusSettingsNodeInterfaceStatus.md) + - [PoolsPoolStatusSettingsScDnsOverview](docs/PoolsPoolStatusSettingsScDnsOverview.md) - [ProgressGlobal](docs/ProgressGlobal.md) - [ProgressGlobalProgress](docs/ProgressGlobalProgress.md) - [ProtocolsSmbSessions](docs/ProtocolsSmbSessions.md) @@ -2215,33 +1948,10 @@ Class | Method | HTTP request | Description - [ProvidersNisIdParams](docs/ProvidersNisIdParams.md) - [ProvidersNisItem](docs/ProvidersNisItem.md) - [ProvidersNisNisItem](docs/ProvidersNisNisItem.md) - - [ProvidersSamlServicesCertExtractItem](docs/ProvidersSamlServicesCertExtractItem.md) - - [ProvidersSamlServicesIdp](docs/ProvidersSamlServicesIdp.md) - - [ProvidersSamlServicesIdpLogin](docs/ProvidersSamlServicesIdpLogin.md) - - [ProvidersSamlServicesIdpLogout](docs/ProvidersSamlServicesIdpLogout.md) - - [ProvidersSamlServicesIdps](docs/ProvidersSamlServicesIdps.md) - - [ProvidersSamlServicesIdpsExtended](docs/ProvidersSamlServicesIdpsExtended.md) - - [ProvidersSamlServicesIdpsIdp](docs/ProvidersSamlServicesIdpsIdp.md) - - [ProvidersSamlServicesIdpsIdpExtended](docs/ProvidersSamlServicesIdpsIdpExtended.md) - - [ProvidersSamlServicesMetadataExtractItem](docs/ProvidersSamlServicesMetadataExtractItem.md) - - [ProvidersSamlServicesSettings](docs/ProvidersSamlServicesSettings.md) - - [ProvidersSamlServicesSettingsSettings](docs/ProvidersSamlServicesSettingsSettings.md) - - [ProvidersSamlServicesSp](docs/ProvidersSamlServicesSp.md) - - [ProvidersSamlServicesSpExtended](docs/ProvidersSamlServicesSpExtended.md) - - [ProvidersSamlServicesSpSigningKeySettings](docs/ProvidersSamlServicesSpSigningKeySettings.md) - - [ProvidersSamlServicesSpSigningKeySettingsSettings](docs/ProvidersSamlServicesSpSigningKeySettingsSettings.md) - - [ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate](docs/ProvidersSamlServicesSpSigningKeySettingsSettingsCertificate.md) - - [ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateKey](docs/ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateKey.md) - - [ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject](docs/ProvidersSamlServicesSpSigningKeySettingsSettingsCertificateSubject.md) - - [ProvidersSamlServicesSpSigningKeyStatus](docs/ProvidersSamlServicesSpSigningKeyStatus.md) - - [ProvidersSamlServicesSpSigningKeyStatusStatus](docs/ProvidersSamlServicesSpSigningKeyStatusStatus.md) - - [ProvidersSamlServicesSpSp](docs/ProvidersSamlServicesSpSp.md) - [ProvidersSummary](docs/ProvidersSummary.md) - [ProvidersSummaryProviderInstance](docs/ProvidersSummaryProviderInstance.md) - [ProvidersSummaryProviderInstanceConnection](docs/ProvidersSummaryProviderInstanceConnection.md) - [ProxyusersNameMembers](docs/ProxyusersNameMembers.md) - - [QuotaLicense](docs/QuotaLicense.md) - - [QuotaLicenseTier](docs/QuotaLicenseTier.md) - [QuotaNotification](docs/QuotaNotification.md) - [QuotaNotifications](docs/QuotaNotifications.md) - [QuotaQuota](docs/QuotaQuota.md) @@ -2309,7 +2019,6 @@ Class | Method | HTTP request | Description - [ServicePolicyCreateParams](docs/ServicePolicyCreateParams.md) - [ServicePolicyExtended](docs/ServicePolicyExtended.md) - [ServiceTargetPolicies](docs/ServiceTargetPolicies.md) - - [ServiceTargetPoliciesPolicy](docs/ServiceTargetPoliciesPolicy.md) - [SessionsInvalidation](docs/SessionsInvalidation.md) - [SessionsInvalidationExtended](docs/SessionsInvalidationExtended.md) - [SessionsInvalidations](docs/SessionsInvalidations.md) @@ -2349,11 +2058,8 @@ Class | Method | HTTP request | Description - [SettingsReportingEulaEula](docs/SettingsReportingEulaEula.md) - [SettingsReports](docs/SettingsReports.md) - [SettingsReportsExtended](docs/SettingsReportsExtended.md) - - [SettingsReportsExtendedExtended](docs/SettingsReportsExtendedExtended.md) - [SettingsReportsSettings](docs/SettingsReportsSettings.md) - - [SettingsReportsSettingsExtended](docs/SettingsReportsSettingsExtended.md) - [SettingsSessions](docs/SettingsSessions.md) - - [SettingsSessionsExtended](docs/SettingsSessionsExtended.md) - [SettingsSessionsSettings](docs/SettingsSessionsSettings.md) - [SmbLogLevel](docs/SmbLogLevel.md) - [SmbLogLevelFilter](docs/SmbLogLevelFilter.md) @@ -2402,6 +2108,7 @@ Class | Method | HTTP request | Description - [SnapshotSettingsExtended](docs/SnapshotSettingsExtended.md) - [SnapshotSettingsSettings](docs/SnapshotSettingsSettings.md) - [SnapshotSnapshot](docs/SnapshotSnapshot.md) + - [SnapshotSnapshotExtendedExtended](docs/SnapshotSnapshotExtendedExtended.md) - [SnapshotSnapshots](docs/SnapshotSnapshots.md) - [SnapshotSnapshotsExtended](docs/SnapshotSnapshotsExtended.md) - [SnapshotSnapshotsSummary](docs/SnapshotSnapshotsSummary.md) @@ -2415,6 +2122,7 @@ Class | Method | HTTP request | Description - [SnmpSettingsExtended](docs/SnmpSettingsExtended.md) - [SnmpSettingsSettings](docs/SnmpSettingsSettings.md) - [SshSettings](docs/SshSettings.md) + - [SshSettingsExtended](docs/SshSettingsExtended.md) - [SshSettingsSettings](docs/SshSettingsSettings.md) - [StatisticsCurrent](docs/StatisticsCurrent.md) - [StatisticsCurrentStat](docs/StatisticsCurrentStat.md) @@ -2429,7 +2137,6 @@ Class | Method | HTTP request | Description - [StatisticsProtocol](docs/StatisticsProtocol.md) - [StatisticsProtocols](docs/StatisticsProtocols.md) - [StoragepoolNodepool](docs/StoragepoolNodepool.md) - - [StoragepoolNodepoolCreateParams](docs/StoragepoolNodepoolCreateParams.md) - [StoragepoolNodepoolExtended](docs/StoragepoolNodepoolExtended.md) - [StoragepoolNodepools](docs/StoragepoolNodepools.md) - [StoragepoolNodepoolsExtended](docs/StoragepoolNodepoolsExtended.md) @@ -2447,11 +2154,10 @@ Class | Method | HTTP request | Description - [StoragepoolStatusUnhealthyItemAffectedItemDevice](docs/StoragepoolStatusUnhealthyItemAffectedItemDevice.md) - [StoragepoolStatusUnhealthyItemDiskpool](docs/StoragepoolStatusUnhealthyItemDiskpool.md) - [StoragepoolStoragepool](docs/StoragepoolStoragepool.md) - - [StoragepoolStoragepoolUsage](docs/StoragepoolStoragepoolUsage.md) - [StoragepoolStoragepools](docs/StoragepoolStoragepools.md) - [StoragepoolSuggestedProtection](docs/StoragepoolSuggestedProtection.md) - [StoragepoolTier](docs/StoragepoolTier.md) - - [StoragepoolTierExtended](docs/StoragepoolTierExtended.md) + - [StoragepoolTierUsage](docs/StoragepoolTierUsage.md) - [StoragepoolTiers](docs/StoragepoolTiers.md) - [StoragepoolTiersExtended](docs/StoragepoolTiersExtended.md) - [StoragepoolUnprovisioned](docs/StoragepoolUnprovisioned.md) @@ -2462,9 +2168,7 @@ Class | Method | HTTP request | Description - [SubnetsSubnetPoolRange](docs/SubnetsSubnetPoolRange.md) - [SubnetsSubnetPoolStaticRoute](docs/SubnetsSubnetPoolStaticRoute.md) - [SubnetsSubnetPools](docs/SubnetsSubnetPools.md) - - [SubnetsSubnetPoolsExtended](docs/SubnetsSubnetPoolsExtended.md) - [SubnetsSubnetPoolsPool](docs/SubnetsSubnetPoolsPool.md) - - [SubnetsSubnetPoolsPoolExtended](docs/SubnetsSubnetPoolsPoolExtended.md) - [SummaryClient](docs/SummaryClient.md) - [SummaryClientClientItem](docs/SummaryClientClientItem.md) - [SummaryCloud](docs/SummaryCloud.md) @@ -2489,35 +2193,9 @@ Class | Method | HTTP request | Description - [SummarySystemSystemItem](docs/SummarySystemSystemItem.md) - [SummaryWorkload](docs/SummaryWorkload.md) - [SummaryWorkloadWorkloadItem](docs/SummaryWorkloadWorkloadItem.md) - - [SupportassistDataItem](docs/SupportassistDataItem.md) - - [SupportassistDataItemData](docs/SupportassistDataItemData.md) - - [SupportassistLicense](docs/SupportassistLicense.md) - - [SupportassistLicenseTask](docs/SupportassistLicenseTask.md) - - [SupportassistLicenseTaskAudit](docs/SupportassistLicenseTaskAudit.md) - - [SupportassistLicenseTaskAuditState](docs/SupportassistLicenseTaskAuditState.md) - - [SupportassistLicenseTaskAuditSubStateItem](docs/SupportassistLicenseTaskAuditSubStateItem.md) - - [SupportassistPayloadItem](docs/SupportassistPayloadItem.md) - - [SupportassistSettings](docs/SupportassistSettings.md) - - [SupportassistSettingsConnection](docs/SupportassistSettingsConnection.md) - - [SupportassistSettingsConnectionExtended](docs/SupportassistSettingsConnectionExtended.md) - - [SupportassistSettingsConnectionGatewayEndpoint](docs/SupportassistSettingsConnectionGatewayEndpoint.md) - - [SupportassistSettingsConnectionNetworkPool](docs/SupportassistSettingsConnectionNetworkPool.md) - - [SupportassistSettingsContact](docs/SupportassistSettingsContact.md) - - [SupportassistSettingsContactExtended](docs/SupportassistSettingsContactExtended.md) - - [SupportassistSettingsContactPrimary](docs/SupportassistSettingsContactPrimary.md) - - [SupportassistSettingsContactPrimaryExtended](docs/SupportassistSettingsContactPrimaryExtended.md) - - [SupportassistSettingsExtended](docs/SupportassistSettingsExtended.md) - - [SupportassistSettingsTelemetry](docs/SupportassistSettingsTelemetry.md) - - [SupportassistSettingsTelemetryExtended](docs/SupportassistSettingsTelemetryExtended.md) - - [SupportassistStatus](docs/SupportassistStatus.md) - - [SupportassistStatusExtended](docs/SupportassistStatusExtended.md) - - [SupportassistStatusStatus](docs/SupportassistStatusStatus.md) - - [SupportassistTask](docs/SupportassistTask.md) - - [SupportassistTaskItem](docs/SupportassistTaskItem.md) - - [SupportassistTaskItemTaskParams](docs/SupportassistTaskItemTaskParams.md) - - [SupportassistTerms](docs/SupportassistTerms.md) - - [SupportassistTermsExtended](docs/SupportassistTermsExtended.md) - - [SupportassistTermsTerms](docs/SupportassistTermsTerms.md) + - [SwiftAccount](docs/SwiftAccount.md) + - [SwiftAccountExtended](docs/SwiftAccountExtended.md) + - [SwiftAccounts](docs/SwiftAccounts.md) - [SyncJob](docs/SyncJob.md) - [SyncJobCreateParams](docs/SyncJobCreateParams.md) - [SyncJobExtended](docs/SyncJobExtended.md) @@ -2529,6 +2207,7 @@ Class | Method | HTTP request | Description - [SyncJobs](docs/SyncJobs.md) - [SyncJobsExtended](docs/SyncJobsExtended.md) - [SyncPolicies](docs/SyncPolicies.md) + - [SyncPoliciesExtended](docs/SyncPoliciesExtended.md) - [SyncPolicy](docs/SyncPolicy.md) - [SyncPolicyCreateParams](docs/SyncPolicyCreateParams.md) - [SyncPolicyExtended](docs/SyncPolicyExtended.md) @@ -2608,8 +2287,8 @@ Class | Method | HTTP request | Description - [AuthUserCreateParams](docs/AuthUserCreateParams.md) - [AvscanJobsExtended](docs/AvscanJobsExtended.md) - [AvscanServersExtended](docs/AvscanServersExtended.md) + - [CertificatesCaExtended](docs/CertificatesCaExtended.md) - [CertificatesIdentityExtended](docs/CertificatesIdentityExtended.md) - - [CertificatesSyslogExtended](docs/CertificatesSyslogExtended.md) - [CloudAccessExtended](docs/CloudAccessExtended.md) - [CloudAccountExtended](docs/CloudAccountExtended.md) - [CloudJobsExtended](docs/CloudJobsExtended.md) @@ -2630,12 +2309,8 @@ Class | Method | HTTP request | Description - [DatamoverAccountsExtended](docs/DatamoverAccountsExtended.md) - [DatamoverBasePoliciesExtended](docs/DatamoverBasePoliciesExtended.md) - [DatamoverBasePolicyCreateParams](docs/DatamoverBasePolicyCreateParams.md) - - [DatamoverJobsExtended](docs/DatamoverJobsExtended.md) - [DatamoverPoliciesExtended](docs/DatamoverPoliciesExtended.md) - - [DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended](docs/DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended.md) - [DatamoverPolicyPolicySpecificAttrCreateParams](docs/DatamoverPolicyPolicySpecificAttrCreateParams.md) - - [DatamoverPolicyPolicySpecificAttrCreationPolicyExtended](docs/DatamoverPolicyPolicySpecificAttrCreationPolicyExtended.md) - - [DatamoverPolicyPolicySpecificAttrExpirationPolicyExtended](docs/DatamoverPolicyPolicySpecificAttrExpirationPolicyExtended.md) - [DatasetFilterCreateParams](docs/DatasetFilterCreateParams.md) - [DatasetFilterExtended](docs/DatasetFilterExtended.md) - [DatasetWorkloadCreateParams](docs/DatasetWorkloadCreateParams.md) @@ -2644,6 +2319,7 @@ Class | Method | HTTP request | Description - [EventAlertConditionCreateParams](docs/EventAlertConditionCreateParams.md) - [EventAlertConditionsExtended](docs/EventAlertConditionsExtended.md) - [EventCategoriesExtended](docs/EventCategoriesExtended.md) + - [EventChannelCreateParams](docs/EventChannelCreateParams.md) - [EventChannelExtended](docs/EventChannelExtended.md) - [EventChannelsExtended](docs/EventChannelsExtended.md) - [EventEventgroupDefinitionsExtended](docs/EventEventgroupDefinitionsExtended.md) @@ -2651,9 +2327,6 @@ Class | Method | HTTP request | Description - [EventEventlistsExtended](docs/EventEventlistsExtended.md) - [EventThresholdExtended](docs/EventThresholdExtended.md) - [FilepoolPolicyCreateParams](docs/FilepoolPolicyCreateParams.md) - - [FirewallDscpRuleExtended](docs/FirewallDscpRuleExtended.md) - - [FirewallPolicyExtended](docs/FirewallPolicyExtended.md) - - [FirewallRule](docs/FirewallRule.md) - [FsaResultExtended](docs/FsaResultExtended.md) - [FsaResultsExtended](docs/FsaResultsExtended.md) - [GroupnetSubnetCreateParams](docs/GroupnetSubnetCreateParams.md) @@ -2695,19 +2368,15 @@ Class | Method | HTTP request | Description - [NetworkGroupnetCreateParams](docs/NetworkGroupnetCreateParams.md) - [NetworkGroupnetExtended](docs/NetworkGroupnetExtended.md) - [NetworkGroupnetsExtended](docs/NetworkGroupnetsExtended.md) + - [NetworkInterfacesExtended](docs/NetworkInterfacesExtended.md) - [NfsAliasExtended](docs/NfsAliasExtended.md) - - [NfsExportCreateParams](docs/NfsExportCreateParams.md) + - [NfsExportExtended](docs/NfsExportExtended.md) - [NodeStateNodeServicelight](docs/NodeStateNodeServicelight.md) - [NtpServersExtended](docs/NtpServersExtended.md) - - [OauthOauth2ClientCreateParams](docs/OauthOauth2ClientCreateParams.md) - - [OauthOauth2TokenExchangeCreateParams](docs/OauthOauth2TokenExchangeCreateParams.md) - [PerformanceDatasetCreateParams](docs/PerformanceDatasetCreateParams.md) - [PerformanceDatasetExtended](docs/PerformanceDatasetExtended.md) - - [PoliciesPolicyRuleCreateParams](docs/PoliciesPolicyRuleCreateParams.md) - - [PoliciesPolicyRulesExtended](docs/PoliciesPolicyRulesExtended.md) - [PoolsPoolRulesExtended](docs/PoolsPoolRulesExtended.md) - [ProvidersKrb5Krb5ItemExtended](docs/ProvidersKrb5Krb5ItemExtended.md) - - [ProvidersSamlServicesIdpCreateParams](docs/ProvidersSamlServicesIdpCreateParams.md) - [QuotaNotificationCreateParams](docs/QuotaNotificationCreateParams.md) - [QuotaNotificationExtended](docs/QuotaNotificationExtended.md) - [QuotaNotificationsExtended](docs/QuotaNotificationsExtended.md) @@ -2721,7 +2390,6 @@ Class | Method | HTTP request | Description - [S3BucketExtended](docs/S3BucketExtended.md) - [SedStatusNodeExtended](docs/SedStatusNodeExtended.md) - [ServicePolicyExtendedExtended](docs/ServicePolicyExtendedExtended.md) - - [ServiceTargetPoliciesExtended](docs/ServiceTargetPoliciesExtended.md) - [SessionsInvalidationCreateParams](docs/SessionsInvalidationCreateParams.md) - [SettingsKrb5DomainCreateParams](docs/SettingsKrb5DomainCreateParams.md) - [SettingsKrb5RealmCreateParams](docs/SettingsKrb5RealmCreateParams.md) @@ -2729,10 +2397,15 @@ Class | Method | HTTP request | Description - [SnapshotLockCreateParams](docs/SnapshotLockCreateParams.md) - [SnapshotScheduleCreateParams](docs/SnapshotScheduleCreateParams.md) - [SnapshotSnapshotCreateParams](docs/SnapshotSnapshotCreateParams.md) + - [SnapshotSnapshotExtended](docs/SnapshotSnapshotExtended.md) - [SnapshotWritableExtended](docs/SnapshotWritableExtended.md) - [StatisticsKeysExtended](docs/StatisticsKeysExtended.md) + - [StoragepoolNodepoolCreateParams](docs/StoragepoolNodepoolCreateParams.md) - [StoragepoolTierCreateParams](docs/StoragepoolTierCreateParams.md) - - [SyncPoliciesExtended](docs/SyncPoliciesExtended.md) + - [StoragepoolTierExtended](docs/StoragepoolTierExtended.md) + - [SubnetsSubnetPoolsExtended](docs/SubnetsSubnetPoolsExtended.md) + - [SwiftAccountsExtended](docs/SwiftAccountsExtended.md) + - [SyncPolicyExtendedExtended](docs/SyncPolicyExtendedExtended.md) - [SyncRuleCreateParams](docs/SyncRuleCreateParams.md) - [SyncRuleExtended](docs/SyncRuleExtended.md) - [ThrottlingBwRuleCreateParams](docs/ThrottlingBwRuleCreateParams.md) @@ -2744,8 +2417,6 @@ Class | Method | HTTP request | Description - [ZoneExtended](docs/ZoneExtended.md) - [ZoneGroupsExtended](docs/ZoneGroupsExtended.md) - [ZoneUsersExtended](docs/ZoneUsersExtended.md) - - [EventChannelCreateParams](docs/EventChannelCreateParams.md) - - [FirewallPolicyExtendedExtended](docs/FirewallPolicyExtendedExtended.md) ## Documentation For Authorization @@ -2763,7 +2434,7 @@ sdk@isilon.com ## License -Copyright (c) 2025 Dell EMC Isilon +Copyright (c) 2018 Dell EMC Isilon Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/isilon_sdk/isilon_sdk/v9_4_0/__init__.py b/isilon_sdk/isilon_sdk/v9_4_0/__init__.py new file mode 100644 index 000000000..cd5673cba --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/__init__.py @@ -0,0 +1,1409 @@ +# coding: utf-8 + +# flake8: noqa + +""" + Isilon SDK + + Isilon SDK - Language bindings for the OneFS API # noqa: E501 + + OpenAPI spec version: 15 + Contact: sdk@isilon.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +from __future__ import absolute_import + +# import apis into sdk package +from isilon_sdk.v9_4_0.api.antivirus_api import AntivirusApi +from isilon_sdk.v9_4_0.api.api_api import ApiApi +from isilon_sdk.v9_4_0.api.audit_api import AuditApi +from isilon_sdk.v9_4_0.api.auth_api import AuthApi +from isilon_sdk.v9_4_0.api.auth_groups_api import AuthGroupsApi +from isilon_sdk.v9_4_0.api.auth_providers_api import AuthProvidersApi +from isilon_sdk.v9_4_0.api.auth_roles_api import AuthRolesApi +from isilon_sdk.v9_4_0.api.auth_users_api import AuthUsersApi +from isilon_sdk.v9_4_0.api.avscan_api import AvscanApi +from isilon_sdk.v9_4_0.api.avscan_nodes_api import AvscanNodesApi +from isilon_sdk.v9_4_0.api.catalog_api import CatalogApi +from isilon_sdk.v9_4_0.api.certificate_api import CertificateApi +from isilon_sdk.v9_4_0.api.cloud_api import CloudApi +from isilon_sdk.v9_4_0.api.cluster_api import ClusterApi +from isilon_sdk.v9_4_0.api.cluster_mode_api import ClusterModeApi +from isilon_sdk.v9_4_0.api.cluster_nodes_api import ClusterNodesApi +from isilon_sdk.v9_4_0.api.config_api import ConfigApi +from isilon_sdk.v9_4_0.api.datamover_api import DatamoverApi +from isilon_sdk.v9_4_0.api.debug_api import DebugApi +from isilon_sdk.v9_4_0.api.dedupe_api import DedupeApi +from isilon_sdk.v9_4_0.api.event_api import EventApi +from isilon_sdk.v9_4_0.api.file_filter_api import FileFilterApi +from isilon_sdk.v9_4_0.api.filepool_api import FilepoolApi +from isilon_sdk.v9_4_0.api.filesystem_api import FilesystemApi +from isilon_sdk.v9_4_0.api.fsa_api import FsaApi +from isilon_sdk.v9_4_0.api.fsa_index_api import FsaIndexApi +from isilon_sdk.v9_4_0.api.fsa_results_api import FsaResultsApi +from isilon_sdk.v9_4_0.api.groupnets_summary_api import GroupnetsSummaryApi +from isilon_sdk.v9_4_0.api.hardening_api import HardeningApi +from isilon_sdk.v9_4_0.api.hardware_api import HardwareApi +from isilon_sdk.v9_4_0.api.healthcheck_api import HealthcheckApi +from isilon_sdk.v9_4_0.api.id_resolution_api import IdResolutionApi +from isilon_sdk.v9_4_0.api.id_resolution_zones_api import IdResolutionZonesApi +from isilon_sdk.v9_4_0.api.ipmi_api import IpmiApi +from isilon_sdk.v9_4_0.api.job_api import JobApi +from isilon_sdk.v9_4_0.api.keymanager_api import KeymanagerApi +from isilon_sdk.v9_4_0.api.lfn_api import LfnApi +from isilon_sdk.v9_4_0.api.license_api import LicenseApi +from isilon_sdk.v9_4_0.api.local_api import LocalApi +from isilon_sdk.v9_4_0.api.local_cluster_api import LocalClusterApi +from isilon_sdk.v9_4_0.api.namespace_api import NamespaceApi +from isilon_sdk.v9_4_0.api.network_api import NetworkApi +from isilon_sdk.v9_4_0.api.network_groupnets_api import NetworkGroupnetsApi +from isilon_sdk.v9_4_0.api.network_groupnets_subnets_api import NetworkGroupnetsSubnetsApi +from isilon_sdk.v9_4_0.api.papi_api import PapiApi +from isilon_sdk.v9_4_0.api.performance_api import PerformanceApi +from isilon_sdk.v9_4_0.api.performance_datasets_api import PerformanceDatasetsApi +from isilon_sdk.v9_4_0.api.protocols_api import ProtocolsApi +from isilon_sdk.v9_4_0.api.protocols_hdfs_api import ProtocolsHdfsApi +from isilon_sdk.v9_4_0.api.quota_api import QuotaApi +from isilon_sdk.v9_4_0.api.quota_quotas_api import QuotaQuotasApi +from isilon_sdk.v9_4_0.api.quota_reports_api import QuotaReportsApi +from isilon_sdk.v9_4_0.api.security_api import SecurityApi +from isilon_sdk.v9_4_0.api.snapshot_api import SnapshotApi +from isilon_sdk.v9_4_0.api.snapshot_changelists_api import SnapshotChangelistsApi +from isilon_sdk.v9_4_0.api.snapshot_snapshots_api import SnapshotSnapshotsApi +from isilon_sdk.v9_4_0.api.statistics_api import StatisticsApi +from isilon_sdk.v9_4_0.api.storagepool_api import StoragepoolApi +from isilon_sdk.v9_4_0.api.storagepool_nodetypes_api import StoragepoolNodetypesApi +from isilon_sdk.v9_4_0.api.sync_api import SyncApi +from isilon_sdk.v9_4_0.api.sync_policies_api import SyncPoliciesApi +from isilon_sdk.v9_4_0.api.sync_reports_api import SyncReportsApi +from isilon_sdk.v9_4_0.api.sync_service_api import SyncServiceApi +from isilon_sdk.v9_4_0.api.sync_service_target_api import SyncServiceTargetApi +from isilon_sdk.v9_4_0.api.sync_target_api import SyncTargetApi +from isilon_sdk.v9_4_0.api.upgrade_api import UpgradeApi +from isilon_sdk.v9_4_0.api.upgrade_cluster_api import UpgradeClusterApi +from isilon_sdk.v9_4_0.api.worm_api import WormApi +from isilon_sdk.v9_4_0.api.zones_api import ZonesApi +from isilon_sdk.v9_4_0.api.zones_summary_api import ZonesSummaryApi + +# import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient +from isilon_sdk.v9_4_0.configuration import Configuration +# import models into sdk package +from isilon_sdk.v9_4_0.models.access_point_create_params import AccessPointCreateParams +from isilon_sdk.v9_4_0.models.acl_object import AclObject +from isilon_sdk.v9_4_0.models.ads_provider_controllers import AdsProviderControllers +from isilon_sdk.v9_4_0.models.ads_provider_controllers_controller import AdsProviderControllersController +from isilon_sdk.v9_4_0.models.ads_provider_domains import AdsProviderDomains +from isilon_sdk.v9_4_0.models.ads_provider_domains_domain import AdsProviderDomainsDomain +from isilon_sdk.v9_4_0.models.ads_provider_search_item import AdsProviderSearchItem +from isilon_sdk.v9_4_0.models.antivirus_policies import AntivirusPolicies +from isilon_sdk.v9_4_0.models.antivirus_policy import AntivirusPolicy +from isilon_sdk.v9_4_0.models.antivirus_quarantine import AntivirusQuarantine +from isilon_sdk.v9_4_0.models.antivirus_quarantine_path_params import AntivirusQuarantinePathParams +from isilon_sdk.v9_4_0.models.antivirus_scan_item import AntivirusScanItem +from isilon_sdk.v9_4_0.models.antivirus_server import AntivirusServer +from isilon_sdk.v9_4_0.models.antivirus_servers import AntivirusServers +from isilon_sdk.v9_4_0.models.antivirus_settings import AntivirusSettings +from isilon_sdk.v9_4_0.models.antivirus_settings_extended import AntivirusSettingsExtended +from isilon_sdk.v9_4_0.models.antivirus_settings_settings import AntivirusSettingsSettings +from isilon_sdk.v9_4_0.models.audit_logs import AuditLogs +from isilon_sdk.v9_4_0.models.audit_logs_blocker_item import AuditLogsBlockerItem +from isilon_sdk.v9_4_0.models.audit_logs_deletion_item import AuditLogsDeletionItem +from isilon_sdk.v9_4_0.models.audit_progress import AuditProgress +from isilon_sdk.v9_4_0.models.audit_progress_progress import AuditProgressProgress +from isilon_sdk.v9_4_0.models.audit_settings import AuditSettings +from isilon_sdk.v9_4_0.models.audit_settings_settings import AuditSettingsSettings +from isilon_sdk.v9_4_0.models.audit_topic import AuditTopic +from isilon_sdk.v9_4_0.models.audit_topic_create_params import AuditTopicCreateParams +from isilon_sdk.v9_4_0.models.audit_topics import AuditTopics +from isilon_sdk.v9_4_0.models.auth_access import AuthAccess +from isilon_sdk.v9_4_0.models.auth_access_access_item import AuthAccessAccessItem +from isilon_sdk.v9_4_0.models.auth_access_access_item_file import AuthAccessAccessItemFile +from isilon_sdk.v9_4_0.models.auth_access_access_item_file_file_permissions import AuthAccessAccessItemFileFilePermissions +from isilon_sdk.v9_4_0.models.auth_access_access_item_file_file_permissions_relevant_ace import AuthAccessAccessItemFileFilePermissionsRelevantAce +from isilon_sdk.v9_4_0.models.auth_access_access_item_file_group import AuthAccessAccessItemFileGroup +from isilon_sdk.v9_4_0.models.auth_access_access_item_share import AuthAccessAccessItemShare +from isilon_sdk.v9_4_0.models.auth_access_access_item_share_effective_user import AuthAccessAccessItemShareEffectiveUser +from isilon_sdk.v9_4_0.models.auth_access_access_item_share_share_permissions import AuthAccessAccessItemShareSharePermissions +from isilon_sdk.v9_4_0.models.auth_cache_item import AuthCacheItem +from isilon_sdk.v9_4_0.models.auth_error import AuthError +from isilon_sdk.v9_4_0.models.auth_group import AuthGroup +from isilon_sdk.v9_4_0.models.auth_group_extended import AuthGroupExtended +from isilon_sdk.v9_4_0.models.auth_group_object_history_item import AuthGroupObjectHistoryItem +from isilon_sdk.v9_4_0.models.auth_groups import AuthGroups +from isilon_sdk.v9_4_0.models.auth_groups_extended import AuthGroupsExtended +from isilon_sdk.v9_4_0.models.auth_id import AuthId +from isilon_sdk.v9_4_0.models.auth_id_ntoken import AuthIdNtoken +from isilon_sdk.v9_4_0.models.auth_id_ntoken_privilege_item import AuthIdNtokenPrivilegeItem +from isilon_sdk.v9_4_0.models.auth_ldap_templates import AuthLdapTemplates +from isilon_sdk.v9_4_0.models.auth_ldap_templates_extended import AuthLdapTemplatesExtended +from isilon_sdk.v9_4_0.models.auth_ldap_templates_ldap_configuration_template import AuthLdapTemplatesLdapConfigurationTemplate +from isilon_sdk.v9_4_0.models.auth_ldap_templates_ldap_configuration_template_extended import AuthLdapTemplatesLdapConfigurationTemplateExtended +from isilon_sdk.v9_4_0.models.auth_log_level import AuthLogLevel +from isilon_sdk.v9_4_0.models.auth_log_level_extended import AuthLogLevelExtended +from isilon_sdk.v9_4_0.models.auth_log_level_level import AuthLogLevelLevel +from isilon_sdk.v9_4_0.models.auth_netgroup import AuthNetgroup +from isilon_sdk.v9_4_0.models.auth_netgroups import AuthNetgroups +from isilon_sdk.v9_4_0.models.auth_privilege import AuthPrivilege +from isilon_sdk.v9_4_0.models.auth_privileges import AuthPrivileges +from isilon_sdk.v9_4_0.models.auth_role import AuthRole +from isilon_sdk.v9_4_0.models.auth_roles import AuthRoles +from isilon_sdk.v9_4_0.models.auth_shells import AuthShells +from isilon_sdk.v9_4_0.models.auth_user import AuthUser +from isilon_sdk.v9_4_0.models.auth_user_extended import AuthUserExtended +from isilon_sdk.v9_4_0.models.auth_users import AuthUsers +from isilon_sdk.v9_4_0.models.auth_users_extended import AuthUsersExtended +from isilon_sdk.v9_4_0.models.auth_wellknowns import AuthWellknowns +from isilon_sdk.v9_4_0.models.avscan_filter import AvscanFilter +from isilon_sdk.v9_4_0.models.avscan_filter_extended import AvscanFilterExtended +from isilon_sdk.v9_4_0.models.avscan_filter_extended_extended import AvscanFilterExtendedExtended +from isilon_sdk.v9_4_0.models.avscan_filters import AvscanFilters +from isilon_sdk.v9_4_0.models.avscan_filters_extended import AvscanFiltersExtended +from isilon_sdk.v9_4_0.models.avscan_job import AvscanJob +from isilon_sdk.v9_4_0.models.avscan_job_create_params import AvscanJobCreateParams +from isilon_sdk.v9_4_0.models.avscan_job_extended import AvscanJobExtended +from isilon_sdk.v9_4_0.models.avscan_jobs import AvscanJobs +from isilon_sdk.v9_4_0.models.avscan_server import AvscanServer +from isilon_sdk.v9_4_0.models.avscan_server_create_params import AvscanServerCreateParams +from isilon_sdk.v9_4_0.models.avscan_server_extended import AvscanServerExtended +from isilon_sdk.v9_4_0.models.avscan_servers import AvscanServers +from isilon_sdk.v9_4_0.models.avscan_settings import AvscanSettings +from isilon_sdk.v9_4_0.models.avscan_settings_settings import AvscanSettingsSettings +from isilon_sdk.v9_4_0.models.catalog_export import CatalogExport +from isilon_sdk.v9_4_0.models.catalog_import import CatalogImport +from isilon_sdk.v9_4_0.models.catalog_list import CatalogList +from isilon_sdk.v9_4_0.models.catalog_list_artifact import CatalogListArtifact +from isilon_sdk.v9_4_0.models.catalog_readme import CatalogReadme +from isilon_sdk.v9_4_0.models.catalog_remove import CatalogRemove +from isilon_sdk.v9_4_0.models.catalog_verify import CatalogVerify +from isilon_sdk.v9_4_0.models.catalog_verify_artifact import CatalogVerifyArtifact +from isilon_sdk.v9_4_0.models.certificate_authority_item import CertificateAuthorityItem +from isilon_sdk.v9_4_0.models.certificate_server_id_params import CertificateServerIdParams +from isilon_sdk.v9_4_0.models.certificate_server_item import CertificateServerItem +from isilon_sdk.v9_4_0.models.certificate_settings import CertificateSettings +from isilon_sdk.v9_4_0.models.certificate_settings_extended import CertificateSettingsExtended +from isilon_sdk.v9_4_0.models.certificate_settings_settings import CertificateSettingsSettings +from isilon_sdk.v9_4_0.models.certificates_ca import CertificatesCa +from isilon_sdk.v9_4_0.models.certificates_ca_certificate import CertificatesCaCertificate +from isilon_sdk.v9_4_0.models.certificates_ca_certificate_fingerprint import CertificatesCaCertificateFingerprint +from isilon_sdk.v9_4_0.models.certificates_ca_id_params import CertificatesCaIdParams +from isilon_sdk.v9_4_0.models.certificates_ca_item import CertificatesCaItem +from isilon_sdk.v9_4_0.models.certificates_identity import CertificatesIdentity +from isilon_sdk.v9_4_0.models.certificates_identity_certificate import CertificatesIdentityCertificate +from isilon_sdk.v9_4_0.models.certificates_identity_item import CertificatesIdentityItem +from isilon_sdk.v9_4_0.models.certificates_peer import CertificatesPeer +from isilon_sdk.v9_4_0.models.certificates_server import CertificatesServer +from isilon_sdk.v9_4_0.models.changelist_entries import ChangelistEntries +from isilon_sdk.v9_4_0.models.changelist_entries_extended import ChangelistEntriesExtended +from isilon_sdk.v9_4_0.models.changelist_entry import ChangelistEntry +from isilon_sdk.v9_4_0.models.changelist_entry_atime import ChangelistEntryAtime +from isilon_sdk.v9_4_0.models.changelist_lins import ChangelistLins +from isilon_sdk.v9_4_0.models.changelist_lins_atime import ChangelistLinsAtime +from isilon_sdk.v9_4_0.models.changelist_lins_extended import ChangelistLinsExtended +from isilon_sdk.v9_4_0.models.changelists_changelist_diff_regions import ChangelistsChangelistDiffRegions +from isilon_sdk.v9_4_0.models.changelists_changelist_diff_regions_diff_region import ChangelistsChangelistDiffRegionsDiffRegion +from isilon_sdk.v9_4_0.models.check_report import CheckReport +from isilon_sdk.v9_4_0.models.check_report_report_item import CheckReportReportItem +from isilon_sdk.v9_4_0.models.check_settings import CheckSettings +from isilon_sdk.v9_4_0.models.check_settings_extended import CheckSettingsExtended +from isilon_sdk.v9_4_0.models.check_settings_settings import CheckSettingsSettings +from isilon_sdk.v9_4_0.models.cloud_access import CloudAccess +from isilon_sdk.v9_4_0.models.cloud_access_cluster import CloudAccessCluster +from isilon_sdk.v9_4_0.models.cloud_access_item import CloudAccessItem +from isilon_sdk.v9_4_0.models.cloud_account import CloudAccount +from isilon_sdk.v9_4_0.models.cloud_account_create_params import CloudAccountCreateParams +from isilon_sdk.v9_4_0.models.cloud_account_credential_provider import CloudAccountCredentialProvider +from isilon_sdk.v9_4_0.models.cloud_accounts import CloudAccounts +from isilon_sdk.v9_4_0.models.cloud_accounts_extended import CloudAccountsExtended +from isilon_sdk.v9_4_0.models.cloud_certificates import CloudCertificates +from isilon_sdk.v9_4_0.models.cloud_job import CloudJob +from isilon_sdk.v9_4_0.models.cloud_job_create_params import CloudJobCreateParams +from isilon_sdk.v9_4_0.models.cloud_job_extended import CloudJobExtended +from isilon_sdk.v9_4_0.models.cloud_job_files import CloudJobFiles +from isilon_sdk.v9_4_0.models.cloud_job_files_name import CloudJobFilesName +from isilon_sdk.v9_4_0.models.cloud_job_job_engine_job import CloudJobJobEngineJob +from isilon_sdk.v9_4_0.models.cloud_jobs import CloudJobs +from isilon_sdk.v9_4_0.models.cloud_jobs_files import CloudJobsFiles +from isilon_sdk.v9_4_0.models.cloud_jobs_files_file import CloudJobsFilesFile +from isilon_sdk.v9_4_0.models.cloud_pool import CloudPool +from isilon_sdk.v9_4_0.models.cloud_pools import CloudPools +from isilon_sdk.v9_4_0.models.cloud_pools_extended import CloudPoolsExtended +from isilon_sdk.v9_4_0.models.cloud_proxies import CloudProxies +from isilon_sdk.v9_4_0.models.cloud_proxies_extended import CloudProxiesExtended +from isilon_sdk.v9_4_0.models.cloud_proxy import CloudProxy +from isilon_sdk.v9_4_0.models.cloud_settings import CloudSettings +from isilon_sdk.v9_4_0.models.cloud_settings_settings import CloudSettingsSettings +from isilon_sdk.v9_4_0.models.cloud_settings_settings_cloud_policy_defaults import CloudSettingsSettingsCloudPolicyDefaults +from isilon_sdk.v9_4_0.models.cloud_settings_settings_cloud_policy_defaults_cache import CloudSettingsSettingsCloudPolicyDefaultsCache +from isilon_sdk.v9_4_0.models.cloud_settings_settings_sleep_timeout_archive import CloudSettingsSettingsSleepTimeoutArchive +from isilon_sdk.v9_4_0.models.cluster_ac import ClusterAc +from isilon_sdk.v9_4_0.models.cluster_acs import ClusterAcs +from isilon_sdk.v9_4_0.models.cluster_add_node_item import ClusterAddNodeItem +from isilon_sdk.v9_4_0.models.cluster_archive_item import ClusterArchiveItem +from isilon_sdk.v9_4_0.models.cluster_assess_item import ClusterAssessItem +from isilon_sdk.v9_4_0.models.cluster_config import ClusterConfig +from isilon_sdk.v9_4_0.models.cluster_config_device import ClusterConfigDevice +from isilon_sdk.v9_4_0.models.cluster_config_onefs_version import ClusterConfigOnefsVersion +from isilon_sdk.v9_4_0.models.cluster_config_timezone import ClusterConfigTimezone +from isilon_sdk.v9_4_0.models.cluster_drain import ClusterDrain +from isilon_sdk.v9_4_0.models.cluster_drain_list import ClusterDrainList +from isilon_sdk.v9_4_0.models.cluster_drain_timeout import ClusterDrainTimeout +from isilon_sdk.v9_4_0.models.cluster_drain_timeout_extended import ClusterDrainTimeoutExtended +from isilon_sdk.v9_4_0.models.cluster_email import ClusterEmail +from isilon_sdk.v9_4_0.models.cluster_email_extended import ClusterEmailExtended +from isilon_sdk.v9_4_0.models.cluster_email_settings import ClusterEmailSettings +from isilon_sdk.v9_4_0.models.cluster_firmware_assess_item import ClusterFirmwareAssessItem +from isilon_sdk.v9_4_0.models.cluster_firmware_device import ClusterFirmwareDevice +from isilon_sdk.v9_4_0.models.cluster_firmware_device_node import ClusterFirmwareDeviceNode +from isilon_sdk.v9_4_0.models.cluster_firmware_progress import ClusterFirmwareProgress +from isilon_sdk.v9_4_0.models.cluster_firmware_status import ClusterFirmwareStatus +from isilon_sdk.v9_4_0.models.cluster_firmware_status_node import ClusterFirmwareStatusNode +from isilon_sdk.v9_4_0.models.cluster_firmware_upgrade_item import ClusterFirmwareUpgradeItem +from isilon_sdk.v9_4_0.models.cluster_identity import ClusterIdentity +from isilon_sdk.v9_4_0.models.cluster_identity_extended import ClusterIdentityExtended +from isilon_sdk.v9_4_0.models.cluster_identity_logon import ClusterIdentityLogon +from isilon_sdk.v9_4_0.models.cluster_identity_logon_extended import ClusterIdentityLogonExtended +from isilon_sdk.v9_4_0.models.cluster_internal_networks import ClusterInternalNetworks +from isilon_sdk.v9_4_0.models.cluster_internal_networks_extended import ClusterInternalNetworksExtended +from isilon_sdk.v9_4_0.models.cluster_mode_settings import ClusterModeSettings +from isilon_sdk.v9_4_0.models.cluster_mode_settings_extended import ClusterModeSettingsExtended +from isilon_sdk.v9_4_0.models.cluster_node import ClusterNode +from isilon_sdk.v9_4_0.models.cluster_node_drive_d_config import ClusterNodeDriveDConfig +from isilon_sdk.v9_4_0.models.cluster_node_extended import ClusterNodeExtended +from isilon_sdk.v9_4_0.models.cluster_node_hardware import ClusterNodeHardware +from isilon_sdk.v9_4_0.models.cluster_node_partition import ClusterNodePartition +from isilon_sdk.v9_4_0.models.cluster_node_partition_statfs import ClusterNodePartitionStatfs +from isilon_sdk.v9_4_0.models.cluster_node_partitions import ClusterNodePartitions +from isilon_sdk.v9_4_0.models.cluster_node_sensor import ClusterNodeSensor +from isilon_sdk.v9_4_0.models.cluster_node_sensor_value import ClusterNodeSensorValue +from isilon_sdk.v9_4_0.models.cluster_node_sensors import ClusterNodeSensors +from isilon_sdk.v9_4_0.models.cluster_node_sled import ClusterNodeSled +from isilon_sdk.v9_4_0.models.cluster_node_state import ClusterNodeState +from isilon_sdk.v9_4_0.models.cluster_node_state_extended import ClusterNodeStateExtended +from isilon_sdk.v9_4_0.models.cluster_node_status import ClusterNodeStatus +from isilon_sdk.v9_4_0.models.cluster_nodes import ClusterNodes +from isilon_sdk.v9_4_0.models.cluster_nodes_available import ClusterNodesAvailable +from isilon_sdk.v9_4_0.models.cluster_nodes_available_node import ClusterNodesAvailableNode +from isilon_sdk.v9_4_0.models.cluster_nodes_error import ClusterNodesError +from isilon_sdk.v9_4_0.models.cluster_nodes_extended import ClusterNodesExtended +from isilon_sdk.v9_4_0.models.cluster_nodes_extended_extended import ClusterNodesExtendedExtended +from isilon_sdk.v9_4_0.models.cluster_nodes_extended_extended_extended import ClusterNodesExtendedExtendedExtended +from isilon_sdk.v9_4_0.models.cluster_nodes_onefs_version import ClusterNodesOnefsVersion +from isilon_sdk.v9_4_0.models.cluster_owner import ClusterOwner +from isilon_sdk.v9_4_0.models.cluster_patch_patch import ClusterPatchPatch +from isilon_sdk.v9_4_0.models.cluster_patch_patches import ClusterPatchPatches +from isilon_sdk.v9_4_0.models.cluster_patch_patches_patch import ClusterPatchPatchesPatch +from isilon_sdk.v9_4_0.models.cluster_patch_patches_patch_file import ClusterPatchPatchesPatchFile +from isilon_sdk.v9_4_0.models.cluster_patch_patches_patch_service import ClusterPatchPatchesPatchService +from isilon_sdk.v9_4_0.models.cluster_retry_last_action_item import ClusterRetryLastActionItem +from isilon_sdk.v9_4_0.models.cluster_services import ClusterServices +from isilon_sdk.v9_4_0.models.cluster_services_node import ClusterServicesNode +from isilon_sdk.v9_4_0.models.cluster_services_node_service import ClusterServicesNodeService +from isilon_sdk.v9_4_0.models.cluster_statfs import ClusterStatfs +from isilon_sdk.v9_4_0.models.cluster_time import ClusterTime +from isilon_sdk.v9_4_0.models.cluster_time_extended import ClusterTimeExtended +from isilon_sdk.v9_4_0.models.cluster_time_extended_extended import ClusterTimeExtendedExtended +from isilon_sdk.v9_4_0.models.cluster_time_node import ClusterTimeNode +from isilon_sdk.v9_4_0.models.cluster_timezone import ClusterTimezone +from isilon_sdk.v9_4_0.models.cluster_timezone_extended import ClusterTimezoneExtended +from isilon_sdk.v9_4_0.models.cluster_timezone_settings import ClusterTimezoneSettings +from isilon_sdk.v9_4_0.models.cluster_timezone_settings_extended import ClusterTimezoneSettingsExtended +from isilon_sdk.v9_4_0.models.cluster_unblock import ClusterUnblock +from isilon_sdk.v9_4_0.models.cluster_update_lnns import ClusterUpdateLnns +from isilon_sdk.v9_4_0.models.cluster_update_lnns_lnn import ClusterUpdateLnnsLnn +from isilon_sdk.v9_4_0.models.cluster_upgrade import ClusterUpgrade +from isilon_sdk.v9_4_0.models.cluster_upgrade_item import ClusterUpgradeItem +from isilon_sdk.v9_4_0.models.cluster_version import ClusterVersion +from isilon_sdk.v9_4_0.models.cluster_version_node import ClusterVersionNode +from isilon_sdk.v9_4_0.models.config_export import ConfigExport +from isilon_sdk.v9_4_0.models.config_export_create_params import ConfigExportCreateParams +from isilon_sdk.v9_4_0.models.config_exports import ConfigExports +from isilon_sdk.v9_4_0.models.config_feature import ConfigFeature +from isilon_sdk.v9_4_0.models.config_features import ConfigFeatures +from isilon_sdk.v9_4_0.models.config_features_extended import ConfigFeaturesExtended +from isilon_sdk.v9_4_0.models.config_import import ConfigImport +from isilon_sdk.v9_4_0.models.config_import_create_params import ConfigImportCreateParams +from isilon_sdk.v9_4_0.models.config_imports import ConfigImports +from isilon_sdk.v9_4_0.models.config_network import ConfigNetwork +from isilon_sdk.v9_4_0.models.config_network_network import ConfigNetworkNetwork +from isilon_sdk.v9_4_0.models.config_network_network_range import ConfigNetworkNetworkRange +from isilon_sdk.v9_4_0.models.config_node import ConfigNode +from isilon_sdk.v9_4_0.models.config_nodes import ConfigNodes +from isilon_sdk.v9_4_0.models.config_nodes_extended import ConfigNodesExtended +from isilon_sdk.v9_4_0.models.config_settings import ConfigSettings +from isilon_sdk.v9_4_0.models.config_settings_settings import ConfigSettingsSettings +from isilon_sdk.v9_4_0.models.config_user import ConfigUser +from isilon_sdk.v9_4_0.models.config_user_user import ConfigUserUser +from isilon_sdk.v9_4_0.models.copy_errors import CopyErrors +from isilon_sdk.v9_4_0.models.copy_errors_copy_errors import CopyErrorsCopyErrors +from isilon_sdk.v9_4_0.models.create_ads_provider_search_item_response import CreateAdsProviderSearchItemResponse +from isilon_sdk.v9_4_0.models.create_ads_provider_search_item_response_object import CreateAdsProviderSearchItemResponseObject +from isilon_sdk.v9_4_0.models.create_antivirus_scan_item_response import CreateAntivirusScanItemResponse +from isilon_sdk.v9_4_0.models.create_cloud_account_response import CreateCloudAccountResponse +from isilon_sdk.v9_4_0.models.create_cloud_job_response import CreateCloudJobResponse +from isilon_sdk.v9_4_0.models.create_cloud_pool_response import CreateCloudPoolResponse +from isilon_sdk.v9_4_0.models.create_cloud_proxy_response import CreateCloudProxyResponse +from isilon_sdk.v9_4_0.models.create_config_export_response import CreateConfigExportResponse +from isilon_sdk.v9_4_0.models.create_config_import_response import CreateConfigImportResponse +from isilon_sdk.v9_4_0.models.create_datamover_account_response import CreateDatamoverAccountResponse +from isilon_sdk.v9_4_0.models.create_datamover_base_policy_response import CreateDatamoverBasePolicyResponse +from isilon_sdk.v9_4_0.models.create_dataset_filter_response import CreateDatasetFilterResponse +from isilon_sdk.v9_4_0.models.create_dataset_workload_response import CreateDatasetWorkloadResponse +from isilon_sdk.v9_4_0.models.create_filepool_policy_response import CreateFilepoolPolicyResponse +from isilon_sdk.v9_4_0.models.create_hardening_apply_item_response import CreateHardeningApplyItemResponse +from isilon_sdk.v9_4_0.models.create_hardening_resolve_item_response import CreateHardeningResolveItemResponse +from isilon_sdk.v9_4_0.models.create_hardening_revert_item_response import CreateHardeningRevertItemResponse +from isilon_sdk.v9_4_0.models.create_hardware_tape_name_response import CreateHardwareTapeNameResponse +from isilon_sdk.v9_4_0.models.create_hardware_tape_name_response_node import CreateHardwareTapeNameResponseNode +from isilon_sdk.v9_4_0.models.create_hardware_tape_name_response_node_rescan_report_item import CreateHardwareTapeNameResponseNodeRescanReportItem +from isilon_sdk.v9_4_0.models.create_job_job_response import CreateJobJobResponse +from isilon_sdk.v9_4_0.models.create_kmip_server_verify_item_response import CreateKmipServerVerifyItemResponse +from isilon_sdk.v9_4_0.models.create_kmip_server_verify_item_response_node import CreateKmipServerVerifyItemResponseNode +from isilon_sdk.v9_4_0.models.create_nfs_alias_response import CreateNfsAliasResponse +from isilon_sdk.v9_4_0.models.create_nfs_nlm_sessions_check_item_response import CreateNfsNlmSessionsCheckItemResponse +from isilon_sdk.v9_4_0.models.create_performance_dataset_response import CreatePerformanceDatasetResponse +from isilon_sdk.v9_4_0.models.create_quota_report_response import CreateQuotaReportResponse +from isilon_sdk.v9_4_0.models.create_response import CreateResponse +from isilon_sdk.v9_4_0.models.create_s3_key_response import CreateS3KeyResponse +from isilon_sdk.v9_4_0.models.create_s3_key_response_keys import CreateS3KeyResponseKeys +from isilon_sdk.v9_4_0.models.create_sed_migrate_item_response import CreateSedMigrateItemResponse +from isilon_sdk.v9_4_0.models.create_sed_migrate_item_response_settings import CreateSedMigrateItemResponseSettings +from isilon_sdk.v9_4_0.models.create_smb_log_level_filter_response import CreateSmbLogLevelFilterResponse +from isilon_sdk.v9_4_0.models.create_smb_share_response import CreateSmbShareResponse +from isilon_sdk.v9_4_0.models.create_snapshot_alias_response import CreateSnapshotAliasResponse +from isilon_sdk.v9_4_0.models.create_snapshot_lock_response import CreateSnapshotLockResponse +from isilon_sdk.v9_4_0.models.create_snapshot_schedule_response import CreateSnapshotScheduleResponse +from isilon_sdk.v9_4_0.models.create_storagepool_tier_response import CreateStoragepoolTierResponse +from isilon_sdk.v9_4_0.models.create_sync_reports_rotate_item_response import CreateSyncReportsRotateItemResponse +from isilon_sdk.v9_4_0.models.create_throttling_bw_rule_response import CreateThrottlingBwRuleResponse +from isilon_sdk.v9_4_0.models.datamover_account import DatamoverAccount +from isilon_sdk.v9_4_0.models.datamover_account_create_params import DatamoverAccountCreateParams +from isilon_sdk.v9_4_0.models.datamover_account_credentials import DatamoverAccountCredentials +from isilon_sdk.v9_4_0.models.datamover_account_credentials_certificate import DatamoverAccountCredentialsCertificate +from isilon_sdk.v9_4_0.models.datamover_account_credentials_certificate_extended import DatamoverAccountCredentialsCertificateExtended +from isilon_sdk.v9_4_0.models.datamover_account_credentials_cloud import DatamoverAccountCredentialsCloud +from isilon_sdk.v9_4_0.models.datamover_account_credentials_cloud_extended import DatamoverAccountCredentialsCloudExtended +from isilon_sdk.v9_4_0.models.datamover_account_credentials_cloud_proxy import DatamoverAccountCredentialsCloudProxy +from isilon_sdk.v9_4_0.models.datamover_account_credentials_cloud_proxy_extended import DatamoverAccountCredentialsCloudProxyExtended +from isilon_sdk.v9_4_0.models.datamover_account_credentials_extended import DatamoverAccountCredentialsExtended +from isilon_sdk.v9_4_0.models.datamover_account_extended import DatamoverAccountExtended +from isilon_sdk.v9_4_0.models.datamover_accounts import DatamoverAccounts +from isilon_sdk.v9_4_0.models.datamover_base_policies import DatamoverBasePolicies +from isilon_sdk.v9_4_0.models.datamover_base_policies_policy import DatamoverBasePoliciesPolicy +from isilon_sdk.v9_4_0.models.datamover_base_policies_policy_schedule import DatamoverBasePoliciesPolicySchedule +from isilon_sdk.v9_4_0.models.datamover_base_policy import DatamoverBasePolicy +from isilon_sdk.v9_4_0.models.datamover_base_policy_schedule import DatamoverBasePolicySchedule +from isilon_sdk.v9_4_0.models.datamover_base_policy_src_dataset_retention import DatamoverBasePolicySrcDatasetRetention +from isilon_sdk.v9_4_0.models.datamover_dataset import DatamoverDataset +from isilon_sdk.v9_4_0.models.datamover_dataset_dataset_global_id import DatamoverDatasetDatasetGlobalId +from isilon_sdk.v9_4_0.models.datamover_dataset_dataset_global_id_dataset_revision import DatamoverDatasetDatasetGlobalIdDatasetRevision +from isilon_sdk.v9_4_0.models.datamover_dataset_extended import DatamoverDatasetExtended +from isilon_sdk.v9_4_0.models.datamover_datasets import DatamoverDatasets +from isilon_sdk.v9_4_0.models.datamover_datasets_extended import DatamoverDatasetsExtended +from isilon_sdk.v9_4_0.models.datamover_historical_jobs import DatamoverHistoricalJobs +from isilon_sdk.v9_4_0.models.datamover_historical_jobs_job import DatamoverHistoricalJobsJob +from isilon_sdk.v9_4_0.models.datamover_historical_jobs_job_job_type_specific_attrs import DatamoverHistoricalJobsJobJobTypeSpecificAttrs +from isilon_sdk.v9_4_0.models.datamover_historical_jobs_job_job_type_specific_attrs_dataset_baseline_copy_job import DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJob +from isilon_sdk.v9_4_0.models.datamover_historical_jobs_job_job_type_specific_attrs_dataset_creation_job import DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJob +from isilon_sdk.v9_4_0.models.datamover_historical_jobs_job_job_type_specific_attrs_dataset_creation_job_statistics import DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJobStatistics +from isilon_sdk.v9_4_0.models.datamover_historical_jobs_job_job_type_specific_attrs_dataset_expiration_job import DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJob +from isilon_sdk.v9_4_0.models.datamover_historical_jobs_job_job_type_specific_attrs_dataset_incremental_copy_job import DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJob +from isilon_sdk.v9_4_0.models.datamover_job import DatamoverJob +from isilon_sdk.v9_4_0.models.datamover_job_job_type_specific_attrs import DatamoverJobJobTypeSpecificAttrs +from isilon_sdk.v9_4_0.models.datamover_job_job_type_specific_attrs_dataset_baseline_copy_job import DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob +from isilon_sdk.v9_4_0.models.datamover_job_job_type_specific_attrs_dataset_baseline_copy_job_statistics import DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics +from isilon_sdk.v9_4_0.models.datamover_job_job_type_specific_attrs_dataset_incremental_copy_job import DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob +from isilon_sdk.v9_4_0.models.datamover_job_job_type_specific_attrs_dataset_incremental_copy_job_statistics import DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics +from isilon_sdk.v9_4_0.models.datamover_jobs import DatamoverJobs +from isilon_sdk.v9_4_0.models.datamover_policies import DatamoverPolicies +from isilon_sdk.v9_4_0.models.datamover_policy import DatamoverPolicy +from isilon_sdk.v9_4_0.models.datamover_policy_create_params import DatamoverPolicyCreateParams +from isilon_sdk.v9_4_0.models.datamover_policy_extended import DatamoverPolicyExtended +from isilon_sdk.v9_4_0.models.datamover_policy_policy_specific_attr import DatamoverPolicyPolicySpecificAttr +from isilon_sdk.v9_4_0.models.datamover_policy_policy_specific_attr_copy_policy import DatamoverPolicyPolicySpecificAttrCopyPolicy +from isilon_sdk.v9_4_0.models.datamover_policy_policy_specific_attr_copy_policy_dataset_copy_policy_base import DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBase +from isilon_sdk.v9_4_0.models.datamover_policy_policy_specific_attr_copy_policy_extended import DatamoverPolicyPolicySpecificAttrCopyPolicyExtended +from isilon_sdk.v9_4_0.models.datamover_policy_policy_specific_attr_creation_policy import DatamoverPolicyPolicySpecificAttrCreationPolicy +from isilon_sdk.v9_4_0.models.datamover_policy_policy_specific_attr_expiration_policy import DatamoverPolicyPolicySpecificAttrExpirationPolicy +from isilon_sdk.v9_4_0.models.datamover_policy_policy_specific_attr_extended import DatamoverPolicyPolicySpecificAttrExtended +from isilon_sdk.v9_4_0.models.datamover_policy_policy_specific_attr_repeat_copy_policy import DatamoverPolicyPolicySpecificAttrRepeatCopyPolicy +from isilon_sdk.v9_4_0.models.dataset_filter import DatasetFilter +from isilon_sdk.v9_4_0.models.dataset_filter_metric_values import DatasetFilterMetricValues +from isilon_sdk.v9_4_0.models.dataset_filter_metric_values_create_params import DatasetFilterMetricValuesCreateParams +from isilon_sdk.v9_4_0.models.dataset_filters import DatasetFilters +from isilon_sdk.v9_4_0.models.dataset_filters_extended import DatasetFiltersExtended +from isilon_sdk.v9_4_0.models.dataset_workload import DatasetWorkload +from isilon_sdk.v9_4_0.models.dataset_workloads import DatasetWorkloads +from isilon_sdk.v9_4_0.models.dataset_workloads_extended import DatasetWorkloadsExtended +from isilon_sdk.v9_4_0.models.debug_stats import DebugStats +from isilon_sdk.v9_4_0.models.debug_stats_describe import DebugStatsDescribe +from isilon_sdk.v9_4_0.models.debug_stats_handler import DebugStatsHandler +from isilon_sdk.v9_4_0.models.dedupe_dedupe_summary import DedupeDedupeSummary +from isilon_sdk.v9_4_0.models.dedupe_dedupe_summary_summary import DedupeDedupeSummarySummary +from isilon_sdk.v9_4_0.models.dedupe_report import DedupeReport +from isilon_sdk.v9_4_0.models.dedupe_report_extended import DedupeReportExtended +from isilon_sdk.v9_4_0.models.dedupe_reports import DedupeReports +from isilon_sdk.v9_4_0.models.dedupe_settings import DedupeSettings +from isilon_sdk.v9_4_0.models.dedupe_settings_extended import DedupeSettingsExtended +from isilon_sdk.v9_4_0.models.dedupe_settings_settings import DedupeSettingsSettings +from isilon_sdk.v9_4_0.models.diagnostics_gather_settings import DiagnosticsGatherSettings +from isilon_sdk.v9_4_0.models.diagnostics_gather_settings_extended import DiagnosticsGatherSettingsExtended +from isilon_sdk.v9_4_0.models.diagnostics_gather_settings_settings import DiagnosticsGatherSettingsSettings +from isilon_sdk.v9_4_0.models.diagnostics_gather_status import DiagnosticsGatherStatus +from isilon_sdk.v9_4_0.models.diagnostics_gather_status_gather import DiagnosticsGatherStatusGather +from isilon_sdk.v9_4_0.models.diagnostics_gather_status_gather_status import DiagnosticsGatherStatusGatherStatus +from isilon_sdk.v9_4_0.models.diagnostics_netlogger_settings import DiagnosticsNetloggerSettings +from isilon_sdk.v9_4_0.models.diagnostics_netlogger_settings_settings import DiagnosticsNetloggerSettingsSettings +from isilon_sdk.v9_4_0.models.diagnostics_netlogger_status import DiagnosticsNetloggerStatus +from isilon_sdk.v9_4_0.models.directory_query import DirectoryQuery +from isilon_sdk.v9_4_0.models.directory_query_scope import DirectoryQueryScope +from isilon_sdk.v9_4_0.models.directory_query_scope_conditions import DirectoryQueryScopeConditions +from isilon_sdk.v9_4_0.models.drives_drive_firmware import DrivesDriveFirmware +from isilon_sdk.v9_4_0.models.drives_drive_firmware_node import DrivesDriveFirmwareNode +from isilon_sdk.v9_4_0.models.drives_drive_firmware_node_drive import DrivesDriveFirmwareNodeDrive +from isilon_sdk.v9_4_0.models.drives_drive_firmware_update import DrivesDriveFirmwareUpdate +from isilon_sdk.v9_4_0.models.drives_drive_firmware_update_item import DrivesDriveFirmwareUpdateItem +from isilon_sdk.v9_4_0.models.drives_drive_firmware_update_node import DrivesDriveFirmwareUpdateNode +from isilon_sdk.v9_4_0.models.drives_drive_firmware_update_node_status import DrivesDriveFirmwareUpdateNodeStatus +from isilon_sdk.v9_4_0.models.drives_drive_format_item import DrivesDriveFormatItem +from isilon_sdk.v9_4_0.models.drives_drive_purpose_item import DrivesDrivePurposeItem +from isilon_sdk.v9_4_0.models.empty import Empty +from isilon_sdk.v9_4_0.models.error import Error +from isilon_sdk.v9_4_0.models.event_alert_condition import EventAlertCondition +from isilon_sdk.v9_4_0.models.event_alert_conditions import EventAlertConditions +from isilon_sdk.v9_4_0.models.event_alert_conditions_alert_condition import EventAlertConditionsAlertCondition +from isilon_sdk.v9_4_0.models.event_categories import EventCategories +from isilon_sdk.v9_4_0.models.event_category import EventCategory +from isilon_sdk.v9_4_0.models.event_channel import EventChannel +from isilon_sdk.v9_4_0.models.event_channel_parameters import EventChannelParameters +from isilon_sdk.v9_4_0.models.event_channels import EventChannels +from isilon_sdk.v9_4_0.models.event_event import EventEvent +from isilon_sdk.v9_4_0.models.event_eventgroup_definitions import EventEventgroupDefinitions +from isilon_sdk.v9_4_0.models.event_eventgroup_definitions_eventgroup_definition import EventEventgroupDefinitionsEventgroupDefinition +from isilon_sdk.v9_4_0.models.event_eventgroup_occurrence import EventEventgroupOccurrence +from isilon_sdk.v9_4_0.models.event_eventgroup_occurrences import EventEventgroupOccurrences +from isilon_sdk.v9_4_0.models.event_eventgroup_occurrences_eventgroup import EventEventgroupOccurrencesEventgroup +from isilon_sdk.v9_4_0.models.event_eventlist import EventEventlist +from isilon_sdk.v9_4_0.models.event_eventlist_event import EventEventlistEvent +from isilon_sdk.v9_4_0.models.event_eventlists import EventEventlists +from isilon_sdk.v9_4_0.models.event_maintenance import EventMaintenance +from isilon_sdk.v9_4_0.models.event_maintenance_extended import EventMaintenanceExtended +from isilon_sdk.v9_4_0.models.event_settings import EventSettings +from isilon_sdk.v9_4_0.models.event_settings_settings import EventSettingsSettings +from isilon_sdk.v9_4_0.models.event_suppress import EventSuppress +from isilon_sdk.v9_4_0.models.event_suppress_id_params import EventSuppressIdParams +from isilon_sdk.v9_4_0.models.event_suppress_suppression import EventSuppressSuppression +from isilon_sdk.v9_4_0.models.event_threshold import EventThreshold +from isilon_sdk.v9_4_0.models.event_threshold_defaults import EventThresholdDefaults +from isilon_sdk.v9_4_0.models.event_threshold_defaults_crit import EventThresholdDefaultsCrit +from isilon_sdk.v9_4_0.models.event_thresholds import EventThresholds +from isilon_sdk.v9_4_0.models.file_filter_settings import FileFilterSettings +from isilon_sdk.v9_4_0.models.file_filter_settings_extended import FileFilterSettingsExtended +from isilon_sdk.v9_4_0.models.file_filter_settings_settings import FileFilterSettingsSettings +from isilon_sdk.v9_4_0.models.filepool_default_policy import FilepoolDefaultPolicy +from isilon_sdk.v9_4_0.models.filepool_default_policy_default_policy import FilepoolDefaultPolicyDefaultPolicy +from isilon_sdk.v9_4_0.models.filepool_default_policy_default_policy_action import FilepoolDefaultPolicyDefaultPolicyAction +from isilon_sdk.v9_4_0.models.filepool_default_policy_extended import FilepoolDefaultPolicyExtended +from isilon_sdk.v9_4_0.models.filepool_policies import FilepoolPolicies +from isilon_sdk.v9_4_0.models.filepool_policies_extended import FilepoolPoliciesExtended +from isilon_sdk.v9_4_0.models.filepool_policy import FilepoolPolicy +from isilon_sdk.v9_4_0.models.filepool_policy_action import FilepoolPolicyAction +from isilon_sdk.v9_4_0.models.filepool_policy_action_extended import FilepoolPolicyActionExtended +from isilon_sdk.v9_4_0.models.filepool_policy_action_extended_extended import FilepoolPolicyActionExtendedExtended +from isilon_sdk.v9_4_0.models.filepool_policy_extended import FilepoolPolicyExtended +from isilon_sdk.v9_4_0.models.filepool_policy_extended_extended import FilepoolPolicyExtendedExtended +from isilon_sdk.v9_4_0.models.filepool_policy_file_matching_pattern import FilepoolPolicyFileMatchingPattern +from isilon_sdk.v9_4_0.models.filepool_policy_file_matching_pattern_or_criteria_item import FilepoolPolicyFileMatchingPatternOrCriteriaItem +from isilon_sdk.v9_4_0.models.filepool_policy_file_matching_pattern_or_criteria_item_and_criteria_item import FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem +from isilon_sdk.v9_4_0.models.filepool_template import FilepoolTemplate +from isilon_sdk.v9_4_0.models.filepool_template_action import FilepoolTemplateAction +from isilon_sdk.v9_4_0.models.filepool_template_action_extended import FilepoolTemplateActionExtended +from isilon_sdk.v9_4_0.models.filepool_template_extended import FilepoolTemplateExtended +from isilon_sdk.v9_4_0.models.filepool_templates import FilepoolTemplates +from isilon_sdk.v9_4_0.models.filepool_templates_extended import FilepoolTemplatesExtended +from isilon_sdk.v9_4_0.models.fsa_index import FsaIndex +from isilon_sdk.v9_4_0.models.fsa_result import FsaResult +from isilon_sdk.v9_4_0.models.fsa_results import FsaResults +from isilon_sdk.v9_4_0.models.fsa_settings import FsaSettings +from isilon_sdk.v9_4_0.models.fsa_settings_settings import FsaSettingsSettings +from isilon_sdk.v9_4_0.models.ftp_settings import FtpSettings +from isilon_sdk.v9_4_0.models.ftp_settings_extended import FtpSettingsExtended +from isilon_sdk.v9_4_0.models.ftp_settings_settings import FtpSettingsSettings +from isilon_sdk.v9_4_0.models.group_members import GroupMembers +from isilon_sdk.v9_4_0.models.groupnet_subnet import GroupnetSubnet +from isilon_sdk.v9_4_0.models.groupnet_subnets import GroupnetSubnets +from isilon_sdk.v9_4_0.models.groupnets_summary import GroupnetsSummary +from isilon_sdk.v9_4_0.models.groupnets_summary_summary import GroupnetsSummarySummary +from isilon_sdk.v9_4_0.models.groupnets_summary_summary_list_item import GroupnetsSummarySummaryListItem +from isilon_sdk.v9_4_0.models.hardening_apply_item import HardeningApplyItem +from isilon_sdk.v9_4_0.models.hardening_resolve_item import HardeningResolveItem +from isilon_sdk.v9_4_0.models.hardening_state import HardeningState +from isilon_sdk.v9_4_0.models.hardening_state_state import HardeningStateState +from isilon_sdk.v9_4_0.models.hardening_status import HardeningStatus +from isilon_sdk.v9_4_0.models.hardening_status_status import HardeningStatusStatus +from isilon_sdk.v9_4_0.models.hardware_fcport import HardwareFcport +from isilon_sdk.v9_4_0.models.hardware_fcports import HardwareFcports +from isilon_sdk.v9_4_0.models.hardware_fcports_node import HardwareFcportsNode +from isilon_sdk.v9_4_0.models.hardware_fcports_node_fcport import HardwareFcportsNodeFcport +from isilon_sdk.v9_4_0.models.hardware_tape_name_params import HardwareTapeNameParams +from isilon_sdk.v9_4_0.models.hardware_tapes import HardwareTapes +from isilon_sdk.v9_4_0.models.hardware_tapes_devices import HardwareTapesDevices +from isilon_sdk.v9_4_0.models.hardware_tapes_devices_media_changer import HardwareTapesDevicesMediaChanger +from isilon_sdk.v9_4_0.models.hardware_tapes_devices_media_changer_path import HardwareTapesDevicesMediaChangerPath +from isilon_sdk.v9_4_0.models.hdfs_crypto_encryption_zone import HdfsCryptoEncryptionZone +from isilon_sdk.v9_4_0.models.hdfs_crypto_encryption_zones import HdfsCryptoEncryptionZones +from isilon_sdk.v9_4_0.models.hdfs_crypto_encryption_zones_encryption_zone import HdfsCryptoEncryptionZonesEncryptionZone +from isilon_sdk.v9_4_0.models.hdfs_crypto_settings import HdfsCryptoSettings +from isilon_sdk.v9_4_0.models.hdfs_crypto_settings_settings import HdfsCryptoSettingsSettings +from isilon_sdk.v9_4_0.models.hdfs_fsimage_job import HdfsFsimageJob +from isilon_sdk.v9_4_0.models.hdfs_fsimage_job_job import HdfsFsimageJobJob +from isilon_sdk.v9_4_0.models.hdfs_fsimage_job_settings import HdfsFsimageJobSettings +from isilon_sdk.v9_4_0.models.hdfs_fsimage_job_settings_settings import HdfsFsimageJobSettingsSettings +from isilon_sdk.v9_4_0.models.hdfs_fsimage_latest import HdfsFsimageLatest +from isilon_sdk.v9_4_0.models.hdfs_fsimage_latest_latest import HdfsFsimageLatestLatest +from isilon_sdk.v9_4_0.models.hdfs_fsimage_settings import HdfsFsimageSettings +from isilon_sdk.v9_4_0.models.hdfs_fsimage_settings_settings import HdfsFsimageSettingsSettings +from isilon_sdk.v9_4_0.models.hdfs_inotify_settings import HdfsInotifySettings +from isilon_sdk.v9_4_0.models.hdfs_inotify_settings_settings import HdfsInotifySettingsSettings +from isilon_sdk.v9_4_0.models.hdfs_inotify_stream import HdfsInotifyStream +from isilon_sdk.v9_4_0.models.hdfs_inotify_stream_stream import HdfsInotifyStreamStream +from isilon_sdk.v9_4_0.models.hdfs_log_level import HdfsLogLevel +from isilon_sdk.v9_4_0.models.hdfs_proxyuser import HdfsProxyuser +from isilon_sdk.v9_4_0.models.hdfs_proxyuser_create_params import HdfsProxyuserCreateParams +from isilon_sdk.v9_4_0.models.hdfs_proxyusers import HdfsProxyusers +from isilon_sdk.v9_4_0.models.hdfs_proxyusers_extended import HdfsProxyusersExtended +from isilon_sdk.v9_4_0.models.hdfs_rack import HdfsRack +from isilon_sdk.v9_4_0.models.hdfs_racks import HdfsRacks +from isilon_sdk.v9_4_0.models.hdfs_racks_extended import HdfsRacksExtended +from isilon_sdk.v9_4_0.models.hdfs_ranger_plugin_settings import HdfsRangerPluginSettings +from isilon_sdk.v9_4_0.models.hdfs_ranger_plugin_settings_settings import HdfsRangerPluginSettingsSettings +from isilon_sdk.v9_4_0.models.hdfs_settings import HdfsSettings +from isilon_sdk.v9_4_0.models.hdfs_settings_global import HdfsSettingsGlobal +from isilon_sdk.v9_4_0.models.hdfs_settings_global_global_settings import HdfsSettingsGlobalGlobalSettings +from isilon_sdk.v9_4_0.models.hdfs_settings_settings import HdfsSettingsSettings +from isilon_sdk.v9_4_0.models.healthcheck_autoupdate import HealthcheckAutoupdate +from isilon_sdk.v9_4_0.models.healthcheck_autoupdate_autoupdate import HealthcheckAutoupdateAutoupdate +from isilon_sdk.v9_4_0.models.healthcheck_checklist import HealthcheckChecklist +from isilon_sdk.v9_4_0.models.healthcheck_checklist_delivery_item import HealthcheckChecklistDeliveryItem +from isilon_sdk.v9_4_0.models.healthcheck_checklist_item import HealthcheckChecklistItem +from isilon_sdk.v9_4_0.models.healthcheck_checklist_item_thresholds import HealthcheckChecklistItemThresholds +from isilon_sdk.v9_4_0.models.healthcheck_checklists import HealthcheckChecklists +from isilon_sdk.v9_4_0.models.healthcheck_evaluation import HealthcheckEvaluation +from isilon_sdk.v9_4_0.models.healthcheck_evaluation_create_params import HealthcheckEvaluationCreateParams +from isilon_sdk.v9_4_0.models.healthcheck_evaluation_detail import HealthcheckEvaluationDetail +from isilon_sdk.v9_4_0.models.healthcheck_evaluation_extended import HealthcheckEvaluationExtended +from isilon_sdk.v9_4_0.models.healthcheck_evaluation_override import HealthcheckEvaluationOverride +from isilon_sdk.v9_4_0.models.healthcheck_evaluations import HealthcheckEvaluations +from isilon_sdk.v9_4_0.models.healthcheck_item import HealthcheckItem +from isilon_sdk.v9_4_0.models.healthcheck_item_parameter import HealthcheckItemParameter +from isilon_sdk.v9_4_0.models.healthcheck_items import HealthcheckItems +from isilon_sdk.v9_4_0.models.healthcheck_parameter import HealthcheckParameter +from isilon_sdk.v9_4_0.models.healthcheck_parameters import HealthcheckParameters +from isilon_sdk.v9_4_0.models.healthcheck_schedule import HealthcheckSchedule +from isilon_sdk.v9_4_0.models.healthcheck_schedule_create_params import HealthcheckScheduleCreateParams +from isilon_sdk.v9_4_0.models.healthcheck_schedule_extended import HealthcheckScheduleExtended +from isilon_sdk.v9_4_0.models.healthcheck_schedules import HealthcheckSchedules +from isilon_sdk.v9_4_0.models.healthcheck_version import HealthcheckVersion +from isilon_sdk.v9_4_0.models.histogram_stat_by import HistogramStatBy +from isilon_sdk.v9_4_0.models.histogram_stat_by_breakout import HistogramStatByBreakout +from isilon_sdk.v9_4_0.models.history_file import HistoryFile +from isilon_sdk.v9_4_0.models.history_file_statistic import HistoryFileStatistic +from isilon_sdk.v9_4_0.models.http_service import HttpService +from isilon_sdk.v9_4_0.models.http_services import HttpServices +from isilon_sdk.v9_4_0.models.http_services_extended import HttpServicesExtended +from isilon_sdk.v9_4_0.models.http_settings import HttpSettings +from isilon_sdk.v9_4_0.models.http_settings_settings import HttpSettingsSettings +from isilon_sdk.v9_4_0.models.id_resolution_domains import IdResolutionDomains +from isilon_sdk.v9_4_0.models.id_resolution_domains_error import IdResolutionDomainsError +from isilon_sdk.v9_4_0.models.id_resolution_domains_path import IdResolutionDomainsPath +from isilon_sdk.v9_4_0.models.id_resolution_lins import IdResolutionLins +from isilon_sdk.v9_4_0.models.id_resolution_lins_path import IdResolutionLinsPath +from isilon_sdk.v9_4_0.models.id_resolution_zone import IdResolutionZone +from isilon_sdk.v9_4_0.models.id_resolution_zones import IdResolutionZones +from isilon_sdk.v9_4_0.models.inline_settings import InlineSettings +from isilon_sdk.v9_4_0.models.inline_settings_settings import InlineSettingsSettings +from isilon_sdk.v9_4_0.models.internal_networks_preferred_network import InternalNetworksPreferredNetwork +from isilon_sdk.v9_4_0.models.internal_networks_settings import InternalNetworksSettings +from isilon_sdk.v9_4_0.models.internal_networks_settings_extended import InternalNetworksSettingsExtended +from isilon_sdk.v9_4_0.models.internal_networks_settings_internal_networks_settings import InternalNetworksSettingsInternalNetworksSettings +from isilon_sdk.v9_4_0.models.internal_networks_settings_internal_networks_settings_network_item import InternalNetworksSettingsInternalNetworksSettingsNetworkItem +from isilon_sdk.v9_4_0.models.internal_networks_settings_internal_networks_settings_network_item_backend_config import InternalNetworksSettingsInternalNetworksSettingsNetworkItemBackendConfig +from isilon_sdk.v9_4_0.models.internal_networks_settings_network import InternalNetworksSettingsNetwork +from isilon_sdk.v9_4_0.models.internal_networks_settings_network_backend_config import InternalNetworksSettingsNetworkBackendConfig +from isilon_sdk.v9_4_0.models.job_event import JobEvent +from isilon_sdk.v9_4_0.models.job_events import JobEvents +from isilon_sdk.v9_4_0.models.job_job import JobJob +from isilon_sdk.v9_4_0.models.job_job_avscan_params import JobJobAvscanParams +from isilon_sdk.v9_4_0.models.job_job_changelistcreate_params import JobJobChangelistcreateParams +from isilon_sdk.v9_4_0.models.job_job_create_params import JobJobCreateParams +from isilon_sdk.v9_4_0.models.job_job_domainmark_params import JobJobDomainmarkParams +from isilon_sdk.v9_4_0.models.job_job_esrsmftdownload_params import JobJobEsrsmftdownloadParams +from isilon_sdk.v9_4_0.models.job_job_extended import JobJobExtended +from isilon_sdk.v9_4_0.models.job_job_filepolicy_params import JobJobFilepolicyParams +from isilon_sdk.v9_4_0.models.job_job_prepair_params import JobJobPrepairParams +from isilon_sdk.v9_4_0.models.job_job_smartpoolstree_params import JobJobSmartpoolstreeParams +from isilon_sdk.v9_4_0.models.job_job_snaprevert_params import JobJobSnaprevertParams +from isilon_sdk.v9_4_0.models.job_job_summary import JobJobSummary +from isilon_sdk.v9_4_0.models.job_job_summary_summary import JobJobSummarySummary +from isilon_sdk.v9_4_0.models.job_job_treedelete_params import JobJobTreedeleteParams +from isilon_sdk.v9_4_0.models.job_jobs import JobJobs +from isilon_sdk.v9_4_0.models.job_policies import JobPolicies +from isilon_sdk.v9_4_0.models.job_policy import JobPolicy +from isilon_sdk.v9_4_0.models.job_policy_interval import JobPolicyInterval +from isilon_sdk.v9_4_0.models.job_recent import JobRecent +from isilon_sdk.v9_4_0.models.job_recent_recent_job import JobRecentRecentJob +from isilon_sdk.v9_4_0.models.job_report import JobReport +from isilon_sdk.v9_4_0.models.job_reports import JobReports +from isilon_sdk.v9_4_0.models.job_statistics import JobStatistics +from isilon_sdk.v9_4_0.models.job_statistics_job import JobStatisticsJob +from isilon_sdk.v9_4_0.models.job_statistics_job_node import JobStatisticsJobNode +from isilon_sdk.v9_4_0.models.job_statistics_job_node_cpu import JobStatisticsJobNodeCpu +from isilon_sdk.v9_4_0.models.job_statistics_job_node_io import JobStatisticsJobNodeIo +from isilon_sdk.v9_4_0.models.job_statistics_job_node_io_read import JobStatisticsJobNodeIoRead +from isilon_sdk.v9_4_0.models.job_statistics_job_node_io_write import JobStatisticsJobNodeIoWrite +from isilon_sdk.v9_4_0.models.job_statistics_job_node_memory import JobStatisticsJobNodeMemory +from isilon_sdk.v9_4_0.models.job_statistics_job_node_memory_physical import JobStatisticsJobNodeMemoryPhysical +from isilon_sdk.v9_4_0.models.job_statistics_job_node_memory_virtual import JobStatisticsJobNodeMemoryVirtual +from isilon_sdk.v9_4_0.models.job_statistics_job_node_worker import JobStatisticsJobNodeWorker +from isilon_sdk.v9_4_0.models.job_type import JobType +from isilon_sdk.v9_4_0.models.job_types import JobTypes +from isilon_sdk.v9_4_0.models.kmip_server import KmipServer +from isilon_sdk.v9_4_0.models.kmip_server_ca_cert import KmipServerCaCert +from isilon_sdk.v9_4_0.models.kmip_server_client_cert import KmipServerClientCert +from isilon_sdk.v9_4_0.models.kmip_server_extended import KmipServerExtended +from isilon_sdk.v9_4_0.models.kmip_server_verify_item import KmipServerVerifyItem +from isilon_sdk.v9_4_0.models.kmip_servers import KmipServers +from isilon_sdk.v9_4_0.models.kmip_servers_extended import KmipServersExtended +from isilon_sdk.v9_4_0.models.lfn import Lfn +from isilon_sdk.v9_4_0.models.lfn_domain import LfnDomain +from isilon_sdk.v9_4_0.models.lfn_path_params import LfnPathParams +from isilon_sdk.v9_4_0.models.license_activation import LicenseActivation +from isilon_sdk.v9_4_0.models.license_activation_elms_error import LicenseActivationElmsError +from isilon_sdk.v9_4_0.models.license_activation_item import LicenseActivationItem +from isilon_sdk.v9_4_0.models.license_generate import LicenseGenerate +from isilon_sdk.v9_4_0.models.license_generate_hardware_item import LicenseGenerateHardwareItem +from isilon_sdk.v9_4_0.models.license_license import LicenseLicense +from isilon_sdk.v9_4_0.models.license_license_create_params import LicenseLicenseCreateParams +from isilon_sdk.v9_4_0.models.license_license_tier import LicenseLicenseTier +from isilon_sdk.v9_4_0.models.license_license_tier_entitlements_exceeded_alert import LicenseLicenseTierEntitlementsExceededAlert +from isilon_sdk.v9_4_0.models.license_licenses import LicenseLicenses +from isilon_sdk.v9_4_0.models.mapping_dump import MappingDump +from isilon_sdk.v9_4_0.models.mapping_identities import MappingIdentities +from isilon_sdk.v9_4_0.models.mapping_identities_create_params import MappingIdentitiesCreateParams +from isilon_sdk.v9_4_0.models.mapping_identities_target import MappingIdentitiesTarget +from isilon_sdk.v9_4_0.models.mapping_identity import MappingIdentity +from isilon_sdk.v9_4_0.models.mapping_identity_target import MappingIdentityTarget +from isilon_sdk.v9_4_0.models.mapping_users_lookup import MappingUsersLookup +from isilon_sdk.v9_4_0.models.mapping_users_lookup_mapping_item import MappingUsersLookupMappingItem +from isilon_sdk.v9_4_0.models.mapping_users_lookup_mapping_item_group import MappingUsersLookupMappingItemGroup +from isilon_sdk.v9_4_0.models.mapping_users_lookup_mapping_item_privilege import MappingUsersLookupMappingItemPrivilege +from isilon_sdk.v9_4_0.models.mapping_users_lookup_mapping_item_user import MappingUsersLookupMappingItemUser +from isilon_sdk.v9_4_0.models.mapping_users_rules import MappingUsersRules +from isilon_sdk.v9_4_0.models.mapping_users_rules_extended import MappingUsersRulesExtended +from isilon_sdk.v9_4_0.models.mapping_users_rules_parameters import MappingUsersRulesParameters +from isilon_sdk.v9_4_0.models.mapping_users_rules_rule import MappingUsersRulesRule +from isilon_sdk.v9_4_0.models.mapping_users_rules_rule_extended import MappingUsersRulesRuleExtended +from isilon_sdk.v9_4_0.models.mapping_users_rules_rule_options import MappingUsersRulesRuleOptions +from isilon_sdk.v9_4_0.models.mapping_users_rules_rule_options_extended import MappingUsersRulesRuleOptionsExtended +from isilon_sdk.v9_4_0.models.mapping_users_rules_rules import MappingUsersRulesRules +from isilon_sdk.v9_4_0.models.mapping_users_rules_rules_parameters import MappingUsersRulesRulesParameters +from isilon_sdk.v9_4_0.models.mapping_users_rules_rules_parameters_default_unix_user import MappingUsersRulesRulesParametersDefaultUnixUser +from isilon_sdk.v9_4_0.models.member_object import MemberObject +from isilon_sdk.v9_4_0.models.name_lin import NameLin +from isilon_sdk.v9_4_0.models.name_lins import NameLins +from isilon_sdk.v9_4_0.models.name_lins_extended import NameLinsExtended +from isilon_sdk.v9_4_0.models.namespace_access_points import NamespaceAccessPoints +from isilon_sdk.v9_4_0.models.namespace_access_points_namespaces import NamespaceAccessPointsNamespaces +from isilon_sdk.v9_4_0.models.namespace_acl import NamespaceAcl +from isilon_sdk.v9_4_0.models.namespace_metadata import NamespaceMetadata +from isilon_sdk.v9_4_0.models.namespace_metadata_attrs import NamespaceMetadataAttrs +from isilon_sdk.v9_4_0.models.namespace_metadata_list import NamespaceMetadataList +from isilon_sdk.v9_4_0.models.namespace_metadata_list_attrs import NamespaceMetadataListAttrs +from isilon_sdk.v9_4_0.models.namespace_object import NamespaceObject +from isilon_sdk.v9_4_0.models.namespace_objects import NamespaceObjects +from isilon_sdk.v9_4_0.models.ndmp_contexts_backup import NdmpContextsBackup +from isilon_sdk.v9_4_0.models.ndmp_contexts_backup_context import NdmpContextsBackupContext +from isilon_sdk.v9_4_0.models.ndmp_contexts_backup_context_extended import NdmpContextsBackupContextExtended +from isilon_sdk.v9_4_0.models.ndmp_contexts_backup_context_session import NdmpContextsBackupContextSession +from isilon_sdk.v9_4_0.models.ndmp_contexts_backup_extended import NdmpContextsBackupExtended +from isilon_sdk.v9_4_0.models.ndmp_contexts_bre import NdmpContextsBre +from isilon_sdk.v9_4_0.models.ndmp_contexts_bre_context import NdmpContextsBreContext +from isilon_sdk.v9_4_0.models.ndmp_contexts_bre_context_env_variable import NdmpContextsBreContextEnvVariable +from isilon_sdk.v9_4_0.models.ndmp_contexts_bre_context_extended import NdmpContextsBreContextExtended +from isilon_sdk.v9_4_0.models.ndmp_contexts_bre_extended import NdmpContextsBreExtended +from isilon_sdk.v9_4_0.models.ndmp_diagnostics import NdmpDiagnostics +from isilon_sdk.v9_4_0.models.ndmp_diagnostics_diagnostics import NdmpDiagnosticsDiagnostics +from isilon_sdk.v9_4_0.models.ndmp_dumpdate import NdmpDumpdate +from isilon_sdk.v9_4_0.models.ndmp_dumpdates import NdmpDumpdates +from isilon_sdk.v9_4_0.models.ndmp_logs import NdmpLogs +from isilon_sdk.v9_4_0.models.ndmp_logs_node import NdmpLogsNode +from isilon_sdk.v9_4_0.models.ndmp_session import NdmpSession +from isilon_sdk.v9_4_0.models.ndmp_sessions import NdmpSessions +from isilon_sdk.v9_4_0.models.ndmp_sessions_extended import NdmpSessionsExtended +from isilon_sdk.v9_4_0.models.ndmp_sessions_node import NdmpSessionsNode +from isilon_sdk.v9_4_0.models.ndmp_sessions_node_session import NdmpSessionsNodeSession +from isilon_sdk.v9_4_0.models.ndmp_settings_dmas import NdmpSettingsDmas +from isilon_sdk.v9_4_0.models.ndmp_settings_dmas_dmavendor import NdmpSettingsDmasDmavendor +from isilon_sdk.v9_4_0.models.ndmp_settings_global import NdmpSettingsGlobal +from isilon_sdk.v9_4_0.models.ndmp_settings_global_global import NdmpSettingsGlobalGlobal +from isilon_sdk.v9_4_0.models.ndmp_settings_preferred_ip import NdmpSettingsPreferredIp +from isilon_sdk.v9_4_0.models.ndmp_settings_preferred_ip_data_subnet import NdmpSettingsPreferredIpDataSubnet +from isilon_sdk.v9_4_0.models.ndmp_settings_preferred_ips import NdmpSettingsPreferredIps +from isilon_sdk.v9_4_0.models.ndmp_settings_preferred_ips_preference import NdmpSettingsPreferredIpsPreference +from isilon_sdk.v9_4_0.models.ndmp_settings_variable import NdmpSettingsVariable +from isilon_sdk.v9_4_0.models.ndmp_settings_variables import NdmpSettingsVariables +from isilon_sdk.v9_4_0.models.ndmp_settings_variables_variable import NdmpSettingsVariablesVariable +from isilon_sdk.v9_4_0.models.ndmp_settings_variables_variable_path_variable import NdmpSettingsVariablesVariablePathVariable +from isilon_sdk.v9_4_0.models.ndmp_user import NdmpUser +from isilon_sdk.v9_4_0.models.ndmp_user_extended import NdmpUserExtended +from isilon_sdk.v9_4_0.models.ndmp_users import NdmpUsers +from isilon_sdk.v9_4_0.models.network_dnscache import NetworkDnscache +from isilon_sdk.v9_4_0.models.network_dnscache_extended import NetworkDnscacheExtended +from isilon_sdk.v9_4_0.models.network_dnscache_settings import NetworkDnscacheSettings +from isilon_sdk.v9_4_0.models.network_external import NetworkExternal +from isilon_sdk.v9_4_0.models.network_external_extended import NetworkExternalExtended +from isilon_sdk.v9_4_0.models.network_external_settings import NetworkExternalSettings +from isilon_sdk.v9_4_0.models.network_groupnet import NetworkGroupnet +from isilon_sdk.v9_4_0.models.network_groupnets import NetworkGroupnets +from isilon_sdk.v9_4_0.models.network_interface import NetworkInterface +from isilon_sdk.v9_4_0.models.network_interface_owner import NetworkInterfaceOwner +from isilon_sdk.v9_4_0.models.network_interface_vlan import NetworkInterfaceVlan +from isilon_sdk.v9_4_0.models.network_interfaces import NetworkInterfaces +from isilon_sdk.v9_4_0.models.network_pool import NetworkPool +from isilon_sdk.v9_4_0.models.network_pools import NetworkPools +from isilon_sdk.v9_4_0.models.nfs_alias import NfsAlias +from isilon_sdk.v9_4_0.models.nfs_alias_create_params import NfsAliasCreateParams +from isilon_sdk.v9_4_0.models.nfs_aliases import NfsAliases +from isilon_sdk.v9_4_0.models.nfs_aliases_extended import NfsAliasesExtended +from isilon_sdk.v9_4_0.models.nfs_check import NfsCheck +from isilon_sdk.v9_4_0.models.nfs_check_extended import NfsCheckExtended +from isilon_sdk.v9_4_0.models.nfs_export import NfsExport +from isilon_sdk.v9_4_0.models.nfs_export_create_params import NfsExportCreateParams +from isilon_sdk.v9_4_0.models.nfs_export_extended_extended import NfsExportExtendedExtended +from isilon_sdk.v9_4_0.models.nfs_export_map_all import NfsExportMapAll +from isilon_sdk.v9_4_0.models.nfs_export_map_all_secondary_groups import NfsExportMapAllSecondaryGroups +from isilon_sdk.v9_4_0.models.nfs_exports import NfsExports +from isilon_sdk.v9_4_0.models.nfs_exports_extended import NfsExportsExtended +from isilon_sdk.v9_4_0.models.nfs_exports_summary import NfsExportsSummary +from isilon_sdk.v9_4_0.models.nfs_exports_summary_summary import NfsExportsSummarySummary +from isilon_sdk.v9_4_0.models.nfs_log_level import NfsLogLevel +from isilon_sdk.v9_4_0.models.nfs_netgroup import NfsNetgroup +from isilon_sdk.v9_4_0.models.nfs_netgroup_settings import NfsNetgroupSettings +from isilon_sdk.v9_4_0.models.nfs_nlm_locks import NfsNlmLocks +from isilon_sdk.v9_4_0.models.nfs_nlm_locks_lock import NfsNlmLocksLock +from isilon_sdk.v9_4_0.models.nfs_nlm_sessions import NfsNlmSessions +from isilon_sdk.v9_4_0.models.nfs_nlm_sessions_extended import NfsNlmSessionsExtended +from isilon_sdk.v9_4_0.models.nfs_nlm_sessions_session import NfsNlmSessionsSession +from isilon_sdk.v9_4_0.models.nfs_nlm_waiters import NfsNlmWaiters +from isilon_sdk.v9_4_0.models.nfs_settings_export import NfsSettingsExport +from isilon_sdk.v9_4_0.models.nfs_settings_export_settings import NfsSettingsExportSettings +from isilon_sdk.v9_4_0.models.nfs_settings_export_settings_map_all import NfsSettingsExportSettingsMapAll +from isilon_sdk.v9_4_0.models.nfs_settings_global import NfsSettingsGlobal +from isilon_sdk.v9_4_0.models.nfs_settings_global_settings import NfsSettingsGlobalSettings +from isilon_sdk.v9_4_0.models.nfs_settings_zone import NfsSettingsZone +from isilon_sdk.v9_4_0.models.nfs_settings_zone_settings import NfsSettingsZoneSettings +from isilon_sdk.v9_4_0.models.node_driveconfig import NodeDriveconfig +from isilon_sdk.v9_4_0.models.node_driveconfig_extended import NodeDriveconfigExtended +from isilon_sdk.v9_4_0.models.node_driveconfig_node import NodeDriveconfigNode +from isilon_sdk.v9_4_0.models.node_driveconfig_node_alert import NodeDriveconfigNodeAlert +from isilon_sdk.v9_4_0.models.node_driveconfig_node_allow import NodeDriveconfigNodeAllow +from isilon_sdk.v9_4_0.models.node_driveconfig_node_automatic_replacement_recognition import NodeDriveconfigNodeAutomaticReplacementRecognition +from isilon_sdk.v9_4_0.models.node_driveconfig_node_instant_secure_erase import NodeDriveconfigNodeInstantSecureErase +from isilon_sdk.v9_4_0.models.node_driveconfig_node_log import NodeDriveconfigNodeLog +from isilon_sdk.v9_4_0.models.node_driveconfig_node_reboot import NodeDriveconfigNodeReboot +from isilon_sdk.v9_4_0.models.node_driveconfig_node_spin_wait import NodeDriveconfigNodeSpinWait +from isilon_sdk.v9_4_0.models.node_driveconfig_node_stall import NodeDriveconfigNodeStall +from isilon_sdk.v9_4_0.models.node_driveconfig_stall import NodeDriveconfigStall +from isilon_sdk.v9_4_0.models.node_drives import NodeDrives +from isilon_sdk.v9_4_0.models.node_drives_node import NodeDrivesNode +from isilon_sdk.v9_4_0.models.node_drives_node_drive import NodeDrivesNodeDrive +from isilon_sdk.v9_4_0.models.node_drives_node_drive_firmware import NodeDrivesNodeDriveFirmware +from isilon_sdk.v9_4_0.models.node_drives_purposelist import NodeDrivesPurposelist +from isilon_sdk.v9_4_0.models.node_drives_purposelist_node import NodeDrivesPurposelistNode +from isilon_sdk.v9_4_0.models.node_drives_purposelist_node_purpose import NodeDrivesPurposelistNodePurpose +from isilon_sdk.v9_4_0.models.node_hardware import NodeHardware +from isilon_sdk.v9_4_0.models.node_hardware_fast import NodeHardwareFast +from isilon_sdk.v9_4_0.models.node_hardware_fast_node import NodeHardwareFastNode +from isilon_sdk.v9_4_0.models.node_hardware_node import NodeHardwareNode +from isilon_sdk.v9_4_0.models.node_internal_ip_address import NodeInternalIpAddress +from isilon_sdk.v9_4_0.models.node_internal_ip_address_node import NodeInternalIpAddressNode +from isilon_sdk.v9_4_0.models.node_partitions import NodePartitions +from isilon_sdk.v9_4_0.models.node_partitions_node import NodePartitionsNode +from isilon_sdk.v9_4_0.models.node_sensors import NodeSensors +from isilon_sdk.v9_4_0.models.node_sensors_node import NodeSensorsNode +from isilon_sdk.v9_4_0.models.node_sleds import NodeSleds +from isilon_sdk.v9_4_0.models.node_sleds_node import NodeSledsNode +from isilon_sdk.v9_4_0.models.node_state import NodeState +from isilon_sdk.v9_4_0.models.node_state_node import NodeStateNode +from isilon_sdk.v9_4_0.models.node_state_node_readonly import NodeStateNodeReadonly +from isilon_sdk.v9_4_0.models.node_state_node_smartfail import NodeStateNodeSmartfail +from isilon_sdk.v9_4_0.models.node_state_readonly import NodeStateReadonly +from isilon_sdk.v9_4_0.models.node_state_readonly_node import NodeStateReadonlyNode +from isilon_sdk.v9_4_0.models.node_state_servicelight import NodeStateServicelight +from isilon_sdk.v9_4_0.models.node_state_servicelight_extended import NodeStateServicelightExtended +from isilon_sdk.v9_4_0.models.node_state_servicelight_node import NodeStateServicelightNode +from isilon_sdk.v9_4_0.models.node_state_smartfail import NodeStateSmartfail +from isilon_sdk.v9_4_0.models.node_state_smartfail_node import NodeStateSmartfailNode +from isilon_sdk.v9_4_0.models.node_status import NodeStatus +from isilon_sdk.v9_4_0.models.node_status_batterystatus import NodeStatusBatterystatus +from isilon_sdk.v9_4_0.models.node_status_batterystatus_node import NodeStatusBatterystatusNode +from isilon_sdk.v9_4_0.models.node_status_cpu import NodeStatusCpu +from isilon_sdk.v9_4_0.models.node_status_cpu_error import NodeStatusCpuError +from isilon_sdk.v9_4_0.models.node_status_cpu_node import NodeStatusCpuNode +from isilon_sdk.v9_4_0.models.node_status_extended import NodeStatusExtended +from isilon_sdk.v9_4_0.models.node_status_node import NodeStatusNode +from isilon_sdk.v9_4_0.models.node_status_node_batterystatus import NodeStatusNodeBatterystatus +from isilon_sdk.v9_4_0.models.node_status_node_capacity_item import NodeStatusNodeCapacityItem +from isilon_sdk.v9_4_0.models.node_status_node_cpu import NodeStatusNodeCpu +from isilon_sdk.v9_4_0.models.node_status_node_extended import NodeStatusNodeExtended +from isilon_sdk.v9_4_0.models.node_status_node_nvram import NodeStatusNodeNvram +from isilon_sdk.v9_4_0.models.node_status_node_powersupplies import NodeStatusNodePowersupplies +from isilon_sdk.v9_4_0.models.node_status_node_status import NodeStatusNodeStatus +from isilon_sdk.v9_4_0.models.node_status_node_status_server_status_item import NodeStatusNodeStatusServerStatusItem +from isilon_sdk.v9_4_0.models.node_status_node_status_system_stats import NodeStatusNodeStatusSystemStats +from isilon_sdk.v9_4_0.models.node_status_nvram import NodeStatusNvram +from isilon_sdk.v9_4_0.models.node_status_nvram_node import NodeStatusNvramNode +from isilon_sdk.v9_4_0.models.node_status_nvram_node_battery import NodeStatusNvramNodeBattery +from isilon_sdk.v9_4_0.models.node_status_powersupplies import NodeStatusPowersupplies +from isilon_sdk.v9_4_0.models.node_status_powersupplies_node import NodeStatusPowersuppliesNode +from isilon_sdk.v9_4_0.models.node_status_powersupplies_node_supply import NodeStatusPowersuppliesNodeSupply +from isilon_sdk.v9_4_0.models.nodes_node_firmware_device import NodesNodeFirmwareDevice +from isilon_sdk.v9_4_0.models.nodes_node_internal_ip_address import NodesNodeInternalIpAddress +from isilon_sdk.v9_4_0.models.nodetype_assess import NodetypeAssess +from isilon_sdk.v9_4_0.models.nodetype_assess_from_nodepool import NodetypeAssessFromNodepool +from isilon_sdk.v9_4_0.models.ntp_server import NtpServer +from isilon_sdk.v9_4_0.models.ntp_server_create_params import NtpServerCreateParams +from isilon_sdk.v9_4_0.models.ntp_server_extended import NtpServerExtended +from isilon_sdk.v9_4_0.models.ntp_servers import NtpServers +from isilon_sdk.v9_4_0.models.ntp_settings import NtpSettings +from isilon_sdk.v9_4_0.models.ntp_settings_settings import NtpSettingsSettings +from isilon_sdk.v9_4_0.models.papi_settings import PapiSettings +from isilon_sdk.v9_4_0.models.papi_settings_papi_settings import PapiSettingsPapiSettings +from isilon_sdk.v9_4_0.models.papi_settings_papi_settings_child_settings import PapiSettingsPapiSettingsChildSettings +from isilon_sdk.v9_4_0.models.performance_dataset import PerformanceDataset +from isilon_sdk.v9_4_0.models.performance_datasets import PerformanceDatasets +from isilon_sdk.v9_4_0.models.performance_datasets_extended import PerformanceDatasetsExtended +from isilon_sdk.v9_4_0.models.performance_metric import PerformanceMetric +from isilon_sdk.v9_4_0.models.performance_metrics import PerformanceMetrics +from isilon_sdk.v9_4_0.models.performance_metrics_extended import PerformanceMetricsExtended +from isilon_sdk.v9_4_0.models.performance_settings import PerformanceSettings +from isilon_sdk.v9_4_0.models.performance_settings_extended import PerformanceSettingsExtended +from isilon_sdk.v9_4_0.models.performance_settings_settings import PerformanceSettingsSettings +from isilon_sdk.v9_4_0.models.pools_pool_interfaces import PoolsPoolInterfaces +from isilon_sdk.v9_4_0.models.pools_pool_interfaces_interface import PoolsPoolInterfacesInterface +from isilon_sdk.v9_4_0.models.pools_pool_interfaces_interface_owner import PoolsPoolInterfacesInterfaceOwner +from isilon_sdk.v9_4_0.models.pools_pool_rule import PoolsPoolRule +from isilon_sdk.v9_4_0.models.pools_pool_rule_create_params import PoolsPoolRuleCreateParams +from isilon_sdk.v9_4_0.models.pools_pool_rules import PoolsPoolRules +from isilon_sdk.v9_4_0.models.pools_pool_rules_rule import PoolsPoolRulesRule +from isilon_sdk.v9_4_0.models.pools_pool_sc_resume_node import PoolsPoolScResumeNode +from isilon_sdk.v9_4_0.models.pools_pool_status import PoolsPoolStatus +from isilon_sdk.v9_4_0.models.pools_pool_status_settings import PoolsPoolStatusSettings +from isilon_sdk.v9_4_0.models.pools_pool_status_settings_node import PoolsPoolStatusSettingsNode +from isilon_sdk.v9_4_0.models.pools_pool_status_settings_node_interface_status import PoolsPoolStatusSettingsNodeInterfaceStatus +from isilon_sdk.v9_4_0.models.pools_pool_status_settings_sc_dns_overview import PoolsPoolStatusSettingsScDnsOverview +from isilon_sdk.v9_4_0.models.progress_global import ProgressGlobal +from isilon_sdk.v9_4_0.models.progress_global_progress import ProgressGlobalProgress +from isilon_sdk.v9_4_0.models.protocols_smb_sessions import ProtocolsSmbSessions +from isilon_sdk.v9_4_0.models.protocols_smb_sessions_session import ProtocolsSmbSessionsSession +from isilon_sdk.v9_4_0.models.providers_ads import ProvidersAds +from isilon_sdk.v9_4_0.models.providers_ads_ads_item import ProvidersAdsAdsItem +from isilon_sdk.v9_4_0.models.providers_ads_ads_item_extended import ProvidersAdsAdsItemExtended +from isilon_sdk.v9_4_0.models.providers_ads_extended import ProvidersAdsExtended +from isilon_sdk.v9_4_0.models.providers_ads_id_params import ProvidersAdsIdParams +from isilon_sdk.v9_4_0.models.providers_ads_item import ProvidersAdsItem +from isilon_sdk.v9_4_0.models.providers_duo import ProvidersDuo +from isilon_sdk.v9_4_0.models.providers_duo_extended import ProvidersDuoExtended +from isilon_sdk.v9_4_0.models.providers_duo_settings import ProvidersDuoSettings +from isilon_sdk.v9_4_0.models.providers_file import ProvidersFile +from isilon_sdk.v9_4_0.models.providers_file_file_item import ProvidersFileFileItem +from isilon_sdk.v9_4_0.models.providers_file_id_params import ProvidersFileIdParams +from isilon_sdk.v9_4_0.models.providers_file_item import ProvidersFileItem +from isilon_sdk.v9_4_0.models.providers_krb5 import ProvidersKrb5 +from isilon_sdk.v9_4_0.models.providers_krb5_extended import ProvidersKrb5Extended +from isilon_sdk.v9_4_0.models.providers_krb5_id_params import ProvidersKrb5IdParams +from isilon_sdk.v9_4_0.models.providers_krb5_id_params_keytab_entry import ProvidersKrb5IdParamsKeytabEntry +from isilon_sdk.v9_4_0.models.providers_krb5_item import ProvidersKrb5Item +from isilon_sdk.v9_4_0.models.providers_krb5_krb5_item import ProvidersKrb5Krb5Item +from isilon_sdk.v9_4_0.models.providers_ldap import ProvidersLdap +from isilon_sdk.v9_4_0.models.providers_ldap_id_params import ProvidersLdapIdParams +from isilon_sdk.v9_4_0.models.providers_ldap_item import ProvidersLdapItem +from isilon_sdk.v9_4_0.models.providers_ldap_ldap_item import ProvidersLdapLdapItem +from isilon_sdk.v9_4_0.models.providers_local import ProvidersLocal +from isilon_sdk.v9_4_0.models.providers_local_id_params import ProvidersLocalIdParams +from isilon_sdk.v9_4_0.models.providers_local_local_item import ProvidersLocalLocalItem +from isilon_sdk.v9_4_0.models.providers_nis import ProvidersNis +from isilon_sdk.v9_4_0.models.providers_nis_id_params import ProvidersNisIdParams +from isilon_sdk.v9_4_0.models.providers_nis_item import ProvidersNisItem +from isilon_sdk.v9_4_0.models.providers_nis_nis_item import ProvidersNisNisItem +from isilon_sdk.v9_4_0.models.providers_summary import ProvidersSummary +from isilon_sdk.v9_4_0.models.providers_summary_provider_instance import ProvidersSummaryProviderInstance +from isilon_sdk.v9_4_0.models.providers_summary_provider_instance_connection import ProvidersSummaryProviderInstanceConnection +from isilon_sdk.v9_4_0.models.proxyusers_name_members import ProxyusersNameMembers +from isilon_sdk.v9_4_0.models.quota_notification import QuotaNotification +from isilon_sdk.v9_4_0.models.quota_notifications import QuotaNotifications +from isilon_sdk.v9_4_0.models.quota_quota import QuotaQuota +from isilon_sdk.v9_4_0.models.quota_quota_create_params import QuotaQuotaCreateParams +from isilon_sdk.v9_4_0.models.quota_quota_extended import QuotaQuotaExtended +from isilon_sdk.v9_4_0.models.quota_quota_thresholds import QuotaQuotaThresholds +from isilon_sdk.v9_4_0.models.quota_quota_thresholds_extended import QuotaQuotaThresholdsExtended +from isilon_sdk.v9_4_0.models.quota_quota_usage import QuotaQuotaUsage +from isilon_sdk.v9_4_0.models.quota_quotas import QuotaQuotas +from isilon_sdk.v9_4_0.models.quota_quotas_extended import QuotaQuotasExtended +from isilon_sdk.v9_4_0.models.quota_quotas_summary import QuotaQuotasSummary +from isilon_sdk.v9_4_0.models.quota_quotas_summary_summary import QuotaQuotasSummarySummary +from isilon_sdk.v9_4_0.models.quota_reports import QuotaReports +from isilon_sdk.v9_4_0.models.report_about import ReportAbout +from isilon_sdk.v9_4_0.models.report_about_report import ReportAboutReport +from isilon_sdk.v9_4_0.models.report_subreport import ReportSubreport +from isilon_sdk.v9_4_0.models.report_subreports import ReportSubreports +from isilon_sdk.v9_4_0.models.reports_report_subreports import ReportsReportSubreports +from isilon_sdk.v9_4_0.models.reports_report_subreports_subreport import ReportsReportSubreportsSubreport +from isilon_sdk.v9_4_0.models.reports_scans import ReportsScans +from isilon_sdk.v9_4_0.models.reports_scans_report import ReportsScansReport +from isilon_sdk.v9_4_0.models.reports_threats import ReportsThreats +from isilon_sdk.v9_4_0.models.reports_threats_report import ReportsThreatsReport +from isilon_sdk.v9_4_0.models.result_dir_pools_usage import ResultDirPoolsUsage +from isilon_sdk.v9_4_0.models.result_dir_pools_usage_usage_data import ResultDirPoolsUsageUsageData +from isilon_sdk.v9_4_0.models.result_directories import ResultDirectories +from isilon_sdk.v9_4_0.models.result_directories_dir_usage import ResultDirectoriesDirUsage +from isilon_sdk.v9_4_0.models.result_directories_extended import ResultDirectoriesExtended +from isilon_sdk.v9_4_0.models.result_directories_usage_data_item import ResultDirectoriesUsageDataItem +from isilon_sdk.v9_4_0.models.result_histogram import ResultHistogram +from isilon_sdk.v9_4_0.models.result_histogram_histogram_item import ResultHistogramHistogramItem +from isilon_sdk.v9_4_0.models.result_top_dirs import ResultTopDirs +from isilon_sdk.v9_4_0.models.result_top_dirs_dir import ResultTopDirsDir +from isilon_sdk.v9_4_0.models.result_top_files import ResultTopFiles +from isilon_sdk.v9_4_0.models.result_top_files_file import ResultTopFilesFile +from isilon_sdk.v9_4_0.models.role_members import RoleMembers +from isilon_sdk.v9_4_0.models.role_privileges import RolePrivileges +from isilon_sdk.v9_4_0.models.s3_bucket import S3Bucket +from isilon_sdk.v9_4_0.models.s3_bucket_acl_item import S3BucketAclItem +from isilon_sdk.v9_4_0.models.s3_buckets import S3Buckets +from isilon_sdk.v9_4_0.models.s3_buckets_extended import S3BucketsExtended +from isilon_sdk.v9_4_0.models.s3_key import S3Key +from isilon_sdk.v9_4_0.models.s3_keys import S3Keys +from isilon_sdk.v9_4_0.models.s3_keys_keys import S3KeysKeys +from isilon_sdk.v9_4_0.models.s3_log_level import S3LogLevel +from isilon_sdk.v9_4_0.models.s3_settings_global import S3SettingsGlobal +from isilon_sdk.v9_4_0.models.s3_settings_global_settings import S3SettingsGlobalSettings +from isilon_sdk.v9_4_0.models.s3_settings_zone import S3SettingsZone +from isilon_sdk.v9_4_0.models.s3_settings_zone_settings import S3SettingsZoneSettings +from isilon_sdk.v9_4_0.models.security_check import SecurityCheck +from isilon_sdk.v9_4_0.models.security_check_item import SecurityCheckItem +from isilon_sdk.v9_4_0.models.security_check_settings import SecurityCheckSettings +from isilon_sdk.v9_4_0.models.security_settings import SecuritySettings +from isilon_sdk.v9_4_0.models.security_settings_settings import SecuritySettingsSettings +from isilon_sdk.v9_4_0.models.sed_migrate_item import SedMigrateItem +from isilon_sdk.v9_4_0.models.sed_settings import SedSettings +from isilon_sdk.v9_4_0.models.sed_settings_extended import SedSettingsExtended +from isilon_sdk.v9_4_0.models.sed_settings_settings import SedSettingsSettings +from isilon_sdk.v9_4_0.models.sed_status import SedStatus +from isilon_sdk.v9_4_0.models.sed_status_extended import SedStatusExtended +from isilon_sdk.v9_4_0.models.sed_status_node import SedStatusNode +from isilon_sdk.v9_4_0.models.service_policies import ServicePolicies +from isilon_sdk.v9_4_0.models.service_policies_extended import ServicePoliciesExtended +from isilon_sdk.v9_4_0.models.service_policy import ServicePolicy +from isilon_sdk.v9_4_0.models.service_policy_create_params import ServicePolicyCreateParams +from isilon_sdk.v9_4_0.models.service_policy_extended import ServicePolicyExtended +from isilon_sdk.v9_4_0.models.service_target_policies import ServiceTargetPolicies +from isilon_sdk.v9_4_0.models.sessions_invalidation import SessionsInvalidation +from isilon_sdk.v9_4_0.models.sessions_invalidation_extended import SessionsInvalidationExtended +from isilon_sdk.v9_4_0.models.sessions_invalidations import SessionsInvalidations +from isilon_sdk.v9_4_0.models.settings_access_time import SettingsAccessTime +from isilon_sdk.v9_4_0.models.settings_access_time_extended import SettingsAccessTimeExtended +from isilon_sdk.v9_4_0.models.settings_access_time_settings import SettingsAccessTimeSettings +from isilon_sdk.v9_4_0.models.settings_acls import SettingsAcls +from isilon_sdk.v9_4_0.models.settings_acls_acl_policy_settings import SettingsAclsAclPolicySettings +from isilon_sdk.v9_4_0.models.settings_acls_extended import SettingsAclsExtended +from isilon_sdk.v9_4_0.models.settings_character_encodings import SettingsCharacterEncodings +from isilon_sdk.v9_4_0.models.settings_character_encodings_extended import SettingsCharacterEncodingsExtended +from isilon_sdk.v9_4_0.models.settings_character_encodings_settings import SettingsCharacterEncodingsSettings +from isilon_sdk.v9_4_0.models.settings_compression import SettingsCompression +from isilon_sdk.v9_4_0.models.settings_compression_extended import SettingsCompressionExtended +from isilon_sdk.v9_4_0.models.settings_compression_settings import SettingsCompressionSettings +from isilon_sdk.v9_4_0.models.settings_global import SettingsGlobal +from isilon_sdk.v9_4_0.models.settings_global_extended import SettingsGlobalExtended +from isilon_sdk.v9_4_0.models.settings_global_global_settings import SettingsGlobalGlobalSettings +from isilon_sdk.v9_4_0.models.settings_global_settings import SettingsGlobalSettings +from isilon_sdk.v9_4_0.models.settings_krb5_defaults import SettingsKrb5Defaults +from isilon_sdk.v9_4_0.models.settings_krb5_defaults_krb5_settings import SettingsKrb5DefaultsKrb5Settings +from isilon_sdk.v9_4_0.models.settings_krb5_domain import SettingsKrb5Domain +from isilon_sdk.v9_4_0.models.settings_krb5_domains import SettingsKrb5Domains +from isilon_sdk.v9_4_0.models.settings_krb5_domains_domain_item import SettingsKrb5DomainsDomainItem +from isilon_sdk.v9_4_0.models.settings_krb5_realm import SettingsKrb5Realm +from isilon_sdk.v9_4_0.models.settings_krb5_realms import SettingsKrb5Realms +from isilon_sdk.v9_4_0.models.settings_krb5_realms_realm_item import SettingsKrb5RealmsRealmItem +from isilon_sdk.v9_4_0.models.settings_mapping import SettingsMapping +from isilon_sdk.v9_4_0.models.settings_mapping_create_params import SettingsMappingCreateParams +from isilon_sdk.v9_4_0.models.settings_mapping_extended import SettingsMappingExtended +from isilon_sdk.v9_4_0.models.settings_mapping_extended_extended import SettingsMappingExtendedExtended +from isilon_sdk.v9_4_0.models.settings_mapping_mapping_settings import SettingsMappingMappingSettings +from isilon_sdk.v9_4_0.models.settings_mappings import SettingsMappings +from isilon_sdk.v9_4_0.models.settings_mappings_extended import SettingsMappingsExtended +from isilon_sdk.v9_4_0.models.settings_notifications import SettingsNotifications +from isilon_sdk.v9_4_0.models.settings_reporting_eula import SettingsReportingEula +from isilon_sdk.v9_4_0.models.settings_reporting_eula_eula import SettingsReportingEulaEula +from isilon_sdk.v9_4_0.models.settings_reports import SettingsReports +from isilon_sdk.v9_4_0.models.settings_reports_extended import SettingsReportsExtended +from isilon_sdk.v9_4_0.models.settings_reports_settings import SettingsReportsSettings +from isilon_sdk.v9_4_0.models.settings_sessions import SettingsSessions +from isilon_sdk.v9_4_0.models.settings_sessions_settings import SettingsSessionsSettings +from isilon_sdk.v9_4_0.models.smb_log_level import SmbLogLevel +from isilon_sdk.v9_4_0.models.smb_log_level_filter import SmbLogLevelFilter +from isilon_sdk.v9_4_0.models.smb_log_level_filters import SmbLogLevelFilters +from isilon_sdk.v9_4_0.models.smb_log_level_filters_filter import SmbLogLevelFiltersFilter +from isilon_sdk.v9_4_0.models.smb_openfile import SmbOpenfile +from isilon_sdk.v9_4_0.models.smb_openfiles import SmbOpenfiles +from isilon_sdk.v9_4_0.models.smb_sessions import SmbSessions +from isilon_sdk.v9_4_0.models.smb_sessions_node import SmbSessionsNode +from isilon_sdk.v9_4_0.models.smb_settings_global import SmbSettingsGlobal +from isilon_sdk.v9_4_0.models.smb_settings_global_extended import SmbSettingsGlobalExtended +from isilon_sdk.v9_4_0.models.smb_settings_global_settings import SmbSettingsGlobalSettings +from isilon_sdk.v9_4_0.models.smb_settings_share import SmbSettingsShare +from isilon_sdk.v9_4_0.models.smb_settings_share_extended import SmbSettingsShareExtended +from isilon_sdk.v9_4_0.models.smb_settings_share_settings import SmbSettingsShareSettings +from isilon_sdk.v9_4_0.models.smb_settings_zone import SmbSettingsZone +from isilon_sdk.v9_4_0.models.smb_settings_zone_settings import SmbSettingsZoneSettings +from isilon_sdk.v9_4_0.models.smb_share import SmbShare +from isilon_sdk.v9_4_0.models.smb_share_create_params import SmbShareCreateParams +from isilon_sdk.v9_4_0.models.smb_share_extended import SmbShareExtended +from isilon_sdk.v9_4_0.models.smb_share_permission import SmbSharePermission +from isilon_sdk.v9_4_0.models.smb_shares import SmbShares +from isilon_sdk.v9_4_0.models.smb_shares_summary import SmbSharesSummary +from isilon_sdk.v9_4_0.models.smb_shares_summary_summary import SmbSharesSummarySummary +from isilon_sdk.v9_4_0.models.snapshot_alias import SnapshotAlias +from isilon_sdk.v9_4_0.models.snapshot_alias_create_params import SnapshotAliasCreateParams +from isilon_sdk.v9_4_0.models.snapshot_alias_extended import SnapshotAliasExtended +from isilon_sdk.v9_4_0.models.snapshot_aliases import SnapshotAliases +from isilon_sdk.v9_4_0.models.snapshot_aliases_extended import SnapshotAliasesExtended +from isilon_sdk.v9_4_0.models.snapshot_changelists import SnapshotChangelists +from isilon_sdk.v9_4_0.models.snapshot_changelists_extended import SnapshotChangelistsExtended +from isilon_sdk.v9_4_0.models.snapshot_lock import SnapshotLock +from isilon_sdk.v9_4_0.models.snapshot_lock_extended import SnapshotLockExtended +from isilon_sdk.v9_4_0.models.snapshot_locks import SnapshotLocks +from isilon_sdk.v9_4_0.models.snapshot_locks_extended import SnapshotLocksExtended +from isilon_sdk.v9_4_0.models.snapshot_pending import SnapshotPending +from isilon_sdk.v9_4_0.models.snapshot_pending_pending_item import SnapshotPendingPendingItem +from isilon_sdk.v9_4_0.models.snapshot_repstates import SnapshotRepstates +from isilon_sdk.v9_4_0.models.snapshot_repstates_extended import SnapshotRepstatesExtended +from isilon_sdk.v9_4_0.models.snapshot_schedule import SnapshotSchedule +from isilon_sdk.v9_4_0.models.snapshot_schedule_extended import SnapshotScheduleExtended +from isilon_sdk.v9_4_0.models.snapshot_schedule_extended_extended import SnapshotScheduleExtendedExtended +from isilon_sdk.v9_4_0.models.snapshot_schedules import SnapshotSchedules +from isilon_sdk.v9_4_0.models.snapshot_schedules_extended import SnapshotSchedulesExtended +from isilon_sdk.v9_4_0.models.snapshot_settings import SnapshotSettings +from isilon_sdk.v9_4_0.models.snapshot_settings_extended import SnapshotSettingsExtended +from isilon_sdk.v9_4_0.models.snapshot_settings_settings import SnapshotSettingsSettings +from isilon_sdk.v9_4_0.models.snapshot_snapshot import SnapshotSnapshot +from isilon_sdk.v9_4_0.models.snapshot_snapshot_extended_extended import SnapshotSnapshotExtendedExtended +from isilon_sdk.v9_4_0.models.snapshot_snapshots import SnapshotSnapshots +from isilon_sdk.v9_4_0.models.snapshot_snapshots_extended import SnapshotSnapshotsExtended +from isilon_sdk.v9_4_0.models.snapshot_snapshots_summary import SnapshotSnapshotsSummary +from isilon_sdk.v9_4_0.models.snapshot_snapshots_summary_summary import SnapshotSnapshotsSummarySummary +from isilon_sdk.v9_4_0.models.snapshot_writable import SnapshotWritable +from isilon_sdk.v9_4_0.models.snapshot_writable_item import SnapshotWritableItem +from isilon_sdk.v9_4_0.models.snapshot_writable_snapshot_summary import SnapshotWritableSnapshotSummary +from isilon_sdk.v9_4_0.models.snapshot_writable_snapshot_summary_summary import SnapshotWritableSnapshotSummarySummary +from isilon_sdk.v9_4_0.models.snapshot_writable_writable_item import SnapshotWritableWritableItem +from isilon_sdk.v9_4_0.models.snmp_settings import SnmpSettings +from isilon_sdk.v9_4_0.models.snmp_settings_extended import SnmpSettingsExtended +from isilon_sdk.v9_4_0.models.snmp_settings_settings import SnmpSettingsSettings +from isilon_sdk.v9_4_0.models.ssh_settings import SshSettings +from isilon_sdk.v9_4_0.models.ssh_settings_extended import SshSettingsExtended +from isilon_sdk.v9_4_0.models.ssh_settings_settings import SshSettingsSettings +from isilon_sdk.v9_4_0.models.statistics_current import StatisticsCurrent +from isilon_sdk.v9_4_0.models.statistics_current_stat import StatisticsCurrentStat +from isilon_sdk.v9_4_0.models.statistics_history import StatisticsHistory +from isilon_sdk.v9_4_0.models.statistics_history_stat import StatisticsHistoryStat +from isilon_sdk.v9_4_0.models.statistics_history_stat_value import StatisticsHistoryStatValue +from isilon_sdk.v9_4_0.models.statistics_key import StatisticsKey +from isilon_sdk.v9_4_0.models.statistics_key_policy import StatisticsKeyPolicy +from isilon_sdk.v9_4_0.models.statistics_keys import StatisticsKeys +from isilon_sdk.v9_4_0.models.statistics_operation import StatisticsOperation +from isilon_sdk.v9_4_0.models.statistics_operations import StatisticsOperations +from isilon_sdk.v9_4_0.models.statistics_protocol import StatisticsProtocol +from isilon_sdk.v9_4_0.models.statistics_protocols import StatisticsProtocols +from isilon_sdk.v9_4_0.models.storagepool_nodepool import StoragepoolNodepool +from isilon_sdk.v9_4_0.models.storagepool_nodepool_extended import StoragepoolNodepoolExtended +from isilon_sdk.v9_4_0.models.storagepool_nodepools import StoragepoolNodepools +from isilon_sdk.v9_4_0.models.storagepool_nodepools_extended import StoragepoolNodepoolsExtended +from isilon_sdk.v9_4_0.models.storagepool_nodetype import StoragepoolNodetype +from isilon_sdk.v9_4_0.models.storagepool_nodetypes import StoragepoolNodetypes +from isilon_sdk.v9_4_0.models.storagepool_nodetypes_extended import StoragepoolNodetypesExtended +from isilon_sdk.v9_4_0.models.storagepool_settings import StoragepoolSettings +from isilon_sdk.v9_4_0.models.storagepool_settings_extended import StoragepoolSettingsExtended +from isilon_sdk.v9_4_0.models.storagepool_settings_settings import StoragepoolSettingsSettings +from isilon_sdk.v9_4_0.models.storagepool_settings_settings_spillover_target import StoragepoolSettingsSettingsSpilloverTarget +from isilon_sdk.v9_4_0.models.storagepool_settings_spillover_target import StoragepoolSettingsSpilloverTarget +from isilon_sdk.v9_4_0.models.storagepool_status import StoragepoolStatus +from isilon_sdk.v9_4_0.models.storagepool_status_unhealthy_item import StoragepoolStatusUnhealthyItem +from isilon_sdk.v9_4_0.models.storagepool_status_unhealthy_item_affected_item import StoragepoolStatusUnhealthyItemAffectedItem +from isilon_sdk.v9_4_0.models.storagepool_status_unhealthy_item_affected_item_device import StoragepoolStatusUnhealthyItemAffectedItemDevice +from isilon_sdk.v9_4_0.models.storagepool_status_unhealthy_item_diskpool import StoragepoolStatusUnhealthyItemDiskpool +from isilon_sdk.v9_4_0.models.storagepool_storagepool import StoragepoolStoragepool +from isilon_sdk.v9_4_0.models.storagepool_storagepools import StoragepoolStoragepools +from isilon_sdk.v9_4_0.models.storagepool_suggested_protection import StoragepoolSuggestedProtection +from isilon_sdk.v9_4_0.models.storagepool_tier import StoragepoolTier +from isilon_sdk.v9_4_0.models.storagepool_tier_usage import StoragepoolTierUsage +from isilon_sdk.v9_4_0.models.storagepool_tiers import StoragepoolTiers +from isilon_sdk.v9_4_0.models.storagepool_tiers_extended import StoragepoolTiersExtended +from isilon_sdk.v9_4_0.models.storagepool_unprovisioned import StoragepoolUnprovisioned +from isilon_sdk.v9_4_0.models.storagepool_unprovisioned_unprovisioned import StoragepoolUnprovisionedUnprovisioned +from isilon_sdk.v9_4_0.models.subnets_subnet_pool import SubnetsSubnetPool +from isilon_sdk.v9_4_0.models.subnets_subnet_pool_create_params import SubnetsSubnetPoolCreateParams +from isilon_sdk.v9_4_0.models.subnets_subnet_pool_iface import SubnetsSubnetPoolIface +from isilon_sdk.v9_4_0.models.subnets_subnet_pool_range import SubnetsSubnetPoolRange +from isilon_sdk.v9_4_0.models.subnets_subnet_pool_static_route import SubnetsSubnetPoolStaticRoute +from isilon_sdk.v9_4_0.models.subnets_subnet_pools import SubnetsSubnetPools +from isilon_sdk.v9_4_0.models.subnets_subnet_pools_pool import SubnetsSubnetPoolsPool +from isilon_sdk.v9_4_0.models.summary_client import SummaryClient +from isilon_sdk.v9_4_0.models.summary_client_client_item import SummaryClientClientItem +from isilon_sdk.v9_4_0.models.summary_cloud import SummaryCloud +from isilon_sdk.v9_4_0.models.summary_cloud_cloud_item import SummaryCloudCloudItem +from isilon_sdk.v9_4_0.models.summary_drive import SummaryDrive +from isilon_sdk.v9_4_0.models.summary_drive_drive_item import SummaryDriveDriveItem +from isilon_sdk.v9_4_0.models.summary_heat import SummaryHeat +from isilon_sdk.v9_4_0.models.summary_heat_heat_item import SummaryHeatHeatItem +from isilon_sdk.v9_4_0.models.summary_protocol import SummaryProtocol +from isilon_sdk.v9_4_0.models.summary_protocol_protocol_item import SummaryProtocolProtocolItem +from isilon_sdk.v9_4_0.models.summary_protocol_stats import SummaryProtocolStats +from isilon_sdk.v9_4_0.models.summary_protocol_stats_protocol_stats import SummaryProtocolStatsProtocolStats +from isilon_sdk.v9_4_0.models.summary_protocol_stats_protocol_stats_cpu import SummaryProtocolStatsProtocolStatsCpu +from isilon_sdk.v9_4_0.models.summary_protocol_stats_protocol_stats_disk import SummaryProtocolStatsProtocolStatsDisk +from isilon_sdk.v9_4_0.models.summary_protocol_stats_protocol_stats_network import SummaryProtocolStatsProtocolStatsNetwork +from isilon_sdk.v9_4_0.models.summary_protocol_stats_protocol_stats_network_in import SummaryProtocolStatsProtocolStatsNetworkIn +from isilon_sdk.v9_4_0.models.summary_protocol_stats_protocol_stats_network_out import SummaryProtocolStatsProtocolStatsNetworkOut +from isilon_sdk.v9_4_0.models.summary_protocol_stats_protocol_stats_onefs import SummaryProtocolStatsProtocolStatsOnefs +from isilon_sdk.v9_4_0.models.summary_protocol_stats_protocol_stats_protocol import SummaryProtocolStatsProtocolStatsProtocol +from isilon_sdk.v9_4_0.models.summary_protocol_stats_protocol_stats_protocol_data_item import SummaryProtocolStatsProtocolStatsProtocolDataItem +from isilon_sdk.v9_4_0.models.summary_system import SummarySystem +from isilon_sdk.v9_4_0.models.summary_system_system_item import SummarySystemSystemItem +from isilon_sdk.v9_4_0.models.summary_workload import SummaryWorkload +from isilon_sdk.v9_4_0.models.summary_workload_workload_item import SummaryWorkloadWorkloadItem +from isilon_sdk.v9_4_0.models.swift_account import SwiftAccount +from isilon_sdk.v9_4_0.models.swift_account_extended import SwiftAccountExtended +from isilon_sdk.v9_4_0.models.swift_accounts import SwiftAccounts +from isilon_sdk.v9_4_0.models.sync_job import SyncJob +from isilon_sdk.v9_4_0.models.sync_job_create_params import SyncJobCreateParams +from isilon_sdk.v9_4_0.models.sync_job_extended import SyncJobExtended +from isilon_sdk.v9_4_0.models.sync_job_phase import SyncJobPhase +from isilon_sdk.v9_4_0.models.sync_job_phase_statistics import SyncJobPhaseStatistics +from isilon_sdk.v9_4_0.models.sync_job_policy import SyncJobPolicy +from isilon_sdk.v9_4_0.models.sync_job_service_report_item import SyncJobServiceReportItem +from isilon_sdk.v9_4_0.models.sync_job_worker import SyncJobWorker +from isilon_sdk.v9_4_0.models.sync_jobs import SyncJobs +from isilon_sdk.v9_4_0.models.sync_jobs_extended import SyncJobsExtended +from isilon_sdk.v9_4_0.models.sync_policies import SyncPolicies +from isilon_sdk.v9_4_0.models.sync_policies_extended import SyncPoliciesExtended +from isilon_sdk.v9_4_0.models.sync_policy import SyncPolicy +from isilon_sdk.v9_4_0.models.sync_policy_create_params import SyncPolicyCreateParams +from isilon_sdk.v9_4_0.models.sync_policy_extended import SyncPolicyExtended +from isilon_sdk.v9_4_0.models.sync_policy_file_matching_pattern import SyncPolicyFileMatchingPattern +from isilon_sdk.v9_4_0.models.sync_policy_file_matching_pattern_or_criteria_item import SyncPolicyFileMatchingPatternOrCriteriaItem +from isilon_sdk.v9_4_0.models.sync_policy_file_matching_pattern_or_criteria_item_and_criteria_item import SyncPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem +from isilon_sdk.v9_4_0.models.sync_policy_source_network import SyncPolicySourceNetwork +from isilon_sdk.v9_4_0.models.sync_report import SyncReport +from isilon_sdk.v9_4_0.models.sync_reports import SyncReports +from isilon_sdk.v9_4_0.models.sync_reports_extended import SyncReportsExtended +from isilon_sdk.v9_4_0.models.sync_reports_rotate import SyncReportsRotate +from isilon_sdk.v9_4_0.models.sync_rule import SyncRule +from isilon_sdk.v9_4_0.models.sync_rule_extended_extended import SyncRuleExtendedExtended +from isilon_sdk.v9_4_0.models.sync_rule_schedule import SyncRuleSchedule +from isilon_sdk.v9_4_0.models.sync_rules import SyncRules +from isilon_sdk.v9_4_0.models.sync_rules_extended import SyncRulesExtended +from isilon_sdk.v9_4_0.models.sync_settings import SyncSettings +from isilon_sdk.v9_4_0.models.sync_settings_extended import SyncSettingsExtended +from isilon_sdk.v9_4_0.models.sync_settings_settings import SyncSettingsSettings +from isilon_sdk.v9_4_0.models.target_policies import TargetPolicies +from isilon_sdk.v9_4_0.models.target_policies_extended import TargetPoliciesExtended +from isilon_sdk.v9_4_0.models.target_policy import TargetPolicy +from isilon_sdk.v9_4_0.models.target_report import TargetReport +from isilon_sdk.v9_4_0.models.target_reports import TargetReports +from isilon_sdk.v9_4_0.models.target_reports_extended import TargetReportsExtended +from isilon_sdk.v9_4_0.models.throttling_bw_rule import ThrottlingBwRule +from isilon_sdk.v9_4_0.models.throttling_bw_rules import ThrottlingBwRules +from isilon_sdk.v9_4_0.models.throttling_bw_rules_bandwidth_rule import ThrottlingBwRulesBandwidthRule +from isilon_sdk.v9_4_0.models.throttling_settings import ThrottlingSettings +from isilon_sdk.v9_4_0.models.throttling_settings_settings import ThrottlingSettingsSettings +from isilon_sdk.v9_4_0.models.timezone_region import TimezoneRegion +from isilon_sdk.v9_4_0.models.timezone_region_timezone import TimezoneRegionTimezone +from isilon_sdk.v9_4_0.models.timezone_regions import TimezoneRegions +from isilon_sdk.v9_4_0.models.timezone_settings import TimezoneSettings +from isilon_sdk.v9_4_0.models.upgrade_cluster import UpgradeCluster +from isilon_sdk.v9_4_0.models.upgrade_cluster_cluster_overview import UpgradeClusterClusterOverview +from isilon_sdk.v9_4_0.models.upgrade_cluster_committed_features import UpgradeClusterCommittedFeatures +from isilon_sdk.v9_4_0.models.upgrade_cluster_committed_features_gen_bit import UpgradeClusterCommittedFeaturesGenBit +from isilon_sdk.v9_4_0.models.upgrade_cluster_firmware_device import UpgradeClusterFirmwareDevice +from isilon_sdk.v9_4_0.models.upgrade_cluster_firmware_device_node import UpgradeClusterFirmwareDeviceNode +from isilon_sdk.v9_4_0.models.upgrade_cluster_firmware_device_node_device import UpgradeClusterFirmwareDeviceNodeDevice +from isilon_sdk.v9_4_0.models.upgrade_cluster_firmware_device_node_package_item import UpgradeClusterFirmwareDeviceNodePackageItem +from isilon_sdk.v9_4_0.models.upgrade_cluster_upgrade_settings import UpgradeClusterUpgradeSettings +from isilon_sdk.v9_4_0.models.user_change_password import UserChangePassword +from isilon_sdk.v9_4_0.models.user_member_of import UserMemberOf +from isilon_sdk.v9_4_0.models.worm_create_params import WormCreateParams +from isilon_sdk.v9_4_0.models.worm_domain import WormDomain +from isilon_sdk.v9_4_0.models.worm_domain_exclusion import WormDomainExclusion +from isilon_sdk.v9_4_0.models.worm_domains import WormDomains +from isilon_sdk.v9_4_0.models.worm_properties import WormProperties +from isilon_sdk.v9_4_0.models.worm_settings import WormSettings +from isilon_sdk.v9_4_0.models.worm_settings_extended import WormSettingsExtended +from isilon_sdk.v9_4_0.models.worm_settings_settings import WormSettingsSettings +from isilon_sdk.v9_4_0.models.zone import Zone +from isilon_sdk.v9_4_0.models.zone_extended_extended import ZoneExtendedExtended +from isilon_sdk.v9_4_0.models.zone_group import ZoneGroup +from isilon_sdk.v9_4_0.models.zone_groups import ZoneGroups +from isilon_sdk.v9_4_0.models.zone_user import ZoneUser +from isilon_sdk.v9_4_0.models.zone_users import ZoneUsers +from isilon_sdk.v9_4_0.models.zones import Zones +from isilon_sdk.v9_4_0.models.zones_extended import ZonesExtended +from isilon_sdk.v9_4_0.models.zones_summary import ZonesSummary +from isilon_sdk.v9_4_0.models.zones_summary_extended import ZonesSummaryExtended +from isilon_sdk.v9_4_0.models.zones_summary_summary import ZonesSummarySummary +from isilon_sdk.v9_4_0.models.zones_summary_summary_extended import ZonesSummarySummaryExtended +from isilon_sdk.v9_4_0.models.antivirus_policies_extended import AntivirusPoliciesExtended +from isilon_sdk.v9_4_0.models.antivirus_policy_create_params import AntivirusPolicyCreateParams +from isilon_sdk.v9_4_0.models.antivirus_policy_extended import AntivirusPolicyExtended +from isilon_sdk.v9_4_0.models.antivirus_server_create_params import AntivirusServerCreateParams +from isilon_sdk.v9_4_0.models.antivirus_server_extended import AntivirusServerExtended +from isilon_sdk.v9_4_0.models.antivirus_servers_extended import AntivirusServersExtended +from isilon_sdk.v9_4_0.models.audit_topic_extended import AuditTopicExtended +from isilon_sdk.v9_4_0.models.auth_group_create_params import AuthGroupCreateParams +from isilon_sdk.v9_4_0.models.auth_role_create_params import AuthRoleCreateParams +from isilon_sdk.v9_4_0.models.auth_role_extended import AuthRoleExtended +from isilon_sdk.v9_4_0.models.auth_roles_extended import AuthRolesExtended +from isilon_sdk.v9_4_0.models.auth_user_create_params import AuthUserCreateParams +from isilon_sdk.v9_4_0.models.avscan_jobs_extended import AvscanJobsExtended +from isilon_sdk.v9_4_0.models.avscan_servers_extended import AvscanServersExtended +from isilon_sdk.v9_4_0.models.certificates_ca_extended import CertificatesCaExtended +from isilon_sdk.v9_4_0.models.certificates_identity_extended import CertificatesIdentityExtended +from isilon_sdk.v9_4_0.models.cloud_access_extended import CloudAccessExtended +from isilon_sdk.v9_4_0.models.cloud_account_extended import CloudAccountExtended +from isilon_sdk.v9_4_0.models.cloud_jobs_extended import CloudJobsExtended +from isilon_sdk.v9_4_0.models.cloud_pool_create_params import CloudPoolCreateParams +from isilon_sdk.v9_4_0.models.cloud_pool_extended import CloudPoolExtended +from isilon_sdk.v9_4_0.models.cloud_proxy_create_params import CloudProxyCreateParams +from isilon_sdk.v9_4_0.models.cloud_proxy_extended import CloudProxyExtended +from isilon_sdk.v9_4_0.models.cluster_internal_networks_failover_ip_addresse import ClusterInternalNetworksFailoverIpAddresse +from isilon_sdk.v9_4_0.models.cluster_internal_networks_failover_ip_addresse_extended import ClusterInternalNetworksFailoverIpAddresseExtended +from isilon_sdk.v9_4_0.models.cluster_internal_networks_int_a_ip_addresse import ClusterInternalNetworksIntAIpAddresse +from isilon_sdk.v9_4_0.models.cluster_internal_networks_int_a_ip_addresse_extended import ClusterInternalNetworksIntAIpAddresseExtended +from isilon_sdk.v9_4_0.models.cluster_internal_networks_int_b_ip_addresse import ClusterInternalNetworksIntBIpAddresse +from isilon_sdk.v9_4_0.models.cluster_internal_networks_int_b_ip_addresse_extended import ClusterInternalNetworksIntBIpAddresseExtended +from isilon_sdk.v9_4_0.models.cluster_node_state_servicelight import ClusterNodeStateServicelight +from isilon_sdk.v9_4_0.models.cluster_node_state_servicelight_extended import ClusterNodeStateServicelightExtended +from isilon_sdk.v9_4_0.models.cluster_patch_patches_extended import ClusterPatchPatchesExtended +from isilon_sdk.v9_4_0.models.config_feature_extended import ConfigFeatureExtended +from isilon_sdk.v9_4_0.models.datamover_accounts_extended import DatamoverAccountsExtended +from isilon_sdk.v9_4_0.models.datamover_base_policies_extended import DatamoverBasePoliciesExtended +from isilon_sdk.v9_4_0.models.datamover_base_policy_create_params import DatamoverBasePolicyCreateParams +from isilon_sdk.v9_4_0.models.datamover_policies_extended import DatamoverPoliciesExtended +from isilon_sdk.v9_4_0.models.datamover_policy_policy_specific_attr_create_params import DatamoverPolicyPolicySpecificAttrCreateParams +from isilon_sdk.v9_4_0.models.dataset_filter_create_params import DatasetFilterCreateParams +from isilon_sdk.v9_4_0.models.dataset_filter_extended import DatasetFilterExtended +from isilon_sdk.v9_4_0.models.dataset_workload_create_params import DatasetWorkloadCreateParams +from isilon_sdk.v9_4_0.models.dataset_workload_extended import DatasetWorkloadExtended +from isilon_sdk.v9_4_0.models.dedupe_reports_extended import DedupeReportsExtended +from isilon_sdk.v9_4_0.models.event_alert_condition_create_params import EventAlertConditionCreateParams +from isilon_sdk.v9_4_0.models.event_alert_conditions_extended import EventAlertConditionsExtended +from isilon_sdk.v9_4_0.models.event_categories_extended import EventCategoriesExtended +from isilon_sdk.v9_4_0.models.event_channel_create_params import EventChannelCreateParams +from isilon_sdk.v9_4_0.models.event_channel_extended import EventChannelExtended +from isilon_sdk.v9_4_0.models.event_channels_extended import EventChannelsExtended +from isilon_sdk.v9_4_0.models.event_eventgroup_definitions_extended import EventEventgroupDefinitionsExtended +from isilon_sdk.v9_4_0.models.event_eventgroup_occurrences_extended import EventEventgroupOccurrencesExtended +from isilon_sdk.v9_4_0.models.event_eventlists_extended import EventEventlistsExtended +from isilon_sdk.v9_4_0.models.event_threshold_extended import EventThresholdExtended +from isilon_sdk.v9_4_0.models.filepool_policy_create_params import FilepoolPolicyCreateParams +from isilon_sdk.v9_4_0.models.fsa_result_extended import FsaResultExtended +from isilon_sdk.v9_4_0.models.fsa_results_extended import FsaResultsExtended +from isilon_sdk.v9_4_0.models.groupnet_subnet_create_params import GroupnetSubnetCreateParams +from isilon_sdk.v9_4_0.models.groupnet_subnet_extended import GroupnetSubnetExtended +from isilon_sdk.v9_4_0.models.groupnet_subnets_extended import GroupnetSubnetsExtended +from isilon_sdk.v9_4_0.models.hdfs_rack_create_params import HdfsRackCreateParams +from isilon_sdk.v9_4_0.models.hdfs_rack_extended import HdfsRackExtended +from isilon_sdk.v9_4_0.models.healthcheck_checklist_extended import HealthcheckChecklistExtended +from isilon_sdk.v9_4_0.models.healthcheck_checklists_extended import HealthcheckChecklistsExtended +from isilon_sdk.v9_4_0.models.healthcheck_evaluations_extended import HealthcheckEvaluationsExtended +from isilon_sdk.v9_4_0.models.healthcheck_items_extended import HealthcheckItemsExtended +from isilon_sdk.v9_4_0.models.healthcheck_parameter_create_params import HealthcheckParameterCreateParams +from isilon_sdk.v9_4_0.models.healthcheck_parameters_extended import HealthcheckParametersExtended +from isilon_sdk.v9_4_0.models.healthcheck_schedules_extended import HealthcheckSchedulesExtended +from isilon_sdk.v9_4_0.models.http_service_extended import HttpServiceExtended +from isilon_sdk.v9_4_0.models.id_resolution_domains_extended import IdResolutionDomainsExtended +from isilon_sdk.v9_4_0.models.id_resolution_lins_extended import IdResolutionLinsExtended +from isilon_sdk.v9_4_0.models.id_resolution_zones_extended import IdResolutionZonesExtended +from isilon_sdk.v9_4_0.models.job_jobs_extended import JobJobsExtended +from isilon_sdk.v9_4_0.models.job_policies_extended import JobPoliciesExtended +from isilon_sdk.v9_4_0.models.job_policy_create_params import JobPolicyCreateParams +from isilon_sdk.v9_4_0.models.job_policy_extended import JobPolicyExtended +from isilon_sdk.v9_4_0.models.job_type_extended import JobTypeExtended +from isilon_sdk.v9_4_0.models.job_types_extended import JobTypesExtended +from isilon_sdk.v9_4_0.models.kmip_server_create_params import KmipServerCreateParams +from isilon_sdk.v9_4_0.models.kmip_server_extended_extended import KmipServerExtendedExtended +from isilon_sdk.v9_4_0.models.lfn_extended import LfnExtended +from isilon_sdk.v9_4_0.models.lfn_item import LfnItem +from isilon_sdk.v9_4_0.models.license_licenses_extended import LicenseLicensesExtended +from isilon_sdk.v9_4_0.models.mapping_users_rules_parameters_default_unix_user import MappingUsersRulesParametersDefaultUnixUser +from isilon_sdk.v9_4_0.models.mapping_users_rules_rule_options_default_user import MappingUsersRulesRuleOptionsDefaultUser +from isilon_sdk.v9_4_0.models.mapping_users_rules_rule_user1 import MappingUsersRulesRuleUser1 +from isilon_sdk.v9_4_0.models.mapping_users_rules_rule_user2 import MappingUsersRulesRuleUser2 +from isilon_sdk.v9_4_0.models.ndmp_settings_preferred_ip_create_params import NdmpSettingsPreferredIpCreateParams +from isilon_sdk.v9_4_0.models.ndmp_settings_preferred_ips_extended import NdmpSettingsPreferredIpsExtended +from isilon_sdk.v9_4_0.models.ndmp_settings_variable_create_params import NdmpSettingsVariableCreateParams +from isilon_sdk.v9_4_0.models.ndmp_user_create_params import NdmpUserCreateParams +from isilon_sdk.v9_4_0.models.ndmp_users_extended import NdmpUsersExtended +from isilon_sdk.v9_4_0.models.network_groupnet_create_params import NetworkGroupnetCreateParams +from isilon_sdk.v9_4_0.models.network_groupnet_extended import NetworkGroupnetExtended +from isilon_sdk.v9_4_0.models.network_groupnets_extended import NetworkGroupnetsExtended +from isilon_sdk.v9_4_0.models.network_interfaces_extended import NetworkInterfacesExtended +from isilon_sdk.v9_4_0.models.nfs_alias_extended import NfsAliasExtended +from isilon_sdk.v9_4_0.models.nfs_export_extended import NfsExportExtended +from isilon_sdk.v9_4_0.models.node_state_node_servicelight import NodeStateNodeServicelight +from isilon_sdk.v9_4_0.models.ntp_servers_extended import NtpServersExtended +from isilon_sdk.v9_4_0.models.performance_dataset_create_params import PerformanceDatasetCreateParams +from isilon_sdk.v9_4_0.models.performance_dataset_extended import PerformanceDatasetExtended +from isilon_sdk.v9_4_0.models.pools_pool_rules_extended import PoolsPoolRulesExtended +from isilon_sdk.v9_4_0.models.providers_krb5_krb5_item_extended import ProvidersKrb5Krb5ItemExtended +from isilon_sdk.v9_4_0.models.quota_notification_create_params import QuotaNotificationCreateParams +from isilon_sdk.v9_4_0.models.quota_notification_extended import QuotaNotificationExtended +from isilon_sdk.v9_4_0.models.quota_notifications_extended import QuotaNotificationsExtended +from isilon_sdk.v9_4_0.models.report_subreports_extended import ReportSubreportsExtended +from isilon_sdk.v9_4_0.models.reports_report_subreports_extended import ReportsReportSubreportsExtended +from isilon_sdk.v9_4_0.models.reports_scans_extended import ReportsScansExtended +from isilon_sdk.v9_4_0.models.reports_threats_extended import ReportsThreatsExtended +from isilon_sdk.v9_4_0.models.result_directories_total_usage import ResultDirectoriesTotalUsage +from isilon_sdk.v9_4_0.models.result_directories_total_usage_extended import ResultDirectoriesTotalUsageExtended +from isilon_sdk.v9_4_0.models.s3_bucket_create_params import S3BucketCreateParams +from isilon_sdk.v9_4_0.models.s3_bucket_extended import S3BucketExtended +from isilon_sdk.v9_4_0.models.sed_status_node_extended import SedStatusNodeExtended +from isilon_sdk.v9_4_0.models.service_policy_extended_extended import ServicePolicyExtendedExtended +from isilon_sdk.v9_4_0.models.sessions_invalidation_create_params import SessionsInvalidationCreateParams +from isilon_sdk.v9_4_0.models.settings_krb5_domain_create_params import SettingsKrb5DomainCreateParams +from isilon_sdk.v9_4_0.models.settings_krb5_realm_create_params import SettingsKrb5RealmCreateParams +from isilon_sdk.v9_4_0.models.smb_shares_extended import SmbSharesExtended +from isilon_sdk.v9_4_0.models.snapshot_lock_create_params import SnapshotLockCreateParams +from isilon_sdk.v9_4_0.models.snapshot_schedule_create_params import SnapshotScheduleCreateParams +from isilon_sdk.v9_4_0.models.snapshot_snapshot_create_params import SnapshotSnapshotCreateParams +from isilon_sdk.v9_4_0.models.snapshot_snapshot_extended import SnapshotSnapshotExtended +from isilon_sdk.v9_4_0.models.snapshot_writable_extended import SnapshotWritableExtended +from isilon_sdk.v9_4_0.models.statistics_keys_extended import StatisticsKeysExtended +from isilon_sdk.v9_4_0.models.storagepool_nodepool_create_params import StoragepoolNodepoolCreateParams +from isilon_sdk.v9_4_0.models.storagepool_tier_create_params import StoragepoolTierCreateParams +from isilon_sdk.v9_4_0.models.storagepool_tier_extended import StoragepoolTierExtended +from isilon_sdk.v9_4_0.models.subnets_subnet_pools_extended import SubnetsSubnetPoolsExtended +from isilon_sdk.v9_4_0.models.swift_accounts_extended import SwiftAccountsExtended +from isilon_sdk.v9_4_0.models.sync_policy_extended_extended import SyncPolicyExtendedExtended +from isilon_sdk.v9_4_0.models.sync_rule_create_params import SyncRuleCreateParams +from isilon_sdk.v9_4_0.models.sync_rule_extended import SyncRuleExtended +from isilon_sdk.v9_4_0.models.throttling_bw_rule_create_params import ThrottlingBwRuleCreateParams +from isilon_sdk.v9_4_0.models.throttling_bw_rules_extended import ThrottlingBwRulesExtended +from isilon_sdk.v9_4_0.models.worm_domain_create_params import WormDomainCreateParams +from isilon_sdk.v9_4_0.models.worm_domain_extended import WormDomainExtended +from isilon_sdk.v9_4_0.models.worm_domains_extended import WormDomainsExtended +from isilon_sdk.v9_4_0.models.zone_create_params import ZoneCreateParams +from isilon_sdk.v9_4_0.models.zone_extended import ZoneExtended +from isilon_sdk.v9_4_0.models.zone_groups_extended import ZoneGroupsExtended +from isilon_sdk.v9_4_0.models.zone_users_extended import ZoneUsersExtended diff --git a/isilon_sdk/isilon_sdk/v9_4_0/api/__init__.py b/isilon_sdk/isilon_sdk/v9_4_0/api/__init__.py new file mode 100644 index 000000000..d8472f6a2 --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/__init__.py @@ -0,0 +1,75 @@ +from __future__ import absolute_import + +# flake8: noqa + +# import apis into api package +from isilon_sdk.v9_4_0.api.antivirus_api import AntivirusApi +from isilon_sdk.v9_4_0.api.api_api import ApiApi +from isilon_sdk.v9_4_0.api.audit_api import AuditApi +from isilon_sdk.v9_4_0.api.auth_api import AuthApi +from isilon_sdk.v9_4_0.api.auth_groups_api import AuthGroupsApi +from isilon_sdk.v9_4_0.api.auth_providers_api import AuthProvidersApi +from isilon_sdk.v9_4_0.api.auth_roles_api import AuthRolesApi +from isilon_sdk.v9_4_0.api.auth_users_api import AuthUsersApi +from isilon_sdk.v9_4_0.api.avscan_api import AvscanApi +from isilon_sdk.v9_4_0.api.avscan_nodes_api import AvscanNodesApi +from isilon_sdk.v9_4_0.api.catalog_api import CatalogApi +from isilon_sdk.v9_4_0.api.certificate_api import CertificateApi +from isilon_sdk.v9_4_0.api.cloud_api import CloudApi +from isilon_sdk.v9_4_0.api.cluster_api import ClusterApi +from isilon_sdk.v9_4_0.api.cluster_mode_api import ClusterModeApi +from isilon_sdk.v9_4_0.api.cluster_nodes_api import ClusterNodesApi +from isilon_sdk.v9_4_0.api.config_api import ConfigApi +from isilon_sdk.v9_4_0.api.datamover_api import DatamoverApi +from isilon_sdk.v9_4_0.api.debug_api import DebugApi +from isilon_sdk.v9_4_0.api.dedupe_api import DedupeApi +from isilon_sdk.v9_4_0.api.event_api import EventApi +from isilon_sdk.v9_4_0.api.file_filter_api import FileFilterApi +from isilon_sdk.v9_4_0.api.filepool_api import FilepoolApi +from isilon_sdk.v9_4_0.api.filesystem_api import FilesystemApi +from isilon_sdk.v9_4_0.api.fsa_api import FsaApi +from isilon_sdk.v9_4_0.api.fsa_index_api import FsaIndexApi +from isilon_sdk.v9_4_0.api.fsa_results_api import FsaResultsApi +from isilon_sdk.v9_4_0.api.groupnets_summary_api import GroupnetsSummaryApi +from isilon_sdk.v9_4_0.api.hardening_api import HardeningApi +from isilon_sdk.v9_4_0.api.hardware_api import HardwareApi +from isilon_sdk.v9_4_0.api.healthcheck_api import HealthcheckApi +from isilon_sdk.v9_4_0.api.id_resolution_api import IdResolutionApi +from isilon_sdk.v9_4_0.api.id_resolution_zones_api import IdResolutionZonesApi +from isilon_sdk.v9_4_0.api.ipmi_api import IpmiApi +from isilon_sdk.v9_4_0.api.job_api import JobApi +from isilon_sdk.v9_4_0.api.keymanager_api import KeymanagerApi +from isilon_sdk.v9_4_0.api.lfn_api import LfnApi +from isilon_sdk.v9_4_0.api.license_api import LicenseApi +from isilon_sdk.v9_4_0.api.local_api import LocalApi +from isilon_sdk.v9_4_0.api.local_cluster_api import LocalClusterApi +from isilon_sdk.v9_4_0.api.namespace_api import NamespaceApi +from isilon_sdk.v9_4_0.api.network_api import NetworkApi +from isilon_sdk.v9_4_0.api.network_groupnets_api import NetworkGroupnetsApi +from isilon_sdk.v9_4_0.api.network_groupnets_subnets_api import NetworkGroupnetsSubnetsApi +from isilon_sdk.v9_4_0.api.papi_api import PapiApi +from isilon_sdk.v9_4_0.api.performance_api import PerformanceApi +from isilon_sdk.v9_4_0.api.performance_datasets_api import PerformanceDatasetsApi +from isilon_sdk.v9_4_0.api.protocols_api import ProtocolsApi +from isilon_sdk.v9_4_0.api.protocols_hdfs_api import ProtocolsHdfsApi +from isilon_sdk.v9_4_0.api.quota_api import QuotaApi +from isilon_sdk.v9_4_0.api.quota_quotas_api import QuotaQuotasApi +from isilon_sdk.v9_4_0.api.quota_reports_api import QuotaReportsApi +from isilon_sdk.v9_4_0.api.security_api import SecurityApi +from isilon_sdk.v9_4_0.api.snapshot_api import SnapshotApi +from isilon_sdk.v9_4_0.api.snapshot_changelists_api import SnapshotChangelistsApi +from isilon_sdk.v9_4_0.api.snapshot_snapshots_api import SnapshotSnapshotsApi +from isilon_sdk.v9_4_0.api.statistics_api import StatisticsApi +from isilon_sdk.v9_4_0.api.storagepool_api import StoragepoolApi +from isilon_sdk.v9_4_0.api.storagepool_nodetypes_api import StoragepoolNodetypesApi +from isilon_sdk.v9_4_0.api.sync_api import SyncApi +from isilon_sdk.v9_4_0.api.sync_policies_api import SyncPoliciesApi +from isilon_sdk.v9_4_0.api.sync_reports_api import SyncReportsApi +from isilon_sdk.v9_4_0.api.sync_service_api import SyncServiceApi +from isilon_sdk.v9_4_0.api.sync_service_target_api import SyncServiceTargetApi +from isilon_sdk.v9_4_0.api.sync_target_api import SyncTargetApi +from isilon_sdk.v9_4_0.api.upgrade_api import UpgradeApi +from isilon_sdk.v9_4_0.api.upgrade_cluster_api import UpgradeClusterApi +from isilon_sdk.v9_4_0.api.worm_api import WormApi +from isilon_sdk.v9_4_0.api.zones_api import ZonesApi +from isilon_sdk.v9_4_0.api.zones_summary_api import ZonesSummaryApi diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/antivirus_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/antivirus_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/antivirus_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/antivirus_api.py index 6c4fc830d..326dc75ac 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/antivirus_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/antivirus_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class AntivirusApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/api_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/api_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/api_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/api_api.py index 78013cef5..4260144f6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/api_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/api_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class ApiApi(object): @@ -517,7 +517,7 @@ def get_settings_sessions_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/api/settings/sessions', 'GET', + '/platform/14/api/settings/sessions', 'GET', path_params, query_params, header_params, @@ -748,7 +748,7 @@ def update_settings_sessions(self, settings_sessions, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :param SettingsSessionsExtended settings_sessions: (required) + :param SettingsSessionsSettings settings_sessions: (required) :return: None If the method is called asynchronously, returns the request thread. @@ -770,7 +770,7 @@ def update_settings_sessions_with_http_info(self, settings_sessions, **kwargs): >>> result = thread.get() :param async_req bool - :param SettingsSessionsExtended settings_sessions: (required) + :param SettingsSessionsSettings settings_sessions: (required) :return: None If the method is called asynchronously, returns the request thread. @@ -822,7 +822,7 @@ def update_settings_sessions_with_http_info(self, settings_sessions, **kwargs): auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/api/settings/sessions', 'PUT', + '/platform/14/api/settings/sessions', 'PUT', path_params, query_params, header_params, diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/audit_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/audit_api.py similarity index 66% rename from isilon_sdk/isilon_sdk/v9_11_0/api/audit_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/audit_api.py index 6686eefe1..49cc97968 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/audit_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/audit_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class AuditApi(object): @@ -132,105 +132,6 @@ def create_audit_topic_with_http_info(self, audit_topic, **kwargs): # noqa: E50 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def create_certificates_syslog_item(self, certificates_syslog_item, **kwargs): # noqa: E501 - """create_certificates_syslog_item # noqa: E501 - - Import a syslog TLS server certificate. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_certificates_syslog_item(certificates_syslog_item, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param CertificatesSyslogItem certificates_syslog_item: (required) - :return: CreateResponse - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.create_certificates_syslog_item_with_http_info(certificates_syslog_item, **kwargs) # noqa: E501 - else: - (data) = self.create_certificates_syslog_item_with_http_info(certificates_syslog_item, **kwargs) # noqa: E501 - return data - - def create_certificates_syslog_item_with_http_info(self, certificates_syslog_item, **kwargs): # noqa: E501 - """create_certificates_syslog_item # noqa: E501 - - Import a syslog TLS server certificate. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_certificates_syslog_item_with_http_info(certificates_syslog_item, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param CertificatesSyslogItem certificates_syslog_item: (required) - :return: CreateResponse - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['certificates_syslog_item'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method create_certificates_syslog_item" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'certificates_syslog_item' is set - if ('certificates_syslog_item' not in params or - params['certificates_syslog_item'] is None): - raise ValueError("Missing the required parameter `certificates_syslog_item` when calling `create_certificates_syslog_item`") # noqa: E501 - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'certificates_syslog_item' in params: - body_params = params['certificates_syslog_item'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/audit/certificates/syslog', 'POST', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='CreateResponse', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - def delete_audit_logs(self, before, **kwargs): # noqa: E501 """delete_audit_logs # noqa: E501 @@ -433,105 +334,6 @@ def delete_audit_topic_with_http_info(self, audit_topic_id, **kwargs): # noqa: _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def delete_certificates_syslog_by_id(self, certificates_syslog_id, **kwargs): # noqa: E501 - """delete_certificates_syslog_by_id # noqa: E501 - - Delete a syslog TLS server certificate. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_certificates_syslog_by_id(certificates_syslog_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str certificates_syslog_id: Delete a syslog TLS server certificate. (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.delete_certificates_syslog_by_id_with_http_info(certificates_syslog_id, **kwargs) # noqa: E501 - else: - (data) = self.delete_certificates_syslog_by_id_with_http_info(certificates_syslog_id, **kwargs) # noqa: E501 - return data - - def delete_certificates_syslog_by_id_with_http_info(self, certificates_syslog_id, **kwargs): # noqa: E501 - """delete_certificates_syslog_by_id # noqa: E501 - - Delete a syslog TLS server certificate. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_certificates_syslog_by_id_with_http_info(certificates_syslog_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str certificates_syslog_id: Delete a syslog TLS server certificate. (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['certificates_syslog_id'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method delete_certificates_syslog_by_id" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'certificates_syslog_id' is set - if ('certificates_syslog_id' not in params or - params['certificates_syslog_id'] is None): - raise ValueError("Missing the required parameter `certificates_syslog_id` when calling `delete_certificates_syslog_by_id`") # noqa: E501 - - collection_formats = {} - - path_params = {} - if 'certificates_syslog_id' in params: - path_params['CertificatesSyslogId'] = params['certificates_syslog_id'] # noqa: E501 - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/audit/certificates/syslog/{CertificatesSyslogId}', 'DELETE', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - def get_audit_logs(self, **kwargs): # noqa: E501 """get_audit_logs # noqa: E501 @@ -798,7 +600,7 @@ def get_audit_settings_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/audit/settings', 'GET', + '/platform/7/audit/settings', 'GET', path_params, query_params, header_params, @@ -912,105 +714,6 @@ def get_audit_topic_with_http_info(self, audit_topic_id, **kwargs): # noqa: E50 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_certificates_syslog_by_id(self, certificates_syslog_id, **kwargs): # noqa: E501 - """get_certificates_syslog_by_id # noqa: E501 - - Retrieve a syslog TLS server certificate. # 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_certificates_syslog_by_id(certificates_syslog_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str certificates_syslog_id: Retrieve a syslog TLS server certificate. (required) - :return: CertificatesSyslog - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_certificates_syslog_by_id_with_http_info(certificates_syslog_id, **kwargs) # noqa: E501 - else: - (data) = self.get_certificates_syslog_by_id_with_http_info(certificates_syslog_id, **kwargs) # noqa: E501 - return data - - def get_certificates_syslog_by_id_with_http_info(self, certificates_syslog_id, **kwargs): # noqa: E501 - """get_certificates_syslog_by_id # noqa: E501 - - Retrieve a syslog TLS server certificate. # 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_certificates_syslog_by_id_with_http_info(certificates_syslog_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str certificates_syslog_id: Retrieve a syslog TLS server certificate. (required) - :return: CertificatesSyslog - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['certificates_syslog_id'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_certificates_syslog_by_id" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'certificates_syslog_id' is set - if ('certificates_syslog_id' not in params or - params['certificates_syslog_id'] is None): - raise ValueError("Missing the required parameter `certificates_syslog_id` when calling `get_certificates_syslog_by_id`") # noqa: E501 - - collection_formats = {} - - path_params = {} - if 'certificates_syslog_id' in params: - path_params['CertificatesSyslogId'] = params['certificates_syslog_id'] # noqa: E501 - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/audit/certificates/syslog/{CertificatesSyslogId}', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='CertificatesSyslog', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - def get_progress_global(self, **kwargs): # noqa: E501 """get_progress_global # noqa: E501 @@ -1112,7 +815,7 @@ def get_settings_global(self, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :return: SettingsGlobal + :return: SettingsGlobalExtended If the method is called asynchronously, returns the request thread. """ @@ -1133,7 +836,7 @@ def get_settings_global_with_http_info(self, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :return: SettingsGlobal + :return: SettingsGlobalExtended If the method is called asynchronously, returns the request thread. """ @@ -1178,14 +881,14 @@ def get_settings_global_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/audit/settings/global', 'GET', + '/platform/11/audit/settings/global', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='SettingsGlobal', # noqa: E501 + response_type='SettingsGlobalExtended', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -1284,132 +987,6 @@ def list_audit_topics_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def list_certificates_syslog(self, **kwargs): # noqa: E501 - """list_certificates_syslog # noqa: E501 - - Retrieve a list of all syslog TLS server certificates. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_certificates_syslog(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str dir: The direction of the sort. - :param int limit: Return no more than this many results at once (see resume). - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param str sort: The field that will be used for sorting. - :return: CertificatesSyslogExtended - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.list_certificates_syslog_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.list_certificates_syslog_with_http_info(**kwargs) # noqa: E501 - return data - - def list_certificates_syslog_with_http_info(self, **kwargs): # noqa: E501 - """list_certificates_syslog # noqa: E501 - - Retrieve a list of all syslog TLS server certificates. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_certificates_syslog_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str dir: The direction of the sort. - :param int limit: Return no more than this many results at once (see resume). - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param str sort: The field that will be used for sorting. - :return: CertificatesSyslogExtended - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['dir', 'limit', 'resume', 'sort'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method list_certificates_syslog" % key - ) - params[key] = val - del params['kwargs'] - - if ('dir' in params and - len(params['dir']) < 0): - raise ValueError("Invalid value for parameter `dir` when calling `list_certificates_syslog`, length must be greater than or equal to `0`") # noqa: E501 - if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `list_certificates_syslog`, must be a value less than or equal to `4294967295`") # noqa: E501 - if 'limit' in params and params['limit'] < 1: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `list_certificates_syslog`, must be a value greater than or equal to `1`") # noqa: E501 - if ('resume' in params and - len(params['resume']) > 8192): - raise ValueError("Invalid value for parameter `resume` when calling `list_certificates_syslog`, length must be less than or equal to `8192`") # noqa: E501 - if ('resume' in params and - len(params['resume']) < 0): - raise ValueError("Invalid value for parameter `resume` when calling `list_certificates_syslog`, length must be greater than or equal to `0`") # noqa: E501 - if ('sort' in params and - len(params['sort']) > 255): - raise ValueError("Invalid value for parameter `sort` when calling `list_certificates_syslog`, length must be less than or equal to `255`") # noqa: E501 - if ('sort' in params and - len(params['sort']) < 0): - raise ValueError("Invalid value for parameter `sort` when calling `list_certificates_syslog`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'dir' in params: - query_params.append(('dir', params['dir'])) # noqa: E501 - if 'limit' in params: - query_params.append(('limit', params['limit'])) # noqa: E501 - if 'resume' in params: - query_params.append(('resume', params['resume'])) # noqa: E501 - if 'sort' in params: - query_params.append(('sort', params['sort'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/audit/certificates/syslog', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='CertificatesSyslogExtended', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - def update_audit_settings(self, audit_settings, **kwargs): # noqa: E501 """update_audit_settings # noqa: E501 @@ -1498,7 +1075,7 @@ def update_audit_settings_with_http_info(self, audit_settings, **kwargs): # noq auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/audit/settings', 'PUT', + '/platform/7/audit/settings', 'PUT', path_params, query_params, header_params, @@ -1620,113 +1197,6 @@ def update_audit_topic_with_http_info(self, audit_topic, audit_topic_id, **kwarg _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_certificates_syslog_by_id(self, certificates_syslog_id_params, certificates_syslog_id, **kwargs): # noqa: E501 - """update_certificates_syslog_by_id # noqa: E501 - - Modify a syslog TLS server certificate. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_certificates_syslog_by_id(certificates_syslog_id_params, certificates_syslog_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param CertificatesSyslogIdParams certificates_syslog_id_params: (required) - :param str certificates_syslog_id: Modify a syslog TLS server certificate. (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.update_certificates_syslog_by_id_with_http_info(certificates_syslog_id_params, certificates_syslog_id, **kwargs) # noqa: E501 - else: - (data) = self.update_certificates_syslog_by_id_with_http_info(certificates_syslog_id_params, certificates_syslog_id, **kwargs) # noqa: E501 - return data - - def update_certificates_syslog_by_id_with_http_info(self, certificates_syslog_id_params, certificates_syslog_id, **kwargs): # noqa: E501 - """update_certificates_syslog_by_id # noqa: E501 - - Modify a syslog TLS server certificate. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_certificates_syslog_by_id_with_http_info(certificates_syslog_id_params, certificates_syslog_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param CertificatesSyslogIdParams certificates_syslog_id_params: (required) - :param str certificates_syslog_id: Modify a syslog TLS server certificate. (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['certificates_syslog_id_params', 'certificates_syslog_id'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method update_certificates_syslog_by_id" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'certificates_syslog_id_params' is set - if ('certificates_syslog_id_params' not in params or - params['certificates_syslog_id_params'] is None): - raise ValueError("Missing the required parameter `certificates_syslog_id_params` when calling `update_certificates_syslog_by_id`") # noqa: E501 - # verify the required parameter 'certificates_syslog_id' is set - if ('certificates_syslog_id' not in params or - params['certificates_syslog_id'] is None): - raise ValueError("Missing the required parameter `certificates_syslog_id` when calling `update_certificates_syslog_by_id`") # noqa: E501 - - collection_formats = {} - - path_params = {} - if 'certificates_syslog_id' in params: - path_params['CertificatesSyslogId'] = params['certificates_syslog_id'] # noqa: E501 - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'certificates_syslog_id_params' in params: - body_params = params['certificates_syslog_id_params'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/audit/certificates/syslog/{CertificatesSyslogId}', 'PUT', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - def update_settings_global(self, settings_global, **kwargs): # noqa: E501 """update_settings_global # noqa: E501 @@ -1815,7 +1285,7 @@ def update_settings_global_with_http_info(self, settings_global, **kwargs): # n auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/audit/settings/global', 'PUT', + '/platform/11/audit/settings/global', 'PUT', path_params, query_params, header_params, diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/auth_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/auth_api.py similarity index 70% rename from isilon_sdk/isilon_sdk/v9_11_0/api/auth_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/auth_api.py index dea551ff7..d566b7e4a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/auth_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/auth_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class AuthApi(object): @@ -232,7 +232,7 @@ def create_auth_group_with_http_info(self, auth_group, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/17/auth/groups', 'POST', + '/platform/1/auth/groups', 'POST', path_params, query_params, header_params, @@ -440,7 +440,7 @@ def create_auth_role_with_http_info(self, auth_role, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/auth/roles', 'POST', + '/platform/14/auth/roles', 'POST', path_params, query_params, header_params, @@ -551,7 +551,7 @@ def create_auth_user_with_http_info(self, auth_user, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/17/auth/users', 'POST', + '/platform/7/auth/users', 'POST', path_params, query_params, header_params, @@ -792,333 +792,6 @@ def create_mapping_identity_with_http_info(self, mapping_identity, mapping_ident _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def create_oauth_certificate(self, oauth_certificate, **kwargs): # noqa: E501 - """create_oauth_certificate # noqa: E501 - - Create a new certificate. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_oauth_certificate(oauth_certificate, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param OauthCertificateCreateParams oauth_certificate: (required) - :param str zone: Specifies which access zone to use. - :return: CreateOauthCertificateResponse - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.create_oauth_certificate_with_http_info(oauth_certificate, **kwargs) # noqa: E501 - else: - (data) = self.create_oauth_certificate_with_http_info(oauth_certificate, **kwargs) # noqa: E501 - return data - - def create_oauth_certificate_with_http_info(self, oauth_certificate, **kwargs): # noqa: E501 - """create_oauth_certificate # noqa: E501 - - Create a new certificate. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_oauth_certificate_with_http_info(oauth_certificate, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param OauthCertificateCreateParams oauth_certificate: (required) - :param str zone: Specifies which access zone to use. - :return: CreateOauthCertificateResponse - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['oauth_certificate', 'zone'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method create_oauth_certificate" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'oauth_certificate' is set - if ('oauth_certificate' not in params or - params['oauth_certificate'] is None): - raise ValueError("Missing the required parameter `oauth_certificate` when calling `create_oauth_certificate`") # noqa: E501 - - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `create_oauth_certificate`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `create_oauth_certificate`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'oauth_certificate' in params: - body_params = params['oauth_certificate'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/19/auth/oauth/certificates', 'POST', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='CreateOauthCertificateResponse', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def create_oauth_oauth2_client(self, oauth_oauth2_client, **kwargs): # noqa: E501 - """create_oauth_oauth2_client # noqa: E501 - - Create a new OAuth2 client. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_oauth_oauth2_client(oauth_oauth2_client, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param OauthOauth2ClientCreateParams oauth_oauth2_client: (required) - :param str zone: Specifies which access zone to use. - :return: CreateOauthOauth2ClientResponse - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.create_oauth_oauth2_client_with_http_info(oauth_oauth2_client, **kwargs) # noqa: E501 - else: - (data) = self.create_oauth_oauth2_client_with_http_info(oauth_oauth2_client, **kwargs) # noqa: E501 - return data - - def create_oauth_oauth2_client_with_http_info(self, oauth_oauth2_client, **kwargs): # noqa: E501 - """create_oauth_oauth2_client # noqa: E501 - - Create a new OAuth2 client. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_oauth_oauth2_client_with_http_info(oauth_oauth2_client, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param OauthOauth2ClientCreateParams oauth_oauth2_client: (required) - :param str zone: Specifies which access zone to use. - :return: CreateOauthOauth2ClientResponse - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['oauth_oauth2_client', 'zone'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method create_oauth_oauth2_client" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'oauth_oauth2_client' is set - if ('oauth_oauth2_client' not in params or - params['oauth_oauth2_client'] is None): - raise ValueError("Missing the required parameter `oauth_oauth2_client` when calling `create_oauth_oauth2_client`") # noqa: E501 - - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `create_oauth_oauth2_client`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `create_oauth_oauth2_client`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'oauth_oauth2_client' in params: - body_params = params['oauth_oauth2_client'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/19/auth/oauth/oauth2clients', 'POST', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='CreateOauthOauth2ClientResponse', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def create_oauth_oauth2_token_exchange(self, oauth_oauth2_token_exchange, **kwargs): # noqa: E501 - """create_oauth_oauth2_token_exchange # noqa: E501 - - Create a new OAuth2 Token Exchanges configuration. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_oauth_oauth2_token_exchange(oauth_oauth2_token_exchange, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param OauthOauth2TokenExchangeCreateParams oauth_oauth2_token_exchange: (required) - :param str zone: Specifies which access zone to use. - :return: CreateOauthOauth2TokenExchangeResponse - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.create_oauth_oauth2_token_exchange_with_http_info(oauth_oauth2_token_exchange, **kwargs) # noqa: E501 - else: - (data) = self.create_oauth_oauth2_token_exchange_with_http_info(oauth_oauth2_token_exchange, **kwargs) # noqa: E501 - return data - - def create_oauth_oauth2_token_exchange_with_http_info(self, oauth_oauth2_token_exchange, **kwargs): # noqa: E501 - """create_oauth_oauth2_token_exchange # noqa: E501 - - Create a new OAuth2 Token Exchanges configuration. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_oauth_oauth2_token_exchange_with_http_info(oauth_oauth2_token_exchange, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param OauthOauth2TokenExchangeCreateParams oauth_oauth2_token_exchange: (required) - :param str zone: Specifies which access zone to use. - :return: CreateOauthOauth2TokenExchangeResponse - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['oauth_oauth2_token_exchange', 'zone'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method create_oauth_oauth2_token_exchange" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'oauth_oauth2_token_exchange' is set - if ('oauth_oauth2_token_exchange' not in params or - params['oauth_oauth2_token_exchange'] is None): - raise ValueError("Missing the required parameter `oauth_oauth2_token_exchange` when calling `create_oauth_oauth2_token_exchange`") # noqa: E501 - - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `create_oauth_oauth2_token_exchange`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `create_oauth_oauth2_token_exchange`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'oauth_oauth2_token_exchange' in params: - body_params = params['oauth_oauth2_token_exchange'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/19/auth/oauth/oauth2-token-exchanges', 'POST', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='CreateOauthOauth2TokenExchangeResponse', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - def create_providers_ads_item(self, providers_ads_item, **kwargs): # noqa: E501 """create_providers_ads_item # noqa: E501 @@ -1302,7 +975,7 @@ def create_providers_file_item_with_http_info(self, providers_file_item, **kwarg auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/auth/providers/file', 'POST', + '/platform/7/auth/providers/file', 'POST', path_params, query_params, header_params, @@ -1504,7 +1177,7 @@ def create_providers_ldap_item_with_http_info(self, providers_ldap_item, **kwarg auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/auth/providers/ldap', 'POST', + '/platform/11/auth/providers/ldap', 'POST', path_params, query_params, header_params, @@ -1618,45 +1291,45 @@ def create_providers_nis_item_with_http_info(self, providers_nis_item, **kwargs) _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def create_providers_saml_services_cert_extract_item(self, providers_saml_services_cert_extract_item, **kwargs): # noqa: E501 - """create_providers_saml_services_cert_extract_item # noqa: E501 + def create_settings_krb5_domain(self, settings_krb5_domain, **kwargs): # noqa: E501 + """create_settings_krb5_domain # noqa: E501 - Extract certificate information. # noqa: E501 + Create a new krb5 domain. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_providers_saml_services_cert_extract_item(providers_saml_services_cert_extract_item, async_req=True) + >>> thread = api.create_settings_krb5_domain(settings_krb5_domain, async_req=True) >>> result = thread.get() :param async_req bool - :param ProvidersSamlServicesCertExtractItem providers_saml_services_cert_extract_item: (required) - :return: CreateProvidersSamlServicesCertExtractItemResponse + :param SettingsKrb5DomainCreateParams settings_krb5_domain: (required) + :return: CreateResponse If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.create_providers_saml_services_cert_extract_item_with_http_info(providers_saml_services_cert_extract_item, **kwargs) # noqa: E501 + return self.create_settings_krb5_domain_with_http_info(settings_krb5_domain, **kwargs) # noqa: E501 else: - (data) = self.create_providers_saml_services_cert_extract_item_with_http_info(providers_saml_services_cert_extract_item, **kwargs) # noqa: E501 + (data) = self.create_settings_krb5_domain_with_http_info(settings_krb5_domain, **kwargs) # noqa: E501 return data - def create_providers_saml_services_cert_extract_item_with_http_info(self, providers_saml_services_cert_extract_item, **kwargs): # noqa: E501 - """create_providers_saml_services_cert_extract_item # noqa: E501 + def create_settings_krb5_domain_with_http_info(self, settings_krb5_domain, **kwargs): # noqa: E501 + """create_settings_krb5_domain # noqa: E501 - Extract certificate information. # noqa: E501 + Create a new krb5 domain. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_providers_saml_services_cert_extract_item_with_http_info(providers_saml_services_cert_extract_item, async_req=True) + >>> thread = api.create_settings_krb5_domain_with_http_info(settings_krb5_domain, async_req=True) >>> result = thread.get() :param async_req bool - :param ProvidersSamlServicesCertExtractItem providers_saml_services_cert_extract_item: (required) - :return: CreateProvidersSamlServicesCertExtractItemResponse + :param SettingsKrb5DomainCreateParams settings_krb5_domain: (required) + :return: CreateResponse If the method is called asynchronously, returns the request thread. """ - all_params = ['providers_saml_services_cert_extract_item'] # noqa: E501 + all_params = ['settings_krb5_domain'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -1667,14 +1340,14 @@ def create_providers_saml_services_cert_extract_item_with_http_info(self, provid if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method create_providers_saml_services_cert_extract_item" % key + " to method create_settings_krb5_domain" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'providers_saml_services_cert_extract_item' is set - if ('providers_saml_services_cert_extract_item' not in params or - params['providers_saml_services_cert_extract_item'] is None): - raise ValueError("Missing the required parameter `providers_saml_services_cert_extract_item` when calling `create_providers_saml_services_cert_extract_item`") # noqa: E501 + # verify the required parameter 'settings_krb5_domain' is set + if ('settings_krb5_domain' not in params or + params['settings_krb5_domain'] is None): + raise ValueError("Missing the required parameter `settings_krb5_domain` when calling `create_settings_krb5_domain`") # noqa: E501 collection_formats = {} @@ -1688,8 +1361,8 @@ def create_providers_saml_services_cert_extract_item_with_http_info(self, provid local_var_files = {} body_params = None - if 'providers_saml_services_cert_extract_item' in params: - body_params = params['providers_saml_services_cert_extract_item'] + if 'settings_krb5_domain' in params: + body_params = params['settings_krb5_domain'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -1702,14 +1375,14 @@ def create_providers_saml_services_cert_extract_item_with_http_info(self, provid auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/auth/providers/saml-services/cert-extract', 'POST', + '/platform/1/auth/settings/krb5/domains', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='CreateProvidersSamlServicesCertExtractItemResponse', # noqa: E501 + response_type='CreateResponse', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -1717,47 +1390,45 @@ def create_providers_saml_services_cert_extract_item_with_http_info(self, provid _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def create_providers_saml_services_idp(self, providers_saml_services_idp, **kwargs): # noqa: E501 - """create_providers_saml_services_idp # noqa: E501 + def create_settings_krb5_realm(self, settings_krb5_realm, **kwargs): # noqa: E501 + """create_settings_krb5_realm # noqa: E501 - Create a new IDP. # noqa: E501 + Create a new krb5 realm. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_providers_saml_services_idp(providers_saml_services_idp, async_req=True) + >>> thread = api.create_settings_krb5_realm(settings_krb5_realm, async_req=True) >>> result = thread.get() :param async_req bool - :param ProvidersSamlServicesIdpCreateParams providers_saml_services_idp: (required) - :param str zone: Specifies which access zone to use. - :return: CreateProvidersSamlServicesIdpResponse + :param SettingsKrb5RealmCreateParams settings_krb5_realm: (required) + :return: CreateResponse If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.create_providers_saml_services_idp_with_http_info(providers_saml_services_idp, **kwargs) # noqa: E501 + return self.create_settings_krb5_realm_with_http_info(settings_krb5_realm, **kwargs) # noqa: E501 else: - (data) = self.create_providers_saml_services_idp_with_http_info(providers_saml_services_idp, **kwargs) # noqa: E501 + (data) = self.create_settings_krb5_realm_with_http_info(settings_krb5_realm, **kwargs) # noqa: E501 return data - def create_providers_saml_services_idp_with_http_info(self, providers_saml_services_idp, **kwargs): # noqa: E501 - """create_providers_saml_services_idp # noqa: E501 + def create_settings_krb5_realm_with_http_info(self, settings_krb5_realm, **kwargs): # noqa: E501 + """create_settings_krb5_realm # noqa: E501 - Create a new IDP. # noqa: E501 + Create a new krb5 realm. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_providers_saml_services_idp_with_http_info(providers_saml_services_idp, async_req=True) + >>> thread = api.create_settings_krb5_realm_with_http_info(settings_krb5_realm, async_req=True) >>> result = thread.get() :param async_req bool - :param ProvidersSamlServicesIdpCreateParams providers_saml_services_idp: (required) - :param str zone: Specifies which access zone to use. - :return: CreateProvidersSamlServicesIdpResponse + :param SettingsKrb5RealmCreateParams settings_krb5_realm: (required) + :return: CreateResponse If the method is called asynchronously, returns the request thread. """ - all_params = ['providers_saml_services_idp', 'zone'] # noqa: E501 + all_params = ['settings_krb5_realm'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -1768,28 +1439,20 @@ def create_providers_saml_services_idp_with_http_info(self, providers_saml_servi if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method create_providers_saml_services_idp" % key + " to method create_settings_krb5_realm" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'providers_saml_services_idp' is set - if ('providers_saml_services_idp' not in params or - params['providers_saml_services_idp'] is None): - raise ValueError("Missing the required parameter `providers_saml_services_idp` when calling `create_providers_saml_services_idp`") # noqa: E501 + # verify the required parameter 'settings_krb5_realm' is set + if ('settings_krb5_realm' not in params or + params['settings_krb5_realm'] is None): + raise ValueError("Missing the required parameter `settings_krb5_realm` when calling `create_settings_krb5_realm`") # noqa: E501 - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `create_providers_saml_services_idp`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `create_providers_saml_services_idp`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -1797,8 +1460,8 @@ def create_providers_saml_services_idp_with_http_info(self, providers_saml_servi local_var_files = {} body_params = None - if 'providers_saml_services_idp' in params: - body_params = params['providers_saml_services_idp'] + if 'settings_krb5_realm' in params: + body_params = params['settings_krb5_realm'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -1811,14 +1474,14 @@ def create_providers_saml_services_idp_with_http_info(self, providers_saml_servi auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/auth/providers/saml-services/idps', 'POST', + '/platform/1/auth/settings/krb5/realms', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='CreateProvidersSamlServicesIdpResponse', # noqa: E501 + response_type='CreateResponse', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -1826,45 +1489,51 @@ def create_providers_saml_services_idp_with_http_info(self, providers_saml_servi _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def create_providers_saml_services_metadata_extract_item(self, providers_saml_services_metadata_extract_item, **kwargs): # noqa: E501 - """create_providers_saml_services_metadata_extract_item # noqa: E501 + def delete_auth_group(self, auth_group_id, **kwargs): # noqa: E501 + """delete_auth_group # noqa: E501 - Get IDP metadata information to create an IDP on OneFS. # noqa: E501 + Delete the group. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_providers_saml_services_metadata_extract_item(providers_saml_services_metadata_extract_item, async_req=True) + >>> thread = api.delete_auth_group(auth_group_id, async_req=True) >>> result = thread.get() :param async_req bool - :param ProvidersSamlServicesMetadataExtractItem providers_saml_services_metadata_extract_item: (required) - :return: CreateProvidersSamlServicesMetadataExtractItemResponse + :param str auth_group_id: Delete the group. (required) + :param bool cached: If true, flush the group from the cache. + :param str provider: Filter groups by provider. + :param str zone: Filter groups by zone. + :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.create_providers_saml_services_metadata_extract_item_with_http_info(providers_saml_services_metadata_extract_item, **kwargs) # noqa: E501 + return self.delete_auth_group_with_http_info(auth_group_id, **kwargs) # noqa: E501 else: - (data) = self.create_providers_saml_services_metadata_extract_item_with_http_info(providers_saml_services_metadata_extract_item, **kwargs) # noqa: E501 + (data) = self.delete_auth_group_with_http_info(auth_group_id, **kwargs) # noqa: E501 return data - def create_providers_saml_services_metadata_extract_item_with_http_info(self, providers_saml_services_metadata_extract_item, **kwargs): # noqa: E501 - """create_providers_saml_services_metadata_extract_item # noqa: E501 + def delete_auth_group_with_http_info(self, auth_group_id, **kwargs): # noqa: E501 + """delete_auth_group # noqa: E501 - Get IDP metadata information to create an IDP on OneFS. # noqa: E501 + Delete the group. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_providers_saml_services_metadata_extract_item_with_http_info(providers_saml_services_metadata_extract_item, async_req=True) + >>> thread = api.delete_auth_group_with_http_info(auth_group_id, async_req=True) >>> result = thread.get() :param async_req bool - :param ProvidersSamlServicesMetadataExtractItem providers_saml_services_metadata_extract_item: (required) - :return: CreateProvidersSamlServicesMetadataExtractItemResponse + :param str auth_group_id: Delete the group. (required) + :param bool cached: If true, flush the group from the cache. + :param str provider: Filter groups by provider. + :param str zone: Filter groups by zone. + :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['providers_saml_services_metadata_extract_item'] # noqa: E501 + all_params = ['auth_group_id', 'cached', 'provider', 'zone'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -1875,20 +1544,28 @@ def create_providers_saml_services_metadata_extract_item_with_http_info(self, pr if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method create_providers_saml_services_metadata_extract_item" % key + " to method delete_auth_group" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'providers_saml_services_metadata_extract_item' is set - if ('providers_saml_services_metadata_extract_item' not in params or - params['providers_saml_services_metadata_extract_item'] is None): - raise ValueError("Missing the required parameter `providers_saml_services_metadata_extract_item` when calling `create_providers_saml_services_metadata_extract_item`") # noqa: E501 + # verify the required parameter 'auth_group_id' is set + if ('auth_group_id' not in params or + params['auth_group_id'] is None): + raise ValueError("Missing the required parameter `auth_group_id` when calling `delete_auth_group`") # noqa: E501 collection_formats = {} path_params = {} + if 'auth_group_id' in params: + path_params['AuthGroupId'] = params['auth_group_id'] # noqa: E501 query_params = [] + if 'cached' in params: + query_params.append(('cached', params['cached'])) # noqa: E501 + if 'provider' in params: + query_params.append(('provider', params['provider'])) # noqa: E501 + if 'zone' in params: + query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -1896,8 +1573,6 @@ def create_providers_saml_services_metadata_extract_item_with_http_info(self, pr local_var_files = {} body_params = None - if 'providers_saml_services_metadata_extract_item' in params: - body_params = params['providers_saml_services_metadata_extract_item'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -1910,14 +1585,14 @@ def create_providers_saml_services_metadata_extract_item_with_http_info(self, pr auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/auth/providers/saml-services/metadata-extract', 'POST', + '/platform/1/auth/groups/{AuthGroupId}', 'DELETE', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='CreateProvidersSamlServicesMetadataExtractItemResponse', # noqa: E501 + response_type=None, # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -1925,47 +1600,49 @@ def create_providers_saml_services_metadata_extract_item_with_http_info(self, pr _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def create_providers_saml_services_sp_signing_key_rekey_item(self, providers_saml_services_sp_signing_key_rekey_item, **kwargs): # noqa: E501 - """create_providers_saml_services_sp_signing_key_rekey_item # noqa: E501 + def delete_auth_groups(self, **kwargs): # noqa: E501 + """delete_auth_groups # noqa: E501 - Replace the cluster's SAML signing key with a new key and certificate. # noqa: E501 + Flush the groups cache. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_providers_saml_services_sp_signing_key_rekey_item(providers_saml_services_sp_signing_key_rekey_item, async_req=True) + >>> thread = api.delete_auth_groups(async_req=True) >>> result = thread.get() :param async_req bool - :param Empty providers_saml_services_sp_signing_key_rekey_item: (required) - :param str zone: Specifies which access zone to use. - :return: Empty + :param bool cached: If true, only flush cached objects. + :param str provider: Filter groups by provider. + :param str zone: Filter groups by zone. + :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.create_providers_saml_services_sp_signing_key_rekey_item_with_http_info(providers_saml_services_sp_signing_key_rekey_item, **kwargs) # noqa: E501 + return self.delete_auth_groups_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.create_providers_saml_services_sp_signing_key_rekey_item_with_http_info(providers_saml_services_sp_signing_key_rekey_item, **kwargs) # noqa: E501 + (data) = self.delete_auth_groups_with_http_info(**kwargs) # noqa: E501 return data - def create_providers_saml_services_sp_signing_key_rekey_item_with_http_info(self, providers_saml_services_sp_signing_key_rekey_item, **kwargs): # noqa: E501 - """create_providers_saml_services_sp_signing_key_rekey_item # noqa: E501 + def delete_auth_groups_with_http_info(self, **kwargs): # noqa: E501 + """delete_auth_groups # noqa: E501 - Replace the cluster's SAML signing key with a new key and certificate. # noqa: E501 + Flush the groups cache. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_providers_saml_services_sp_signing_key_rekey_item_with_http_info(providers_saml_services_sp_signing_key_rekey_item, async_req=True) + >>> thread = api.delete_auth_groups_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param Empty providers_saml_services_sp_signing_key_rekey_item: (required) - :param str zone: Specifies which access zone to use. - :return: Empty + :param bool cached: If true, only flush cached objects. + :param str provider: Filter groups by provider. + :param str zone: Filter groups by zone. + :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['providers_saml_services_sp_signing_key_rekey_item', 'zone'] # noqa: E501 + all_params = ['cached', 'provider', 'zone'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -1976,26 +1653,20 @@ def create_providers_saml_services_sp_signing_key_rekey_item_with_http_info(self if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method create_providers_saml_services_sp_signing_key_rekey_item" % key + " to method delete_auth_groups" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'providers_saml_services_sp_signing_key_rekey_item' is set - if ('providers_saml_services_sp_signing_key_rekey_item' not in params or - params['providers_saml_services_sp_signing_key_rekey_item'] is None): - raise ValueError("Missing the required parameter `providers_saml_services_sp_signing_key_rekey_item` when calling `create_providers_saml_services_sp_signing_key_rekey_item`") # noqa: E501 - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `create_providers_saml_services_sp_signing_key_rekey_item`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `create_providers_saml_services_sp_signing_key_rekey_item`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] + if 'cached' in params: + query_params.append(('cached', params['cached'])) # noqa: E501 + if 'provider' in params: + query_params.append(('provider', params['provider'])) # noqa: E501 if 'zone' in params: query_params.append(('zone', params['zone'])) # noqa: E501 @@ -2005,8 +1676,6 @@ def create_providers_saml_services_sp_signing_key_rekey_item_with_http_info(self local_var_files = {} body_params = None - if 'providers_saml_services_sp_signing_key_rekey_item' in params: - body_params = params['providers_saml_services_sp_signing_key_rekey_item'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -2019,14 +1688,14 @@ def create_providers_saml_services_sp_signing_key_rekey_item_with_http_info(self auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/auth/providers/saml-services/sp/signing-key/rekey', 'POST', + '/platform/1/auth/groups', 'DELETE', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='Empty', # noqa: E501 + response_type=None, # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -2034,45 +1703,47 @@ def create_providers_saml_services_sp_signing_key_rekey_item_with_http_info(self _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def create_settings_krb5_domain(self, settings_krb5_domain, **kwargs): # noqa: E501 - """create_settings_krb5_domain # noqa: E501 + def delete_auth_role(self, auth_role_id, **kwargs): # noqa: E501 + """delete_auth_role # noqa: E501 - Create a new krb5 domain. # noqa: E501 + Delete the role. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_settings_krb5_domain(settings_krb5_domain, async_req=True) + >>> thread = api.delete_auth_role(auth_role_id, async_req=True) >>> result = thread.get() :param async_req bool - :param SettingsKrb5DomainCreateParams settings_krb5_domain: (required) - :return: CreateResponse + :param str auth_role_id: Delete the role. (required) + :param str zone: Specifies which access zone to use. + :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.create_settings_krb5_domain_with_http_info(settings_krb5_domain, **kwargs) # noqa: E501 + return self.delete_auth_role_with_http_info(auth_role_id, **kwargs) # noqa: E501 else: - (data) = self.create_settings_krb5_domain_with_http_info(settings_krb5_domain, **kwargs) # noqa: E501 + (data) = self.delete_auth_role_with_http_info(auth_role_id, **kwargs) # noqa: E501 return data - def create_settings_krb5_domain_with_http_info(self, settings_krb5_domain, **kwargs): # noqa: E501 - """create_settings_krb5_domain # noqa: E501 + def delete_auth_role_with_http_info(self, auth_role_id, **kwargs): # noqa: E501 + """delete_auth_role # noqa: E501 - Create a new krb5 domain. # noqa: E501 + Delete the role. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_settings_krb5_domain_with_http_info(settings_krb5_domain, async_req=True) + >>> thread = api.delete_auth_role_with_http_info(auth_role_id, async_req=True) >>> result = thread.get() :param async_req bool - :param SettingsKrb5DomainCreateParams settings_krb5_domain: (required) - :return: CreateResponse + :param str auth_role_id: Delete the role. (required) + :param str zone: Specifies which access zone to use. + :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['settings_krb5_domain'] # noqa: E501 + all_params = ['auth_role_id', 'zone'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2083,20 +1754,30 @@ def create_settings_krb5_domain_with_http_info(self, settings_krb5_domain, **kwa if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method create_settings_krb5_domain" % key + " to method delete_auth_role" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'settings_krb5_domain' is set - if ('settings_krb5_domain' not in params or - params['settings_krb5_domain'] is None): - raise ValueError("Missing the required parameter `settings_krb5_domain` when calling `create_settings_krb5_domain`") # noqa: E501 + # verify the required parameter 'auth_role_id' is set + if ('auth_role_id' not in params or + params['auth_role_id'] is None): + raise ValueError("Missing the required parameter `auth_role_id` when calling `delete_auth_role`") # noqa: E501 + if ('zone' in params and + len(params['zone']) > 255): + raise ValueError("Invalid value for parameter `zone` when calling `delete_auth_role`, length must be less than or equal to `255`") # noqa: E501 + if ('zone' in params and + len(params['zone']) < 0): + raise ValueError("Invalid value for parameter `zone` when calling `delete_auth_role`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} + if 'auth_role_id' in params: + path_params['AuthRoleId'] = params['auth_role_id'] # noqa: E501 query_params = [] + if 'zone' in params: + query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -2104,8 +1785,6 @@ def create_settings_krb5_domain_with_http_info(self, settings_krb5_domain, **kwa local_var_files = {} body_params = None - if 'settings_krb5_domain' in params: - body_params = params['settings_krb5_domain'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -2118,14 +1797,14 @@ def create_settings_krb5_domain_with_http_info(self, settings_krb5_domain, **kwa auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/1/auth/settings/krb5/domains', 'POST', + '/platform/14/auth/roles/{AuthRoleId}', 'DELETE', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='CreateResponse', # noqa: E501 + response_type=None, # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -2133,45 +1812,51 @@ def create_settings_krb5_domain_with_http_info(self, settings_krb5_domain, **kwa _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def create_settings_krb5_realm(self, settings_krb5_realm, **kwargs): # noqa: E501 - """create_settings_krb5_realm # noqa: E501 + def delete_auth_user(self, auth_user_id, **kwargs): # noqa: E501 + """delete_auth_user # noqa: E501 - Create a new krb5 realm. # noqa: E501 + Delete the 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.create_settings_krb5_realm(settings_krb5_realm, async_req=True) + >>> thread = api.delete_auth_user(auth_user_id, async_req=True) >>> result = thread.get() :param async_req bool - :param SettingsKrb5RealmCreateParams settings_krb5_realm: (required) - :return: CreateResponse + :param str auth_user_id: Delete the user. (required) + :param bool cached: If true, flush the user from the cache. + :param str provider: Filter users by provider. + :param str zone: Filter users by zone. + :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.create_settings_krb5_realm_with_http_info(settings_krb5_realm, **kwargs) # noqa: E501 + return self.delete_auth_user_with_http_info(auth_user_id, **kwargs) # noqa: E501 else: - (data) = self.create_settings_krb5_realm_with_http_info(settings_krb5_realm, **kwargs) # noqa: E501 + (data) = self.delete_auth_user_with_http_info(auth_user_id, **kwargs) # noqa: E501 return data - def create_settings_krb5_realm_with_http_info(self, settings_krb5_realm, **kwargs): # noqa: E501 - """create_settings_krb5_realm # noqa: E501 + def delete_auth_user_with_http_info(self, auth_user_id, **kwargs): # noqa: E501 + """delete_auth_user # noqa: E501 - Create a new krb5 realm. # noqa: E501 + Delete the 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.create_settings_krb5_realm_with_http_info(settings_krb5_realm, async_req=True) + >>> thread = api.delete_auth_user_with_http_info(auth_user_id, async_req=True) >>> result = thread.get() :param async_req bool - :param SettingsKrb5RealmCreateParams settings_krb5_realm: (required) - :return: CreateResponse + :param str auth_user_id: Delete the user. (required) + :param bool cached: If true, flush the user from the cache. + :param str provider: Filter users by provider. + :param str zone: Filter users by zone. + :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['settings_krb5_realm'] # noqa: E501 + all_params = ['auth_user_id', 'cached', 'provider', 'zone'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2182,20 +1867,28 @@ def create_settings_krb5_realm_with_http_info(self, settings_krb5_realm, **kwarg if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method create_settings_krb5_realm" % key + " to method delete_auth_user" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'settings_krb5_realm' is set - if ('settings_krb5_realm' not in params or - params['settings_krb5_realm'] is None): - raise ValueError("Missing the required parameter `settings_krb5_realm` when calling `create_settings_krb5_realm`") # noqa: E501 + # verify the required parameter 'auth_user_id' is set + if ('auth_user_id' not in params or + params['auth_user_id'] is None): + raise ValueError("Missing the required parameter `auth_user_id` when calling `delete_auth_user`") # noqa: E501 collection_formats = {} path_params = {} + if 'auth_user_id' in params: + path_params['AuthUserId'] = params['auth_user_id'] # noqa: E501 query_params = [] + if 'cached' in params: + query_params.append(('cached', params['cached'])) # noqa: E501 + if 'provider' in params: + query_params.append(('provider', params['provider'])) # noqa: E501 + if 'zone' in params: + query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -2203,8 +1896,6 @@ def create_settings_krb5_realm_with_http_info(self, settings_krb5_realm, **kwarg local_var_files = {} body_params = None - if 'settings_krb5_realm' in params: - body_params = params['settings_krb5_realm'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -2217,14 +1908,14 @@ def create_settings_krb5_realm_with_http_info(self, settings_krb5_realm, **kwarg auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/1/auth/settings/krb5/realms', 'POST', + '/platform/7/auth/users/{AuthUserId}', 'DELETE', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='CreateResponse', # noqa: E501 + response_type=None, # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -2232,51 +1923,49 @@ def create_settings_krb5_realm_with_http_info(self, settings_krb5_realm, **kwarg _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def delete_auth_group(self, auth_group_id, **kwargs): # noqa: E501 - """delete_auth_group # noqa: E501 + def delete_auth_users(self, **kwargs): # noqa: E501 + """delete_auth_users # noqa: E501 - Delete the group. # noqa: E501 + Flush the users cache. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_auth_group(auth_group_id, async_req=True) + >>> thread = api.delete_auth_users(async_req=True) >>> result = thread.get() :param async_req bool - :param str auth_group_id: Delete the group. (required) - :param bool cached: If true, flush the group from the cache. - :param str provider: Filter groups by provider. - :param str zone: Filter groups by zone. + :param bool cached: If true, only flush cached objects. + :param str provider: Filter users by provider. + :param str zone: Filter users by zone. :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.delete_auth_group_with_http_info(auth_group_id, **kwargs) # noqa: E501 + return self.delete_auth_users_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.delete_auth_group_with_http_info(auth_group_id, **kwargs) # noqa: E501 + (data) = self.delete_auth_users_with_http_info(**kwargs) # noqa: E501 return data - def delete_auth_group_with_http_info(self, auth_group_id, **kwargs): # noqa: E501 - """delete_auth_group # noqa: E501 - - Delete the group. # noqa: E501 + def delete_auth_users_with_http_info(self, **kwargs): # noqa: E501 + """delete_auth_users # noqa: E501 + + Flush the users cache. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_auth_group_with_http_info(auth_group_id, async_req=True) + >>> thread = api.delete_auth_users_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param str auth_group_id: Delete the group. (required) - :param bool cached: If true, flush the group from the cache. - :param str provider: Filter groups by provider. - :param str zone: Filter groups by zone. + :param bool cached: If true, only flush cached objects. + :param str provider: Filter users by provider. + :param str zone: Filter users by zone. :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['auth_group_id', 'cached', 'provider', 'zone'] # noqa: E501 + all_params = ['cached', 'provider', 'zone'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2287,20 +1976,14 @@ def delete_auth_group_with_http_info(self, auth_group_id, **kwargs): # noqa: E5 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method delete_auth_group" % key + " to method delete_auth_users" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'auth_group_id' is set - if ('auth_group_id' not in params or - params['auth_group_id'] is None): - raise ValueError("Missing the required parameter `auth_group_id` when calling `delete_auth_group`") # noqa: E501 collection_formats = {} path_params = {} - if 'auth_group_id' in params: - path_params['AuthGroupId'] = params['auth_group_id'] # noqa: E501 query_params = [] if 'cached' in params: @@ -2328,7 +2011,7 @@ def delete_auth_group_with_http_info(self, auth_group_id, **kwargs): # noqa: E5 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/17/auth/groups/{AuthGroupId}', 'DELETE', + '/platform/7/auth/users', 'DELETE', path_params, query_params, header_params, @@ -2343,49 +2026,49 @@ def delete_auth_group_with_http_info(self, auth_group_id, **kwargs): # noqa: E5 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def delete_auth_groups(self, **kwargs): # noqa: E501 - """delete_auth_groups # noqa: E501 + def delete_mapping_identities(self, **kwargs): # noqa: E501 + """delete_mapping_identities # noqa: E501 - Flush the groups cache. # noqa: E501 + Flush the entire idmap cache. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_auth_groups(async_req=True) + >>> thread = api.delete_mapping_identities(async_req=True) >>> result = thread.get() :param async_req bool - :param bool cached: If true, only flush cached objects. - :param str provider: Filter groups by provider. - :param str zone: Filter groups by zone. + :param str filter: Filter to apply when deleting identity mappings. + :param bool remove: Delete mapping instead of flush mapping cache. + :param str zone: Optional zone. :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.delete_auth_groups_with_http_info(**kwargs) # noqa: E501 + return self.delete_mapping_identities_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.delete_auth_groups_with_http_info(**kwargs) # noqa: E501 + (data) = self.delete_mapping_identities_with_http_info(**kwargs) # noqa: E501 return data - def delete_auth_groups_with_http_info(self, **kwargs): # noqa: E501 - """delete_auth_groups # noqa: E501 + def delete_mapping_identities_with_http_info(self, **kwargs): # noqa: E501 + """delete_mapping_identities # noqa: E501 - Flush the groups cache. # noqa: E501 + Flush the entire idmap cache. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_auth_groups_with_http_info(async_req=True) + >>> thread = api.delete_mapping_identities_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param bool cached: If true, only flush cached objects. - :param str provider: Filter groups by provider. - :param str zone: Filter groups by zone. + :param str filter: Filter to apply when deleting identity mappings. + :param bool remove: Delete mapping instead of flush mapping cache. + :param str zone: Optional zone. :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['cached', 'provider', 'zone'] # noqa: E501 + all_params = ['filter', 'remove', 'zone'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2396,7 +2079,7 @@ def delete_auth_groups_with_http_info(self, **kwargs): # noqa: E501 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method delete_auth_groups" % key + " to method delete_mapping_identities" % key ) params[key] = val del params['kwargs'] @@ -2406,10 +2089,10 @@ def delete_auth_groups_with_http_info(self, **kwargs): # noqa: E501 path_params = {} query_params = [] - if 'cached' in params: - query_params.append(('cached', params['cached'])) # noqa: E501 - if 'provider' in params: - query_params.append(('provider', params['provider'])) # noqa: E501 + if 'filter' in params: + query_params.append(('filter', params['filter'])) # noqa: E501 + if 'remove' in params: + query_params.append(('remove', params['remove'])) # noqa: E501 if 'zone' in params: query_params.append(('zone', params['zone'])) # noqa: E501 @@ -2431,7 +2114,7 @@ def delete_auth_groups_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/17/auth/groups', 'DELETE', + '/platform/1/auth/mapping/identities', 'DELETE', path_params, query_params, header_params, @@ -2446,47 +2129,53 @@ def delete_auth_groups_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def delete_auth_role(self, auth_role_id, **kwargs): # noqa: E501 - """delete_auth_role # noqa: E501 + def delete_mapping_identity(self, mapping_identity_id, **kwargs): # noqa: E501 + """delete_mapping_identity # noqa: E501 - Delete the role. # noqa: E501 + Flush the entire idmap cache. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_auth_role(auth_role_id, async_req=True) + >>> thread = api.delete_mapping_identity(mapping_identity_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str auth_role_id: Delete the role. (required) - :param str zone: Specifies which access zone to use. + :param str mapping_identity_id: Flush the entire idmap cache. (required) + :param bool _2way: Delete the bi-directional mapping from source to target and target to source. + :param bool remove: Delete mapping instead of flush mapping from cache. + :param str target: Target identity persona. + :param str zone: Optional zone. :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.delete_auth_role_with_http_info(auth_role_id, **kwargs) # noqa: E501 + return self.delete_mapping_identity_with_http_info(mapping_identity_id, **kwargs) # noqa: E501 else: - (data) = self.delete_auth_role_with_http_info(auth_role_id, **kwargs) # noqa: E501 + (data) = self.delete_mapping_identity_with_http_info(mapping_identity_id, **kwargs) # noqa: E501 return data - def delete_auth_role_with_http_info(self, auth_role_id, **kwargs): # noqa: E501 - """delete_auth_role # noqa: E501 + def delete_mapping_identity_with_http_info(self, mapping_identity_id, **kwargs): # noqa: E501 + """delete_mapping_identity # noqa: E501 - Delete the role. # noqa: E501 + Flush the entire idmap cache. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_auth_role_with_http_info(auth_role_id, async_req=True) + >>> thread = api.delete_mapping_identity_with_http_info(mapping_identity_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str auth_role_id: Delete the role. (required) - :param str zone: Specifies which access zone to use. + :param str mapping_identity_id: Flush the entire idmap cache. (required) + :param bool _2way: Delete the bi-directional mapping from source to target and target to source. + :param bool remove: Delete mapping instead of flush mapping from cache. + :param str target: Target identity persona. + :param str zone: Optional zone. :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['auth_role_id', 'zone'] # noqa: E501 + all_params = ['mapping_identity_id', '_2way', 'remove', 'target', 'zone'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2497,28 +2186,28 @@ def delete_auth_role_with_http_info(self, auth_role_id, **kwargs): # noqa: E501 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method delete_auth_role" % key + " to method delete_mapping_identity" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'auth_role_id' is set - if ('auth_role_id' not in params or - params['auth_role_id'] is None): - raise ValueError("Missing the required parameter `auth_role_id` when calling `delete_auth_role`") # noqa: E501 + # verify the required parameter 'mapping_identity_id' is set + if ('mapping_identity_id' not in params or + params['mapping_identity_id'] is None): + raise ValueError("Missing the required parameter `mapping_identity_id` when calling `delete_mapping_identity`") # noqa: E501 - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `delete_auth_role`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `delete_auth_role`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} - if 'auth_role_id' in params: - path_params['AuthRoleId'] = params['auth_role_id'] # noqa: E501 + if 'mapping_identity_id' in params: + path_params['MappingIdentityId'] = params['mapping_identity_id'] # noqa: E501 query_params = [] + if '_2way' in params: + query_params.append(('2way', params['_2way'])) # noqa: E501 + if 'remove' in params: + query_params.append(('remove', params['remove'])) # noqa: E501 + if 'target' in params: + query_params.append(('target', params['target'])) # noqa: E501 if 'zone' in params: query_params.append(('zone', params['zone'])) # noqa: E501 @@ -2540,7 +2229,7 @@ def delete_auth_role_with_http_info(self, auth_role_id, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/auth/roles/{AuthRoleId}', 'DELETE', + '/platform/1/auth/mapping/identities/{MappingIdentityId}', 'DELETE', path_params, query_params, header_params, @@ -2555,51 +2244,45 @@ def delete_auth_role_with_http_info(self, auth_role_id, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def delete_auth_user(self, auth_user_id, **kwargs): # noqa: E501 - """delete_auth_user # noqa: E501 + def delete_providers_ads_by_id(self, providers_ads_id, **kwargs): # noqa: E501 + """delete_providers_ads_by_id # noqa: E501 - Delete the user. # noqa: E501 + Delete the ADS provider. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_auth_user(auth_user_id, async_req=True) + >>> thread = api.delete_providers_ads_by_id(providers_ads_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str auth_user_id: Delete the user. (required) - :param bool cached: If true, flush the user from the cache. - :param str provider: Filter users by provider. - :param str zone: Filter users by zone. + :param str providers_ads_id: Delete the ADS provider. (required) :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.delete_auth_user_with_http_info(auth_user_id, **kwargs) # noqa: E501 + return self.delete_providers_ads_by_id_with_http_info(providers_ads_id, **kwargs) # noqa: E501 else: - (data) = self.delete_auth_user_with_http_info(auth_user_id, **kwargs) # noqa: E501 + (data) = self.delete_providers_ads_by_id_with_http_info(providers_ads_id, **kwargs) # noqa: E501 return data - def delete_auth_user_with_http_info(self, auth_user_id, **kwargs): # noqa: E501 - """delete_auth_user # noqa: E501 + def delete_providers_ads_by_id_with_http_info(self, providers_ads_id, **kwargs): # noqa: E501 + """delete_providers_ads_by_id # noqa: E501 - Delete the user. # noqa: E501 + Delete the ADS provider. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_auth_user_with_http_info(auth_user_id, async_req=True) + >>> thread = api.delete_providers_ads_by_id_with_http_info(providers_ads_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str auth_user_id: Delete the user. (required) - :param bool cached: If true, flush the user from the cache. - :param str provider: Filter users by provider. - :param str zone: Filter users by zone. + :param str providers_ads_id: Delete the ADS provider. (required) :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['auth_user_id', 'cached', 'provider', 'zone'] # noqa: E501 + all_params = ['providers_ads_id'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2610,28 +2293,22 @@ def delete_auth_user_with_http_info(self, auth_user_id, **kwargs): # noqa: E501 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method delete_auth_user" % key + " to method delete_providers_ads_by_id" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'auth_user_id' is set - if ('auth_user_id' not in params or - params['auth_user_id'] is None): - raise ValueError("Missing the required parameter `auth_user_id` when calling `delete_auth_user`") # noqa: E501 + # verify the required parameter 'providers_ads_id' is set + if ('providers_ads_id' not in params or + params['providers_ads_id'] is None): + raise ValueError("Missing the required parameter `providers_ads_id` when calling `delete_providers_ads_by_id`") # noqa: E501 collection_formats = {} path_params = {} - if 'auth_user_id' in params: - path_params['AuthUserId'] = params['auth_user_id'] # noqa: E501 + if 'providers_ads_id' in params: + path_params['ProvidersAdsId'] = params['providers_ads_id'] # noqa: E501 query_params = [] - if 'cached' in params: - query_params.append(('cached', params['cached'])) # noqa: E501 - if 'provider' in params: - query_params.append(('provider', params['provider'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -2651,7 +2328,7 @@ def delete_auth_user_with_http_info(self, auth_user_id, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/17/auth/users/{AuthUserId}', 'DELETE', + '/platform/14/auth/providers/ads/{ProvidersAdsId}', 'DELETE', path_params, query_params, header_params, @@ -2666,49 +2343,45 @@ def delete_auth_user_with_http_info(self, auth_user_id, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def delete_auth_users(self, **kwargs): # noqa: E501 - """delete_auth_users # noqa: E501 + def delete_providers_file_by_id(self, providers_file_id, **kwargs): # noqa: E501 + """delete_providers_file_by_id # noqa: E501 - Flush the users cache. # noqa: E501 + Delete the file provider. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_auth_users(async_req=True) + >>> thread = api.delete_providers_file_by_id(providers_file_id, async_req=True) >>> result = thread.get() :param async_req bool - :param bool cached: If true, only flush cached objects. - :param str provider: Filter users by provider. - :param str zone: Filter users by zone. + :param str providers_file_id: Delete the file provider. (required) :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.delete_auth_users_with_http_info(**kwargs) # noqa: E501 + return self.delete_providers_file_by_id_with_http_info(providers_file_id, **kwargs) # noqa: E501 else: - (data) = self.delete_auth_users_with_http_info(**kwargs) # noqa: E501 + (data) = self.delete_providers_file_by_id_with_http_info(providers_file_id, **kwargs) # noqa: E501 return data - def delete_auth_users_with_http_info(self, **kwargs): # noqa: E501 - """delete_auth_users # noqa: E501 + def delete_providers_file_by_id_with_http_info(self, providers_file_id, **kwargs): # noqa: E501 + """delete_providers_file_by_id # noqa: E501 - Flush the users cache. # noqa: E501 + Delete the file provider. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_auth_users_with_http_info(async_req=True) + >>> thread = api.delete_providers_file_by_id_with_http_info(providers_file_id, async_req=True) >>> result = thread.get() :param async_req bool - :param bool cached: If true, only flush cached objects. - :param str provider: Filter users by provider. - :param str zone: Filter users by zone. + :param str providers_file_id: Delete the file provider. (required) :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['cached', 'provider', 'zone'] # noqa: E501 + all_params = ['providers_file_id'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2719,22 +2392,22 @@ def delete_auth_users_with_http_info(self, **kwargs): # noqa: E501 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method delete_auth_users" % key + " to method delete_providers_file_by_id" % key ) params[key] = val del params['kwargs'] + # verify the required parameter 'providers_file_id' is set + if ('providers_file_id' not in params or + params['providers_file_id'] is None): + raise ValueError("Missing the required parameter `providers_file_id` when calling `delete_providers_file_by_id`") # noqa: E501 collection_formats = {} path_params = {} + if 'providers_file_id' in params: + path_params['ProvidersFileId'] = params['providers_file_id'] # noqa: E501 query_params = [] - if 'cached' in params: - query_params.append(('cached', params['cached'])) # noqa: E501 - if 'provider' in params: - query_params.append(('provider', params['provider'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -2754,7 +2427,7 @@ def delete_auth_users_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/17/auth/users', 'DELETE', + '/platform/7/auth/providers/file/{ProvidersFileId}', 'DELETE', path_params, query_params, header_params, @@ -2769,49 +2442,45 @@ def delete_auth_users_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def delete_mapping_identities(self, **kwargs): # noqa: E501 - """delete_mapping_identities # noqa: E501 + def delete_providers_krb5_by_id(self, providers_krb5_id, **kwargs): # noqa: E501 + """delete_providers_krb5_by_id # noqa: E501 - Flush the entire idmap cache. # noqa: E501 + Delete the KRB5 provider. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_mapping_identities(async_req=True) + >>> thread = api.delete_providers_krb5_by_id(providers_krb5_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str filter: Filter to apply when deleting identity mappings. - :param bool remove: Delete mapping instead of flush mapping cache. - :param str zone: Optional zone. + :param str providers_krb5_id: Delete the KRB5 provider. (required) :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.delete_mapping_identities_with_http_info(**kwargs) # noqa: E501 + return self.delete_providers_krb5_by_id_with_http_info(providers_krb5_id, **kwargs) # noqa: E501 else: - (data) = self.delete_mapping_identities_with_http_info(**kwargs) # noqa: E501 + (data) = self.delete_providers_krb5_by_id_with_http_info(providers_krb5_id, **kwargs) # noqa: E501 return data - def delete_mapping_identities_with_http_info(self, **kwargs): # noqa: E501 - """delete_mapping_identities # noqa: E501 + def delete_providers_krb5_by_id_with_http_info(self, providers_krb5_id, **kwargs): # noqa: E501 + """delete_providers_krb5_by_id # noqa: E501 - Flush the entire idmap cache. # noqa: E501 + Delete the KRB5 provider. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_mapping_identities_with_http_info(async_req=True) + >>> thread = api.delete_providers_krb5_by_id_with_http_info(providers_krb5_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str filter: Filter to apply when deleting identity mappings. - :param bool remove: Delete mapping instead of flush mapping cache. - :param str zone: Optional zone. + :param str providers_krb5_id: Delete the KRB5 provider. (required) :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['filter', 'remove', 'zone'] # noqa: E501 + all_params = ['providers_krb5_id'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2822,22 +2491,22 @@ def delete_mapping_identities_with_http_info(self, **kwargs): # noqa: E501 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method delete_mapping_identities" % key + " to method delete_providers_krb5_by_id" % key ) params[key] = val del params['kwargs'] + # verify the required parameter 'providers_krb5_id' is set + if ('providers_krb5_id' not in params or + params['providers_krb5_id'] is None): + raise ValueError("Missing the required parameter `providers_krb5_id` when calling `delete_providers_krb5_by_id`") # noqa: E501 collection_formats = {} path_params = {} + if 'providers_krb5_id' in params: + path_params['ProvidersKrb5Id'] = params['providers_krb5_id'] # noqa: E501 query_params = [] - if 'filter' in params: - query_params.append(('filter', params['filter'])) # noqa: E501 - if 'remove' in params: - query_params.append(('remove', params['remove'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -2857,7 +2526,7 @@ def delete_mapping_identities_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/1/auth/mapping/identities', 'DELETE', + '/platform/7/auth/providers/krb5/{ProvidersKrb5Id}', 'DELETE', path_params, query_params, header_params, @@ -2872,53 +2541,45 @@ def delete_mapping_identities_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def delete_mapping_identity(self, mapping_identity_id, **kwargs): # noqa: E501 - """delete_mapping_identity # noqa: E501 + def delete_providers_ldap_by_id(self, providers_ldap_id, **kwargs): # noqa: E501 + """delete_providers_ldap_by_id # noqa: E501 - Flush the entire idmap cache. # noqa: E501 + Delete the LDAP provider. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_mapping_identity(mapping_identity_id, async_req=True) + >>> thread = api.delete_providers_ldap_by_id(providers_ldap_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str mapping_identity_id: Flush the entire idmap cache. (required) - :param bool _2way: Delete the bi-directional mapping from source to target and target to source. - :param bool remove: Delete mapping instead of flush mapping from cache. - :param str target: Target identity persona. - :param str zone: Optional zone. + :param str providers_ldap_id: Delete the LDAP provider. (required) :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.delete_mapping_identity_with_http_info(mapping_identity_id, **kwargs) # noqa: E501 + return self.delete_providers_ldap_by_id_with_http_info(providers_ldap_id, **kwargs) # noqa: E501 else: - (data) = self.delete_mapping_identity_with_http_info(mapping_identity_id, **kwargs) # noqa: E501 + (data) = self.delete_providers_ldap_by_id_with_http_info(providers_ldap_id, **kwargs) # noqa: E501 return data - def delete_mapping_identity_with_http_info(self, mapping_identity_id, **kwargs): # noqa: E501 - """delete_mapping_identity # noqa: E501 + def delete_providers_ldap_by_id_with_http_info(self, providers_ldap_id, **kwargs): # noqa: E501 + """delete_providers_ldap_by_id # noqa: E501 - Flush the entire idmap cache. # noqa: E501 + Delete the LDAP provider. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_mapping_identity_with_http_info(mapping_identity_id, async_req=True) + >>> thread = api.delete_providers_ldap_by_id_with_http_info(providers_ldap_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str mapping_identity_id: Flush the entire idmap cache. (required) - :param bool _2way: Delete the bi-directional mapping from source to target and target to source. - :param bool remove: Delete mapping instead of flush mapping from cache. - :param str target: Target identity persona. - :param str zone: Optional zone. + :param str providers_ldap_id: Delete the LDAP provider. (required) :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['mapping_identity_id', '_2way', 'remove', 'target', 'zone'] # noqa: E501 + all_params = ['providers_ldap_id'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2929,30 +2590,22 @@ def delete_mapping_identity_with_http_info(self, mapping_identity_id, **kwargs): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method delete_mapping_identity" % key + " to method delete_providers_ldap_by_id" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'mapping_identity_id' is set - if ('mapping_identity_id' not in params or - params['mapping_identity_id'] is None): - raise ValueError("Missing the required parameter `mapping_identity_id` when calling `delete_mapping_identity`") # noqa: E501 + # verify the required parameter 'providers_ldap_id' is set + if ('providers_ldap_id' not in params or + params['providers_ldap_id'] is None): + raise ValueError("Missing the required parameter `providers_ldap_id` when calling `delete_providers_ldap_by_id`") # noqa: E501 collection_formats = {} path_params = {} - if 'mapping_identity_id' in params: - path_params['MappingIdentityId'] = params['mapping_identity_id'] # noqa: E501 + if 'providers_ldap_id' in params: + path_params['ProvidersLdapId'] = params['providers_ldap_id'] # noqa: E501 query_params = [] - if '_2way' in params: - query_params.append(('2way', params['_2way'])) # noqa: E501 - if 'remove' in params: - query_params.append(('remove', params['remove'])) # noqa: E501 - if 'target' in params: - query_params.append(('target', params['target'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -2972,7 +2625,7 @@ def delete_mapping_identity_with_http_info(self, mapping_identity_id, **kwargs): auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/1/auth/mapping/identities/{MappingIdentityId}', 'DELETE', + '/platform/11/auth/providers/ldap/{ProvidersLdapId}', 'DELETE', path_params, query_params, header_params, @@ -2987,49 +2640,45 @@ def delete_mapping_identity_with_http_info(self, mapping_identity_id, **kwargs): _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def delete_oauth_certificate(self, oauth_certificate_id, **kwargs): # noqa: E501 - """delete_oauth_certificate # noqa: E501 + def delete_providers_nis_by_id(self, providers_nis_id, **kwargs): # noqa: E501 + """delete_providers_nis_by_id # noqa: E501 - Delete the certificate using its ID. This request is only allowed on certificates for which there is at least one other certificate of the same type, service, and scope with is_current==true, unless using force. # noqa: E501 + Delete the NIS provider. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_oauth_certificate(oauth_certificate_id, async_req=True) + >>> thread = api.delete_providers_nis_by_id(providers_nis_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str oauth_certificate_id: Delete the certificate using its ID. This request is only allowed on certificates for which there is at least one other certificate of the same type, service, and scope with is_current==true, unless using force. (required) - :param bool force: Force delete the certificate. - :param str zone: Specifies which access zone to use. + :param str providers_nis_id: Delete the NIS provider. (required) :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.delete_oauth_certificate_with_http_info(oauth_certificate_id, **kwargs) # noqa: E501 + return self.delete_providers_nis_by_id_with_http_info(providers_nis_id, **kwargs) # noqa: E501 else: - (data) = self.delete_oauth_certificate_with_http_info(oauth_certificate_id, **kwargs) # noqa: E501 + (data) = self.delete_providers_nis_by_id_with_http_info(providers_nis_id, **kwargs) # noqa: E501 return data - def delete_oauth_certificate_with_http_info(self, oauth_certificate_id, **kwargs): # noqa: E501 - """delete_oauth_certificate # noqa: E501 + def delete_providers_nis_by_id_with_http_info(self, providers_nis_id, **kwargs): # noqa: E501 + """delete_providers_nis_by_id # noqa: E501 - Delete the certificate using its ID. This request is only allowed on certificates for which there is at least one other certificate of the same type, service, and scope with is_current==true, unless using force. # noqa: E501 + Delete the NIS provider. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_oauth_certificate_with_http_info(oauth_certificate_id, async_req=True) + >>> thread = api.delete_providers_nis_by_id_with_http_info(providers_nis_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str oauth_certificate_id: Delete the certificate using its ID. This request is only allowed on certificates for which there is at least one other certificate of the same type, service, and scope with is_current==true, unless using force. (required) - :param bool force: Force delete the certificate. - :param str zone: Specifies which access zone to use. + :param str providers_nis_id: Delete the NIS provider. (required) :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['oauth_certificate_id', 'force', 'zone'] # noqa: E501 + all_params = ['providers_nis_id'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -3040,32 +2689,22 @@ def delete_oauth_certificate_with_http_info(self, oauth_certificate_id, **kwargs if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method delete_oauth_certificate" % key + " to method delete_providers_nis_by_id" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'oauth_certificate_id' is set - if ('oauth_certificate_id' not in params or - params['oauth_certificate_id'] is None): - raise ValueError("Missing the required parameter `oauth_certificate_id` when calling `delete_oauth_certificate`") # noqa: E501 + # verify the required parameter 'providers_nis_id' is set + if ('providers_nis_id' not in params or + params['providers_nis_id'] is None): + raise ValueError("Missing the required parameter `providers_nis_id` when calling `delete_providers_nis_by_id`") # noqa: E501 - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `delete_oauth_certificate`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `delete_oauth_certificate`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} - if 'oauth_certificate_id' in params: - path_params['OauthCertificateId'] = params['oauth_certificate_id'] # noqa: E501 + if 'providers_nis_id' in params: + path_params['ProvidersNisId'] = params['providers_nis_id'] # noqa: E501 query_params = [] - if 'force' in params: - query_params.append(('force', params['force'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -3085,7 +2724,7 @@ def delete_oauth_certificate_with_http_info(self, oauth_certificate_id, **kwargs auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/auth/oauth/certificates/{OauthCertificateId}', 'DELETE', + '/platform/7/auth/providers/nis/{ProvidersNisId}', 'DELETE', path_params, query_params, header_params, @@ -3100,47 +2739,45 @@ def delete_oauth_certificate_with_http_info(self, oauth_certificate_id, **kwargs _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def delete_oauth_oauth2_client(self, oauth_oauth2_client_id, **kwargs): # noqa: E501 - """delete_oauth_oauth2_client # noqa: E501 + def delete_settings_krb5_domain(self, settings_krb5_domain_id, **kwargs): # noqa: E501 + """delete_settings_krb5_domain # noqa: E501 - Delete OAuth2 client using its ID. # noqa: E501 + Remove a krb5 domain. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_oauth_oauth2_client(oauth_oauth2_client_id, async_req=True) + >>> thread = api.delete_settings_krb5_domain(settings_krb5_domain_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str oauth_oauth2_client_id: Delete OAuth2 client using its ID. (required) - :param str zone: Specifies which access zone to use. + :param str settings_krb5_domain_id: Remove a krb5 domain. (required) :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.delete_oauth_oauth2_client_with_http_info(oauth_oauth2_client_id, **kwargs) # noqa: E501 + return self.delete_settings_krb5_domain_with_http_info(settings_krb5_domain_id, **kwargs) # noqa: E501 else: - (data) = self.delete_oauth_oauth2_client_with_http_info(oauth_oauth2_client_id, **kwargs) # noqa: E501 + (data) = self.delete_settings_krb5_domain_with_http_info(settings_krb5_domain_id, **kwargs) # noqa: E501 return data - def delete_oauth_oauth2_client_with_http_info(self, oauth_oauth2_client_id, **kwargs): # noqa: E501 - """delete_oauth_oauth2_client # noqa: E501 + def delete_settings_krb5_domain_with_http_info(self, settings_krb5_domain_id, **kwargs): # noqa: E501 + """delete_settings_krb5_domain # noqa: E501 - Delete OAuth2 client using its ID. # noqa: E501 + Remove a krb5 domain. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_oauth_oauth2_client_with_http_info(oauth_oauth2_client_id, async_req=True) + >>> thread = api.delete_settings_krb5_domain_with_http_info(settings_krb5_domain_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str oauth_oauth2_client_id: Delete OAuth2 client using its ID. (required) - :param str zone: Specifies which access zone to use. + :param str settings_krb5_domain_id: Remove a krb5 domain. (required) :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['oauth_oauth2_client_id', 'zone'] # noqa: E501 + all_params = ['settings_krb5_domain_id'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -3151,30 +2788,22 @@ def delete_oauth_oauth2_client_with_http_info(self, oauth_oauth2_client_id, **kw if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method delete_oauth_oauth2_client" % key + " to method delete_settings_krb5_domain" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'oauth_oauth2_client_id' is set - if ('oauth_oauth2_client_id' not in params or - params['oauth_oauth2_client_id'] is None): - raise ValueError("Missing the required parameter `oauth_oauth2_client_id` when calling `delete_oauth_oauth2_client`") # noqa: E501 + # verify the required parameter 'settings_krb5_domain_id' is set + if ('settings_krb5_domain_id' not in params or + params['settings_krb5_domain_id'] is None): + raise ValueError("Missing the required parameter `settings_krb5_domain_id` when calling `delete_settings_krb5_domain`") # noqa: E501 - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `delete_oauth_oauth2_client`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `delete_oauth_oauth2_client`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} - if 'oauth_oauth2_client_id' in params: - path_params['OauthOauth2ClientId'] = params['oauth_oauth2_client_id'] # noqa: E501 + if 'settings_krb5_domain_id' in params: + path_params['SettingsKrb5DomainId'] = params['settings_krb5_domain_id'] # noqa: E501 query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -3194,7 +2823,7 @@ def delete_oauth_oauth2_client_with_http_info(self, oauth_oauth2_client_id, **kw auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/auth/oauth/oauth2clients/{OauthOauth2ClientId}', 'DELETE', + '/platform/1/auth/settings/krb5/domains/{SettingsKrb5DomainId}', 'DELETE', path_params, query_params, header_params, @@ -3209,47 +2838,45 @@ def delete_oauth_oauth2_client_with_http_info(self, oauth_oauth2_client_id, **kw _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def delete_oauth_oauth2_token_exchange(self, oauth_oauth2_token_exchange_id, **kwargs): # noqa: E501 - """delete_oauth_oauth2_token_exchange # noqa: E501 + def delete_settings_krb5_realm(self, settings_krb5_realm_id, **kwargs): # noqa: E501 + """delete_settings_krb5_realm # noqa: E501 - Delete OAuth2 Token Exchange configuration using its ID. # noqa: E501 + Remove a realm. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_oauth_oauth2_token_exchange(oauth_oauth2_token_exchange_id, async_req=True) + >>> thread = api.delete_settings_krb5_realm(settings_krb5_realm_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str oauth_oauth2_token_exchange_id: Delete OAuth2 Token Exchange configuration using its ID. (required) - :param str zone: Specifies which access zone to use. + :param str settings_krb5_realm_id: Remove a realm. (required) :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.delete_oauth_oauth2_token_exchange_with_http_info(oauth_oauth2_token_exchange_id, **kwargs) # noqa: E501 + return self.delete_settings_krb5_realm_with_http_info(settings_krb5_realm_id, **kwargs) # noqa: E501 else: - (data) = self.delete_oauth_oauth2_token_exchange_with_http_info(oauth_oauth2_token_exchange_id, **kwargs) # noqa: E501 + (data) = self.delete_settings_krb5_realm_with_http_info(settings_krb5_realm_id, **kwargs) # noqa: E501 return data - def delete_oauth_oauth2_token_exchange_with_http_info(self, oauth_oauth2_token_exchange_id, **kwargs): # noqa: E501 - """delete_oauth_oauth2_token_exchange # noqa: E501 + def delete_settings_krb5_realm_with_http_info(self, settings_krb5_realm_id, **kwargs): # noqa: E501 + """delete_settings_krb5_realm # noqa: E501 - Delete OAuth2 Token Exchange configuration using its ID. # noqa: E501 + Remove a realm. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_oauth_oauth2_token_exchange_with_http_info(oauth_oauth2_token_exchange_id, async_req=True) + >>> thread = api.delete_settings_krb5_realm_with_http_info(settings_krb5_realm_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str oauth_oauth2_token_exchange_id: Delete OAuth2 Token Exchange configuration using its ID. (required) - :param str zone: Specifies which access zone to use. + :param str settings_krb5_realm_id: Remove a realm. (required) :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['oauth_oauth2_token_exchange_id', 'zone'] # noqa: E501 + all_params = ['settings_krb5_realm_id'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -3260,30 +2887,22 @@ def delete_oauth_oauth2_token_exchange_with_http_info(self, oauth_oauth2_token_e if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method delete_oauth_oauth2_token_exchange" % key + " to method delete_settings_krb5_realm" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'oauth_oauth2_token_exchange_id' is set - if ('oauth_oauth2_token_exchange_id' not in params or - params['oauth_oauth2_token_exchange_id'] is None): - raise ValueError("Missing the required parameter `oauth_oauth2_token_exchange_id` when calling `delete_oauth_oauth2_token_exchange`") # noqa: E501 + # verify the required parameter 'settings_krb5_realm_id' is set + if ('settings_krb5_realm_id' not in params or + params['settings_krb5_realm_id'] is None): + raise ValueError("Missing the required parameter `settings_krb5_realm_id` when calling `delete_settings_krb5_realm`") # noqa: E501 - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `delete_oauth_oauth2_token_exchange`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `delete_oauth_oauth2_token_exchange`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} - if 'oauth_oauth2_token_exchange_id' in params: - path_params['OauthOauth2TokenExchangeId'] = params['oauth_oauth2_token_exchange_id'] # noqa: E501 + if 'settings_krb5_realm_id' in params: + path_params['SettingsKrb5RealmId'] = params['settings_krb5_realm_id'] # noqa: E501 query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -3303,7 +2922,7 @@ def delete_oauth_oauth2_token_exchange_with_http_info(self, oauth_oauth2_token_e auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/auth/oauth/oauth2-token-exchanges/{OauthOauth2TokenExchangeId}', 'DELETE', + '/platform/1/auth/settings/krb5/realms/{SettingsKrb5RealmId}', 'DELETE', path_params, query_params, header_params, @@ -3318,45 +2937,53 @@ def delete_oauth_oauth2_token_exchange_with_http_info(self, oauth_oauth2_token_e _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def delete_providers_ads_by_id(self, providers_ads_id, **kwargs): # noqa: E501 - """delete_providers_ads_by_id # noqa: E501 + def get_auth_access_user(self, auth_access_user, **kwargs): # noqa: E501 + """get_auth_access_user # noqa: E501 - Delete the ADS provider. # noqa: E501 + Determine user's access rights to a file # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_providers_ads_by_id(providers_ads_id, async_req=True) + >>> thread = api.get_auth_access_user(auth_access_user, async_req=True) >>> result = thread.get() :param async_req bool - :param str providers_ads_id: Delete the ADS provider. (required) - :return: None + :param str auth_access_user: Determine user's access rights to a file (required) + :param bool numeric: Show the user's numeric identifier. + :param str path: Path to the file. Must be within /ifs. + :param str share: SMB share name + :param str zone: Access zone the user is in. + :return: AuthAccess If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.delete_providers_ads_by_id_with_http_info(providers_ads_id, **kwargs) # noqa: E501 + return self.get_auth_access_user_with_http_info(auth_access_user, **kwargs) # noqa: E501 else: - (data) = self.delete_providers_ads_by_id_with_http_info(providers_ads_id, **kwargs) # noqa: E501 + (data) = self.get_auth_access_user_with_http_info(auth_access_user, **kwargs) # noqa: E501 return data - def delete_providers_ads_by_id_with_http_info(self, providers_ads_id, **kwargs): # noqa: E501 - """delete_providers_ads_by_id # noqa: E501 + def get_auth_access_user_with_http_info(self, auth_access_user, **kwargs): # noqa: E501 + """get_auth_access_user # noqa: E501 - Delete the ADS provider. # noqa: E501 + Determine user's access rights to a file # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_providers_ads_by_id_with_http_info(providers_ads_id, async_req=True) + >>> thread = api.get_auth_access_user_with_http_info(auth_access_user, async_req=True) >>> result = thread.get() :param async_req bool - :param str providers_ads_id: Delete the ADS provider. (required) - :return: None + :param str auth_access_user: Determine user's access rights to a file (required) + :param bool numeric: Show the user's numeric identifier. + :param str path: Path to the file. Must be within /ifs. + :param str share: SMB share name + :param str zone: Access zone the user is in. + :return: AuthAccess If the method is called asynchronously, returns the request thread. """ - all_params = ['providers_ads_id'] # noqa: E501 + all_params = ['auth_access_user', 'numeric', 'path', 'share', 'zone'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -3367,22 +2994,30 @@ def delete_providers_ads_by_id_with_http_info(self, providers_ads_id, **kwargs): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method delete_providers_ads_by_id" % key + " to method get_auth_access_user" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'providers_ads_id' is set - if ('providers_ads_id' not in params or - params['providers_ads_id'] is None): - raise ValueError("Missing the required parameter `providers_ads_id` when calling `delete_providers_ads_by_id`") # noqa: E501 + # verify the required parameter 'auth_access_user' is set + if ('auth_access_user' not in params or + params['auth_access_user'] is None): + raise ValueError("Missing the required parameter `auth_access_user` when calling `get_auth_access_user`") # noqa: E501 collection_formats = {} path_params = {} - if 'providers_ads_id' in params: - path_params['ProvidersAdsId'] = params['providers_ads_id'] # noqa: E501 + if 'auth_access_user' in params: + path_params['AuthAccessUser'] = params['auth_access_user'] # noqa: E501 query_params = [] + if 'numeric' in params: + query_params.append(('numeric', params['numeric'])) # noqa: E501 + if 'path' in params: + query_params.append(('path', params['path'])) # noqa: E501 + if 'share' in params: + query_params.append(('share', params['share'])) # noqa: E501 + if 'zone' in params: + query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -3402,14 +3037,14 @@ def delete_providers_ads_by_id_with_http_info(self, providers_ads_id, **kwargs): auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/14/auth/providers/ads/{ProvidersAdsId}', 'DELETE', + '/platform/1/auth/access/{AuthAccessUser}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type=None, # noqa: E501 + response_type='AuthAccess', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -3417,45 +3052,45 @@ def delete_providers_ads_by_id_with_http_info(self, providers_ads_id, **kwargs): _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def delete_providers_file_by_id(self, providers_file_id, **kwargs): # noqa: E501 - """delete_providers_file_by_id # noqa: E501 + def get_auth_error_error(self, auth_error_error, **kwargs): # noqa: E501 + """get_auth_error_error # noqa: E501 - Delete the file provider. # noqa: E501 + Get descriptions for auth error codes # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_providers_file_by_id(providers_file_id, async_req=True) + >>> thread = api.get_auth_error_error(auth_error_error, async_req=True) >>> result = thread.get() :param async_req bool - :param str providers_file_id: Delete the file provider. (required) - :return: None + :param str auth_error_error: Get descriptions for auth error codes (required) + :return: AuthError If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.delete_providers_file_by_id_with_http_info(providers_file_id, **kwargs) # noqa: E501 + return self.get_auth_error_error_with_http_info(auth_error_error, **kwargs) # noqa: E501 else: - (data) = self.delete_providers_file_by_id_with_http_info(providers_file_id, **kwargs) # noqa: E501 + (data) = self.get_auth_error_error_with_http_info(auth_error_error, **kwargs) # noqa: E501 return data - def delete_providers_file_by_id_with_http_info(self, providers_file_id, **kwargs): # noqa: E501 - """delete_providers_file_by_id # noqa: E501 + def get_auth_error_error_with_http_info(self, auth_error_error, **kwargs): # noqa: E501 + """get_auth_error_error # noqa: E501 - Delete the file provider. # noqa: E501 + Get descriptions for auth error codes # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_providers_file_by_id_with_http_info(providers_file_id, async_req=True) + >>> thread = api.get_auth_error_error_with_http_info(auth_error_error, async_req=True) >>> result = thread.get() :param async_req bool - :param str providers_file_id: Delete the file provider. (required) - :return: None - If the method is called asynchronously, + :param str auth_error_error: Get descriptions for auth error codes (required) + :return: AuthError + If the method is called asynchronously, returns the request thread. """ - all_params = ['providers_file_id'] # noqa: E501 + all_params = ['auth_error_error'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -3466,20 +3101,20 @@ def delete_providers_file_by_id_with_http_info(self, providers_file_id, **kwargs if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method delete_providers_file_by_id" % key + " to method get_auth_error_error" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'providers_file_id' is set - if ('providers_file_id' not in params or - params['providers_file_id'] is None): - raise ValueError("Missing the required parameter `providers_file_id` when calling `delete_providers_file_by_id`") # noqa: E501 + # verify the required parameter 'auth_error_error' is set + if ('auth_error_error' not in params or + params['auth_error_error'] is None): + raise ValueError("Missing the required parameter `auth_error_error` when calling `get_auth_error_error`") # noqa: E501 collection_formats = {} path_params = {} - if 'providers_file_id' in params: - path_params['ProvidersFileId'] = params['providers_file_id'] # noqa: E501 + if 'auth_error_error' in params: + path_params['AuthErrorError'] = params['auth_error_error'] # noqa: E501 query_params = [] @@ -3501,14 +3136,14 @@ def delete_providers_file_by_id_with_http_info(self, providers_file_id, **kwargs auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/auth/providers/file/{ProvidersFileId}', 'DELETE', + '/platform/7/auth/error/{AuthErrorError}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type=None, # noqa: E501 + response_type='AuthError', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -3516,45 +3151,55 @@ def delete_providers_file_by_id_with_http_info(self, providers_file_id, **kwargs _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def delete_providers_krb5_by_id(self, providers_krb5_id, **kwargs): # noqa: E501 - """delete_providers_krb5_by_id # noqa: E501 + def get_auth_group(self, auth_group_id, **kwargs): # noqa: E501 + """get_auth_group # noqa: E501 - Delete the KRB5 provider. # noqa: E501 + Retrieve the group information. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_providers_krb5_by_id(providers_krb5_id, async_req=True) + >>> thread = api.get_auth_group(auth_group_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str providers_krb5_id: Delete the KRB5 provider. (required) - :return: None + :param str auth_group_id: Retrieve the group information. (required) + :param bool cached: If true, only return cached objects. + :param str provider: Filter groups by provider. + :param bool query_member_of: Enumerate all groups that a group is a member of. + :param bool resolve_names: Resolve names of personas. + :param str zone: Filter groups by zone. + :return: AuthGroups If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.delete_providers_krb5_by_id_with_http_info(providers_krb5_id, **kwargs) # noqa: E501 + return self.get_auth_group_with_http_info(auth_group_id, **kwargs) # noqa: E501 else: - (data) = self.delete_providers_krb5_by_id_with_http_info(providers_krb5_id, **kwargs) # noqa: E501 + (data) = self.get_auth_group_with_http_info(auth_group_id, **kwargs) # noqa: E501 return data - def delete_providers_krb5_by_id_with_http_info(self, providers_krb5_id, **kwargs): # noqa: E501 - """delete_providers_krb5_by_id # noqa: E501 + def get_auth_group_with_http_info(self, auth_group_id, **kwargs): # noqa: E501 + """get_auth_group # noqa: E501 - Delete the KRB5 provider. # noqa: E501 + Retrieve the group information. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_providers_krb5_by_id_with_http_info(providers_krb5_id, async_req=True) + >>> thread = api.get_auth_group_with_http_info(auth_group_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str providers_krb5_id: Delete the KRB5 provider. (required) - :return: None + :param str auth_group_id: Retrieve the group information. (required) + :param bool cached: If true, only return cached objects. + :param str provider: Filter groups by provider. + :param bool query_member_of: Enumerate all groups that a group is a member of. + :param bool resolve_names: Resolve names of personas. + :param str zone: Filter groups by zone. + :return: AuthGroups If the method is called asynchronously, returns the request thread. """ - all_params = ['providers_krb5_id'] # noqa: E501 + all_params = ['auth_group_id', 'cached', 'provider', 'query_member_of', 'resolve_names', 'zone'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -3565,22 +3210,32 @@ def delete_providers_krb5_by_id_with_http_info(self, providers_krb5_id, **kwargs if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method delete_providers_krb5_by_id" % key + " to method get_auth_group" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'providers_krb5_id' is set - if ('providers_krb5_id' not in params or - params['providers_krb5_id'] is None): - raise ValueError("Missing the required parameter `providers_krb5_id` when calling `delete_providers_krb5_by_id`") # noqa: E501 + # verify the required parameter 'auth_group_id' is set + if ('auth_group_id' not in params or + params['auth_group_id'] is None): + raise ValueError("Missing the required parameter `auth_group_id` when calling `get_auth_group`") # noqa: E501 collection_formats = {} path_params = {} - if 'providers_krb5_id' in params: - path_params['ProvidersKrb5Id'] = params['providers_krb5_id'] # noqa: E501 + if 'auth_group_id' in params: + path_params['AuthGroupId'] = params['auth_group_id'] # noqa: E501 query_params = [] + if 'cached' in params: + query_params.append(('cached', params['cached'])) # noqa: E501 + if 'provider' in params: + query_params.append(('provider', params['provider'])) # noqa: E501 + if 'query_member_of' in params: + query_params.append(('query_member_of', params['query_member_of'])) # noqa: E501 + if 'resolve_names' in params: + query_params.append(('resolve_names', params['resolve_names'])) # noqa: E501 + if 'zone' in params: + query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -3600,14 +3255,14 @@ def delete_providers_krb5_by_id_with_http_info(self, providers_krb5_id, **kwargs auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/7/auth/providers/krb5/{ProvidersKrb5Id}', 'DELETE', + '/platform/1/auth/groups/{AuthGroupId}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type=None, # noqa: E501 + response_type='AuthGroups', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -3615,45 +3270,45 @@ def delete_providers_krb5_by_id_with_http_info(self, providers_krb5_id, **kwargs _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def delete_providers_ldap_by_id(self, providers_ldap_id, **kwargs): # noqa: E501 - """delete_providers_ldap_by_id # noqa: E501 + def get_auth_id(self, **kwargs): # noqa: E501 + """get_auth_id # noqa: E501 - Delete the LDAP provider. # noqa: E501 + Retrieve the current security token. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_providers_ldap_by_id(providers_ldap_id, async_req=True) + >>> thread = api.get_auth_id(async_req=True) >>> result = thread.get() :param async_req bool - :param str providers_ldap_id: Delete the LDAP provider. (required) - :return: None + :param bool listchildprivs: A list of child privileges for the current security token. + :return: AuthId If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.delete_providers_ldap_by_id_with_http_info(providers_ldap_id, **kwargs) # noqa: E501 + return self.get_auth_id_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.delete_providers_ldap_by_id_with_http_info(providers_ldap_id, **kwargs) # noqa: E501 + (data) = self.get_auth_id_with_http_info(**kwargs) # noqa: E501 return data - def delete_providers_ldap_by_id_with_http_info(self, providers_ldap_id, **kwargs): # noqa: E501 - """delete_providers_ldap_by_id # noqa: E501 + def get_auth_id_with_http_info(self, **kwargs): # noqa: E501 + """get_auth_id # noqa: E501 - Delete the LDAP provider. # noqa: E501 + Retrieve the current security token. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_providers_ldap_by_id_with_http_info(providers_ldap_id, async_req=True) + >>> thread = api.get_auth_id_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param str providers_ldap_id: Delete the LDAP provider. (required) - :return: None + :param bool listchildprivs: A list of child privileges for the current security token. + :return: AuthId If the method is called asynchronously, returns the request thread. """ - all_params = ['providers_ldap_id'] # noqa: E501 + all_params = ['listchildprivs'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -3664,22 +3319,18 @@ def delete_providers_ldap_by_id_with_http_info(self, providers_ldap_id, **kwargs if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method delete_providers_ldap_by_id" % key + " to method get_auth_id" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'providers_ldap_id' is set - if ('providers_ldap_id' not in params or - params['providers_ldap_id'] is None): - raise ValueError("Missing the required parameter `providers_ldap_id` when calling `delete_providers_ldap_by_id`") # noqa: E501 collection_formats = {} path_params = {} - if 'providers_ldap_id' in params: - path_params['ProvidersLdapId'] = params['providers_ldap_id'] # noqa: E501 query_params = [] + if 'listchildprivs' in params: + query_params.append(('listchildprivs', params['listchildprivs'])) # noqa: E501 header_params = {} @@ -3699,14 +3350,14 @@ def delete_providers_ldap_by_id_with_http_info(self, providers_ldap_id, **kwargs auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/auth/providers/ldap/{ProvidersLdapId}', 'DELETE', + '/platform/14/auth/id', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type=None, # noqa: E501 + response_type='AuthId', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -3714,45 +3365,45 @@ def delete_providers_ldap_by_id_with_http_info(self, providers_ldap_id, **kwargs _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def delete_providers_nis_by_id(self, providers_nis_id, **kwargs): # noqa: E501 - """delete_providers_nis_by_id # noqa: E501 + def get_auth_ldap_template(self, auth_ldap_template_id, **kwargs): # noqa: E501 + """get_auth_ldap_template # noqa: E501 - Delete the NIS provider. # noqa: E501 + Retrieve the LDAP provider template. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_providers_nis_by_id(providers_nis_id, async_req=True) + >>> thread = api.get_auth_ldap_template(auth_ldap_template_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str providers_nis_id: Delete the NIS provider. (required) - :return: None + :param str auth_ldap_template_id: Retrieve the LDAP provider template. (required) + :return: AuthLdapTemplates If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.delete_providers_nis_by_id_with_http_info(providers_nis_id, **kwargs) # noqa: E501 + return self.get_auth_ldap_template_with_http_info(auth_ldap_template_id, **kwargs) # noqa: E501 else: - (data) = self.delete_providers_nis_by_id_with_http_info(providers_nis_id, **kwargs) # noqa: E501 + (data) = self.get_auth_ldap_template_with_http_info(auth_ldap_template_id, **kwargs) # noqa: E501 return data - def delete_providers_nis_by_id_with_http_info(self, providers_nis_id, **kwargs): # noqa: E501 - """delete_providers_nis_by_id # noqa: E501 + def get_auth_ldap_template_with_http_info(self, auth_ldap_template_id, **kwargs): # noqa: E501 + """get_auth_ldap_template # noqa: E501 - Delete the NIS provider. # noqa: E501 + Retrieve the LDAP provider template. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_providers_nis_by_id_with_http_info(providers_nis_id, async_req=True) + >>> thread = api.get_auth_ldap_template_with_http_info(auth_ldap_template_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str providers_nis_id: Delete the NIS provider. (required) - :return: None + :param str auth_ldap_template_id: Retrieve the LDAP provider template. (required) + :return: AuthLdapTemplates If the method is called asynchronously, returns the request thread. """ - all_params = ['providers_nis_id'] # noqa: E501 + all_params = ['auth_ldap_template_id'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -3763,20 +3414,20 @@ def delete_providers_nis_by_id_with_http_info(self, providers_nis_id, **kwargs): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method delete_providers_nis_by_id" % key + " to method get_auth_ldap_template" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'providers_nis_id' is set - if ('providers_nis_id' not in params or - params['providers_nis_id'] is None): - raise ValueError("Missing the required parameter `providers_nis_id` when calling `delete_providers_nis_by_id`") # noqa: E501 + # verify the required parameter 'auth_ldap_template_id' is set + if ('auth_ldap_template_id' not in params or + params['auth_ldap_template_id'] is None): + raise ValueError("Missing the required parameter `auth_ldap_template_id` when calling `get_auth_ldap_template`") # noqa: E501 collection_formats = {} path_params = {} - if 'providers_nis_id' in params: - path_params['ProvidersNisId'] = params['providers_nis_id'] # noqa: E501 + if 'auth_ldap_template_id' in params: + path_params['AuthLdapTemplateId'] = params['auth_ldap_template_id'] # noqa: E501 query_params = [] @@ -3798,14 +3449,14 @@ def delete_providers_nis_by_id_with_http_info(self, providers_nis_id, **kwargs): auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/7/auth/providers/nis/{ProvidersNisId}', 'DELETE', + '/platform/7/auth/ldap-templates/{AuthLdapTemplateId}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type=None, # noqa: E501 + response_type='AuthLdapTemplates', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -3813,47 +3464,43 @@ def delete_providers_nis_by_id_with_http_info(self, providers_nis_id, **kwargs): _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def delete_providers_saml_services_idp(self, providers_saml_services_idp_id, **kwargs): # noqa: E501 - """delete_providers_saml_services_idp # noqa: E501 + def get_auth_ldap_templates(self, **kwargs): # noqa: E501 + """get_auth_ldap_templates # noqa: E501 - Delete IDP using its ID. # noqa: E501 + List all LDAP provider templates. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_providers_saml_services_idp(providers_saml_services_idp_id, async_req=True) + >>> thread = api.get_auth_ldap_templates(async_req=True) >>> result = thread.get() :param async_req bool - :param str providers_saml_services_idp_id: Delete IDP using its ID. (required) - :param str zone: Specifies which access zone to use. - :return: None + :return: AuthLdapTemplatesExtended If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.delete_providers_saml_services_idp_with_http_info(providers_saml_services_idp_id, **kwargs) # noqa: E501 + return self.get_auth_ldap_templates_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.delete_providers_saml_services_idp_with_http_info(providers_saml_services_idp_id, **kwargs) # noqa: E501 + (data) = self.get_auth_ldap_templates_with_http_info(**kwargs) # noqa: E501 return data - def delete_providers_saml_services_idp_with_http_info(self, providers_saml_services_idp_id, **kwargs): # noqa: E501 - """delete_providers_saml_services_idp # noqa: E501 + def get_auth_ldap_templates_with_http_info(self, **kwargs): # noqa: E501 + """get_auth_ldap_templates # noqa: E501 - Delete IDP using its ID. # noqa: E501 + List all LDAP provider templates. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_providers_saml_services_idp_with_http_info(providers_saml_services_idp_id, async_req=True) + >>> thread = api.get_auth_ldap_templates_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param str providers_saml_services_idp_id: Delete IDP using its ID. (required) - :param str zone: Specifies which access zone to use. - :return: None + :return: AuthLdapTemplatesExtended If the method is called asynchronously, returns the request thread. """ - all_params = ['providers_saml_services_idp_id', 'zone'] # noqa: E501 + all_params = [] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -3864,30 +3511,16 @@ def delete_providers_saml_services_idp_with_http_info(self, providers_saml_servi if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method delete_providers_saml_services_idp" % key + " to method get_auth_ldap_templates" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'providers_saml_services_idp_id' is set - if ('providers_saml_services_idp_id' not in params or - params['providers_saml_services_idp_id'] is None): - raise ValueError("Missing the required parameter `providers_saml_services_idp_id` when calling `delete_providers_saml_services_idp`") # noqa: E501 - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `delete_providers_saml_services_idp`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `delete_providers_saml_services_idp`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} - if 'providers_saml_services_idp_id' in params: - path_params['ProvidersSamlServicesIdpId'] = params['providers_saml_services_idp_id'] # noqa: E501 query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -3907,14 +3540,14 @@ def delete_providers_saml_services_idp_with_http_info(self, providers_saml_servi auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/auth/providers/saml-services/idps/{ProvidersSamlServicesIdpId}', 'DELETE', + '/platform/7/auth/ldap-templates', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type=None, # noqa: E501 + response_type='AuthLdapTemplatesExtended', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -3922,45 +3555,43 @@ def delete_providers_saml_services_idp_with_http_info(self, providers_saml_servi _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def delete_settings_krb5_domain(self, settings_krb5_domain_id, **kwargs): # noqa: E501 - """delete_settings_krb5_domain # noqa: E501 + def get_auth_log_level(self, **kwargs): # noqa: E501 + """get_auth_log_level # noqa: E501 - Remove a krb5 domain. # noqa: E501 + Get the current authentications service and netlogon logging level. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_settings_krb5_domain(settings_krb5_domain_id, async_req=True) + >>> thread = api.get_auth_log_level(async_req=True) >>> result = thread.get() :param async_req bool - :param str settings_krb5_domain_id: Remove a krb5 domain. (required) - :return: None + :return: AuthLogLevel If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.delete_settings_krb5_domain_with_http_info(settings_krb5_domain_id, **kwargs) # noqa: E501 + return self.get_auth_log_level_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.delete_settings_krb5_domain_with_http_info(settings_krb5_domain_id, **kwargs) # noqa: E501 + (data) = self.get_auth_log_level_with_http_info(**kwargs) # noqa: E501 return data - def delete_settings_krb5_domain_with_http_info(self, settings_krb5_domain_id, **kwargs): # noqa: E501 - """delete_settings_krb5_domain # noqa: E501 + def get_auth_log_level_with_http_info(self, **kwargs): # noqa: E501 + """get_auth_log_level # noqa: E501 - Remove a krb5 domain. # noqa: E501 + Get the current authentications service and netlogon logging level. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_settings_krb5_domain_with_http_info(settings_krb5_domain_id, async_req=True) + >>> thread = api.get_auth_log_level_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param str settings_krb5_domain_id: Remove a krb5 domain. (required) - :return: None + :return: AuthLogLevel If the method is called asynchronously, returns the request thread. """ - all_params = ['settings_krb5_domain_id'] # noqa: E501 + all_params = [] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -3971,20 +3602,14 @@ def delete_settings_krb5_domain_with_http_info(self, settings_krb5_domain_id, ** if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method delete_settings_krb5_domain" % key + " to method get_auth_log_level" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'settings_krb5_domain_id' is set - if ('settings_krb5_domain_id' not in params or - params['settings_krb5_domain_id'] is None): - raise ValueError("Missing the required parameter `settings_krb5_domain_id` when calling `delete_settings_krb5_domain`") # noqa: E501 collection_formats = {} path_params = {} - if 'settings_krb5_domain_id' in params: - path_params['SettingsKrb5DomainId'] = params['settings_krb5_domain_id'] # noqa: E501 query_params = [] @@ -4006,14 +3631,14 @@ def delete_settings_krb5_domain_with_http_info(self, settings_krb5_domain_id, ** auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/1/auth/settings/krb5/domains/{SettingsKrb5DomainId}', 'DELETE', + '/platform/12/auth/log-level', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type=None, # noqa: E501 + response_type='AuthLogLevel', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -4021,45 +3646,53 @@ def delete_settings_krb5_domain_with_http_info(self, settings_krb5_domain_id, ** _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def delete_settings_krb5_realm(self, settings_krb5_realm_id, **kwargs): # noqa: E501 - """delete_settings_krb5_realm # noqa: E501 + def get_auth_netgroup(self, auth_netgroup_id, **kwargs): # noqa: E501 + """get_auth_netgroup # noqa: E501 - Remove a realm. # noqa: E501 + Retrieve the user information. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_settings_krb5_realm(settings_krb5_realm_id, async_req=True) + >>> thread = api.get_auth_netgroup(auth_netgroup_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str settings_krb5_realm_id: Remove a realm. (required) - :return: None - If the method is called asynchronously, - returns the request thread. + :param str auth_netgroup_id: Retrieve the user information. (required) + :param bool ignore_errors: Ignore netgroup errors. + :param str provider: Filter users by provider. + :param bool recursive: Perform recursive search. + :param str zone: Filter users by zone. + :return: AuthNetgroups + If the method is called asynchronously, + returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.delete_settings_krb5_realm_with_http_info(settings_krb5_realm_id, **kwargs) # noqa: E501 + return self.get_auth_netgroup_with_http_info(auth_netgroup_id, **kwargs) # noqa: E501 else: - (data) = self.delete_settings_krb5_realm_with_http_info(settings_krb5_realm_id, **kwargs) # noqa: E501 + (data) = self.get_auth_netgroup_with_http_info(auth_netgroup_id, **kwargs) # noqa: E501 return data - def delete_settings_krb5_realm_with_http_info(self, settings_krb5_realm_id, **kwargs): # noqa: E501 - """delete_settings_krb5_realm # noqa: E501 + def get_auth_netgroup_with_http_info(self, auth_netgroup_id, **kwargs): # noqa: E501 + """get_auth_netgroup # noqa: E501 - Remove a realm. # noqa: E501 + Retrieve the user information. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_settings_krb5_realm_with_http_info(settings_krb5_realm_id, async_req=True) + >>> thread = api.get_auth_netgroup_with_http_info(auth_netgroup_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str settings_krb5_realm_id: Remove a realm. (required) - :return: None + :param str auth_netgroup_id: Retrieve the user information. (required) + :param bool ignore_errors: Ignore netgroup errors. + :param str provider: Filter users by provider. + :param bool recursive: Perform recursive search. + :param str zone: Filter users by zone. + :return: AuthNetgroups If the method is called asynchronously, returns the request thread. """ - all_params = ['settings_krb5_realm_id'] # noqa: E501 + all_params = ['auth_netgroup_id', 'ignore_errors', 'provider', 'recursive', 'zone'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -4070,22 +3703,30 @@ def delete_settings_krb5_realm_with_http_info(self, settings_krb5_realm_id, **kw if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method delete_settings_krb5_realm" % key + " to method get_auth_netgroup" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'settings_krb5_realm_id' is set - if ('settings_krb5_realm_id' not in params or - params['settings_krb5_realm_id'] is None): - raise ValueError("Missing the required parameter `settings_krb5_realm_id` when calling `delete_settings_krb5_realm`") # noqa: E501 + # verify the required parameter 'auth_netgroup_id' is set + if ('auth_netgroup_id' not in params or + params['auth_netgroup_id'] is None): + raise ValueError("Missing the required parameter `auth_netgroup_id` when calling `get_auth_netgroup`") # noqa: E501 collection_formats = {} path_params = {} - if 'settings_krb5_realm_id' in params: - path_params['SettingsKrb5RealmId'] = params['settings_krb5_realm_id'] # noqa: E501 + if 'auth_netgroup_id' in params: + path_params['AuthNetgroupId'] = params['auth_netgroup_id'] # noqa: E501 query_params = [] + if 'ignore_errors' in params: + query_params.append(('ignore_errors', params['ignore_errors'])) # noqa: E501 + if 'provider' in params: + query_params.append(('provider', params['provider'])) # noqa: E501 + if 'recursive' in params: + query_params.append(('recursive', params['recursive'])) # noqa: E501 + if 'zone' in params: + query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -4105,14 +3746,14 @@ def delete_settings_krb5_realm_with_http_info(self, settings_krb5_realm_id, **kw auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/1/auth/settings/krb5/realms/{SettingsKrb5RealmId}', 'DELETE', + '/platform/1/auth/netgroups/{AuthNetgroupId}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type=None, # noqa: E501 + response_type='AuthNetgroups', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -4120,53 +3761,45 @@ def delete_settings_krb5_realm_with_http_info(self, settings_krb5_realm_id, **kw _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_auth_access_user(self, auth_access_user, **kwargs): # noqa: E501 - """get_auth_access_user # noqa: E501 + def get_auth_privileges(self, **kwargs): # noqa: E501 + """get_auth_privileges # noqa: E501 - Determine user's access rights to a file # noqa: E501 + List all privileges. # 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_auth_access_user(auth_access_user, async_req=True) + >>> thread = api.get_auth_privileges(async_req=True) >>> result = thread.get() :param async_req bool - :param str auth_access_user: Determine user's access rights to a file (required) - :param bool numeric: Show the user's numeric identifier. - :param str path: Path to the file. Must be within /ifs. - :param str share: SMB share name - :param str zone: Access zone the user is in. - :return: AuthAccess + :param str zone: Specifies which access zone to use. + :return: AuthPrivileges If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_auth_access_user_with_http_info(auth_access_user, **kwargs) # noqa: E501 + return self.get_auth_privileges_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.get_auth_access_user_with_http_info(auth_access_user, **kwargs) # noqa: E501 + (data) = self.get_auth_privileges_with_http_info(**kwargs) # noqa: E501 return data - def get_auth_access_user_with_http_info(self, auth_access_user, **kwargs): # noqa: E501 - """get_auth_access_user # noqa: E501 + def get_auth_privileges_with_http_info(self, **kwargs): # noqa: E501 + """get_auth_privileges # noqa: E501 - Determine user's access rights to a file # noqa: E501 + List all privileges. # 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_auth_access_user_with_http_info(auth_access_user, async_req=True) + >>> thread = api.get_auth_privileges_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param str auth_access_user: Determine user's access rights to a file (required) - :param bool numeric: Show the user's numeric identifier. - :param str path: Path to the file. Must be within /ifs. - :param str share: SMB share name - :param str zone: Access zone the user is in. - :return: AuthAccess + :param str zone: Specifies which access zone to use. + :return: AuthPrivileges If the method is called asynchronously, returns the request thread. """ - all_params = ['auth_access_user', 'numeric', 'path', 'share', 'zone'] # noqa: E501 + all_params = ['zone'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -4177,28 +3810,22 @@ def get_auth_access_user_with_http_info(self, auth_access_user, **kwargs): # no if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_auth_access_user" % key + " to method get_auth_privileges" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'auth_access_user' is set - if ('auth_access_user' not in params or - params['auth_access_user'] is None): - raise ValueError("Missing the required parameter `auth_access_user` when calling `get_auth_access_user`") # noqa: E501 + if ('zone' in params and + len(params['zone']) > 255): + raise ValueError("Invalid value for parameter `zone` when calling `get_auth_privileges`, length must be less than or equal to `255`") # noqa: E501 + if ('zone' in params and + len(params['zone']) < 0): + raise ValueError("Invalid value for parameter `zone` when calling `get_auth_privileges`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} - if 'auth_access_user' in params: - path_params['AuthAccessUser'] = params['auth_access_user'] # noqa: E501 query_params = [] - if 'numeric' in params: - query_params.append(('numeric', params['numeric'])) # noqa: E501 - if 'path' in params: - query_params.append(('path', params['path'])) # noqa: E501 - if 'share' in params: - query_params.append(('share', params['share'])) # noqa: E501 if 'zone' in params: query_params.append(('zone', params['zone'])) # noqa: E501 @@ -4220,14 +3847,14 @@ def get_auth_access_user_with_http_info(self, auth_access_user, **kwargs): # no auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/1/auth/access/{AuthAccessUser}', 'GET', + '/platform/14/auth/privileges', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='AuthAccess', # noqa: E501 + response_type='AuthPrivileges', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -4235,45 +3862,49 @@ def get_auth_access_user_with_http_info(self, auth_access_user, **kwargs): # no _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_auth_error_error(self, auth_error_error, **kwargs): # noqa: E501 - """get_auth_error_error # noqa: E501 + def get_auth_role(self, auth_role_id, **kwargs): # noqa: E501 + """get_auth_role # noqa: E501 - Get descriptions for auth error codes # noqa: E501 + Retrieve the role information. # 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_auth_error_error(auth_error_error, async_req=True) + >>> thread = api.get_auth_role(auth_role_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str auth_error_error: Get descriptions for auth error codes (required) - :return: AuthError + :param str auth_role_id: Retrieve the role information. (required) + :param bool resolve_names: Resolve names of personas. + :param str zone: Specifies which access zone to use. + :return: AuthRoles If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_auth_error_error_with_http_info(auth_error_error, **kwargs) # noqa: E501 + return self.get_auth_role_with_http_info(auth_role_id, **kwargs) # noqa: E501 else: - (data) = self.get_auth_error_error_with_http_info(auth_error_error, **kwargs) # noqa: E501 + (data) = self.get_auth_role_with_http_info(auth_role_id, **kwargs) # noqa: E501 return data - def get_auth_error_error_with_http_info(self, auth_error_error, **kwargs): # noqa: E501 - """get_auth_error_error # noqa: E501 + def get_auth_role_with_http_info(self, auth_role_id, **kwargs): # noqa: E501 + """get_auth_role # noqa: E501 - Get descriptions for auth error codes # noqa: E501 + Retrieve the role information. # 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_auth_error_error_with_http_info(auth_error_error, async_req=True) + >>> thread = api.get_auth_role_with_http_info(auth_role_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str auth_error_error: Get descriptions for auth error codes (required) - :return: AuthError + :param str auth_role_id: Retrieve the role information. (required) + :param bool resolve_names: Resolve names of personas. + :param str zone: Specifies which access zone to use. + :return: AuthRoles If the method is called asynchronously, returns the request thread. """ - all_params = ['auth_error_error'] # noqa: E501 + all_params = ['auth_role_id', 'resolve_names', 'zone'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -4284,22 +3915,32 @@ def get_auth_error_error_with_http_info(self, auth_error_error, **kwargs): # no if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_auth_error_error" % key + " to method get_auth_role" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'auth_error_error' is set - if ('auth_error_error' not in params or - params['auth_error_error'] is None): - raise ValueError("Missing the required parameter `auth_error_error` when calling `get_auth_error_error`") # noqa: E501 + # verify the required parameter 'auth_role_id' is set + if ('auth_role_id' not in params or + params['auth_role_id'] is None): + raise ValueError("Missing the required parameter `auth_role_id` when calling `get_auth_role`") # noqa: E501 + if ('zone' in params and + len(params['zone']) > 255): + raise ValueError("Invalid value for parameter `zone` when calling `get_auth_role`, length must be less than or equal to `255`") # noqa: E501 + if ('zone' in params and + len(params['zone']) < 0): + raise ValueError("Invalid value for parameter `zone` when calling `get_auth_role`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} - if 'auth_error_error' in params: - path_params['AuthErrorError'] = params['auth_error_error'] # noqa: E501 + if 'auth_role_id' in params: + path_params['AuthRoleId'] = params['auth_role_id'] # noqa: E501 query_params = [] + if 'resolve_names' in params: + query_params.append(('resolve_names', params['resolve_names'])) # noqa: E501 + if 'zone' in params: + query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -4319,14 +3960,14 @@ def get_auth_error_error_with_http_info(self, auth_error_error, **kwargs): # no auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/7/auth/error/{AuthErrorError}', 'GET', + '/platform/14/auth/roles/{AuthRoleId}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='AuthError', # noqa: E501 + response_type='AuthRoles', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -4334,55 +3975,43 @@ def get_auth_error_error_with_http_info(self, auth_error_error, **kwargs): # no _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_auth_group(self, auth_group_id, **kwargs): # noqa: E501 - """get_auth_group # noqa: E501 + def get_auth_shells(self, **kwargs): # noqa: E501 + """get_auth_shells # noqa: E501 - Retrieve the group information. # noqa: E501 + List all shells. # 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_auth_group(auth_group_id, async_req=True) + >>> thread = api.get_auth_shells(async_req=True) >>> result = thread.get() :param async_req bool - :param str auth_group_id: Retrieve the group information. (required) - :param bool cached: If true, only return cached objects. - :param str provider: Filter groups by provider. - :param bool query_member_of: Enumerates the groups for which this group is a member. The query_member_of argument determines whether the member_of field of the returned group is null or filled out with the enumerated groups. As it requires additional processing, only use query_member_of if you want to look at this field. - :param bool resolve_names: Resolve names of personas. - :param str zone: Filter groups by zone. - :return: AuthGroups + :return: AuthShells If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_auth_group_with_http_info(auth_group_id, **kwargs) # noqa: E501 + return self.get_auth_shells_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.get_auth_group_with_http_info(auth_group_id, **kwargs) # noqa: E501 + (data) = self.get_auth_shells_with_http_info(**kwargs) # noqa: E501 return data - def get_auth_group_with_http_info(self, auth_group_id, **kwargs): # noqa: E501 - """get_auth_group # noqa: E501 + def get_auth_shells_with_http_info(self, **kwargs): # noqa: E501 + """get_auth_shells # noqa: E501 - Retrieve the group information. # noqa: E501 + List all shells. # 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_auth_group_with_http_info(auth_group_id, async_req=True) + >>> thread = api.get_auth_shells_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param str auth_group_id: Retrieve the group information. (required) - :param bool cached: If true, only return cached objects. - :param str provider: Filter groups by provider. - :param bool query_member_of: Enumerates the groups for which this group is a member. The query_member_of argument determines whether the member_of field of the returned group is null or filled out with the enumerated groups. As it requires additional processing, only use query_member_of if you want to look at this field. - :param bool resolve_names: Resolve names of personas. - :param str zone: Filter groups by zone. - :return: AuthGroups + :return: AuthShells If the method is called asynchronously, returns the request thread. """ - all_params = ['auth_group_id', 'cached', 'provider', 'query_member_of', 'resolve_names', 'zone'] # noqa: E501 + all_params = [] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -4393,32 +4022,16 @@ def get_auth_group_with_http_info(self, auth_group_id, **kwargs): # noqa: E501 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_auth_group" % key + " to method get_auth_shells" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'auth_group_id' is set - if ('auth_group_id' not in params or - params['auth_group_id'] is None): - raise ValueError("Missing the required parameter `auth_group_id` when calling `get_auth_group`") # noqa: E501 collection_formats = {} path_params = {} - if 'auth_group_id' in params: - path_params['AuthGroupId'] = params['auth_group_id'] # noqa: E501 query_params = [] - if 'cached' in params: - query_params.append(('cached', params['cached'])) # noqa: E501 - if 'provider' in params: - query_params.append(('provider', params['provider'])) # noqa: E501 - if 'query_member_of' in params: - query_params.append(('query_member_of', params['query_member_of'])) # noqa: E501 - if 'resolve_names' in params: - query_params.append(('resolve_names', params['resolve_names'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -4438,14 +4051,14 @@ def get_auth_group_with_http_info(self, auth_group_id, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/17/auth/groups/{AuthGroupId}', 'GET', + '/platform/1/auth/shells', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='AuthGroups', # noqa: E501 + response_type='AuthShells', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -4453,45 +4066,55 @@ def get_auth_group_with_http_info(self, auth_group_id, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_auth_id(self, **kwargs): # noqa: E501 - """get_auth_id # noqa: E501 + def get_auth_user(self, auth_user_id, **kwargs): # noqa: E501 + """get_auth_user # noqa: E501 - Retrieve the current security token. # noqa: E501 + Retrieve the user information. # 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_auth_id(async_req=True) + >>> thread = api.get_auth_user(auth_user_id, async_req=True) >>> result = thread.get() :param async_req bool - :param bool listchildprivs: A list of child privileges for the current security token. - :return: AuthId + :param str auth_user_id: Retrieve the user information. (required) + :param bool cached: If true, only return cached objects. + :param str provider: Filter users by provider. + :param bool query_member_of: Enumerate all users that a group is a member of. + :param bool resolve_names: Resolve names of personas. + :param str zone: Filter users by zone. + :return: AuthUsers If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_auth_id_with_http_info(**kwargs) # noqa: E501 + return self.get_auth_user_with_http_info(auth_user_id, **kwargs) # noqa: E501 else: - (data) = self.get_auth_id_with_http_info(**kwargs) # noqa: E501 + (data) = self.get_auth_user_with_http_info(auth_user_id, **kwargs) # noqa: E501 return data - def get_auth_id_with_http_info(self, **kwargs): # noqa: E501 - """get_auth_id # noqa: E501 + def get_auth_user_with_http_info(self, auth_user_id, **kwargs): # noqa: E501 + """get_auth_user # noqa: E501 - Retrieve the current security token. # noqa: E501 + Retrieve the user information. # 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_auth_id_with_http_info(async_req=True) + >>> thread = api.get_auth_user_with_http_info(auth_user_id, async_req=True) >>> result = thread.get() :param async_req bool - :param bool listchildprivs: A list of child privileges for the current security token. - :return: AuthId + :param str auth_user_id: Retrieve the user information. (required) + :param bool cached: If true, only return cached objects. + :param str provider: Filter users by provider. + :param bool query_member_of: Enumerate all users that a group is a member of. + :param bool resolve_names: Resolve names of personas. + :param str zone: Filter users by zone. + :return: AuthUsers If the method is called asynchronously, returns the request thread. """ - all_params = ['listchildprivs'] # noqa: E501 + all_params = ['auth_user_id', 'cached', 'provider', 'query_member_of', 'resolve_names', 'zone'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -4502,18 +4125,32 @@ def get_auth_id_with_http_info(self, **kwargs): # noqa: E501 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_auth_id" % key + " to method get_auth_user" % key ) params[key] = val del params['kwargs'] + # verify the required parameter 'auth_user_id' is set + if ('auth_user_id' not in params or + params['auth_user_id'] is None): + raise ValueError("Missing the required parameter `auth_user_id` when calling `get_auth_user`") # noqa: E501 collection_formats = {} path_params = {} + if 'auth_user_id' in params: + path_params['AuthUserId'] = params['auth_user_id'] # noqa: E501 query_params = [] - if 'listchildprivs' in params: - query_params.append(('listchildprivs', params['listchildprivs'])) # noqa: E501 + if 'cached' in params: + query_params.append(('cached', params['cached'])) # noqa: E501 + if 'provider' in params: + query_params.append(('provider', params['provider'])) # noqa: E501 + if 'query_member_of' in params: + query_params.append(('query_member_of', params['query_member_of'])) # noqa: E501 + if 'resolve_names' in params: + query_params.append(('resolve_names', params['resolve_names'])) # noqa: E501 + if 'zone' in params: + query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -4533,14 +4170,14 @@ def get_auth_id_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/auth/id', 'GET', + '/platform/7/auth/users/{AuthUserId}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='AuthId', # noqa: E501 + response_type='AuthUsers', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -4548,45 +4185,47 @@ def get_auth_id_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_auth_ldap_template(self, auth_ldap_template_id, **kwargs): # noqa: E501 - """get_auth_ldap_template # noqa: E501 + def get_auth_wellknown(self, auth_wellknown_id, **kwargs): # noqa: E501 + """get_auth_wellknown # noqa: E501 - Retrieve the LDAP provider template. # noqa: E501 + Retrieve the wellknown persona. # 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_auth_ldap_template(auth_ldap_template_id, async_req=True) + >>> thread = api.get_auth_wellknown(auth_wellknown_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str auth_ldap_template_id: Retrieve the LDAP provider template. (required) - :return: AuthLdapTemplates + :param str auth_wellknown_id: Retrieve the wellknown persona. (required) + :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. + :return: AuthWellknowns If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_auth_ldap_template_with_http_info(auth_ldap_template_id, **kwargs) # noqa: E501 + return self.get_auth_wellknown_with_http_info(auth_wellknown_id, **kwargs) # noqa: E501 else: - (data) = self.get_auth_ldap_template_with_http_info(auth_ldap_template_id, **kwargs) # noqa: E501 + (data) = self.get_auth_wellknown_with_http_info(auth_wellknown_id, **kwargs) # noqa: E501 return data - def get_auth_ldap_template_with_http_info(self, auth_ldap_template_id, **kwargs): # noqa: E501 - """get_auth_ldap_template # noqa: E501 + def get_auth_wellknown_with_http_info(self, auth_wellknown_id, **kwargs): # noqa: E501 + """get_auth_wellknown # noqa: E501 - Retrieve the LDAP provider template. # noqa: E501 + Retrieve the wellknown persona. # 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_auth_ldap_template_with_http_info(auth_ldap_template_id, async_req=True) + >>> thread = api.get_auth_wellknown_with_http_info(auth_wellknown_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str auth_ldap_template_id: Retrieve the LDAP provider template. (required) - :return: AuthLdapTemplates + :param str auth_wellknown_id: Retrieve the wellknown persona. (required) + :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. + :return: AuthWellknowns If the method is called asynchronously, returns the request thread. """ - all_params = ['auth_ldap_template_id'] # noqa: E501 + all_params = ['auth_wellknown_id', 'scope'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -4597,22 +4236,30 @@ def get_auth_ldap_template_with_http_info(self, auth_ldap_template_id, **kwargs) if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_auth_ldap_template" % key + " to method get_auth_wellknown" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'auth_ldap_template_id' is set - if ('auth_ldap_template_id' not in params or - params['auth_ldap_template_id'] is None): - raise ValueError("Missing the required parameter `auth_ldap_template_id` when calling `get_auth_ldap_template`") # noqa: E501 + # verify the required parameter 'auth_wellknown_id' is set + if ('auth_wellknown_id' not in params or + params['auth_wellknown_id'] is None): + raise ValueError("Missing the required parameter `auth_wellknown_id` when calling `get_auth_wellknown`") # noqa: E501 + if ('scope' in params and + len(params['scope']) > 255): + raise ValueError("Invalid value for parameter `scope` when calling `get_auth_wellknown`, length must be less than or equal to `255`") # noqa: E501 + if ('scope' in params and + len(params['scope']) < 0): + raise ValueError("Invalid value for parameter `scope` when calling `get_auth_wellknown`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} - if 'auth_ldap_template_id' in params: - path_params['AuthLdapTemplateId'] = params['auth_ldap_template_id'] # noqa: E501 + if 'auth_wellknown_id' in params: + path_params['AuthWellknownId'] = params['auth_wellknown_id'] # noqa: E501 query_params = [] + if 'scope' in params: + query_params.append(('scope', params['scope'])) # noqa: E501 header_params = {} @@ -4632,14 +4279,14 @@ def get_auth_ldap_template_with_http_info(self, auth_ldap_template_id, **kwargs) auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/7/auth/ldap-templates/{AuthLdapTemplateId}', 'GET', + '/platform/1/auth/wellknowns/{AuthWellknownId}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='AuthLdapTemplates', # noqa: E501 + response_type='AuthWellknowns', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -4647,38 +4294,38 @@ def get_auth_ldap_template_with_http_info(self, auth_ldap_template_id, **kwargs) _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_auth_ldap_templates(self, **kwargs): # noqa: E501 - """get_auth_ldap_templates # noqa: E501 + def get_auth_wellknowns(self, **kwargs): # noqa: E501 + """get_auth_wellknowns # noqa: E501 - List all LDAP provider templates. # noqa: E501 + List all wellknown personas. # 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_auth_ldap_templates(async_req=True) + >>> thread = api.get_auth_wellknowns(async_req=True) >>> result = thread.get() :param async_req bool - :return: AuthLdapTemplatesExtended + :return: AuthWellknowns If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_auth_ldap_templates_with_http_info(**kwargs) # noqa: E501 + return self.get_auth_wellknowns_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.get_auth_ldap_templates_with_http_info(**kwargs) # noqa: E501 + (data) = self.get_auth_wellknowns_with_http_info(**kwargs) # noqa: E501 return data - def get_auth_ldap_templates_with_http_info(self, **kwargs): # noqa: E501 - """get_auth_ldap_templates # noqa: E501 + def get_auth_wellknowns_with_http_info(self, **kwargs): # noqa: E501 + """get_auth_wellknowns # noqa: E501 - List all LDAP provider templates. # noqa: E501 + List all wellknown personas. # 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_auth_ldap_templates_with_http_info(async_req=True) + >>> thread = api.get_auth_wellknowns_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :return: AuthLdapTemplatesExtended + :return: AuthWellknowns If the method is called asynchronously, returns the request thread. """ @@ -4694,7 +4341,7 @@ def get_auth_ldap_templates_with_http_info(self, **kwargs): # noqa: E501 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_auth_ldap_templates" % key + " to method get_auth_wellknowns" % key ) params[key] = val del params['kwargs'] @@ -4723,14 +4370,14 @@ def get_auth_ldap_templates_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/7/auth/ldap-templates', 'GET', + '/platform/1/auth/wellknowns', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='AuthLdapTemplatesExtended', # noqa: E501 + response_type='AuthWellknowns', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -4738,43 +4385,47 @@ def get_auth_ldap_templates_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_auth_log_level(self, **kwargs): # noqa: E501 - """get_auth_log_level # noqa: E501 + def get_mapping_dump(self, **kwargs): # noqa: E501 + """get_mapping_dump # noqa: E501 - Get the current authentications service and netlogon logging level. # noqa: E501 + Retrieve all identity mappings (uid, gid, sid, and on-disk) for the supplied source persona. # 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_auth_log_level(async_req=True) + >>> thread = api.get_mapping_dump(async_req=True) >>> result = thread.get() :param async_req bool - :return: AuthLogLevel + :param bool nocreate: Idmap should attempt to create missing identity mappings. + :param str zone: Optional zone. + :return: MappingDump If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_auth_log_level_with_http_info(**kwargs) # noqa: E501 + return self.get_mapping_dump_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.get_auth_log_level_with_http_info(**kwargs) # noqa: E501 + (data) = self.get_mapping_dump_with_http_info(**kwargs) # noqa: E501 return data - def get_auth_log_level_with_http_info(self, **kwargs): # noqa: E501 - """get_auth_log_level # noqa: E501 + def get_mapping_dump_with_http_info(self, **kwargs): # noqa: E501 + """get_mapping_dump # noqa: E501 - Get the current authentications service and netlogon logging level. # noqa: E501 + Retrieve all identity mappings (uid, gid, sid, and on-disk) for the supplied source persona. # 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_auth_log_level_with_http_info(async_req=True) + >>> thread = api.get_mapping_dump_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :return: AuthLogLevel + :param bool nocreate: Idmap should attempt to create missing identity mappings. + :param str zone: Optional zone. + :return: MappingDump If the method is called asynchronously, returns the request thread. """ - all_params = [] # noqa: E501 + all_params = ['nocreate', 'zone'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -4785,7 +4436,7 @@ def get_auth_log_level_with_http_info(self, **kwargs): # noqa: E501 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_auth_log_level" % key + " to method get_mapping_dump" % key ) params[key] = val del params['kwargs'] @@ -4795,6 +4446,10 @@ def get_auth_log_level_with_http_info(self, **kwargs): # noqa: E501 path_params = {} query_params = [] + if 'nocreate' in params: + query_params.append(('nocreate', params['nocreate'])) # noqa: E501 + if 'zone' in params: + query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -4814,14 +4469,14 @@ def get_auth_log_level_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/12/auth/log-level', 'GET', + '/platform/3/auth/mapping/dump', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='AuthLogLevel', # noqa: E501 + response_type='MappingDump', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -4829,53 +4484,49 @@ def get_auth_log_level_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_auth_netgroup(self, auth_netgroup_id, **kwargs): # noqa: E501 - """get_auth_netgroup # noqa: E501 + def get_mapping_identity(self, mapping_identity_id, **kwargs): # noqa: E501 + """get_mapping_identity # noqa: E501 - Retrieve the user information. # noqa: E501 + Retrieve all identity mappings (uid, gid, sid, and on-disk) for the supplied source persona. # 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_auth_netgroup(auth_netgroup_id, async_req=True) + >>> thread = api.get_mapping_identity(mapping_identity_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str auth_netgroup_id: Retrieve the user information. (required) - :param bool ignore_errors: Ignore netgroup errors. - :param str provider: Filter users by provider. - :param bool recursive: Perform recursive search. - :param str zone: Filter users by zone. - :return: AuthNetgroups + :param str mapping_identity_id: Retrieve all identity mappings (uid, gid, sid, and on-disk) for the supplied source persona. (required) + :param bool nocreate: Idmap should attempt to create missing identity mappings. + :param str zone: Optional zone. + :return: MappingIdentities If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_auth_netgroup_with_http_info(auth_netgroup_id, **kwargs) # noqa: E501 + return self.get_mapping_identity_with_http_info(mapping_identity_id, **kwargs) # noqa: E501 else: - (data) = self.get_auth_netgroup_with_http_info(auth_netgroup_id, **kwargs) # noqa: E501 + (data) = self.get_mapping_identity_with_http_info(mapping_identity_id, **kwargs) # noqa: E501 return data - def get_auth_netgroup_with_http_info(self, auth_netgroup_id, **kwargs): # noqa: E501 - """get_auth_netgroup # noqa: E501 + def get_mapping_identity_with_http_info(self, mapping_identity_id, **kwargs): # noqa: E501 + """get_mapping_identity # noqa: E501 - Retrieve the user information. # noqa: E501 + Retrieve all identity mappings (uid, gid, sid, and on-disk) for the supplied source persona. # 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_auth_netgroup_with_http_info(auth_netgroup_id, async_req=True) + >>> thread = api.get_mapping_identity_with_http_info(mapping_identity_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str auth_netgroup_id: Retrieve the user information. (required) - :param bool ignore_errors: Ignore netgroup errors. - :param str provider: Filter users by provider. - :param bool recursive: Perform recursive search. - :param str zone: Filter users by zone. - :return: AuthNetgroups + :param str mapping_identity_id: Retrieve all identity mappings (uid, gid, sid, and on-disk) for the supplied source persona. (required) + :param bool nocreate: Idmap should attempt to create missing identity mappings. + :param str zone: Optional zone. + :return: MappingIdentities If the method is called asynchronously, returns the request thread. """ - all_params = ['auth_netgroup_id', 'ignore_errors', 'provider', 'recursive', 'zone'] # noqa: E501 + all_params = ['mapping_identity_id', 'nocreate', 'zone'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -4886,28 +4537,24 @@ def get_auth_netgroup_with_http_info(self, auth_netgroup_id, **kwargs): # noqa: if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_auth_netgroup" % key + " to method get_mapping_identity" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'auth_netgroup_id' is set - if ('auth_netgroup_id' not in params or - params['auth_netgroup_id'] is None): - raise ValueError("Missing the required parameter `auth_netgroup_id` when calling `get_auth_netgroup`") # noqa: E501 + # verify the required parameter 'mapping_identity_id' is set + if ('mapping_identity_id' not in params or + params['mapping_identity_id'] is None): + raise ValueError("Missing the required parameter `mapping_identity_id` when calling `get_mapping_identity`") # noqa: E501 collection_formats = {} path_params = {} - if 'auth_netgroup_id' in params: - path_params['AuthNetgroupId'] = params['auth_netgroup_id'] # noqa: E501 + if 'mapping_identity_id' in params: + path_params['MappingIdentityId'] = params['mapping_identity_id'] # noqa: E501 query_params = [] - if 'ignore_errors' in params: - query_params.append(('ignore_errors', params['ignore_errors'])) # noqa: E501 - if 'provider' in params: - query_params.append(('provider', params['provider'])) # noqa: E501 - if 'recursive' in params: - query_params.append(('recursive', params['recursive'])) # noqa: E501 + if 'nocreate' in params: + query_params.append(('nocreate', params['nocreate'])) # noqa: E501 if 'zone' in params: query_params.append(('zone', params['zone'])) # noqa: E501 @@ -4929,14 +4576,14 @@ def get_auth_netgroup_with_http_info(self, auth_netgroup_id, **kwargs): # noqa: auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/1/auth/netgroups/{AuthNetgroupId}', 'GET', + '/platform/1/auth/mapping/identities/{MappingIdentityId}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='AuthNetgroups', # noqa: E501 + response_type='MappingIdentities', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -4944,45 +4591,55 @@ def get_auth_netgroup_with_http_info(self, auth_netgroup_id, **kwargs): # noqa: _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_auth_privileges(self, **kwargs): # noqa: E501 - """get_auth_privileges # noqa: E501 + def get_mapping_users_lookup(self, **kwargs): # noqa: E501 + """get_mapping_users_lookup # noqa: E501 - List all privileges. # noqa: E501 + Retrieve the user information. # 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_auth_privileges(async_req=True) + >>> thread = api.get_mapping_users_lookup(async_req=True) >>> result = thread.get() :param async_req bool - :param str zone: Specifies which access zone to use. - :return: AuthPrivileges + :param list[int] gid: The IDs of the groups that the user belongs to. + :param str kerberos_principal: The Kerberos principal name, of the form user@realm. + :param int primary_gid: The user's primary group ID. + :param int uid: The user ID. + :param str user: The user name. + :param str zone: The zone the user belongs to. + :return: MappingUsersLookup If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_auth_privileges_with_http_info(**kwargs) # noqa: E501 + return self.get_mapping_users_lookup_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.get_auth_privileges_with_http_info(**kwargs) # noqa: E501 + (data) = self.get_mapping_users_lookup_with_http_info(**kwargs) # noqa: E501 return data - def get_auth_privileges_with_http_info(self, **kwargs): # noqa: E501 - """get_auth_privileges # noqa: E501 + def get_mapping_users_lookup_with_http_info(self, **kwargs): # noqa: E501 + """get_mapping_users_lookup # noqa: E501 - List all privileges. # noqa: E501 + Retrieve the user information. # 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_auth_privileges_with_http_info(async_req=True) + >>> thread = api.get_mapping_users_lookup_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param str zone: Specifies which access zone to use. - :return: AuthPrivileges + :param list[int] gid: The IDs of the groups that the user belongs to. + :param str kerberos_principal: The Kerberos principal name, of the form user@realm. + :param int primary_gid: The user's primary group ID. + :param int uid: The user ID. + :param str user: The user name. + :param str zone: The zone the user belongs to. + :return: MappingUsersLookup If the method is called asynchronously, returns the request thread. """ - all_params = ['zone'] # noqa: E501 + all_params = ['gid', 'kerberos_principal', 'primary_gid', 'uid', 'user', 'zone'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -4993,22 +4650,27 @@ def get_auth_privileges_with_http_info(self, **kwargs): # noqa: E501 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_auth_privileges" % key + " to method get_mapping_users_lookup" % key ) params[key] = val del params['kwargs'] - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `get_auth_privileges`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `get_auth_privileges`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] + if 'gid' in params: + query_params.append(('gid', params['gid'])) # noqa: E501 + collection_formats['gid'] = 'csv' # noqa: E501 + if 'kerberos_principal' in params: + query_params.append(('kerberos_principal', params['kerberos_principal'])) # noqa: E501 + if 'primary_gid' in params: + query_params.append(('primary_gid', params['primary_gid'])) # noqa: E501 + if 'uid' in params: + query_params.append(('uid', params['uid'])) # noqa: E501 + if 'user' in params: + query_params.append(('user', params['user'])) # noqa: E501 if 'zone' in params: query_params.append(('zone', params['zone'])) # noqa: E501 @@ -5030,14 +4692,14 @@ def get_auth_privileges_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/14/auth/privileges', 'GET', + '/platform/1/auth/mapping/users/lookup', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='AuthPrivileges', # noqa: E501 + response_type='MappingUsersLookup', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -5045,49 +4707,45 @@ def get_auth_privileges_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_auth_role(self, auth_role_id, **kwargs): # noqa: E501 - """get_auth_role # noqa: E501 + def get_mapping_users_rules(self, **kwargs): # noqa: E501 + """get_mapping_users_rules # noqa: E501 - Retrieve the role information. # noqa: E501 + Retrieve the user mapping rules. # 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_auth_role(auth_role_id, async_req=True) + >>> thread = api.get_mapping_users_rules(async_req=True) >>> result = thread.get() :param async_req bool - :param str auth_role_id: Retrieve the role information. (required) - :param bool resolve_names: Resolve names of personas. - :param str zone: Specifies which access zone to use. - :return: AuthRoles + :param str zone: The zone to which the user mapping applies. + :return: MappingUsersRules If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_auth_role_with_http_info(auth_role_id, **kwargs) # noqa: E501 + return self.get_mapping_users_rules_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.get_auth_role_with_http_info(auth_role_id, **kwargs) # noqa: E501 + (data) = self.get_mapping_users_rules_with_http_info(**kwargs) # noqa: E501 return data - def get_auth_role_with_http_info(self, auth_role_id, **kwargs): # noqa: E501 - """get_auth_role # noqa: E501 + def get_mapping_users_rules_with_http_info(self, **kwargs): # noqa: E501 + """get_mapping_users_rules # noqa: E501 - Retrieve the role information. # noqa: E501 + Retrieve the user mapping rules. # 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_auth_role_with_http_info(auth_role_id, async_req=True) + >>> thread = api.get_mapping_users_rules_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param str auth_role_id: Retrieve the role information. (required) - :param bool resolve_names: Resolve names of personas. - :param str zone: Specifies which access zone to use. - :return: AuthRoles + :param str zone: The zone to which the user mapping applies. + :return: MappingUsersRules If the method is called asynchronously, returns the request thread. """ - all_params = ['auth_role_id', 'resolve_names', 'zone'] # noqa: E501 + all_params = ['zone'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -5098,30 +4756,16 @@ def get_auth_role_with_http_info(self, auth_role_id, **kwargs): # noqa: E501 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_auth_role" % key + " to method get_mapping_users_rules" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'auth_role_id' is set - if ('auth_role_id' not in params or - params['auth_role_id'] is None): - raise ValueError("Missing the required parameter `auth_role_id` when calling `get_auth_role`") # noqa: E501 - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `get_auth_role`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `get_auth_role`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} - if 'auth_role_id' in params: - path_params['AuthRoleId'] = params['auth_role_id'] # noqa: E501 query_params = [] - if 'resolve_names' in params: - query_params.append(('resolve_names', params['resolve_names'])) # noqa: E501 if 'zone' in params: query_params.append(('zone', params['zone'])) # noqa: E501 @@ -5143,14 +4787,14 @@ def get_auth_role_with_http_info(self, auth_role_id, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/auth/roles/{AuthRoleId}', 'GET', + '/platform/1/auth/mapping/users/rules', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='AuthRoles', # noqa: E501 + response_type='MappingUsersRules', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -5158,43 +4802,49 @@ def get_auth_role_with_http_info(self, auth_role_id, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_auth_shells(self, **kwargs): # noqa: E501 - """get_auth_shells # noqa: E501 + def get_providers_ads_by_id(self, providers_ads_id, **kwargs): # noqa: E501 + """get_providers_ads_by_id # noqa: E501 - List all shells. # noqa: E501 + Retrieve the ADS provider. # 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_auth_shells(async_req=True) + >>> thread = api.get_providers_ads_by_id(providers_ads_id, async_req=True) >>> result = thread.get() :param async_req bool - :return: AuthShells + :param str providers_ads_id: Retrieve the ADS provider. (required) + :param bool check_duplicates: Check for duplicate SPNs registered in Active Directory. + :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. + :return: ProvidersAds If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_auth_shells_with_http_info(**kwargs) # noqa: E501 + return self.get_providers_ads_by_id_with_http_info(providers_ads_id, **kwargs) # noqa: E501 else: - (data) = self.get_auth_shells_with_http_info(**kwargs) # noqa: E501 + (data) = self.get_providers_ads_by_id_with_http_info(providers_ads_id, **kwargs) # noqa: E501 return data - def get_auth_shells_with_http_info(self, **kwargs): # noqa: E501 - """get_auth_shells # noqa: E501 + def get_providers_ads_by_id_with_http_info(self, providers_ads_id, **kwargs): # noqa: E501 + """get_providers_ads_by_id # noqa: E501 - List all shells. # noqa: E501 + Retrieve the ADS provider. # 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_auth_shells_with_http_info(async_req=True) + >>> thread = api.get_providers_ads_by_id_with_http_info(providers_ads_id, async_req=True) >>> result = thread.get() :param async_req bool - :return: AuthShells + :param str providers_ads_id: Retrieve the ADS provider. (required) + :param bool check_duplicates: Check for duplicate SPNs registered in Active Directory. + :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. + :return: ProvidersAds If the method is called asynchronously, returns the request thread. """ - all_params = [] # noqa: E501 + all_params = ['providers_ads_id', 'check_duplicates', 'scope'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -5205,16 +4855,32 @@ def get_auth_shells_with_http_info(self, **kwargs): # noqa: E501 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_auth_shells" % key + " to method get_providers_ads_by_id" % key ) params[key] = val del params['kwargs'] + # verify the required parameter 'providers_ads_id' is set + if ('providers_ads_id' not in params or + params['providers_ads_id'] is None): + raise ValueError("Missing the required parameter `providers_ads_id` when calling `get_providers_ads_by_id`") # noqa: E501 + if ('scope' in params and + len(params['scope']) > 255): + raise ValueError("Invalid value for parameter `scope` when calling `get_providers_ads_by_id`, length must be less than or equal to `255`") # noqa: E501 + if ('scope' in params and + len(params['scope']) < 0): + raise ValueError("Invalid value for parameter `scope` when calling `get_providers_ads_by_id`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} + if 'providers_ads_id' in params: + path_params['ProvidersAdsId'] = params['providers_ads_id'] # noqa: E501 query_params = [] + if 'check_duplicates' in params: + query_params.append(('check_duplicates', params['check_duplicates'])) # noqa: E501 + if 'scope' in params: + query_params.append(('scope', params['scope'])) # noqa: E501 header_params = {} @@ -5234,14 +4900,14 @@ def get_auth_shells_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/1/auth/shells', 'GET', + '/platform/14/auth/providers/ads/{ProvidersAdsId}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='AuthShells', # noqa: E501 + response_type='ProvidersAds', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -5249,55 +4915,43 @@ def get_auth_shells_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_auth_user(self, auth_user_id, **kwargs): # noqa: E501 - """get_auth_user # noqa: E501 + def get_providers_duo(self, **kwargs): # noqa: E501 + """get_providers_duo # noqa: E501 - Retrieve the user information. # noqa: E501 + Retrieve Duo provider. # 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_auth_user(auth_user_id, async_req=True) + >>> thread = api.get_providers_duo(async_req=True) >>> result = thread.get() :param async_req bool - :param str auth_user_id: Retrieve the user information. (required) - :param bool cached: If true, only return cached objects. - :param str provider: Filter users by provider. - :param bool query_member_of: Enumerate the groups for which the user is a member. The query_member_of argument determines whether the member_of field of the returned user is null or filled out with the enumerated groups. As it requires additional processing, only use query_member_of if you want to look at this field. - :param bool resolve_names: Resolve names of personas. - :param str zone: Filter users by zone. - :return: AuthUsers + :return: ProvidersDuo If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_auth_user_with_http_info(auth_user_id, **kwargs) # noqa: E501 + return self.get_providers_duo_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.get_auth_user_with_http_info(auth_user_id, **kwargs) # noqa: E501 + (data) = self.get_providers_duo_with_http_info(**kwargs) # noqa: E501 return data - def get_auth_user_with_http_info(self, auth_user_id, **kwargs): # noqa: E501 - """get_auth_user # noqa: E501 + def get_providers_duo_with_http_info(self, **kwargs): # noqa: E501 + """get_providers_duo # noqa: E501 - Retrieve the user information. # noqa: E501 + Retrieve Duo provider. # 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_auth_user_with_http_info(auth_user_id, async_req=True) + >>> thread = api.get_providers_duo_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param str auth_user_id: Retrieve the user information. (required) - :param bool cached: If true, only return cached objects. - :param str provider: Filter users by provider. - :param bool query_member_of: Enumerate the groups for which the user is a member. The query_member_of argument determines whether the member_of field of the returned user is null or filled out with the enumerated groups. As it requires additional processing, only use query_member_of if you want to look at this field. - :param bool resolve_names: Resolve names of personas. - :param str zone: Filter users by zone. - :return: AuthUsers + :return: ProvidersDuo If the method is called asynchronously, returns the request thread. """ - all_params = ['auth_user_id', 'cached', 'provider', 'query_member_of', 'resolve_names', 'zone'] # noqa: E501 + all_params = [] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -5308,32 +4962,16 @@ def get_auth_user_with_http_info(self, auth_user_id, **kwargs): # noqa: E501 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_auth_user" % key + " to method get_providers_duo" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'auth_user_id' is set - if ('auth_user_id' not in params or - params['auth_user_id'] is None): - raise ValueError("Missing the required parameter `auth_user_id` when calling `get_auth_user`") # noqa: E501 collection_formats = {} path_params = {} - if 'auth_user_id' in params: - path_params['AuthUserId'] = params['auth_user_id'] # noqa: E501 query_params = [] - if 'cached' in params: - query_params.append(('cached', params['cached'])) # noqa: E501 - if 'provider' in params: - query_params.append(('provider', params['provider'])) # noqa: E501 - if 'query_member_of' in params: - query_params.append(('query_member_of', params['query_member_of'])) # noqa: E501 - if 'resolve_names' in params: - query_params.append(('resolve_names', params['resolve_names'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -5353,14 +4991,14 @@ def get_auth_user_with_http_info(self, auth_user_id, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/17/auth/users/{AuthUserId}', 'GET', + '/platform/7/auth/providers/duo', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='AuthUsers', # noqa: E501 + response_type='ProvidersDuo', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -5368,47 +5006,47 @@ def get_auth_user_with_http_info(self, auth_user_id, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_auth_wellknown(self, auth_wellknown_id, **kwargs): # noqa: E501 - """get_auth_wellknown # noqa: E501 + def get_providers_file_by_id(self, providers_file_id, **kwargs): # noqa: E501 + """get_providers_file_by_id # noqa: E501 - Retrieve the wellknown persona. # noqa: E501 + Retrieve the file provider. # 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_auth_wellknown(auth_wellknown_id, async_req=True) + >>> thread = api.get_providers_file_by_id(providers_file_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str auth_wellknown_id: Retrieve the wellknown persona. (required) + :param str providers_file_id: Retrieve the file provider. (required) :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :return: AuthWellknowns + :return: ProvidersFile If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_auth_wellknown_with_http_info(auth_wellknown_id, **kwargs) # noqa: E501 + return self.get_providers_file_by_id_with_http_info(providers_file_id, **kwargs) # noqa: E501 else: - (data) = self.get_auth_wellknown_with_http_info(auth_wellknown_id, **kwargs) # noqa: E501 + (data) = self.get_providers_file_by_id_with_http_info(providers_file_id, **kwargs) # noqa: E501 return data - def get_auth_wellknown_with_http_info(self, auth_wellknown_id, **kwargs): # noqa: E501 - """get_auth_wellknown # noqa: E501 + def get_providers_file_by_id_with_http_info(self, providers_file_id, **kwargs): # noqa: E501 + """get_providers_file_by_id # noqa: E501 - Retrieve the wellknown persona. # noqa: E501 + Retrieve the file provider. # 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_auth_wellknown_with_http_info(auth_wellknown_id, async_req=True) + >>> thread = api.get_providers_file_by_id_with_http_info(providers_file_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str auth_wellknown_id: Retrieve the wellknown persona. (required) + :param str providers_file_id: Retrieve the file provider. (required) :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :return: AuthWellknowns + :return: ProvidersFile If the method is called asynchronously, returns the request thread. """ - all_params = ['auth_wellknown_id', 'scope'] # noqa: E501 + all_params = ['providers_file_id', 'scope'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -5419,26 +5057,26 @@ def get_auth_wellknown_with_http_info(self, auth_wellknown_id, **kwargs): # noq if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_auth_wellknown" % key + " to method get_providers_file_by_id" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'auth_wellknown_id' is set - if ('auth_wellknown_id' not in params or - params['auth_wellknown_id'] is None): - raise ValueError("Missing the required parameter `auth_wellknown_id` when calling `get_auth_wellknown`") # noqa: E501 + # verify the required parameter 'providers_file_id' is set + if ('providers_file_id' not in params or + params['providers_file_id'] is None): + raise ValueError("Missing the required parameter `providers_file_id` when calling `get_providers_file_by_id`") # noqa: E501 if ('scope' in params and len(params['scope']) > 255): - raise ValueError("Invalid value for parameter `scope` when calling `get_auth_wellknown`, length must be less than or equal to `255`") # noqa: E501 + raise ValueError("Invalid value for parameter `scope` when calling `get_providers_file_by_id`, length must be less than or equal to `255`") # noqa: E501 if ('scope' in params and len(params['scope']) < 0): - raise ValueError("Invalid value for parameter `scope` when calling `get_auth_wellknown`, length must be greater than or equal to `0`") # noqa: E501 + raise ValueError("Invalid value for parameter `scope` when calling `get_providers_file_by_id`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} - if 'auth_wellknown_id' in params: - path_params['AuthWellknownId'] = params['auth_wellknown_id'] # noqa: E501 + if 'providers_file_id' in params: + path_params['ProvidersFileId'] = params['providers_file_id'] # noqa: E501 query_params = [] if 'scope' in params: @@ -5462,14 +5100,14 @@ def get_auth_wellknown_with_http_info(self, auth_wellknown_id, **kwargs): # noq auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/1/auth/wellknowns/{AuthWellknownId}', 'GET', + '/platform/7/auth/providers/file/{ProvidersFileId}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='AuthWellknowns', # noqa: E501 + response_type='ProvidersFile', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -5477,43 +5115,47 @@ def get_auth_wellknown_with_http_info(self, auth_wellknown_id, **kwargs): # noq _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_auth_wellknowns(self, **kwargs): # noqa: E501 - """get_auth_wellknowns # noqa: E501 + def get_providers_krb5_by_id(self, providers_krb5_id, **kwargs): # noqa: E501 + """get_providers_krb5_by_id # noqa: E501 - List all wellknown personas. # noqa: E501 + Retrieve the KRB5 provider. # 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_auth_wellknowns(async_req=True) + >>> thread = api.get_providers_krb5_by_id(providers_krb5_id, async_req=True) >>> result = thread.get() :param async_req bool - :return: AuthWellknowns + :param str providers_krb5_id: Retrieve the KRB5 provider. (required) + :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. + :return: ProvidersKrb5 If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_auth_wellknowns_with_http_info(**kwargs) # noqa: E501 + return self.get_providers_krb5_by_id_with_http_info(providers_krb5_id, **kwargs) # noqa: E501 else: - (data) = self.get_auth_wellknowns_with_http_info(**kwargs) # noqa: E501 + (data) = self.get_providers_krb5_by_id_with_http_info(providers_krb5_id, **kwargs) # noqa: E501 return data - def get_auth_wellknowns_with_http_info(self, **kwargs): # noqa: E501 - """get_auth_wellknowns # noqa: E501 + def get_providers_krb5_by_id_with_http_info(self, providers_krb5_id, **kwargs): # noqa: E501 + """get_providers_krb5_by_id # noqa: E501 - List all wellknown personas. # noqa: E501 + Retrieve the KRB5 provider. # 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_auth_wellknowns_with_http_info(async_req=True) + >>> thread = api.get_providers_krb5_by_id_with_http_info(providers_krb5_id, async_req=True) >>> result = thread.get() :param async_req bool - :return: AuthWellknowns + :param str providers_krb5_id: Retrieve the KRB5 provider. (required) + :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. + :return: ProvidersKrb5 If the method is called asynchronously, returns the request thread. """ - all_params = [] # noqa: E501 + all_params = ['providers_krb5_id', 'scope'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -5524,16 +5166,30 @@ def get_auth_wellknowns_with_http_info(self, **kwargs): # noqa: E501 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_auth_wellknowns" % key + " to method get_providers_krb5_by_id" % key ) params[key] = val del params['kwargs'] + # verify the required parameter 'providers_krb5_id' is set + if ('providers_krb5_id' not in params or + params['providers_krb5_id'] is None): + raise ValueError("Missing the required parameter `providers_krb5_id` when calling `get_providers_krb5_by_id`") # noqa: E501 + if ('scope' in params and + len(params['scope']) > 255): + raise ValueError("Invalid value for parameter `scope` when calling `get_providers_krb5_by_id`, length must be less than or equal to `255`") # noqa: E501 + if ('scope' in params and + len(params['scope']) < 0): + raise ValueError("Invalid value for parameter `scope` when calling `get_providers_krb5_by_id`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} + if 'providers_krb5_id' in params: + path_params['ProvidersKrb5Id'] = params['providers_krb5_id'] # noqa: E501 query_params = [] + if 'scope' in params: + query_params.append(('scope', params['scope'])) # noqa: E501 header_params = {} @@ -5553,14 +5209,14 @@ def get_auth_wellknowns_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/1/auth/wellknowns', 'GET', + '/platform/7/auth/providers/krb5/{ProvidersKrb5Id}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='AuthWellknowns', # noqa: E501 + response_type='ProvidersKrb5', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -5568,47 +5224,47 @@ def get_auth_wellknowns_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_mapping_dump(self, **kwargs): # noqa: E501 - """get_mapping_dump # noqa: E501 + def get_providers_ldap_by_id(self, providers_ldap_id, **kwargs): # noqa: E501 + """get_providers_ldap_by_id # noqa: E501 - Retrieve all identity mappings (uid, gid, sid, and on-disk) for the supplied source persona. # noqa: E501 + Retrieve the LDAP provider. # 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_mapping_dump(async_req=True) + >>> thread = api.get_providers_ldap_by_id(providers_ldap_id, async_req=True) >>> result = thread.get() :param async_req bool - :param bool nocreate: Idmap should attempt to create missing identity mappings. - :param str zone: Optional zone. - :return: MappingDump + :param str providers_ldap_id: Retrieve the LDAP provider. (required) + :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. + :return: ProvidersLdap If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_mapping_dump_with_http_info(**kwargs) # noqa: E501 + return self.get_providers_ldap_by_id_with_http_info(providers_ldap_id, **kwargs) # noqa: E501 else: - (data) = self.get_mapping_dump_with_http_info(**kwargs) # noqa: E501 + (data) = self.get_providers_ldap_by_id_with_http_info(providers_ldap_id, **kwargs) # noqa: E501 return data - def get_mapping_dump_with_http_info(self, **kwargs): # noqa: E501 - """get_mapping_dump # noqa: E501 + def get_providers_ldap_by_id_with_http_info(self, providers_ldap_id, **kwargs): # noqa: E501 + """get_providers_ldap_by_id # noqa: E501 - Retrieve all identity mappings (uid, gid, sid, and on-disk) for the supplied source persona. # noqa: E501 + Retrieve the LDAP provider. # 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_mapping_dump_with_http_info(async_req=True) + >>> thread = api.get_providers_ldap_by_id_with_http_info(providers_ldap_id, async_req=True) >>> result = thread.get() :param async_req bool - :param bool nocreate: Idmap should attempt to create missing identity mappings. - :param str zone: Optional zone. - :return: MappingDump + :param str providers_ldap_id: Retrieve the LDAP provider. (required) + :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. + :return: ProvidersLdap If the method is called asynchronously, returns the request thread. """ - all_params = ['nocreate', 'zone'] # noqa: E501 + all_params = ['providers_ldap_id', 'scope'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -5619,20 +5275,30 @@ def get_mapping_dump_with_http_info(self, **kwargs): # noqa: E501 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_mapping_dump" % key + " to method get_providers_ldap_by_id" % key ) params[key] = val del params['kwargs'] + # verify the required parameter 'providers_ldap_id' is set + if ('providers_ldap_id' not in params or + params['providers_ldap_id'] is None): + raise ValueError("Missing the required parameter `providers_ldap_id` when calling `get_providers_ldap_by_id`") # noqa: E501 + if ('scope' in params and + len(params['scope']) > 255): + raise ValueError("Invalid value for parameter `scope` when calling `get_providers_ldap_by_id`, length must be less than or equal to `255`") # noqa: E501 + if ('scope' in params and + len(params['scope']) < 0): + raise ValueError("Invalid value for parameter `scope` when calling `get_providers_ldap_by_id`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} + if 'providers_ldap_id' in params: + path_params['ProvidersLdapId'] = params['providers_ldap_id'] # noqa: E501 query_params = [] - if 'nocreate' in params: - query_params.append(('nocreate', params['nocreate'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 + if 'scope' in params: + query_params.append(('scope', params['scope'])) # noqa: E501 header_params = {} @@ -5652,14 +5318,14 @@ def get_mapping_dump_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/3/auth/mapping/dump', 'GET', + '/platform/11/auth/providers/ldap/{ProvidersLdapId}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='MappingDump', # noqa: E501 + response_type='ProvidersLdap', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -5667,49 +5333,45 @@ def get_mapping_dump_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_mapping_identity(self, mapping_identity_id, **kwargs): # noqa: E501 - """get_mapping_identity # noqa: E501 + def get_providers_local(self, **kwargs): # noqa: E501 + """get_providers_local # noqa: E501 - Retrieve all identity mappings (uid, gid, sid, and on-disk) for the supplied source persona. # noqa: E501 + List all local providers. # 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_mapping_identity(mapping_identity_id, async_req=True) + >>> thread = api.get_providers_local(async_req=True) >>> result = thread.get() :param async_req bool - :param str mapping_identity_id: Retrieve all identity mappings (uid, gid, sid, and on-disk) for the supplied source persona. (required) - :param bool nocreate: Idmap should attempt to create missing identity mappings. - :param str zone: Optional zone. - :return: MappingIdentities + :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. + :return: ProvidersLocal If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_mapping_identity_with_http_info(mapping_identity_id, **kwargs) # noqa: E501 + return self.get_providers_local_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.get_mapping_identity_with_http_info(mapping_identity_id, **kwargs) # noqa: E501 + (data) = self.get_providers_local_with_http_info(**kwargs) # noqa: E501 return data - def get_mapping_identity_with_http_info(self, mapping_identity_id, **kwargs): # noqa: E501 - """get_mapping_identity # noqa: E501 + def get_providers_local_with_http_info(self, **kwargs): # noqa: E501 + """get_providers_local # noqa: E501 - Retrieve all identity mappings (uid, gid, sid, and on-disk) for the supplied source persona. # noqa: E501 + List all local providers. # 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_mapping_identity_with_http_info(mapping_identity_id, async_req=True) + >>> thread = api.get_providers_local_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param str mapping_identity_id: Retrieve all identity mappings (uid, gid, sid, and on-disk) for the supplied source persona. (required) - :param bool nocreate: Idmap should attempt to create missing identity mappings. - :param str zone: Optional zone. - :return: MappingIdentities + :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. + :return: ProvidersLocal If the method is called asynchronously, returns the request thread. """ - all_params = ['mapping_identity_id', 'nocreate', 'zone'] # noqa: E501 + all_params = ['scope'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -5720,26 +5382,24 @@ def get_mapping_identity_with_http_info(self, mapping_identity_id, **kwargs): # if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_mapping_identity" % key + " to method get_providers_local" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'mapping_identity_id' is set - if ('mapping_identity_id' not in params or - params['mapping_identity_id'] is None): - raise ValueError("Missing the required parameter `mapping_identity_id` when calling `get_mapping_identity`") # noqa: E501 + if ('scope' in params and + len(params['scope']) > 255): + raise ValueError("Invalid value for parameter `scope` when calling `get_providers_local`, length must be less than or equal to `255`") # noqa: E501 + if ('scope' in params and + len(params['scope']) < 0): + raise ValueError("Invalid value for parameter `scope` when calling `get_providers_local`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} - if 'mapping_identity_id' in params: - path_params['MappingIdentityId'] = params['mapping_identity_id'] # noqa: E501 query_params = [] - if 'nocreate' in params: - query_params.append(('nocreate', params['nocreate'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 + if 'scope' in params: + query_params.append(('scope', params['scope'])) # noqa: E501 header_params = {} @@ -5759,14 +5419,14 @@ def get_mapping_identity_with_http_info(self, mapping_identity_id, **kwargs): # auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/1/auth/mapping/identities/{MappingIdentityId}', 'GET', + '/platform/7/auth/providers/local', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='MappingIdentities', # noqa: E501 + response_type='ProvidersLocal', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -5774,57 +5434,47 @@ def get_mapping_identity_with_http_info(self, mapping_identity_id, **kwargs): # _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_mapping_users_lookup(self, **kwargs): # noqa: E501 - """get_mapping_users_lookup # noqa: E501 + def get_providers_local_by_id(self, providers_local_id, **kwargs): # noqa: E501 + """get_providers_local_by_id # noqa: E501 - Retrieve the user information. # noqa: E501 + Retrieve the local provider. # 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_mapping_users_lookup(async_req=True) + >>> thread = api.get_providers_local_by_id(providers_local_id, async_req=True) >>> result = thread.get() :param async_req bool - :param list[int] gid: The IDs of the groups to which the user belongs. - :param str kerberos_principal: The Kerberos principal name, of the form user@realm. - :param int primary_gid: The user's primary group ID. - :param int timeout: Timeout remote commands after NUM seconds. Defaults to 90 seconds. - :param int uid: The user ID. - :param str user: The user name. - :param str zone: The access zone to which the user belongs. - :return: MappingUsersLookup + :param str providers_local_id: Retrieve the local provider. (required) + :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. + :return: ProvidersLocal If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_mapping_users_lookup_with_http_info(**kwargs) # noqa: E501 + return self.get_providers_local_by_id_with_http_info(providers_local_id, **kwargs) # noqa: E501 else: - (data) = self.get_mapping_users_lookup_with_http_info(**kwargs) # noqa: E501 + (data) = self.get_providers_local_by_id_with_http_info(providers_local_id, **kwargs) # noqa: E501 return data - def get_mapping_users_lookup_with_http_info(self, **kwargs): # noqa: E501 - """get_mapping_users_lookup # noqa: E501 + def get_providers_local_by_id_with_http_info(self, providers_local_id, **kwargs): # noqa: E501 + """get_providers_local_by_id # noqa: E501 - Retrieve the user information. # noqa: E501 + Retrieve the local provider. # 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_mapping_users_lookup_with_http_info(async_req=True) + >>> thread = api.get_providers_local_by_id_with_http_info(providers_local_id, async_req=True) >>> result = thread.get() :param async_req bool - :param list[int] gid: The IDs of the groups to which the user belongs. - :param str kerberos_principal: The Kerberos principal name, of the form user@realm. - :param int primary_gid: The user's primary group ID. - :param int timeout: Timeout remote commands after NUM seconds. Defaults to 90 seconds. - :param int uid: The user ID. - :param str user: The user name. - :param str zone: The access zone to which the user belongs. - :return: MappingUsersLookup + :param str providers_local_id: Retrieve the local provider. (required) + :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. + :return: ProvidersLocal If the method is called asynchronously, returns the request thread. """ - all_params = ['gid', 'kerberos_principal', 'primary_gid', 'timeout', 'uid', 'user', 'zone'] # noqa: E501 + all_params = ['providers_local_id', 'scope'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -5835,31 +5485,30 @@ def get_mapping_users_lookup_with_http_info(self, **kwargs): # noqa: E501 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_mapping_users_lookup" % key + " to method get_providers_local_by_id" % key ) params[key] = val del params['kwargs'] + # verify the required parameter 'providers_local_id' is set + if ('providers_local_id' not in params or + params['providers_local_id'] is None): + raise ValueError("Missing the required parameter `providers_local_id` when calling `get_providers_local_by_id`") # noqa: E501 + if ('scope' in params and + len(params['scope']) > 255): + raise ValueError("Invalid value for parameter `scope` when calling `get_providers_local_by_id`, length must be less than or equal to `255`") # noqa: E501 + if ('scope' in params and + len(params['scope']) < 0): + raise ValueError("Invalid value for parameter `scope` when calling `get_providers_local_by_id`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} + if 'providers_local_id' in params: + path_params['ProvidersLocalId'] = params['providers_local_id'] # noqa: E501 query_params = [] - if 'gid' in params: - query_params.append(('gid', params['gid'])) # noqa: E501 - collection_formats['gid'] = 'csv' # noqa: E501 - if 'kerberos_principal' in params: - query_params.append(('kerberos_principal', params['kerberos_principal'])) # noqa: E501 - if 'primary_gid' in params: - query_params.append(('primary_gid', params['primary_gid'])) # noqa: E501 - if 'timeout' in params: - query_params.append(('timeout', params['timeout'])) # noqa: E501 - if 'uid' in params: - query_params.append(('uid', params['uid'])) # noqa: E501 - if 'user' in params: - query_params.append(('user', params['user'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 + if 'scope' in params: + query_params.append(('scope', params['scope'])) # noqa: E501 header_params = {} @@ -5879,14 +5528,14 @@ def get_mapping_users_lookup_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/20/auth/mapping/users/lookup', 'GET', + '/platform/7/auth/providers/local/{ProvidersLocalId}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='MappingUsersLookup', # noqa: E501 + response_type='ProvidersLocal', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -5894,45 +5543,47 @@ def get_mapping_users_lookup_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_mapping_users_rules(self, **kwargs): # noqa: E501 - """get_mapping_users_rules # noqa: E501 + def get_providers_nis_by_id(self, providers_nis_id, **kwargs): # noqa: E501 + """get_providers_nis_by_id # noqa: E501 - Retrieve the user mapping rules. # noqa: E501 + Retrieve the NIS provider. # 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_mapping_users_rules(async_req=True) + >>> thread = api.get_providers_nis_by_id(providers_nis_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str zone: The zone to which the user mapping applies. - :return: MappingUsersRules + :param str providers_nis_id: Retrieve the NIS provider. (required) + :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. + :return: ProvidersNis If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_mapping_users_rules_with_http_info(**kwargs) # noqa: E501 + return self.get_providers_nis_by_id_with_http_info(providers_nis_id, **kwargs) # noqa: E501 else: - (data) = self.get_mapping_users_rules_with_http_info(**kwargs) # noqa: E501 + (data) = self.get_providers_nis_by_id_with_http_info(providers_nis_id, **kwargs) # noqa: E501 return data - def get_mapping_users_rules_with_http_info(self, **kwargs): # noqa: E501 - """get_mapping_users_rules # noqa: E501 + def get_providers_nis_by_id_with_http_info(self, providers_nis_id, **kwargs): # noqa: E501 + """get_providers_nis_by_id # noqa: E501 - Retrieve the user mapping rules. # noqa: E501 + Retrieve the NIS provider. # 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_mapping_users_rules_with_http_info(async_req=True) + >>> thread = api.get_providers_nis_by_id_with_http_info(providers_nis_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str zone: The zone to which the user mapping applies. - :return: MappingUsersRules - If the method is called asynchronously, - returns the request thread. + :param str providers_nis_id: Retrieve the NIS provider. (required) + :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. + :return: ProvidersNis + If the method is called asynchronously, + returns the request thread. """ - all_params = ['zone'] # noqa: E501 + all_params = ['providers_nis_id', 'scope'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -5943,18 +5594,30 @@ def get_mapping_users_rules_with_http_info(self, **kwargs): # noqa: E501 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_mapping_users_rules" % key + " to method get_providers_nis_by_id" % key ) params[key] = val del params['kwargs'] + # verify the required parameter 'providers_nis_id' is set + if ('providers_nis_id' not in params or + params['providers_nis_id'] is None): + raise ValueError("Missing the required parameter `providers_nis_id` when calling `get_providers_nis_by_id`") # noqa: E501 + if ('scope' in params and + len(params['scope']) > 255): + raise ValueError("Invalid value for parameter `scope` when calling `get_providers_nis_by_id`, length must be less than or equal to `255`") # noqa: E501 + if ('scope' in params and + len(params['scope']) < 0): + raise ValueError("Invalid value for parameter `scope` when calling `get_providers_nis_by_id`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} + if 'providers_nis_id' in params: + path_params['ProvidersNisId'] = params['providers_nis_id'] # noqa: E501 query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 + if 'scope' in params: + query_params.append(('scope', params['scope'])) # noqa: E501 header_params = {} @@ -5974,14 +5637,14 @@ def get_mapping_users_rules_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/1/auth/mapping/users/rules', 'GET', + '/platform/7/auth/providers/nis/{ProvidersNisId}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='MappingUsersRules', # noqa: E501 + response_type='ProvidersNis', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -5989,47 +5652,47 @@ def get_mapping_users_rules_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_oauth_certificate(self, oauth_certificate_id, **kwargs): # noqa: E501 - """get_oauth_certificate # noqa: E501 + def get_providers_summary(self, **kwargs): # noqa: E501 + """get_providers_summary # noqa: E501 - Get the certificate using its ID. # noqa: E501 + Retrieve the summary information. # 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_oauth_certificate(oauth_certificate_id, async_req=True) + >>> thread = api.get_providers_summary(async_req=True) >>> result = thread.get() :param async_req bool - :param str oauth_certificate_id: Get the certificate using its ID. (required) - :param str zone: Specifies which access zone to use. - :return: OauthCertificates + :param str groupnet: Filter providers by groupnet. + :param str zone: Filter providers by zone. + :return: ProvidersSummary If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_oauth_certificate_with_http_info(oauth_certificate_id, **kwargs) # noqa: E501 + return self.get_providers_summary_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.get_oauth_certificate_with_http_info(oauth_certificate_id, **kwargs) # noqa: E501 + (data) = self.get_providers_summary_with_http_info(**kwargs) # noqa: E501 return data - def get_oauth_certificate_with_http_info(self, oauth_certificate_id, **kwargs): # noqa: E501 - """get_oauth_certificate # noqa: E501 + def get_providers_summary_with_http_info(self, **kwargs): # noqa: E501 + """get_providers_summary # noqa: E501 - Get the certificate using its ID. # noqa: E501 + Retrieve the summary information. # 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_oauth_certificate_with_http_info(oauth_certificate_id, async_req=True) + >>> thread = api.get_providers_summary_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param str oauth_certificate_id: Get the certificate using its ID. (required) - :param str zone: Specifies which access zone to use. - :return: OauthCertificates + :param str groupnet: Filter providers by groupnet. + :param str zone: Filter providers by zone. + :return: ProvidersSummary If the method is called asynchronously, returns the request thread. """ - all_params = ['oauth_certificate_id', 'zone'] # noqa: E501 + all_params = ['groupnet', 'zone'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -6040,28 +5703,18 @@ def get_oauth_certificate_with_http_info(self, oauth_certificate_id, **kwargs): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_oauth_certificate" % key + " to method get_providers_summary" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'oauth_certificate_id' is set - if ('oauth_certificate_id' not in params or - params['oauth_certificate_id'] is None): - raise ValueError("Missing the required parameter `oauth_certificate_id` when calling `get_oauth_certificate`") # noqa: E501 - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `get_oauth_certificate`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `get_oauth_certificate`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} - if 'oauth_certificate_id' in params: - path_params['OauthCertificateId'] = params['oauth_certificate_id'] # noqa: E501 query_params = [] + if 'groupnet' in params: + query_params.append(('groupnet', params['groupnet'])) # noqa: E501 if 'zone' in params: query_params.append(('zone', params['zone'])) # noqa: E501 @@ -6083,14 +5736,14 @@ def get_oauth_certificate_with_http_info(self, oauth_certificate_id, **kwargs): auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/auth/oauth/certificates/{OauthCertificateId}', 'GET', + '/platform/11/auth/providers/summary', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='OauthCertificates', # noqa: E501 + response_type='ProvidersSummary', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -6098,47 +5751,45 @@ def get_oauth_certificate_with_http_info(self, oauth_certificate_id, **kwargs): _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_oauth_oauth2_client(self, oauth_oauth2_client_id, **kwargs): # noqa: E501 - """get_oauth_oauth2_client # noqa: E501 + def get_settings_acls(self, **kwargs): # noqa: E501 + """get_settings_acls # noqa: E501 - Get OAuth2 client using its ID. # noqa: E501 + Retrieve the ACL policy settings and preset configurations. # 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_oauth_oauth2_client(oauth_oauth2_client_id, async_req=True) + >>> thread = api.get_settings_acls(async_req=True) >>> result = thread.get() :param async_req bool - :param str oauth_oauth2_client_id: Get OAuth2 client using its ID. (required) - :param str zone: Specifies which access zone to use. - :return: OauthOauth2Clients + :param str preset: If specified the preset configuration values for all applicable ACL policies are returned. + :return: SettingsAcls If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_oauth_oauth2_client_with_http_info(oauth_oauth2_client_id, **kwargs) # noqa: E501 + return self.get_settings_acls_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.get_oauth_oauth2_client_with_http_info(oauth_oauth2_client_id, **kwargs) # noqa: E501 + (data) = self.get_settings_acls_with_http_info(**kwargs) # noqa: E501 return data - def get_oauth_oauth2_client_with_http_info(self, oauth_oauth2_client_id, **kwargs): # noqa: E501 - """get_oauth_oauth2_client # noqa: E501 + def get_settings_acls_with_http_info(self, **kwargs): # noqa: E501 + """get_settings_acls # noqa: E501 - Get OAuth2 client using its ID. # noqa: E501 + Retrieve the ACL policy settings and preset configurations. # 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_oauth_oauth2_client_with_http_info(oauth_oauth2_client_id, async_req=True) + >>> thread = api.get_settings_acls_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param str oauth_oauth2_client_id: Get OAuth2 client using its ID. (required) - :param str zone: Specifies which access zone to use. - :return: OauthOauth2Clients + :param str preset: If specified the preset configuration values for all applicable ACL policies are returned. + :return: SettingsAcls If the method is called asynchronously, returns the request thread. """ - all_params = ['oauth_oauth2_client_id', 'zone'] # noqa: E501 + all_params = ['preset'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -6149,30 +5800,18 @@ def get_oauth_oauth2_client_with_http_info(self, oauth_oauth2_client_id, **kwarg if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_oauth_oauth2_client" % key + " to method get_settings_acls" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'oauth_oauth2_client_id' is set - if ('oauth_oauth2_client_id' not in params or - params['oauth_oauth2_client_id'] is None): - raise ValueError("Missing the required parameter `oauth_oauth2_client_id` when calling `get_oauth_oauth2_client`") # noqa: E501 - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `get_oauth_oauth2_client`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `get_oauth_oauth2_client`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} - if 'oauth_oauth2_client_id' in params: - path_params['OauthOauth2ClientId'] = params['oauth_oauth2_client_id'] # noqa: E501 query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 + if 'preset' in params: + query_params.append(('preset', params['preset'])) # noqa: E501 header_params = {} @@ -6192,14 +5831,14 @@ def get_oauth_oauth2_client_with_http_info(self, oauth_oauth2_client_id, **kwarg auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/auth/oauth/oauth2clients/{OauthOauth2ClientId}', 'GET', + '/platform/11/auth/settings/acls', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='OauthOauth2Clients', # noqa: E501 + response_type='SettingsAcls', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -6207,47 +5846,47 @@ def get_oauth_oauth2_client_with_http_info(self, oauth_oauth2_client_id, **kwarg _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_oauth_oauth2_token_exchange(self, oauth_oauth2_token_exchange_id, **kwargs): # noqa: E501 - """get_oauth_oauth2_token_exchange # noqa: E501 + def get_settings_global(self, **kwargs): # noqa: E501 + """get_settings_global # noqa: E501 - Get OAuth2 Token Exchange configuration using its ID. # noqa: E501 + Retrieve the global settings. # 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_oauth_oauth2_token_exchange(oauth_oauth2_token_exchange_id, async_req=True) + >>> thread = api.get_settings_global(async_req=True) >>> result = thread.get() :param async_req bool - :param str oauth_oauth2_token_exchange_id: Get OAuth2 Token Exchange configuration using its ID. (required) - :param str zone: Specifies which access zone to use. - :return: OauthOauth2TokenExchanges + :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. + :param str zone: Zone which contains any per-zone settings. + :return: SettingsGlobal If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_oauth_oauth2_token_exchange_with_http_info(oauth_oauth2_token_exchange_id, **kwargs) # noqa: E501 + return self.get_settings_global_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.get_oauth_oauth2_token_exchange_with_http_info(oauth_oauth2_token_exchange_id, **kwargs) # noqa: E501 + (data) = self.get_settings_global_with_http_info(**kwargs) # noqa: E501 return data - def get_oauth_oauth2_token_exchange_with_http_info(self, oauth_oauth2_token_exchange_id, **kwargs): # noqa: E501 - """get_oauth_oauth2_token_exchange # noqa: E501 + def get_settings_global_with_http_info(self, **kwargs): # noqa: E501 + """get_settings_global # noqa: E501 - Get OAuth2 Token Exchange configuration using its ID. # noqa: E501 + Retrieve the global settings. # 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_oauth_oauth2_token_exchange_with_http_info(oauth_oauth2_token_exchange_id, async_req=True) + >>> thread = api.get_settings_global_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param str oauth_oauth2_token_exchange_id: Get OAuth2 Token Exchange configuration using its ID. (required) - :param str zone: Specifies which access zone to use. - :return: OauthOauth2TokenExchanges + :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. + :param str zone: Zone which contains any per-zone settings. + :return: SettingsGlobal If the method is called asynchronously, returns the request thread. """ - all_params = ['oauth_oauth2_token_exchange_id', 'zone'] # noqa: E501 + all_params = ['scope', 'zone'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -6258,28 +5897,24 @@ def get_oauth_oauth2_token_exchange_with_http_info(self, oauth_oauth2_token_exch if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_oauth_oauth2_token_exchange" % key + " to method get_settings_global" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'oauth_oauth2_token_exchange_id' is set - if ('oauth_oauth2_token_exchange_id' not in params or - params['oauth_oauth2_token_exchange_id'] is None): - raise ValueError("Missing the required parameter `oauth_oauth2_token_exchange_id` when calling `get_oauth_oauth2_token_exchange`") # noqa: E501 - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `get_oauth_oauth2_token_exchange`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `get_oauth_oauth2_token_exchange`, length must be greater than or equal to `0`") # noqa: E501 + if ('scope' in params and + len(params['scope']) > 255): + raise ValueError("Invalid value for parameter `scope` when calling `get_settings_global`, length must be less than or equal to `255`") # noqa: E501 + if ('scope' in params and + len(params['scope']) < 0): + raise ValueError("Invalid value for parameter `scope` when calling `get_settings_global`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} - if 'oauth_oauth2_token_exchange_id' in params: - path_params['OauthOauth2TokenExchangeId'] = params['oauth_oauth2_token_exchange_id'] # noqa: E501 query_params = [] + if 'scope' in params: + query_params.append(('scope', params['scope'])) # noqa: E501 if 'zone' in params: query_params.append(('zone', params['zone'])) # noqa: E501 @@ -6301,14 +5936,14 @@ def get_oauth_oauth2_token_exchange_with_http_info(self, oauth_oauth2_token_exch auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/auth/oauth/oauth2-token-exchanges/{OauthOauth2TokenExchangeId}', 'GET', + '/platform/1/auth/settings/global', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='OauthOauth2TokenExchanges', # noqa: E501 + response_type='SettingsGlobal', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -6316,45 +5951,43 @@ def get_oauth_oauth2_token_exchange_with_http_info(self, oauth_oauth2_token_exch _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_oauth_settings(self, **kwargs): # noqa: E501 - """get_oauth_settings # noqa: E501 + def get_settings_krb5_defaults(self, **kwargs): # noqa: E501 + """get_settings_krb5_defaults # noqa: E501 - Retrieve the OAuth settings. # noqa: E501 + Retrieve the krb5 settings. # 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_oauth_settings(async_req=True) + >>> thread = api.get_settings_krb5_defaults(async_req=True) >>> result = thread.get() :param async_req bool - :param str zone: Specifies which access zone to use. - :return: OauthSettings + :return: SettingsKrb5Defaults If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_oauth_settings_with_http_info(**kwargs) # noqa: E501 + return self.get_settings_krb5_defaults_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.get_oauth_settings_with_http_info(**kwargs) # noqa: E501 + (data) = self.get_settings_krb5_defaults_with_http_info(**kwargs) # noqa: E501 return data - def get_oauth_settings_with_http_info(self, **kwargs): # noqa: E501 - """get_oauth_settings # noqa: E501 + def get_settings_krb5_defaults_with_http_info(self, **kwargs): # noqa: E501 + """get_settings_krb5_defaults # noqa: E501 - Retrieve the OAuth settings. # noqa: E501 + Retrieve the krb5 settings. # 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_oauth_settings_with_http_info(async_req=True) + >>> thread = api.get_settings_krb5_defaults_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param str zone: Specifies which access zone to use. - :return: OauthSettings + :return: SettingsKrb5Defaults If the method is called asynchronously, returns the request thread. """ - all_params = ['zone'] # noqa: E501 + all_params = [] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -6365,24 +5998,16 @@ def get_oauth_settings_with_http_info(self, **kwargs): # noqa: E501 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_oauth_settings" % key + " to method get_settings_krb5_defaults" % key ) params[key] = val del params['kwargs'] - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `get_oauth_settings`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `get_oauth_settings`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -6402,14 +6027,14 @@ def get_oauth_settings_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/auth/oauth/settings', 'GET', + '/platform/1/auth/settings/krb5/defaults', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='OauthSettings', # noqa: E501 + response_type='SettingsKrb5Defaults', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -6417,51 +6042,45 @@ def get_oauth_settings_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_providers_ads_by_id(self, providers_ads_id, **kwargs): # noqa: E501 - """get_providers_ads_by_id # noqa: E501 + def get_settings_krb5_domain(self, settings_krb5_domain_id, **kwargs): # noqa: E501 + """get_settings_krb5_domain # noqa: E501 - Retrieve the ADS provider. # noqa: E501 + View the krb5 domain settings. # 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_providers_ads_by_id(providers_ads_id, async_req=True) + >>> thread = api.get_settings_krb5_domain(settings_krb5_domain_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str providers_ads_id: Retrieve the ADS provider. (required) - :param bool check_duplicates: Check for duplicate SPNs registered in Active Directory. - :param str machine_account: Machine account name to use in AD. Default is the cluster name. - :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :return: ProvidersAds + :param str settings_krb5_domain_id: View the krb5 domain settings. (required) + :return: SettingsKrb5Domains If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_providers_ads_by_id_with_http_info(providers_ads_id, **kwargs) # noqa: E501 + return self.get_settings_krb5_domain_with_http_info(settings_krb5_domain_id, **kwargs) # noqa: E501 else: - (data) = self.get_providers_ads_by_id_with_http_info(providers_ads_id, **kwargs) # noqa: E501 + (data) = self.get_settings_krb5_domain_with_http_info(settings_krb5_domain_id, **kwargs) # noqa: E501 return data - def get_providers_ads_by_id_with_http_info(self, providers_ads_id, **kwargs): # noqa: E501 - """get_providers_ads_by_id # noqa: E501 + def get_settings_krb5_domain_with_http_info(self, settings_krb5_domain_id, **kwargs): # noqa: E501 + """get_settings_krb5_domain # noqa: E501 - Retrieve the ADS provider. # noqa: E501 + View the krb5 domain settings. # 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_providers_ads_by_id_with_http_info(providers_ads_id, async_req=True) + >>> thread = api.get_settings_krb5_domain_with_http_info(settings_krb5_domain_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str providers_ads_id: Retrieve the ADS provider. (required) - :param bool check_duplicates: Check for duplicate SPNs registered in Active Directory. - :param str machine_account: Machine account name to use in AD. Default is the cluster name. - :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :return: ProvidersAds + :param str settings_krb5_domain_id: View the krb5 domain settings. (required) + :return: SettingsKrb5Domains If the method is called asynchronously, returns the request thread. """ - all_params = ['providers_ads_id', 'check_duplicates', 'machine_account', 'scope'] # noqa: E501 + all_params = ['settings_krb5_domain_id'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -6472,34 +6091,22 @@ def get_providers_ads_by_id_with_http_info(self, providers_ads_id, **kwargs): # if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_providers_ads_by_id" % key + " to method get_settings_krb5_domain" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'providers_ads_id' is set - if ('providers_ads_id' not in params or - params['providers_ads_id'] is None): - raise ValueError("Missing the required parameter `providers_ads_id` when calling `get_providers_ads_by_id`") # noqa: E501 + # verify the required parameter 'settings_krb5_domain_id' is set + if ('settings_krb5_domain_id' not in params or + params['settings_krb5_domain_id'] is None): + raise ValueError("Missing the required parameter `settings_krb5_domain_id` when calling `get_settings_krb5_domain`") # noqa: E501 - if ('scope' in params and - len(params['scope']) > 255): - raise ValueError("Invalid value for parameter `scope` when calling `get_providers_ads_by_id`, length must be less than or equal to `255`") # noqa: E501 - if ('scope' in params and - len(params['scope']) < 0): - raise ValueError("Invalid value for parameter `scope` when calling `get_providers_ads_by_id`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} - if 'providers_ads_id' in params: - path_params['ProvidersAdsId'] = params['providers_ads_id'] # noqa: E501 + if 'settings_krb5_domain_id' in params: + path_params['SettingsKrb5DomainId'] = params['settings_krb5_domain_id'] # noqa: E501 query_params = [] - if 'check_duplicates' in params: - query_params.append(('check_duplicates', params['check_duplicates'])) # noqa: E501 - if 'machine_account' in params: - query_params.append(('machine_account', params['machine_account'])) # noqa: E501 - if 'scope' in params: - query_params.append(('scope', params['scope'])) # noqa: E501 header_params = {} @@ -6519,14 +6126,14 @@ def get_providers_ads_by_id_with_http_info(self, providers_ads_id, **kwargs): # auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/14/auth/providers/ads/{ProvidersAdsId}', 'GET', + '/platform/1/auth/settings/krb5/domains/{SettingsKrb5DomainId}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='ProvidersAds', # noqa: E501 + response_type='SettingsKrb5Domains', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -6534,43 +6141,45 @@ def get_providers_ads_by_id_with_http_info(self, providers_ads_id, **kwargs): # _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_providers_duo(self, **kwargs): # noqa: E501 - """get_providers_duo # noqa: E501 + def get_settings_krb5_realm(self, settings_krb5_realm_id, **kwargs): # noqa: E501 + """get_settings_krb5_realm # noqa: E501 - Retrieve Duo provider. # noqa: E501 + Retrieve the krb5 settings for realms. # 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_providers_duo(async_req=True) + >>> thread = api.get_settings_krb5_realm(settings_krb5_realm_id, async_req=True) >>> result = thread.get() :param async_req bool - :return: ProvidersDuo + :param str settings_krb5_realm_id: Retrieve the krb5 settings for realms. (required) + :return: SettingsKrb5Realms If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_providers_duo_with_http_info(**kwargs) # noqa: E501 + return self.get_settings_krb5_realm_with_http_info(settings_krb5_realm_id, **kwargs) # noqa: E501 else: - (data) = self.get_providers_duo_with_http_info(**kwargs) # noqa: E501 + (data) = self.get_settings_krb5_realm_with_http_info(settings_krb5_realm_id, **kwargs) # noqa: E501 return data - def get_providers_duo_with_http_info(self, **kwargs): # noqa: E501 - """get_providers_duo # noqa: E501 + def get_settings_krb5_realm_with_http_info(self, settings_krb5_realm_id, **kwargs): # noqa: E501 + """get_settings_krb5_realm # noqa: E501 - Retrieve Duo provider. # noqa: E501 + Retrieve the krb5 settings for realms. # 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_providers_duo_with_http_info(async_req=True) + >>> thread = api.get_settings_krb5_realm_with_http_info(settings_krb5_realm_id, async_req=True) >>> result = thread.get() :param async_req bool - :return: ProvidersDuo + :param str settings_krb5_realm_id: Retrieve the krb5 settings for realms. (required) + :return: SettingsKrb5Realms If the method is called asynchronously, returns the request thread. """ - all_params = [] # noqa: E501 + all_params = ['settings_krb5_realm_id'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -6581,14 +6190,20 @@ def get_providers_duo_with_http_info(self, **kwargs): # noqa: E501 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_providers_duo" % key + " to method get_settings_krb5_realm" % key ) params[key] = val del params['kwargs'] + # verify the required parameter 'settings_krb5_realm_id' is set + if ('settings_krb5_realm_id' not in params or + params['settings_krb5_realm_id'] is None): + raise ValueError("Missing the required parameter `settings_krb5_realm_id` when calling `get_settings_krb5_realm`") # noqa: E501 collection_formats = {} path_params = {} + if 'settings_krb5_realm_id' in params: + path_params['SettingsKrb5RealmId'] = params['settings_krb5_realm_id'] # noqa: E501 query_params = [] @@ -6610,14 +6225,14 @@ def get_providers_duo_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/7/auth/providers/duo', 'GET', + '/platform/1/auth/settings/krb5/realms/{SettingsKrb5RealmId}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='ProvidersDuo', # noqa: E501 + response_type='SettingsKrb5Realms', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -6625,47 +6240,47 @@ def get_providers_duo_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_providers_file_by_id(self, providers_file_id, **kwargs): # noqa: E501 - """get_providers_file_by_id # noqa: E501 + def get_settings_mapping(self, **kwargs): # noqa: E501 + """get_settings_mapping # noqa: E501 - Retrieve the file provider. # noqa: E501 + Retrieve the mapping settings. # 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_providers_file_by_id(providers_file_id, async_req=True) + >>> thread = api.get_settings_mapping(async_req=True) >>> result = thread.get() :param async_req bool - :param str providers_file_id: Retrieve the file provider. (required) :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :return: ProvidersFile + :param str zone: Access zone which contains mapping settings. + :return: SettingsMapping If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_providers_file_by_id_with_http_info(providers_file_id, **kwargs) # noqa: E501 + return self.get_settings_mapping_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.get_providers_file_by_id_with_http_info(providers_file_id, **kwargs) # noqa: E501 + (data) = self.get_settings_mapping_with_http_info(**kwargs) # noqa: E501 return data - def get_providers_file_by_id_with_http_info(self, providers_file_id, **kwargs): # noqa: E501 - """get_providers_file_by_id # noqa: E501 + def get_settings_mapping_with_http_info(self, **kwargs): # noqa: E501 + """get_settings_mapping # noqa: E501 - Retrieve the file provider. # noqa: E501 + Retrieve the mapping settings. # 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_providers_file_by_id_with_http_info(providers_file_id, async_req=True) + >>> thread = api.get_settings_mapping_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param str providers_file_id: Retrieve the file provider. (required) :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :return: ProvidersFile + :param str zone: Access zone which contains mapping settings. + :return: SettingsMapping If the method is called asynchronously, returns the request thread. """ - all_params = ['providers_file_id', 'scope'] # noqa: E501 + all_params = ['scope', 'zone'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -6676,30 +6291,26 @@ def get_providers_file_by_id_with_http_info(self, providers_file_id, **kwargs): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_providers_file_by_id" % key + " to method get_settings_mapping" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'providers_file_id' is set - if ('providers_file_id' not in params or - params['providers_file_id'] is None): - raise ValueError("Missing the required parameter `providers_file_id` when calling `get_providers_file_by_id`") # noqa: E501 if ('scope' in params and len(params['scope']) > 255): - raise ValueError("Invalid value for parameter `scope` when calling `get_providers_file_by_id`, length must be less than or equal to `255`") # noqa: E501 + raise ValueError("Invalid value for parameter `scope` when calling `get_settings_mapping`, length must be less than or equal to `255`") # noqa: E501 if ('scope' in params and len(params['scope']) < 0): - raise ValueError("Invalid value for parameter `scope` when calling `get_providers_file_by_id`, length must be greater than or equal to `0`") # noqa: E501 + raise ValueError("Invalid value for parameter `scope` when calling `get_settings_mapping`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} - if 'providers_file_id' in params: - path_params['ProvidersFileId'] = params['providers_file_id'] # noqa: E501 query_params = [] if 'scope' in params: query_params.append(('scope', params['scope'])) # noqa: E501 + if 'zone' in params: + query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -6719,14 +6330,14 @@ def get_providers_file_by_id_with_http_info(self, providers_file_id, **kwargs): auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/auth/providers/file/{ProvidersFileId}', 'GET', + '/platform/1/auth/settings/mapping', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='ProvidersFile', # noqa: E501 + response_type='SettingsMapping', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -6734,47 +6345,61 @@ def get_providers_file_by_id_with_http_info(self, providers_file_id, **kwargs): _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_providers_krb5_by_id(self, providers_krb5_id, **kwargs): # noqa: E501 - """get_providers_krb5_by_id # noqa: E501 + def list_auth_groups(self, **kwargs): # noqa: E501 + """list_auth_groups # noqa: E501 - Retrieve the KRB5 provider. # noqa: E501 + List all groups. # 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_providers_krb5_by_id(providers_krb5_id, async_req=True) + >>> thread = api.list_auth_groups(async_req=True) >>> result = thread.get() :param async_req bool - :param str providers_krb5_id: Retrieve the KRB5 provider. (required) - :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :return: ProvidersKrb5 + :param bool cached: If true, only return cached objects. + :param str domain: Filter groups by domain. + :param str filter: Filter groups by name prefix. + :param int limit: Return no more than this many results at once (see resume). + :param str provider: Filter groups by provider. + :param bool query_member_of: Enumerate all groups that a group is a member of. + :param bool resolve_names: Resolve names of personas. + :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). + :param str zone: Filter groups by zone. + :return: AuthGroupsExtended If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_providers_krb5_by_id_with_http_info(providers_krb5_id, **kwargs) # noqa: E501 + return self.list_auth_groups_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.get_providers_krb5_by_id_with_http_info(providers_krb5_id, **kwargs) # noqa: E501 + (data) = self.list_auth_groups_with_http_info(**kwargs) # noqa: E501 return data - def get_providers_krb5_by_id_with_http_info(self, providers_krb5_id, **kwargs): # noqa: E501 - """get_providers_krb5_by_id # noqa: E501 + def list_auth_groups_with_http_info(self, **kwargs): # noqa: E501 + """list_auth_groups # noqa: E501 - Retrieve the KRB5 provider. # noqa: E501 + List all groups. # 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_providers_krb5_by_id_with_http_info(providers_krb5_id, async_req=True) + >>> thread = api.list_auth_groups_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param str providers_krb5_id: Retrieve the KRB5 provider. (required) - :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :return: ProvidersKrb5 + :param bool cached: If true, only return cached objects. + :param str domain: Filter groups by domain. + :param str filter: Filter groups by name prefix. + :param int limit: Return no more than this many results at once (see resume). + :param str provider: Filter groups by provider. + :param bool query_member_of: Enumerate all groups that a group is a member of. + :param bool resolve_names: Resolve names of personas. + :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). + :param str zone: Filter groups by zone. + :return: AuthGroupsExtended If the method is called asynchronously, returns the request thread. """ - all_params = ['providers_krb5_id', 'scope'] # noqa: E501 + all_params = ['cached', 'domain', 'filter', 'limit', 'provider', 'query_member_of', 'resolve_names', 'resume', 'zone'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -6785,30 +6410,44 @@ def get_providers_krb5_by_id_with_http_info(self, providers_krb5_id, **kwargs): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_providers_krb5_by_id" % key + " to method list_auth_groups" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'providers_krb5_id' is set - if ('providers_krb5_id' not in params or - params['providers_krb5_id'] is None): - raise ValueError("Missing the required parameter `providers_krb5_id` when calling `get_providers_krb5_by_id`") # noqa: E501 - if ('scope' in params and - len(params['scope']) > 255): - raise ValueError("Invalid value for parameter `scope` when calling `get_providers_krb5_by_id`, length must be less than or equal to `255`") # noqa: E501 - if ('scope' in params and - len(params['scope']) < 0): - raise ValueError("Invalid value for parameter `scope` when calling `get_providers_krb5_by_id`, length must be greater than or equal to `0`") # noqa: E501 + if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 + raise ValueError("Invalid value for parameter `limit` when calling `list_auth_groups`, must be a value less than or equal to `4294967295`") # noqa: E501 + if 'limit' in params and params['limit'] < 1: # noqa: E501 + raise ValueError("Invalid value for parameter `limit` when calling `list_auth_groups`, must be a value greater than or equal to `1`") # noqa: E501 + if ('resume' in params and + len(params['resume']) > 8192): + raise ValueError("Invalid value for parameter `resume` when calling `list_auth_groups`, length must be less than or equal to `8192`") # noqa: E501 + if ('resume' in params and + len(params['resume']) < 0): + raise ValueError("Invalid value for parameter `resume` when calling `list_auth_groups`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} - if 'providers_krb5_id' in params: - path_params['ProvidersKrb5Id'] = params['providers_krb5_id'] # noqa: E501 query_params = [] - if 'scope' in params: - query_params.append(('scope', params['scope'])) # noqa: E501 + if 'cached' in params: + query_params.append(('cached', params['cached'])) # noqa: E501 + if 'domain' in params: + query_params.append(('domain', params['domain'])) # noqa: E501 + if 'filter' in params: + query_params.append(('filter', params['filter'])) # noqa: E501 + if 'limit' in params: + query_params.append(('limit', params['limit'])) # noqa: E501 + if 'provider' in params: + query_params.append(('provider', params['provider'])) # noqa: E501 + if 'query_member_of' in params: + query_params.append(('query_member_of', params['query_member_of'])) # noqa: E501 + if 'resolve_names' in params: + query_params.append(('resolve_names', params['resolve_names'])) # noqa: E501 + if 'resume' in params: + query_params.append(('resume', params['resume'])) # noqa: E501 + if 'zone' in params: + query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -6828,14 +6467,14 @@ def get_providers_krb5_by_id_with_http_info(self, providers_krb5_id, **kwargs): auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/7/auth/providers/krb5/{ProvidersKrb5Id}', 'GET', + '/platform/1/auth/groups', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='ProvidersKrb5', # noqa: E501 + response_type='AuthGroupsExtended', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -6843,47 +6482,55 @@ def get_providers_krb5_by_id_with_http_info(self, providers_krb5_id, **kwargs): _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_providers_ldap_by_id(self, providers_ldap_id, **kwargs): # noqa: E501 - """get_providers_ldap_by_id # noqa: E501 + def list_auth_roles(self, **kwargs): # noqa: E501 + """list_auth_roles # noqa: E501 - Retrieve the LDAP provider. # noqa: E501 + List all roles. # 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_providers_ldap_by_id(providers_ldap_id, async_req=True) + >>> thread = api.list_auth_roles(async_req=True) >>> result = thread.get() :param async_req bool - :param str providers_ldap_id: Retrieve the LDAP provider. (required) - :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :return: ProvidersLdap + :param str dir: The direction of the sort. + :param int limit: Return no more than this many results at once (see resume). + :param bool resolve_names: Resolve names of personas. + :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). + :param str sort: The field that will be used for sorting. + :param str zone: Specifies which access zone to use. + :return: AuthRolesExtended If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_providers_ldap_by_id_with_http_info(providers_ldap_id, **kwargs) # noqa: E501 + return self.list_auth_roles_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.get_providers_ldap_by_id_with_http_info(providers_ldap_id, **kwargs) # noqa: E501 + (data) = self.list_auth_roles_with_http_info(**kwargs) # noqa: E501 return data - def get_providers_ldap_by_id_with_http_info(self, providers_ldap_id, **kwargs): # noqa: E501 - """get_providers_ldap_by_id # noqa: E501 + def list_auth_roles_with_http_info(self, **kwargs): # noqa: E501 + """list_auth_roles # noqa: E501 - Retrieve the LDAP provider. # noqa: E501 + List all roles. # 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_providers_ldap_by_id_with_http_info(providers_ldap_id, async_req=True) + >>> thread = api.list_auth_roles_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param str providers_ldap_id: Retrieve the LDAP provider. (required) - :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :return: ProvidersLdap + :param str dir: The direction of the sort. + :param int limit: Return no more than this many results at once (see resume). + :param bool resolve_names: Resolve names of personas. + :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). + :param str sort: The field that will be used for sorting. + :param str zone: Specifies which access zone to use. + :return: AuthRolesExtended If the method is called asynchronously, returns the request thread. """ - all_params = ['providers_ldap_id', 'scope'] # noqa: E501 + all_params = ['dir', 'limit', 'resolve_names', 'resume', 'sort', 'zone'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -6894,30 +6541,53 @@ def get_providers_ldap_by_id_with_http_info(self, providers_ldap_id, **kwargs): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_providers_ldap_by_id" % key + " to method list_auth_roles" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'providers_ldap_id' is set - if ('providers_ldap_id' not in params or - params['providers_ldap_id'] is None): - raise ValueError("Missing the required parameter `providers_ldap_id` when calling `get_providers_ldap_by_id`") # noqa: E501 - if ('scope' in params and - len(params['scope']) > 255): - raise ValueError("Invalid value for parameter `scope` when calling `get_providers_ldap_by_id`, length must be less than or equal to `255`") # noqa: E501 - if ('scope' in params and - len(params['scope']) < 0): - raise ValueError("Invalid value for parameter `scope` when calling `get_providers_ldap_by_id`, length must be greater than or equal to `0`") # noqa: E501 + if ('dir' in params and + len(params['dir']) < 0): + raise ValueError("Invalid value for parameter `dir` when calling `list_auth_roles`, length must be greater than or equal to `0`") # noqa: E501 + if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 + raise ValueError("Invalid value for parameter `limit` when calling `list_auth_roles`, must be a value less than or equal to `4294967295`") # noqa: E501 + if 'limit' in params and params['limit'] < 1: # noqa: E501 + raise ValueError("Invalid value for parameter `limit` when calling `list_auth_roles`, must be a value greater than or equal to `1`") # noqa: E501 + if ('resume' in params and + len(params['resume']) > 8192): + raise ValueError("Invalid value for parameter `resume` when calling `list_auth_roles`, length must be less than or equal to `8192`") # noqa: E501 + if ('resume' in params and + len(params['resume']) < 0): + raise ValueError("Invalid value for parameter `resume` when calling `list_auth_roles`, length must be greater than or equal to `0`") # noqa: E501 + if ('sort' in params and + len(params['sort']) > 255): + raise ValueError("Invalid value for parameter `sort` when calling `list_auth_roles`, length must be less than or equal to `255`") # noqa: E501 + if ('sort' in params and + len(params['sort']) < 0): + raise ValueError("Invalid value for parameter `sort` when calling `list_auth_roles`, length must be greater than or equal to `0`") # noqa: E501 + if ('zone' in params and + len(params['zone']) > 255): + raise ValueError("Invalid value for parameter `zone` when calling `list_auth_roles`, length must be less than or equal to `255`") # noqa: E501 + if ('zone' in params and + len(params['zone']) < 0): + raise ValueError("Invalid value for parameter `zone` when calling `list_auth_roles`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} - if 'providers_ldap_id' in params: - path_params['ProvidersLdapId'] = params['providers_ldap_id'] # noqa: E501 query_params = [] - if 'scope' in params: - query_params.append(('scope', params['scope'])) # noqa: E501 + if 'dir' in params: + query_params.append(('dir', params['dir'])) # noqa: E501 + if 'limit' in params: + query_params.append(('limit', params['limit'])) # noqa: E501 + if 'resolve_names' in params: + query_params.append(('resolve_names', params['resolve_names'])) # noqa: E501 + if 'resume' in params: + query_params.append(('resume', params['resume'])) # noqa: E501 + if 'sort' in params: + query_params.append(('sort', params['sort'])) # noqa: E501 + if 'zone' in params: + query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -6937,14 +6607,14 @@ def get_providers_ldap_by_id_with_http_info(self, providers_ldap_id, **kwargs): auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/auth/providers/ldap/{ProvidersLdapId}', 'GET', + '/platform/14/auth/roles', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='ProvidersLdap', # noqa: E501 + response_type='AuthRolesExtended', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -6952,3192 +6622,61 @@ def get_providers_ldap_by_id_with_http_info(self, providers_ldap_id, **kwargs): _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_providers_local(self, **kwargs): # noqa: E501 - """get_providers_local # noqa: E501 + def list_auth_users(self, **kwargs): # noqa: E501 + """list_auth_users # noqa: E501 - List all local providers. # noqa: E501 + List all users. # 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_providers_local(async_req=True) + >>> thread = api.list_auth_users(async_req=True) >>> result = thread.get() :param async_req bool - :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :return: ProvidersLocal + :param bool cached: If true, only return cached objects. + :param str domain: Filter users by domain. + :param str filter: Filter users by name prefix. + :param int limit: Return no more than this many results at once (see resume). + :param str provider: Filter users by provider. + :param bool query_member_of: Enumerate all users that a group is a member of. + :param bool resolve_names: Resolve names of personas. + :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). + :param str zone: Filter users by zone. + :return: AuthUsersExtended If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_providers_local_with_http_info(**kwargs) # noqa: E501 + return self.list_auth_users_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.get_providers_local_with_http_info(**kwargs) # noqa: E501 + (data) = self.list_auth_users_with_http_info(**kwargs) # noqa: E501 return data - def get_providers_local_with_http_info(self, **kwargs): # noqa: E501 - """get_providers_local # noqa: E501 + def list_auth_users_with_http_info(self, **kwargs): # noqa: E501 + """list_auth_users # noqa: E501 - List all local providers. # noqa: E501 + List all users. # 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_providers_local_with_http_info(async_req=True) + >>> thread = api.list_auth_users_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :return: ProvidersLocal - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['scope'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_providers_local" % key - ) - params[key] = val - del params['kwargs'] - - if ('scope' in params and - len(params['scope']) > 255): - raise ValueError("Invalid value for parameter `scope` when calling `get_providers_local`, length must be less than or equal to `255`") # noqa: E501 - if ('scope' in params and - len(params['scope']) < 0): - raise ValueError("Invalid value for parameter `scope` when calling `get_providers_local`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'scope' in params: - query_params.append(('scope', params['scope'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/auth/providers/local', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='ProvidersLocal', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_providers_local_by_id(self, providers_local_id, **kwargs): # noqa: E501 - """get_providers_local_by_id # noqa: E501 - - Retrieve the local provider. # 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_providers_local_by_id(providers_local_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str providers_local_id: Retrieve the local provider. (required) - :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :return: ProvidersLocal - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_providers_local_by_id_with_http_info(providers_local_id, **kwargs) # noqa: E501 - else: - (data) = self.get_providers_local_by_id_with_http_info(providers_local_id, **kwargs) # noqa: E501 - return data - - def get_providers_local_by_id_with_http_info(self, providers_local_id, **kwargs): # noqa: E501 - """get_providers_local_by_id # noqa: E501 - - Retrieve the local provider. # 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_providers_local_by_id_with_http_info(providers_local_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str providers_local_id: Retrieve the local provider. (required) - :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :return: ProvidersLocal - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['providers_local_id', 'scope'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_providers_local_by_id" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'providers_local_id' is set - if ('providers_local_id' not in params or - params['providers_local_id'] is None): - raise ValueError("Missing the required parameter `providers_local_id` when calling `get_providers_local_by_id`") # noqa: E501 - - if ('scope' in params and - len(params['scope']) > 255): - raise ValueError("Invalid value for parameter `scope` when calling `get_providers_local_by_id`, length must be less than or equal to `255`") # noqa: E501 - if ('scope' in params and - len(params['scope']) < 0): - raise ValueError("Invalid value for parameter `scope` when calling `get_providers_local_by_id`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - if 'providers_local_id' in params: - path_params['ProvidersLocalId'] = params['providers_local_id'] # noqa: E501 - - query_params = [] - if 'scope' in params: - query_params.append(('scope', params['scope'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/auth/providers/local/{ProvidersLocalId}', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='ProvidersLocal', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_providers_nis_by_id(self, providers_nis_id, **kwargs): # noqa: E501 - """get_providers_nis_by_id # noqa: E501 - - Retrieve the NIS provider. # 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_providers_nis_by_id(providers_nis_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str providers_nis_id: Retrieve the NIS provider. (required) - :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :return: ProvidersNis - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_providers_nis_by_id_with_http_info(providers_nis_id, **kwargs) # noqa: E501 - else: - (data) = self.get_providers_nis_by_id_with_http_info(providers_nis_id, **kwargs) # noqa: E501 - return data - - def get_providers_nis_by_id_with_http_info(self, providers_nis_id, **kwargs): # noqa: E501 - """get_providers_nis_by_id # noqa: E501 - - Retrieve the NIS provider. # 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_providers_nis_by_id_with_http_info(providers_nis_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str providers_nis_id: Retrieve the NIS provider. (required) - :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :return: ProvidersNis - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['providers_nis_id', 'scope'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_providers_nis_by_id" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'providers_nis_id' is set - if ('providers_nis_id' not in params or - params['providers_nis_id'] is None): - raise ValueError("Missing the required parameter `providers_nis_id` when calling `get_providers_nis_by_id`") # noqa: E501 - - if ('scope' in params and - len(params['scope']) > 255): - raise ValueError("Invalid value for parameter `scope` when calling `get_providers_nis_by_id`, length must be less than or equal to `255`") # noqa: E501 - if ('scope' in params and - len(params['scope']) < 0): - raise ValueError("Invalid value for parameter `scope` when calling `get_providers_nis_by_id`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - if 'providers_nis_id' in params: - path_params['ProvidersNisId'] = params['providers_nis_id'] # noqa: E501 - - query_params = [] - if 'scope' in params: - query_params.append(('scope', params['scope'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/7/auth/providers/nis/{ProvidersNisId}', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='ProvidersNis', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_providers_saml_services_idp(self, providers_saml_services_idp_id, **kwargs): # noqa: E501 - """get_providers_saml_services_idp # noqa: E501 - - Get IDP using its ID. # 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_providers_saml_services_idp(providers_saml_services_idp_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str providers_saml_services_idp_id: Get IDP using its ID. (required) - :param str zone: Specifies which access zone to use. - :return: ProvidersSamlServicesIdps - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_providers_saml_services_idp_with_http_info(providers_saml_services_idp_id, **kwargs) # noqa: E501 - else: - (data) = self.get_providers_saml_services_idp_with_http_info(providers_saml_services_idp_id, **kwargs) # noqa: E501 - return data - - def get_providers_saml_services_idp_with_http_info(self, providers_saml_services_idp_id, **kwargs): # noqa: E501 - """get_providers_saml_services_idp # noqa: E501 - - Get IDP using its ID. # 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_providers_saml_services_idp_with_http_info(providers_saml_services_idp_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str providers_saml_services_idp_id: Get IDP using its ID. (required) - :param str zone: Specifies which access zone to use. - :return: ProvidersSamlServicesIdps - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['providers_saml_services_idp_id', 'zone'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_providers_saml_services_idp" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'providers_saml_services_idp_id' is set - if ('providers_saml_services_idp_id' not in params or - params['providers_saml_services_idp_id'] is None): - raise ValueError("Missing the required parameter `providers_saml_services_idp_id` when calling `get_providers_saml_services_idp`") # noqa: E501 - - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `get_providers_saml_services_idp`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `get_providers_saml_services_idp`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - if 'providers_saml_services_idp_id' in params: - path_params['ProvidersSamlServicesIdpId'] = params['providers_saml_services_idp_id'] # noqa: E501 - - query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/auth/providers/saml-services/idps/{ProvidersSamlServicesIdpId}', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='ProvidersSamlServicesIdps', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_providers_saml_services_settings(self, **kwargs): # noqa: E501 - """get_providers_saml_services_settings # noqa: E501 - - Retrieve the SAML services settings. # 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_providers_saml_services_settings(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str zone: Specifies which access zone to use. - :return: ProvidersSamlServicesSettings - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_providers_saml_services_settings_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_providers_saml_services_settings_with_http_info(**kwargs) # noqa: E501 - return data - - def get_providers_saml_services_settings_with_http_info(self, **kwargs): # noqa: E501 - """get_providers_saml_services_settings # noqa: E501 - - Retrieve the SAML services settings. # 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_providers_saml_services_settings_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str zone: Specifies which access zone to use. - :return: ProvidersSamlServicesSettings - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['zone'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_providers_saml_services_settings" % key - ) - params[key] = val - del params['kwargs'] - - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `get_providers_saml_services_settings`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `get_providers_saml_services_settings`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/auth/providers/saml-services/settings', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='ProvidersSamlServicesSettings', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_providers_saml_services_sp(self, **kwargs): # noqa: E501 - """get_providers_saml_services_sp # noqa: E501 - - Retrieve the SAML SP settings. # 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_providers_saml_services_sp(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str zone: Specifies which access zone to use. - :return: ProvidersSamlServicesSp - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_providers_saml_services_sp_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_providers_saml_services_sp_with_http_info(**kwargs) # noqa: E501 - return data - - def get_providers_saml_services_sp_with_http_info(self, **kwargs): # noqa: E501 - """get_providers_saml_services_sp # noqa: E501 - - Retrieve the SAML SP settings. # 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_providers_saml_services_sp_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str zone: Specifies which access zone to use. - :return: ProvidersSamlServicesSp - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['zone'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_providers_saml_services_sp" % key - ) - params[key] = val - del params['kwargs'] - - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `get_providers_saml_services_sp`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `get_providers_saml_services_sp`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/18/auth/providers/saml-services/sp', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='ProvidersSamlServicesSp', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_providers_saml_services_sp_signing_key_settings(self, **kwargs): # noqa: E501 - """get_providers_saml_services_sp_signing_key_settings # noqa: E501 - - Retrieve the SAML SP signing key settings. # 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_providers_saml_services_sp_signing_key_settings(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str zone: Specifies which access zone to use. - :return: ProvidersSamlServicesSpSigningKeySettings - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_providers_saml_services_sp_signing_key_settings_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_providers_saml_services_sp_signing_key_settings_with_http_info(**kwargs) # noqa: E501 - return data - - def get_providers_saml_services_sp_signing_key_settings_with_http_info(self, **kwargs): # noqa: E501 - """get_providers_saml_services_sp_signing_key_settings # noqa: E501 - - Retrieve the SAML SP signing key settings. # 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_providers_saml_services_sp_signing_key_settings_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str zone: Specifies which access zone to use. - :return: ProvidersSamlServicesSpSigningKeySettings - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['zone'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_providers_saml_services_sp_signing_key_settings" % key - ) - params[key] = val - del params['kwargs'] - - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `get_providers_saml_services_sp_signing_key_settings`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `get_providers_saml_services_sp_signing_key_settings`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/auth/providers/saml-services/sp/signing-key/settings', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='ProvidersSamlServicesSpSigningKeySettings', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_providers_saml_services_sp_signing_key_status(self, **kwargs): # noqa: E501 - """get_providers_saml_services_sp_signing_key_status # noqa: E501 - - Retrieve information about the SAML SP signing key and certificate. # 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_providers_saml_services_sp_signing_key_status(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str zone: Specifies which access zone to use. - :return: ProvidersSamlServicesSpSigningKeyStatus - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_providers_saml_services_sp_signing_key_status_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_providers_saml_services_sp_signing_key_status_with_http_info(**kwargs) # noqa: E501 - return data - - def get_providers_saml_services_sp_signing_key_status_with_http_info(self, **kwargs): # noqa: E501 - """get_providers_saml_services_sp_signing_key_status # noqa: E501 - - Retrieve information about the SAML SP signing key and certificate. # 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_providers_saml_services_sp_signing_key_status_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str zone: Specifies which access zone to use. - :return: ProvidersSamlServicesSpSigningKeyStatus - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['zone'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_providers_saml_services_sp_signing_key_status" % key - ) - params[key] = val - del params['kwargs'] - - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `get_providers_saml_services_sp_signing_key_status`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `get_providers_saml_services_sp_signing_key_status`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/auth/providers/saml-services/sp/signing-key/status', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='ProvidersSamlServicesSpSigningKeyStatus', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_providers_summary(self, **kwargs): # noqa: E501 - """get_providers_summary # noqa: E501 - - Retrieve the summary information. # 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_providers_summary(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str groupnet: Filter providers by groupnet. - :param str zone: Filter providers by zone. - :return: ProvidersSummary - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_providers_summary_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_providers_summary_with_http_info(**kwargs) # noqa: E501 - return data - - def get_providers_summary_with_http_info(self, **kwargs): # noqa: E501 - """get_providers_summary # noqa: E501 - - Retrieve the summary information. # 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_providers_summary_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str groupnet: Filter providers by groupnet. - :param str zone: Filter providers by zone. - :return: ProvidersSummary - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['groupnet', 'zone'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_providers_summary" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - if 'groupnet' in params: - query_params.append(('groupnet', params['groupnet'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/11/auth/providers/summary', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='ProvidersSummary', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_settings_acls(self, **kwargs): # noqa: E501 - """get_settings_acls # noqa: E501 - - Retrieve the ACL policy settings and preset configurations. # 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_settings_acls(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str preset: If specified the preset configuration values for all applicable ACL policies are returned. - :return: SettingsAcls - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_settings_acls_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_settings_acls_with_http_info(**kwargs) # noqa: E501 - return data - - def get_settings_acls_with_http_info(self, **kwargs): # noqa: E501 - """get_settings_acls # noqa: E501 - - Retrieve the ACL policy settings and preset configurations. # 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_settings_acls_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str preset: If specified the preset configuration values for all applicable ACL policies are returned. - :return: SettingsAcls - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['preset'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_settings_acls" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - if 'preset' in params: - query_params.append(('preset', params['preset'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/18/auth/settings/acls', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='SettingsAcls', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_settings_global(self, **kwargs): # noqa: E501 - """get_settings_global # noqa: E501 - - Retrieve the global settings. # 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_settings_global(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :param str zone: Zone which contains any per-zone settings. - :return: SettingsGlobalExtended - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_settings_global_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_settings_global_with_http_info(**kwargs) # noqa: E501 - return data - - def get_settings_global_with_http_info(self, **kwargs): # noqa: E501 - """get_settings_global # noqa: E501 - - Retrieve the global settings. # 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_settings_global_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :param str zone: Zone which contains any per-zone settings. - :return: SettingsGlobalExtended - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['scope', 'zone'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_settings_global" % key - ) - params[key] = val - del params['kwargs'] - - if ('scope' in params and - len(params['scope']) > 255): - raise ValueError("Invalid value for parameter `scope` when calling `get_settings_global`, length must be less than or equal to `255`") # noqa: E501 - if ('scope' in params and - len(params['scope']) < 0): - raise ValueError("Invalid value for parameter `scope` when calling `get_settings_global`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'scope' in params: - query_params.append(('scope', params['scope'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/auth/settings/global', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='SettingsGlobalExtended', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_settings_krb5_defaults(self, **kwargs): # noqa: E501 - """get_settings_krb5_defaults # noqa: E501 - - Retrieve the krb5 settings. # 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_settings_krb5_defaults(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: SettingsKrb5Defaults - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_settings_krb5_defaults_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_settings_krb5_defaults_with_http_info(**kwargs) # noqa: E501 - return data - - def get_settings_krb5_defaults_with_http_info(self, **kwargs): # noqa: E501 - """get_settings_krb5_defaults # noqa: E501 - - Retrieve the krb5 settings. # 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_settings_krb5_defaults_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: SettingsKrb5Defaults - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_settings_krb5_defaults" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/19/auth/settings/krb5/defaults', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='SettingsKrb5Defaults', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_settings_krb5_domain(self, settings_krb5_domain_id, **kwargs): # noqa: E501 - """get_settings_krb5_domain # noqa: E501 - - View the krb5 domain settings. # 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_settings_krb5_domain(settings_krb5_domain_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str settings_krb5_domain_id: View the krb5 domain settings. (required) - :return: SettingsKrb5Domains - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_settings_krb5_domain_with_http_info(settings_krb5_domain_id, **kwargs) # noqa: E501 - else: - (data) = self.get_settings_krb5_domain_with_http_info(settings_krb5_domain_id, **kwargs) # noqa: E501 - return data - - def get_settings_krb5_domain_with_http_info(self, settings_krb5_domain_id, **kwargs): # noqa: E501 - """get_settings_krb5_domain # noqa: E501 - - View the krb5 domain settings. # 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_settings_krb5_domain_with_http_info(settings_krb5_domain_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str settings_krb5_domain_id: View the krb5 domain settings. (required) - :return: SettingsKrb5Domains - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['settings_krb5_domain_id'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_settings_krb5_domain" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'settings_krb5_domain_id' is set - if ('settings_krb5_domain_id' not in params or - params['settings_krb5_domain_id'] is None): - raise ValueError("Missing the required parameter `settings_krb5_domain_id` when calling `get_settings_krb5_domain`") # noqa: E501 - - collection_formats = {} - - path_params = {} - if 'settings_krb5_domain_id' in params: - path_params['SettingsKrb5DomainId'] = params['settings_krb5_domain_id'] # noqa: E501 - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/1/auth/settings/krb5/domains/{SettingsKrb5DomainId}', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='SettingsKrb5Domains', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_settings_krb5_realm(self, settings_krb5_realm_id, **kwargs): # noqa: E501 - """get_settings_krb5_realm # noqa: E501 - - Retrieve the krb5 settings for realms. # 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_settings_krb5_realm(settings_krb5_realm_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str settings_krb5_realm_id: Retrieve the krb5 settings for realms. (required) - :return: SettingsKrb5Realms - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_settings_krb5_realm_with_http_info(settings_krb5_realm_id, **kwargs) # noqa: E501 - else: - (data) = self.get_settings_krb5_realm_with_http_info(settings_krb5_realm_id, **kwargs) # noqa: E501 - return data - - def get_settings_krb5_realm_with_http_info(self, settings_krb5_realm_id, **kwargs): # noqa: E501 - """get_settings_krb5_realm # noqa: E501 - - Retrieve the krb5 settings for realms. # 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_settings_krb5_realm_with_http_info(settings_krb5_realm_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str settings_krb5_realm_id: Retrieve the krb5 settings for realms. (required) - :return: SettingsKrb5Realms - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['settings_krb5_realm_id'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_settings_krb5_realm" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'settings_krb5_realm_id' is set - if ('settings_krb5_realm_id' not in params or - params['settings_krb5_realm_id'] is None): - raise ValueError("Missing the required parameter `settings_krb5_realm_id` when calling `get_settings_krb5_realm`") # noqa: E501 - - collection_formats = {} - - path_params = {} - if 'settings_krb5_realm_id' in params: - path_params['SettingsKrb5RealmId'] = params['settings_krb5_realm_id'] # noqa: E501 - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/1/auth/settings/krb5/realms/{SettingsKrb5RealmId}', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='SettingsKrb5Realms', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_settings_mapping(self, **kwargs): # noqa: E501 - """get_settings_mapping # noqa: E501 - - Retrieve the mapping settings. # 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_settings_mapping(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :param str zone: Access zone which contains mapping settings. - :return: SettingsMapping - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_settings_mapping_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_settings_mapping_with_http_info(**kwargs) # noqa: E501 - return data - - def get_settings_mapping_with_http_info(self, **kwargs): # noqa: E501 - """get_settings_mapping # noqa: E501 - - Retrieve the mapping settings. # 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_settings_mapping_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :param str zone: Access zone which contains mapping settings. - :return: SettingsMapping - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['scope', 'zone'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_settings_mapping" % key - ) - params[key] = val - del params['kwargs'] - - if ('scope' in params and - len(params['scope']) > 255): - raise ValueError("Invalid value for parameter `scope` when calling `get_settings_mapping`, length must be less than or equal to `255`") # noqa: E501 - if ('scope' in params and - len(params['scope']) < 0): - raise ValueError("Invalid value for parameter `scope` when calling `get_settings_mapping`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'scope' in params: - query_params.append(('scope', params['scope'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/1/auth/settings/mapping', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='SettingsMapping', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def list_auth_groups(self, **kwargs): # noqa: E501 - """list_auth_groups # noqa: E501 - - List all groups. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_auth_groups(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param bool cached: If true, only return cached objects. - :param str domain: Filter groups by domain. - :param str filter: Filter groups by name prefix. - :param int limit: Return no more than this many results at once (see resume). - :param str provider: Filter groups by provider. - :param bool query_member_of: Enumerates the groups for which the groups are members. The query_member_of argument determines whether the member_of field of a returned group is null or filled out with the enumerated groups. As it requires additional processing, only use query_member_of if you want to look at this field. - :param bool resolve_names: Resolve names of personas. - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param int timeout: Timeout remote commands after NUM seconds. Defaults to 90 seconds. - :param str zone: Filter groups by zone. - :return: AuthGroupsExtended - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.list_auth_groups_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.list_auth_groups_with_http_info(**kwargs) # noqa: E501 - return data - - def list_auth_groups_with_http_info(self, **kwargs): # noqa: E501 - """list_auth_groups # noqa: E501 - - List all groups. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_auth_groups_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param bool cached: If true, only return cached objects. - :param str domain: Filter groups by domain. - :param str filter: Filter groups by name prefix. - :param int limit: Return no more than this many results at once (see resume). - :param str provider: Filter groups by provider. - :param bool query_member_of: Enumerates the groups for which the groups are members. The query_member_of argument determines whether the member_of field of a returned group is null or filled out with the enumerated groups. As it requires additional processing, only use query_member_of if you want to look at this field. - :param bool resolve_names: Resolve names of personas. - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param int timeout: Timeout remote commands after NUM seconds. Defaults to 90 seconds. - :param str zone: Filter groups by zone. - :return: AuthGroupsExtended - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['cached', 'domain', 'filter', 'limit', 'provider', 'query_member_of', 'resolve_names', 'resume', 'timeout', 'zone'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method list_auth_groups" % key - ) - params[key] = val - del params['kwargs'] - - if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `list_auth_groups`, must be a value less than or equal to `4294967295`") # noqa: E501 - if 'limit' in params and params['limit'] < 1: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `list_auth_groups`, must be a value greater than or equal to `1`") # noqa: E501 - if ('resume' in params and - len(params['resume']) > 8192): - raise ValueError("Invalid value for parameter `resume` when calling `list_auth_groups`, length must be less than or equal to `8192`") # noqa: E501 - if ('resume' in params and - len(params['resume']) < 0): - raise ValueError("Invalid value for parameter `resume` when calling `list_auth_groups`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'cached' in params: - query_params.append(('cached', params['cached'])) # noqa: E501 - if 'domain' in params: - query_params.append(('domain', params['domain'])) # noqa: E501 - if 'filter' in params: - query_params.append(('filter', params['filter'])) # noqa: E501 - if 'limit' in params: - query_params.append(('limit', params['limit'])) # noqa: E501 - if 'provider' in params: - query_params.append(('provider', params['provider'])) # noqa: E501 - if 'query_member_of' in params: - query_params.append(('query_member_of', params['query_member_of'])) # noqa: E501 - if 'resolve_names' in params: - query_params.append(('resolve_names', params['resolve_names'])) # noqa: E501 - if 'resume' in params: - query_params.append(('resume', params['resume'])) # noqa: E501 - if 'timeout' in params: - query_params.append(('timeout', params['timeout'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/17/auth/groups', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='AuthGroupsExtended', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def list_auth_roles(self, **kwargs): # noqa: E501 - """list_auth_roles # noqa: E501 - - List all roles. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_auth_roles(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str dir: The direction of the sort. - :param int limit: Return no more than this many results at once (see resume). - :param bool resolve_names: Resolve names of personas. - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param str sort: The field that will be used for sorting. - :param str zone: Specifies which access zone to use. - :return: AuthRolesExtended - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.list_auth_roles_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.list_auth_roles_with_http_info(**kwargs) # noqa: E501 - return data - - def list_auth_roles_with_http_info(self, **kwargs): # noqa: E501 - """list_auth_roles # noqa: E501 - - List all roles. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_auth_roles_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str dir: The direction of the sort. - :param int limit: Return no more than this many results at once (see resume). - :param bool resolve_names: Resolve names of personas. - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param str sort: The field that will be used for sorting. - :param str zone: Specifies which access zone to use. - :return: AuthRolesExtended - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['dir', 'limit', 'resolve_names', 'resume', 'sort', 'zone'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method list_auth_roles" % key - ) - params[key] = val - del params['kwargs'] - - if ('dir' in params and - len(params['dir']) < 0): - raise ValueError("Invalid value for parameter `dir` when calling `list_auth_roles`, length must be greater than or equal to `0`") # noqa: E501 - if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `list_auth_roles`, must be a value less than or equal to `4294967295`") # noqa: E501 - if 'limit' in params and params['limit'] < 1: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `list_auth_roles`, must be a value greater than or equal to `1`") # noqa: E501 - if ('resume' in params and - len(params['resume']) > 8192): - raise ValueError("Invalid value for parameter `resume` when calling `list_auth_roles`, length must be less than or equal to `8192`") # noqa: E501 - if ('resume' in params and - len(params['resume']) < 0): - raise ValueError("Invalid value for parameter `resume` when calling `list_auth_roles`, length must be greater than or equal to `0`") # noqa: E501 - if ('sort' in params and - len(params['sort']) > 255): - raise ValueError("Invalid value for parameter `sort` when calling `list_auth_roles`, length must be less than or equal to `255`") # noqa: E501 - if ('sort' in params and - len(params['sort']) < 0): - raise ValueError("Invalid value for parameter `sort` when calling `list_auth_roles`, length must be greater than or equal to `0`") # noqa: E501 - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `list_auth_roles`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `list_auth_roles`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'dir' in params: - query_params.append(('dir', params['dir'])) # noqa: E501 - if 'limit' in params: - query_params.append(('limit', params['limit'])) # noqa: E501 - if 'resolve_names' in params: - query_params.append(('resolve_names', params['resolve_names'])) # noqa: E501 - if 'resume' in params: - query_params.append(('resume', params['resume'])) # noqa: E501 - if 'sort' in params: - query_params.append(('sort', params['sort'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/18/auth/roles', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='AuthRolesExtended', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def list_auth_users(self, **kwargs): # noqa: E501 - """list_auth_users # noqa: E501 - - List all users. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_auth_users(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param bool cached: If true, only return cached objects. - :param str domain: Filter users by domain. - :param str filter: Filter users by name prefix. - :param int limit: Return no more than this many results at once (see resume). - :param str provider: Filter users by provider. - :param bool query_member_of: Enumerates the groups for which the users are members. The query_member_of argument determines whether the member_of field of a returned user is null or filled out with the enumerated groups. As it requires additional processing, only use query_member_of if you want to look at this field. - :param bool resolve_names: Resolve names of personas. - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param int timeout: Timeout remote commands after NUM seconds. Defaults to 90 seconds. - :param str zone: Filter users by zone. - :return: AuthUsersExtended - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.list_auth_users_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.list_auth_users_with_http_info(**kwargs) # noqa: E501 - return data - - def list_auth_users_with_http_info(self, **kwargs): # noqa: E501 - """list_auth_users # noqa: E501 - - List all users. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_auth_users_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param bool cached: If true, only return cached objects. - :param str domain: Filter users by domain. - :param str filter: Filter users by name prefix. - :param int limit: Return no more than this many results at once (see resume). - :param str provider: Filter users by provider. - :param bool query_member_of: Enumerates the groups for which the users are members. The query_member_of argument determines whether the member_of field of a returned user is null or filled out with the enumerated groups. As it requires additional processing, only use query_member_of if you want to look at this field. - :param bool resolve_names: Resolve names of personas. - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param int timeout: Timeout remote commands after NUM seconds. Defaults to 90 seconds. - :param str zone: Filter users by zone. - :return: AuthUsersExtended - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['cached', 'domain', 'filter', 'limit', 'provider', 'query_member_of', 'resolve_names', 'resume', 'timeout', 'zone'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method list_auth_users" % key - ) - params[key] = val - del params['kwargs'] - - if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `list_auth_users`, must be a value less than or equal to `4294967295`") # noqa: E501 - if 'limit' in params and params['limit'] < 1: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `list_auth_users`, must be a value greater than or equal to `1`") # noqa: E501 - if ('resume' in params and - len(params['resume']) > 8192): - raise ValueError("Invalid value for parameter `resume` when calling `list_auth_users`, length must be less than or equal to `8192`") # noqa: E501 - if ('resume' in params and - len(params['resume']) < 0): - raise ValueError("Invalid value for parameter `resume` when calling `list_auth_users`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'cached' in params: - query_params.append(('cached', params['cached'])) # noqa: E501 - if 'domain' in params: - query_params.append(('domain', params['domain'])) # noqa: E501 - if 'filter' in params: - query_params.append(('filter', params['filter'])) # noqa: E501 - if 'limit' in params: - query_params.append(('limit', params['limit'])) # noqa: E501 - if 'provider' in params: - query_params.append(('provider', params['provider'])) # noqa: E501 - if 'query_member_of' in params: - query_params.append(('query_member_of', params['query_member_of'])) # noqa: E501 - if 'resolve_names' in params: - query_params.append(('resolve_names', params['resolve_names'])) # noqa: E501 - if 'resume' in params: - query_params.append(('resume', params['resume'])) # noqa: E501 - if 'timeout' in params: - query_params.append(('timeout', params['timeout'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/17/auth/users', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='AuthUsersExtended', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def list_oauth_certificates(self, **kwargs): # noqa: E501 - """list_oauth_certificates # noqa: E501 - - List all certificates. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_oauth_certificates(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str zone: Specifies which access zone to use. - :return: OauthCertificatesExtended - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.list_oauth_certificates_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.list_oauth_certificates_with_http_info(**kwargs) # noqa: E501 - return data - - def list_oauth_certificates_with_http_info(self, **kwargs): # noqa: E501 - """list_oauth_certificates # noqa: E501 - - List all certificates. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_oauth_certificates_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str zone: Specifies which access zone to use. - :return: OauthCertificatesExtended - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['zone'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method list_oauth_certificates" % key - ) - params[key] = val - del params['kwargs'] - - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `list_oauth_certificates`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `list_oauth_certificates`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/19/auth/oauth/certificates', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='OauthCertificatesExtended', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def list_oauth_oauth2_clients(self, **kwargs): # noqa: E501 - """list_oauth_oauth2_clients # noqa: E501 - - List all OAuth2 clients. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_oauth_oauth2_clients(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str zone: Specifies which access zone to use. - :return: OauthOauth2ClientsExtended - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.list_oauth_oauth2_clients_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.list_oauth_oauth2_clients_with_http_info(**kwargs) # noqa: E501 - return data - - def list_oauth_oauth2_clients_with_http_info(self, **kwargs): # noqa: E501 - """list_oauth_oauth2_clients # noqa: E501 - - List all OAuth2 clients. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_oauth_oauth2_clients_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str zone: Specifies which access zone to use. - :return: OauthOauth2ClientsExtended - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['zone'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method list_oauth_oauth2_clients" % key - ) - params[key] = val - del params['kwargs'] - - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `list_oauth_oauth2_clients`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `list_oauth_oauth2_clients`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/19/auth/oauth/oauth2clients', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='OauthOauth2ClientsExtended', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def list_oauth_oauth2_token_exchanges(self, **kwargs): # noqa: E501 - """list_oauth_oauth2_token_exchanges # noqa: E501 - - List all OAuth2 Token Exchanges configurations. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_oauth_oauth2_token_exchanges(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str zone: Specifies which access zone to use. - :return: OauthOauth2TokenExchangesExtended - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.list_oauth_oauth2_token_exchanges_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.list_oauth_oauth2_token_exchanges_with_http_info(**kwargs) # noqa: E501 - return data - - def list_oauth_oauth2_token_exchanges_with_http_info(self, **kwargs): # noqa: E501 - """list_oauth_oauth2_token_exchanges # noqa: E501 - - List all OAuth2 Token Exchanges configurations. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_oauth_oauth2_token_exchanges_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str zone: Specifies which access zone to use. - :return: OauthOauth2TokenExchangesExtended - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['zone'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method list_oauth_oauth2_token_exchanges" % key - ) - params[key] = val - del params['kwargs'] - - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `list_oauth_oauth2_token_exchanges`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `list_oauth_oauth2_token_exchanges`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/19/auth/oauth/oauth2-token-exchanges', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='OauthOauth2TokenExchangesExtended', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def list_providers_ads(self, **kwargs): # noqa: E501 - """list_providers_ads # noqa: E501 - - List all ADS providers. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_providers_ads(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :return: ProvidersAdsExtended - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.list_providers_ads_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.list_providers_ads_with_http_info(**kwargs) # noqa: E501 - return data - - def list_providers_ads_with_http_info(self, **kwargs): # noqa: E501 - """list_providers_ads # noqa: E501 - - List all ADS providers. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_providers_ads_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :return: ProvidersAdsExtended - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['scope'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method list_providers_ads" % key - ) - params[key] = val - del params['kwargs'] - - if ('scope' in params and - len(params['scope']) > 255): - raise ValueError("Invalid value for parameter `scope` when calling `list_providers_ads`, length must be less than or equal to `255`") # noqa: E501 - if ('scope' in params and - len(params['scope']) < 0): - raise ValueError("Invalid value for parameter `scope` when calling `list_providers_ads`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'scope' in params: - query_params.append(('scope', params['scope'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/14/auth/providers/ads', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='ProvidersAdsExtended', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def list_providers_file(self, **kwargs): # noqa: E501 - """list_providers_file # noqa: E501 - - List all file providers. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_providers_file(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :return: ProvidersFile - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.list_providers_file_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.list_providers_file_with_http_info(**kwargs) # noqa: E501 - return data - - def list_providers_file_with_http_info(self, **kwargs): # noqa: E501 - """list_providers_file # noqa: E501 - - List all file providers. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_providers_file_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :return: ProvidersFile - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['scope'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method list_providers_file" % key - ) - params[key] = val - del params['kwargs'] - - if ('scope' in params and - len(params['scope']) > 255): - raise ValueError("Invalid value for parameter `scope` when calling `list_providers_file`, length must be less than or equal to `255`") # noqa: E501 - if ('scope' in params and - len(params['scope']) < 0): - raise ValueError("Invalid value for parameter `scope` when calling `list_providers_file`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'scope' in params: - query_params.append(('scope', params['scope'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/auth/providers/file', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='ProvidersFile', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def list_providers_krb5(self, **kwargs): # noqa: E501 - """list_providers_krb5 # noqa: E501 - - List all KRB5 providers. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_providers_krb5(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :return: ProvidersKrb5Extended - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.list_providers_krb5_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.list_providers_krb5_with_http_info(**kwargs) # noqa: E501 - return data - - def list_providers_krb5_with_http_info(self, **kwargs): # noqa: E501 - """list_providers_krb5 # noqa: E501 - - List all KRB5 providers. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_providers_krb5_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :return: ProvidersKrb5Extended - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['scope'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method list_providers_krb5" % key - ) - params[key] = val - del params['kwargs'] - - if ('scope' in params and - len(params['scope']) > 255): - raise ValueError("Invalid value for parameter `scope` when calling `list_providers_krb5`, length must be less than or equal to `255`") # noqa: E501 - if ('scope' in params and - len(params['scope']) < 0): - raise ValueError("Invalid value for parameter `scope` when calling `list_providers_krb5`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'scope' in params: - query_params.append(('scope', params['scope'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/7/auth/providers/krb5', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='ProvidersKrb5Extended', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def list_providers_ldap(self, **kwargs): # noqa: E501 - """list_providers_ldap # noqa: E501 - - List all LDAP providers. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_providers_ldap(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :return: ProvidersLdap - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.list_providers_ldap_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.list_providers_ldap_with_http_info(**kwargs) # noqa: E501 - return data - - def list_providers_ldap_with_http_info(self, **kwargs): # noqa: E501 - """list_providers_ldap # noqa: E501 - - List all LDAP providers. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_providers_ldap_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :return: ProvidersLdap - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['scope'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method list_providers_ldap" % key - ) - params[key] = val - del params['kwargs'] - - if ('scope' in params and - len(params['scope']) > 255): - raise ValueError("Invalid value for parameter `scope` when calling `list_providers_ldap`, length must be less than or equal to `255`") # noqa: E501 - if ('scope' in params and - len(params['scope']) < 0): - raise ValueError("Invalid value for parameter `scope` when calling `list_providers_ldap`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'scope' in params: - query_params.append(('scope', params['scope'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/auth/providers/ldap', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='ProvidersLdap', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def list_providers_nis(self, **kwargs): # noqa: E501 - """list_providers_nis # noqa: E501 - - List all NIS providers. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_providers_nis(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :return: ProvidersNis - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.list_providers_nis_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.list_providers_nis_with_http_info(**kwargs) # noqa: E501 - return data - - def list_providers_nis_with_http_info(self, **kwargs): # noqa: E501 - """list_providers_nis # noqa: E501 - - List all NIS providers. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_providers_nis_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. - :return: ProvidersNis - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['scope'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method list_providers_nis" % key - ) - params[key] = val - del params['kwargs'] - - if ('scope' in params and - len(params['scope']) > 255): - raise ValueError("Invalid value for parameter `scope` when calling `list_providers_nis`, length must be less than or equal to `255`") # noqa: E501 - if ('scope' in params and - len(params['scope']) < 0): - raise ValueError("Invalid value for parameter `scope` when calling `list_providers_nis`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'scope' in params: - query_params.append(('scope', params['scope'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/7/auth/providers/nis', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='ProvidersNis', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def list_providers_saml_services_cert_extract(self, **kwargs): # noqa: E501 - """list_providers_saml_services_cert_extract # noqa: E501 - - Extract certificate file information. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_providers_saml_services_cert_extract(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str path: A path to the certificate file. - :return: CreateProvidersSamlServicesCertExtractItemResponse - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.list_providers_saml_services_cert_extract_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.list_providers_saml_services_cert_extract_with_http_info(**kwargs) # noqa: E501 - return data - - def list_providers_saml_services_cert_extract_with_http_info(self, **kwargs): # noqa: E501 - """list_providers_saml_services_cert_extract # noqa: E501 - - Extract certificate file information. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_providers_saml_services_cert_extract_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str path: A path to the certificate file. - :return: CreateProvidersSamlServicesCertExtractItemResponse - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['path'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method list_providers_saml_services_cert_extract" % key - ) - params[key] = val - del params['kwargs'] - - if ('path' in params and - len(params['path']) > 4096): - raise ValueError("Invalid value for parameter `path` when calling `list_providers_saml_services_cert_extract`, length must be less than or equal to `4096`") # noqa: E501 - if ('path' in params and - len(params['path']) < 0): - raise ValueError("Invalid value for parameter `path` when calling `list_providers_saml_services_cert_extract`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'path' in params: - query_params.append(('path', params['path'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/auth/providers/saml-services/cert-extract', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='CreateProvidersSamlServicesCertExtractItemResponse', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def list_providers_saml_services_idps(self, **kwargs): # noqa: E501 - """list_providers_saml_services_idps # noqa: E501 - - List all IDPs. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_providers_saml_services_idps(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str zone: Specifies which access zone to use. - :return: ProvidersSamlServicesIdpsExtended - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.list_providers_saml_services_idps_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.list_providers_saml_services_idps_with_http_info(**kwargs) # noqa: E501 - return data - - def list_providers_saml_services_idps_with_http_info(self, **kwargs): # noqa: E501 - """list_providers_saml_services_idps # noqa: E501 - - List all IDPs. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_providers_saml_services_idps_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str zone: Specifies which access zone to use. - :return: ProvidersSamlServicesIdpsExtended - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['zone'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method list_providers_saml_services_idps" % key - ) - params[key] = val - del params['kwargs'] - - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `list_providers_saml_services_idps`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `list_providers_saml_services_idps`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/auth/providers/saml-services/idps', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='ProvidersSamlServicesIdpsExtended', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def list_settings_krb5_domains(self, **kwargs): # noqa: E501 - """list_settings_krb5_domains # noqa: E501 - - Retrieve the krb5 settings for domains. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_settings_krb5_domains(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: SettingsKrb5Domains - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.list_settings_krb5_domains_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.list_settings_krb5_domains_with_http_info(**kwargs) # noqa: E501 - return data - - def list_settings_krb5_domains_with_http_info(self, **kwargs): # noqa: E501 - """list_settings_krb5_domains # noqa: E501 - - Retrieve the krb5 settings for domains. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_settings_krb5_domains_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: SettingsKrb5Domains - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method list_settings_krb5_domains" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/1/auth/settings/krb5/domains', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='SettingsKrb5Domains', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def list_settings_krb5_realms(self, **kwargs): # noqa: E501 - """list_settings_krb5_realms # noqa: E501 - - Retrieve the krb5 settings for realms. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_settings_krb5_realms(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: SettingsKrb5Realms - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.list_settings_krb5_realms_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.list_settings_krb5_realms_with_http_info(**kwargs) # noqa: E501 - return data - - def list_settings_krb5_realms_with_http_info(self, **kwargs): # noqa: E501 - """list_settings_krb5_realms # noqa: E501 - - Retrieve the krb5 settings for realms. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_settings_krb5_realms_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: SettingsKrb5Realms - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method list_settings_krb5_realms" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/1/auth/settings/krb5/realms', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='SettingsKrb5Realms', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def update_auth_group(self, auth_group, auth_group_id, **kwargs): # noqa: E501 - """update_auth_group # noqa: E501 - - Modify the group. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_auth_group(auth_group, auth_group_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param AuthGroup auth_group: (required) - :param str auth_group_id: Modify the group. (required) - :param bool force: Changes to the group ID can result in loss of access to the file system. To mitigate this risk of lost access, the force option is required for group ID changes. - :param str provider: Optional provider type. - :param str zone: Optional zone. - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.update_auth_group_with_http_info(auth_group, auth_group_id, **kwargs) # noqa: E501 - else: - (data) = self.update_auth_group_with_http_info(auth_group, auth_group_id, **kwargs) # noqa: E501 - return data - - def update_auth_group_with_http_info(self, auth_group, auth_group_id, **kwargs): # noqa: E501 - """update_auth_group # noqa: E501 - - Modify the group. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_auth_group_with_http_info(auth_group, auth_group_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param AuthGroup auth_group: (required) - :param str auth_group_id: Modify the group. (required) - :param bool force: Changes to the group ID can result in loss of access to the file system. To mitigate this risk of lost access, the force option is required for group ID changes. - :param str provider: Optional provider type. - :param str zone: Optional zone. - :return: None + :param bool cached: If true, only return cached objects. + :param str domain: Filter users by domain. + :param str filter: Filter users by name prefix. + :param int limit: Return no more than this many results at once (see resume). + :param str provider: Filter users by provider. + :param bool query_member_of: Enumerate all users that a group is a member of. + :param bool resolve_names: Resolve names of personas. + :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). + :param str zone: Filter users by zone. + :return: AuthUsersExtended If the method is called asynchronously, returns the request thread. """ - all_params = ['auth_group', 'auth_group_id', 'force', 'provider', 'zone'] # noqa: E501 + all_params = ['cached', 'domain', 'filter', 'limit', 'provider', 'query_member_of', 'resolve_names', 'resume', 'zone'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -10148,30 +6687,42 @@ def update_auth_group_with_http_info(self, auth_group, auth_group_id, **kwargs): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method update_auth_group" % key + " to method list_auth_users" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'auth_group' is set - if ('auth_group' not in params or - params['auth_group'] is None): - raise ValueError("Missing the required parameter `auth_group` when calling `update_auth_group`") # noqa: E501 - # verify the required parameter 'auth_group_id' is set - if ('auth_group_id' not in params or - params['auth_group_id'] is None): - raise ValueError("Missing the required parameter `auth_group_id` when calling `update_auth_group`") # noqa: E501 + if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 + raise ValueError("Invalid value for parameter `limit` when calling `list_auth_users`, must be a value less than or equal to `4294967295`") # noqa: E501 + if 'limit' in params and params['limit'] < 1: # noqa: E501 + raise ValueError("Invalid value for parameter `limit` when calling `list_auth_users`, must be a value greater than or equal to `1`") # noqa: E501 + if ('resume' in params and + len(params['resume']) > 8192): + raise ValueError("Invalid value for parameter `resume` when calling `list_auth_users`, length must be less than or equal to `8192`") # noqa: E501 + if ('resume' in params and + len(params['resume']) < 0): + raise ValueError("Invalid value for parameter `resume` when calling `list_auth_users`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} - if 'auth_group_id' in params: - path_params['AuthGroupId'] = params['auth_group_id'] # noqa: E501 query_params = [] - if 'force' in params: - query_params.append(('force', params['force'])) # noqa: E501 + if 'cached' in params: + query_params.append(('cached', params['cached'])) # noqa: E501 + if 'domain' in params: + query_params.append(('domain', params['domain'])) # noqa: E501 + if 'filter' in params: + query_params.append(('filter', params['filter'])) # noqa: E501 + if 'limit' in params: + query_params.append(('limit', params['limit'])) # noqa: E501 if 'provider' in params: query_params.append(('provider', params['provider'])) # noqa: E501 + if 'query_member_of' in params: + query_params.append(('query_member_of', params['query_member_of'])) # noqa: E501 + if 'resolve_names' in params: + query_params.append(('resolve_names', params['resolve_names'])) # noqa: E501 + if 'resume' in params: + query_params.append(('resume', params['resume'])) # noqa: E501 if 'zone' in params: query_params.append(('zone', params['zone'])) # noqa: E501 @@ -10181,8 +6732,6 @@ def update_auth_group_with_http_info(self, auth_group, auth_group_id, **kwargs): local_var_files = {} body_params = None - if 'auth_group' in params: - body_params = params['auth_group'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -10195,14 +6744,14 @@ def update_auth_group_with_http_info(self, auth_group, auth_group_id, **kwargs): auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/17/auth/groups/{AuthGroupId}', 'PUT', + '/platform/7/auth/users', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type=None, # noqa: E501 + response_type='AuthUsersExtended', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -10210,45 +6759,45 @@ def update_auth_group_with_http_info(self, auth_group, auth_group_id, **kwargs): _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_auth_log_level(self, auth_log_level, **kwargs): # noqa: E501 - """update_auth_log_level # noqa: E501 + def list_providers_ads(self, **kwargs): # noqa: E501 + """list_providers_ads # noqa: E501 - Set the current authentication service and netlogon logging level. # noqa: E501 + List all ADS providers. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_auth_log_level(auth_log_level, async_req=True) + >>> thread = api.list_providers_ads(async_req=True) >>> result = thread.get() :param async_req bool - :param AuthLogLevelExtended auth_log_level: (required) - :return: None + :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. + :return: ProvidersAdsExtended If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.update_auth_log_level_with_http_info(auth_log_level, **kwargs) # noqa: E501 + return self.list_providers_ads_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.update_auth_log_level_with_http_info(auth_log_level, **kwargs) # noqa: E501 + (data) = self.list_providers_ads_with_http_info(**kwargs) # noqa: E501 return data - def update_auth_log_level_with_http_info(self, auth_log_level, **kwargs): # noqa: E501 - """update_auth_log_level # noqa: E501 + def list_providers_ads_with_http_info(self, **kwargs): # noqa: E501 + """list_providers_ads # noqa: E501 - Set the current authentication service and netlogon logging level. # noqa: E501 + List all ADS providers. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_auth_log_level_with_http_info(auth_log_level, async_req=True) + >>> thread = api.list_providers_ads_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param AuthLogLevelExtended auth_log_level: (required) - :return: None + :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. + :return: ProvidersAdsExtended If the method is called asynchronously, returns the request thread. """ - all_params = ['auth_log_level'] # noqa: E501 + all_params = ['scope'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -10259,20 +6808,24 @@ def update_auth_log_level_with_http_info(self, auth_log_level, **kwargs): # noq if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method update_auth_log_level" % key + " to method list_providers_ads" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'auth_log_level' is set - if ('auth_log_level' not in params or - params['auth_log_level'] is None): - raise ValueError("Missing the required parameter `auth_log_level` when calling `update_auth_log_level`") # noqa: E501 + if ('scope' in params and + len(params['scope']) > 255): + raise ValueError("Invalid value for parameter `scope` when calling `list_providers_ads`, length must be less than or equal to `255`") # noqa: E501 + if ('scope' in params and + len(params['scope']) < 0): + raise ValueError("Invalid value for parameter `scope` when calling `list_providers_ads`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] + if 'scope' in params: + query_params.append(('scope', params['scope'])) # noqa: E501 header_params = {} @@ -10280,8 +6833,6 @@ def update_auth_log_level_with_http_info(self, auth_log_level, **kwargs): # noq local_var_files = {} body_params = None - if 'auth_log_level' in params: - body_params = params['auth_log_level'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -10294,14 +6845,14 @@ def update_auth_log_level_with_http_info(self, auth_log_level, **kwargs): # noq auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/12/auth/log-level', 'PUT', + '/platform/14/auth/providers/ads', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type=None, # noqa: E501 + response_type='ProvidersAdsExtended', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -10309,49 +6860,45 @@ def update_auth_log_level_with_http_info(self, auth_log_level, **kwargs): # noq _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_auth_role(self, auth_role, auth_role_id, **kwargs): # noqa: E501 - """update_auth_role # noqa: E501 + def list_providers_file(self, **kwargs): # noqa: E501 + """list_providers_file # noqa: E501 - Modify the role. # noqa: E501 + List all file providers. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_auth_role(auth_role, auth_role_id, async_req=True) + >>> thread = api.list_providers_file(async_req=True) >>> result = thread.get() :param async_req bool - :param AuthRole auth_role: (required) - :param str auth_role_id: Modify the role. (required) - :param str zone: Specifies which access zone to use. - :return: None + :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. + :return: ProvidersFile If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.update_auth_role_with_http_info(auth_role, auth_role_id, **kwargs) # noqa: E501 + return self.list_providers_file_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.update_auth_role_with_http_info(auth_role, auth_role_id, **kwargs) # noqa: E501 + (data) = self.list_providers_file_with_http_info(**kwargs) # noqa: E501 return data - def update_auth_role_with_http_info(self, auth_role, auth_role_id, **kwargs): # noqa: E501 - """update_auth_role # noqa: E501 + def list_providers_file_with_http_info(self, **kwargs): # noqa: E501 + """list_providers_file # noqa: E501 - Modify the role. # noqa: E501 + List all file providers. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_auth_role_with_http_info(auth_role, auth_role_id, async_req=True) + >>> thread = api.list_providers_file_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param AuthRole auth_role: (required) - :param str auth_role_id: Modify the role. (required) - :param str zone: Specifies which access zone to use. - :return: None + :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. + :return: ProvidersFile If the method is called asynchronously, returns the request thread. """ - all_params = ['auth_role', 'auth_role_id', 'zone'] # noqa: E501 + all_params = ['scope'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -10362,34 +6909,24 @@ def update_auth_role_with_http_info(self, auth_role, auth_role_id, **kwargs): # if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method update_auth_role" % key + " to method list_providers_file" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'auth_role' is set - if ('auth_role' not in params or - params['auth_role'] is None): - raise ValueError("Missing the required parameter `auth_role` when calling `update_auth_role`") # noqa: E501 - # verify the required parameter 'auth_role_id' is set - if ('auth_role_id' not in params or - params['auth_role_id'] is None): - raise ValueError("Missing the required parameter `auth_role_id` when calling `update_auth_role`") # noqa: E501 - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `update_auth_role`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `update_auth_role`, length must be greater than or equal to `0`") # noqa: E501 + if ('scope' in params and + len(params['scope']) > 255): + raise ValueError("Invalid value for parameter `scope` when calling `list_providers_file`, length must be less than or equal to `255`") # noqa: E501 + if ('scope' in params and + len(params['scope']) < 0): + raise ValueError("Invalid value for parameter `scope` when calling `list_providers_file`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} - if 'auth_role_id' in params: - path_params['AuthRoleId'] = params['auth_role_id'] # noqa: E501 query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 + if 'scope' in params: + query_params.append(('scope', params['scope'])) # noqa: E501 header_params = {} @@ -10397,8 +6934,6 @@ def update_auth_role_with_http_info(self, auth_role, auth_role_id, **kwargs): # local_var_files = {} body_params = None - if 'auth_role' in params: - body_params = params['auth_role'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -10411,14 +6946,14 @@ def update_auth_role_with_http_info(self, auth_role, auth_role_id, **kwargs): # auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/auth/roles/{AuthRoleId}', 'PUT', + '/platform/7/auth/providers/file', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type=None, # noqa: E501 + response_type='ProvidersFile', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -10426,53 +6961,45 @@ def update_auth_role_with_http_info(self, auth_role, auth_role_id, **kwargs): # _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_auth_user(self, auth_user, auth_user_id, **kwargs): # noqa: E501 - """update_auth_user # noqa: E501 + def list_providers_krb5(self, **kwargs): # noqa: E501 + """list_providers_krb5 # noqa: E501 - Modify the user. # noqa: E501 + List all KRB5 providers. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_auth_user(auth_user, auth_user_id, async_req=True) + >>> thread = api.list_providers_krb5(async_req=True) >>> result = thread.get() :param async_req bool - :param AuthUser auth_user: (required) - :param str auth_user_id: Modify the user. (required) - :param bool force: Changes to the user ID can result in loss of access to the file system. To mitigate this risk of lost access, the force option is required for user ID changes. - :param str provider: Optional provider type. - :param str zone: Optional zone. - :return: None + :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. + :return: ProvidersKrb5Extended If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.update_auth_user_with_http_info(auth_user, auth_user_id, **kwargs) # noqa: E501 + return self.list_providers_krb5_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.update_auth_user_with_http_info(auth_user, auth_user_id, **kwargs) # noqa: E501 + (data) = self.list_providers_krb5_with_http_info(**kwargs) # noqa: E501 return data - def update_auth_user_with_http_info(self, auth_user, auth_user_id, **kwargs): # noqa: E501 - """update_auth_user # noqa: E501 + def list_providers_krb5_with_http_info(self, **kwargs): # noqa: E501 + """list_providers_krb5 # noqa: E501 - Modify the user. # noqa: E501 + List all KRB5 providers. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_auth_user_with_http_info(auth_user, auth_user_id, async_req=True) + >>> thread = api.list_providers_krb5_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param AuthUser auth_user: (required) - :param str auth_user_id: Modify the user. (required) - :param bool force: Changes to the user ID can result in loss of access to the file system. To mitigate this risk of lost access, the force option is required for user ID changes. - :param str provider: Optional provider type. - :param str zone: Optional zone. - :return: None + :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. + :return: ProvidersKrb5Extended If the method is called asynchronously, returns the request thread. """ - all_params = ['auth_user', 'auth_user_id', 'force', 'provider', 'zone'] # noqa: E501 + all_params = ['scope'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -10483,32 +7010,24 @@ def update_auth_user_with_http_info(self, auth_user, auth_user_id, **kwargs): # if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method update_auth_user" % key + " to method list_providers_krb5" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'auth_user' is set - if ('auth_user' not in params or - params['auth_user'] is None): - raise ValueError("Missing the required parameter `auth_user` when calling `update_auth_user`") # noqa: E501 - # verify the required parameter 'auth_user_id' is set - if ('auth_user_id' not in params or - params['auth_user_id'] is None): - raise ValueError("Missing the required parameter `auth_user_id` when calling `update_auth_user`") # noqa: E501 + if ('scope' in params and + len(params['scope']) > 255): + raise ValueError("Invalid value for parameter `scope` when calling `list_providers_krb5`, length must be less than or equal to `255`") # noqa: E501 + if ('scope' in params and + len(params['scope']) < 0): + raise ValueError("Invalid value for parameter `scope` when calling `list_providers_krb5`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} - if 'auth_user_id' in params: - path_params['AuthUserId'] = params['auth_user_id'] # noqa: E501 query_params = [] - if 'force' in params: - query_params.append(('force', params['force'])) # noqa: E501 - if 'provider' in params: - query_params.append(('provider', params['provider'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 + if 'scope' in params: + query_params.append(('scope', params['scope'])) # noqa: E501 header_params = {} @@ -10516,8 +7035,6 @@ def update_auth_user_with_http_info(self, auth_user, auth_user_id, **kwargs): # local_var_files = {} body_params = None - if 'auth_user' in params: - body_params = params['auth_user'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -10530,14 +7047,14 @@ def update_auth_user_with_http_info(self, auth_user, auth_user_id, **kwargs): # auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/17/auth/users/{AuthUserId}', 'PUT', + '/platform/7/auth/providers/krb5', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type=None, # noqa: E501 + response_type='ProvidersKrb5Extended', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -10545,49 +7062,45 @@ def update_auth_user_with_http_info(self, auth_user, auth_user_id, **kwargs): # _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_mapping_import(self, mapping_import, **kwargs): # noqa: E501 - """update_mapping_import # noqa: E501 + def list_providers_ldap(self, **kwargs): # noqa: E501 + """list_providers_ldap # noqa: E501 - Set or update a list of mappings between two personae. # noqa: E501 + List all LDAP providers. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_mapping_import(mapping_import, async_req=True) + >>> thread = api.list_providers_ldap(async_req=True) >>> result = thread.get() :param async_req bool - :param MappingDump mapping_import: (required) - :param bool replace: Specify whether existing mappings should be replaced. The default behavior is to leave existing mappings intact and return an error. - :param str zone: Optional zone. - :return: None + :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. + :return: ProvidersLdap If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.update_mapping_import_with_http_info(mapping_import, **kwargs) # noqa: E501 + return self.list_providers_ldap_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.update_mapping_import_with_http_info(mapping_import, **kwargs) # noqa: E501 + (data) = self.list_providers_ldap_with_http_info(**kwargs) # noqa: E501 return data - def update_mapping_import_with_http_info(self, mapping_import, **kwargs): # noqa: E501 - """update_mapping_import # noqa: E501 + def list_providers_ldap_with_http_info(self, **kwargs): # noqa: E501 + """list_providers_ldap # noqa: E501 - Set or update a list of mappings between two personae. # noqa: E501 + List all LDAP providers. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_mapping_import_with_http_info(mapping_import, async_req=True) + >>> thread = api.list_providers_ldap_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param MappingDump mapping_import: (required) - :param bool replace: Specify whether existing mappings should be replaced. The default behavior is to leave existing mappings intact and return an error. - :param str zone: Optional zone. - :return: None + :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. + :return: ProvidersLdap If the method is called asynchronously, returns the request thread. """ - all_params = ['mapping_import', 'replace', 'zone'] # noqa: E501 + all_params = ['scope'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -10598,24 +7111,24 @@ def update_mapping_import_with_http_info(self, mapping_import, **kwargs): # noq if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method update_mapping_import" % key + " to method list_providers_ldap" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'mapping_import' is set - if ('mapping_import' not in params or - params['mapping_import'] is None): - raise ValueError("Missing the required parameter `mapping_import` when calling `update_mapping_import`") # noqa: E501 + if ('scope' in params and + len(params['scope']) > 255): + raise ValueError("Invalid value for parameter `scope` when calling `list_providers_ldap`, length must be less than or equal to `255`") # noqa: E501 + if ('scope' in params and + len(params['scope']) < 0): + raise ValueError("Invalid value for parameter `scope` when calling `list_providers_ldap`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] - if 'replace' in params: - query_params.append(('replace', params['replace'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 + if 'scope' in params: + query_params.append(('scope', params['scope'])) # noqa: E501 header_params = {} @@ -10623,8 +7136,6 @@ def update_mapping_import_with_http_info(self, mapping_import, **kwargs): # noq local_var_files = {} body_params = None - if 'mapping_import' in params: - body_params = params['mapping_import'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -10637,14 +7148,14 @@ def update_mapping_import_with_http_info(self, mapping_import, **kwargs): # noq auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/3/auth/mapping/import', 'PUT', + '/platform/11/auth/providers/ldap', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type=None, # noqa: E501 + response_type='ProvidersLdap', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -10652,47 +7163,45 @@ def update_mapping_import_with_http_info(self, mapping_import, **kwargs): # noq _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_mapping_users_rules(self, mapping_users_rules, **kwargs): # noqa: E501 - """update_mapping_users_rules # noqa: E501 + def list_providers_nis(self, **kwargs): # noqa: E501 + """list_providers_nis # noqa: E501 - Modify the user mapping rules. # noqa: E501 + List all NIS providers. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_mapping_users_rules(mapping_users_rules, async_req=True) + >>> thread = api.list_providers_nis(async_req=True) >>> result = thread.get() :param async_req bool - :param MappingUsersRulesExtended mapping_users_rules: (required) - :param str zone: The zone to which the user mapping applies. - :return: None + :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. + :return: ProvidersNis If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.update_mapping_users_rules_with_http_info(mapping_users_rules, **kwargs) # noqa: E501 + return self.list_providers_nis_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.update_mapping_users_rules_with_http_info(mapping_users_rules, **kwargs) # noqa: E501 + (data) = self.list_providers_nis_with_http_info(**kwargs) # noqa: E501 return data - def update_mapping_users_rules_with_http_info(self, mapping_users_rules, **kwargs): # noqa: E501 - """update_mapping_users_rules # noqa: E501 + def list_providers_nis_with_http_info(self, **kwargs): # noqa: E501 + """list_providers_nis # noqa: E501 - Modify the user mapping rules. # noqa: E501 + List all NIS providers. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_mapping_users_rules_with_http_info(mapping_users_rules, async_req=True) + >>> thread = api.list_providers_nis_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param MappingUsersRulesExtended mapping_users_rules: (required) - :param str zone: The zone to which the user mapping applies. - :return: None + :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. + :return: ProvidersNis If the method is called asynchronously, returns the request thread. """ - all_params = ['mapping_users_rules', 'zone'] # noqa: E501 + all_params = ['scope'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -10703,22 +7212,24 @@ def update_mapping_users_rules_with_http_info(self, mapping_users_rules, **kwarg if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method update_mapping_users_rules" % key + " to method list_providers_nis" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'mapping_users_rules' is set - if ('mapping_users_rules' not in params or - params['mapping_users_rules'] is None): - raise ValueError("Missing the required parameter `mapping_users_rules` when calling `update_mapping_users_rules`") # noqa: E501 + if ('scope' in params and + len(params['scope']) > 255): + raise ValueError("Invalid value for parameter `scope` when calling `list_providers_nis`, length must be less than or equal to `255`") # noqa: E501 + if ('scope' in params and + len(params['scope']) < 0): + raise ValueError("Invalid value for parameter `scope` when calling `list_providers_nis`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 + if 'scope' in params: + query_params.append(('scope', params['scope'])) # noqa: E501 header_params = {} @@ -10726,8 +7237,6 @@ def update_mapping_users_rules_with_http_info(self, mapping_users_rules, **kwarg local_var_files = {} body_params = None - if 'mapping_users_rules' in params: - body_params = params['mapping_users_rules'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -10740,14 +7249,14 @@ def update_mapping_users_rules_with_http_info(self, mapping_users_rules, **kwarg auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/1/auth/mapping/users/rules', 'PUT', + '/platform/7/auth/providers/nis', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type=None, # noqa: E501 + response_type='ProvidersNis', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -10755,49 +7264,43 @@ def update_mapping_users_rules_with_http_info(self, mapping_users_rules, **kwarg _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_oauth_certificate(self, oauth_certificate, oauth_certificate_id, **kwargs): # noqa: E501 - """update_oauth_certificate # noqa: E501 + def list_settings_krb5_domains(self, **kwargs): # noqa: E501 + """list_settings_krb5_domains # noqa: E501 - Modify the certificate using its ID. # noqa: E501 + Retrieve the krb5 settings for domains. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_oauth_certificate(oauth_certificate, oauth_certificate_id, async_req=True) + >>> thread = api.list_settings_krb5_domains(async_req=True) >>> result = thread.get() :param async_req bool - :param OauthCertificate oauth_certificate: (required) - :param str oauth_certificate_id: Modify the certificate using its ID. (required) - :param str zone: Specifies which access zone to use. - :return: None + :return: SettingsKrb5Domains If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.update_oauth_certificate_with_http_info(oauth_certificate, oauth_certificate_id, **kwargs) # noqa: E501 + return self.list_settings_krb5_domains_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.update_oauth_certificate_with_http_info(oauth_certificate, oauth_certificate_id, **kwargs) # noqa: E501 + (data) = self.list_settings_krb5_domains_with_http_info(**kwargs) # noqa: E501 return data - def update_oauth_certificate_with_http_info(self, oauth_certificate, oauth_certificate_id, **kwargs): # noqa: E501 - """update_oauth_certificate # noqa: E501 + def list_settings_krb5_domains_with_http_info(self, **kwargs): # noqa: E501 + """list_settings_krb5_domains # noqa: E501 - Modify the certificate using its ID. # noqa: E501 + Retrieve the krb5 settings for domains. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_oauth_certificate_with_http_info(oauth_certificate, oauth_certificate_id, async_req=True) + >>> thread = api.list_settings_krb5_domains_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param OauthCertificate oauth_certificate: (required) - :param str oauth_certificate_id: Modify the certificate using its ID. (required) - :param str zone: Specifies which access zone to use. - :return: None + :return: SettingsKrb5Domains If the method is called asynchronously, returns the request thread. """ - all_params = ['oauth_certificate', 'oauth_certificate_id', 'zone'] # noqa: E501 + all_params = [] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -10808,34 +7311,16 @@ def update_oauth_certificate_with_http_info(self, oauth_certificate, oauth_certi if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method update_oauth_certificate" % key + " to method list_settings_krb5_domains" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'oauth_certificate' is set - if ('oauth_certificate' not in params or - params['oauth_certificate'] is None): - raise ValueError("Missing the required parameter `oauth_certificate` when calling `update_oauth_certificate`") # noqa: E501 - # verify the required parameter 'oauth_certificate_id' is set - if ('oauth_certificate_id' not in params or - params['oauth_certificate_id'] is None): - raise ValueError("Missing the required parameter `oauth_certificate_id` when calling `update_oauth_certificate`") # noqa: E501 - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `update_oauth_certificate`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `update_oauth_certificate`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} - if 'oauth_certificate_id' in params: - path_params['OauthCertificateId'] = params['oauth_certificate_id'] # noqa: E501 query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -10843,8 +7328,6 @@ def update_oauth_certificate_with_http_info(self, oauth_certificate, oauth_certi local_var_files = {} body_params = None - if 'oauth_certificate' in params: - body_params = params['oauth_certificate'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -10857,14 +7340,14 @@ def update_oauth_certificate_with_http_info(self, oauth_certificate, oauth_certi auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/auth/oauth/certificates/{OauthCertificateId}', 'PUT', + '/platform/1/auth/settings/krb5/domains', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type=None, # noqa: E501 + response_type='SettingsKrb5Domains', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -10872,49 +7355,43 @@ def update_oauth_certificate_with_http_info(self, oauth_certificate, oauth_certi _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_oauth_oauth2_client(self, oauth_oauth2_client, oauth_oauth2_client_id, **kwargs): # noqa: E501 - """update_oauth_oauth2_client # noqa: E501 + def list_settings_krb5_realms(self, **kwargs): # noqa: E501 + """list_settings_krb5_realms # noqa: E501 - Modify OAuth2 client using its ID. # noqa: E501 + Retrieve the krb5 settings for realms. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_oauth_oauth2_client(oauth_oauth2_client, oauth_oauth2_client_id, async_req=True) + >>> thread = api.list_settings_krb5_realms(async_req=True) >>> result = thread.get() :param async_req bool - :param OauthOauth2Client oauth_oauth2_client: (required) - :param str oauth_oauth2_client_id: Modify OAuth2 client using its ID. (required) - :param str zone: Specifies which access zone to use. - :return: None + :return: SettingsKrb5Realms If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.update_oauth_oauth2_client_with_http_info(oauth_oauth2_client, oauth_oauth2_client_id, **kwargs) # noqa: E501 + return self.list_settings_krb5_realms_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.update_oauth_oauth2_client_with_http_info(oauth_oauth2_client, oauth_oauth2_client_id, **kwargs) # noqa: E501 + (data) = self.list_settings_krb5_realms_with_http_info(**kwargs) # noqa: E501 return data - def update_oauth_oauth2_client_with_http_info(self, oauth_oauth2_client, oauth_oauth2_client_id, **kwargs): # noqa: E501 - """update_oauth_oauth2_client # noqa: E501 + def list_settings_krb5_realms_with_http_info(self, **kwargs): # noqa: E501 + """list_settings_krb5_realms # noqa: E501 - Modify OAuth2 client using its ID. # noqa: E501 + Retrieve the krb5 settings for realms. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_oauth_oauth2_client_with_http_info(oauth_oauth2_client, oauth_oauth2_client_id, async_req=True) + >>> thread = api.list_settings_krb5_realms_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param OauthOauth2Client oauth_oauth2_client: (required) - :param str oauth_oauth2_client_id: Modify OAuth2 client using its ID. (required) - :param str zone: Specifies which access zone to use. - :return: None + :return: SettingsKrb5Realms If the method is called asynchronously, returns the request thread. """ - all_params = ['oauth_oauth2_client', 'oauth_oauth2_client_id', 'zone'] # noqa: E501 + all_params = [] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -10925,34 +7402,16 @@ def update_oauth_oauth2_client_with_http_info(self, oauth_oauth2_client, oauth_o if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method update_oauth_oauth2_client" % key + " to method list_settings_krb5_realms" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'oauth_oauth2_client' is set - if ('oauth_oauth2_client' not in params or - params['oauth_oauth2_client'] is None): - raise ValueError("Missing the required parameter `oauth_oauth2_client` when calling `update_oauth_oauth2_client`") # noqa: E501 - # verify the required parameter 'oauth_oauth2_client_id' is set - if ('oauth_oauth2_client_id' not in params or - params['oauth_oauth2_client_id'] is None): - raise ValueError("Missing the required parameter `oauth_oauth2_client_id` when calling `update_oauth_oauth2_client`") # noqa: E501 - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `update_oauth_oauth2_client`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `update_oauth_oauth2_client`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} - if 'oauth_oauth2_client_id' in params: - path_params['OauthOauth2ClientId'] = params['oauth_oauth2_client_id'] # noqa: E501 query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -10960,8 +7419,6 @@ def update_oauth_oauth2_client_with_http_info(self, oauth_oauth2_client, oauth_o local_var_files = {} body_params = None - if 'oauth_oauth2_client' in params: - body_params = params['oauth_oauth2_client'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -10974,14 +7431,14 @@ def update_oauth_oauth2_client_with_http_info(self, oauth_oauth2_client, oauth_o auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/auth/oauth/oauth2clients/{OauthOauth2ClientId}', 'PUT', + '/platform/1/auth/settings/krb5/realms', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type=None, # noqa: E501 + response_type='SettingsKrb5Realms', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -10989,49 +7446,53 @@ def update_oauth_oauth2_client_with_http_info(self, oauth_oauth2_client, oauth_o _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_oauth_oauth2_token_exchange(self, oauth_oauth2_token_exchange, oauth_oauth2_token_exchange_id, **kwargs): # noqa: E501 - """update_oauth_oauth2_token_exchange # noqa: E501 + def update_auth_group(self, auth_group, auth_group_id, **kwargs): # noqa: E501 + """update_auth_group # noqa: E501 - Modify OAuth2 Token Exchange configuration using its ID. # noqa: E501 + Modify the group. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_oauth_oauth2_token_exchange(oauth_oauth2_token_exchange, oauth_oauth2_token_exchange_id, async_req=True) + >>> thread = api.update_auth_group(auth_group, auth_group_id, async_req=True) >>> result = thread.get() :param async_req bool - :param OauthOauth2TokenExchange oauth_oauth2_token_exchange: (required) - :param str oauth_oauth2_token_exchange_id: Modify OAuth2 Token Exchange configuration using its ID. (required) - :param str zone: Specifies which access zone to use. + :param AuthGroup auth_group: (required) + :param str auth_group_id: Modify the group. (required) + :param bool force: Changes to the group ID can result in loss of access to the file system. To mitigate this risk of lost access, the force option is required for group ID changes. + :param str provider: Optional provider type. + :param str zone: Optional zone. :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.update_oauth_oauth2_token_exchange_with_http_info(oauth_oauth2_token_exchange, oauth_oauth2_token_exchange_id, **kwargs) # noqa: E501 + return self.update_auth_group_with_http_info(auth_group, auth_group_id, **kwargs) # noqa: E501 else: - (data) = self.update_oauth_oauth2_token_exchange_with_http_info(oauth_oauth2_token_exchange, oauth_oauth2_token_exchange_id, **kwargs) # noqa: E501 + (data) = self.update_auth_group_with_http_info(auth_group, auth_group_id, **kwargs) # noqa: E501 return data - def update_oauth_oauth2_token_exchange_with_http_info(self, oauth_oauth2_token_exchange, oauth_oauth2_token_exchange_id, **kwargs): # noqa: E501 - """update_oauth_oauth2_token_exchange # noqa: E501 + def update_auth_group_with_http_info(self, auth_group, auth_group_id, **kwargs): # noqa: E501 + """update_auth_group # noqa: E501 - Modify OAuth2 Token Exchange configuration using its ID. # noqa: E501 + Modify the group. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_oauth_oauth2_token_exchange_with_http_info(oauth_oauth2_token_exchange, oauth_oauth2_token_exchange_id, async_req=True) + >>> thread = api.update_auth_group_with_http_info(auth_group, auth_group_id, async_req=True) >>> result = thread.get() :param async_req bool - :param OauthOauth2TokenExchange oauth_oauth2_token_exchange: (required) - :param str oauth_oauth2_token_exchange_id: Modify OAuth2 Token Exchange configuration using its ID. (required) - :param str zone: Specifies which access zone to use. + :param AuthGroup auth_group: (required) + :param str auth_group_id: Modify the group. (required) + :param bool force: Changes to the group ID can result in loss of access to the file system. To mitigate this risk of lost access, the force option is required for group ID changes. + :param str provider: Optional provider type. + :param str zone: Optional zone. :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['oauth_oauth2_token_exchange', 'oauth_oauth2_token_exchange_id', 'zone'] # noqa: E501 + all_params = ['auth_group', 'auth_group_id', 'force', 'provider', 'zone'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -11042,32 +7503,30 @@ def update_oauth_oauth2_token_exchange_with_http_info(self, oauth_oauth2_token_e if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method update_oauth_oauth2_token_exchange" % key + " to method update_auth_group" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'oauth_oauth2_token_exchange' is set - if ('oauth_oauth2_token_exchange' not in params or - params['oauth_oauth2_token_exchange'] is None): - raise ValueError("Missing the required parameter `oauth_oauth2_token_exchange` when calling `update_oauth_oauth2_token_exchange`") # noqa: E501 - # verify the required parameter 'oauth_oauth2_token_exchange_id' is set - if ('oauth_oauth2_token_exchange_id' not in params or - params['oauth_oauth2_token_exchange_id'] is None): - raise ValueError("Missing the required parameter `oauth_oauth2_token_exchange_id` when calling `update_oauth_oauth2_token_exchange`") # noqa: E501 + # verify the required parameter 'auth_group' is set + if ('auth_group' not in params or + params['auth_group'] is None): + raise ValueError("Missing the required parameter `auth_group` when calling `update_auth_group`") # noqa: E501 + # verify the required parameter 'auth_group_id' is set + if ('auth_group_id' not in params or + params['auth_group_id'] is None): + raise ValueError("Missing the required parameter `auth_group_id` when calling `update_auth_group`") # noqa: E501 - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `update_oauth_oauth2_token_exchange`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `update_oauth_oauth2_token_exchange`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} - if 'oauth_oauth2_token_exchange_id' in params: - path_params['OauthOauth2TokenExchangeId'] = params['oauth_oauth2_token_exchange_id'] # noqa: E501 + if 'auth_group_id' in params: + path_params['AuthGroupId'] = params['auth_group_id'] # noqa: E501 query_params = [] + if 'force' in params: + query_params.append(('force', params['force'])) # noqa: E501 + if 'provider' in params: + query_params.append(('provider', params['provider'])) # noqa: E501 if 'zone' in params: query_params.append(('zone', params['zone'])) # noqa: E501 @@ -11077,8 +7536,8 @@ def update_oauth_oauth2_token_exchange_with_http_info(self, oauth_oauth2_token_e local_var_files = {} body_params = None - if 'oauth_oauth2_token_exchange' in params: - body_params = params['oauth_oauth2_token_exchange'] + if 'auth_group' in params: + body_params = params['auth_group'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -11091,7 +7550,7 @@ def update_oauth_oauth2_token_exchange_with_http_info(self, oauth_oauth2_token_e auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/auth/oauth/oauth2-token-exchanges/{OauthOauth2TokenExchangeId}', 'PUT', + '/platform/1/auth/groups/{AuthGroupId}', 'PUT', path_params, query_params, header_params, @@ -11106,47 +7565,45 @@ def update_oauth_oauth2_token_exchange_with_http_info(self, oauth_oauth2_token_e _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_oauth_settings(self, oauth_settings, **kwargs): # noqa: E501 - """update_oauth_settings # noqa: E501 + def update_auth_log_level(self, auth_log_level, **kwargs): # noqa: E501 + """update_auth_log_level # noqa: E501 - Modify the OAuth settings. # noqa: E501 + Set the current authentication service and netlogon logging level. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_oauth_settings(oauth_settings, async_req=True) + >>> thread = api.update_auth_log_level(auth_log_level, async_req=True) >>> result = thread.get() :param async_req bool - :param OauthSettingsSettings oauth_settings: (required) - :param str zone: Specifies which access zone to use. + :param AuthLogLevelExtended auth_log_level: (required) :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.update_oauth_settings_with_http_info(oauth_settings, **kwargs) # noqa: E501 + return self.update_auth_log_level_with_http_info(auth_log_level, **kwargs) # noqa: E501 else: - (data) = self.update_oauth_settings_with_http_info(oauth_settings, **kwargs) # noqa: E501 + (data) = self.update_auth_log_level_with_http_info(auth_log_level, **kwargs) # noqa: E501 return data - def update_oauth_settings_with_http_info(self, oauth_settings, **kwargs): # noqa: E501 - """update_oauth_settings # noqa: E501 + def update_auth_log_level_with_http_info(self, auth_log_level, **kwargs): # noqa: E501 + """update_auth_log_level # noqa: E501 - Modify the OAuth settings. # noqa: E501 + Set the current authentication service and netlogon logging level. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_oauth_settings_with_http_info(oauth_settings, async_req=True) + >>> thread = api.update_auth_log_level_with_http_info(auth_log_level, async_req=True) >>> result = thread.get() :param async_req bool - :param OauthSettingsSettings oauth_settings: (required) - :param str zone: Specifies which access zone to use. + :param AuthLogLevelExtended auth_log_level: (required) :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['oauth_settings', 'zone'] # noqa: E501 + all_params = ['auth_log_level'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -11157,28 +7614,20 @@ def update_oauth_settings_with_http_info(self, oauth_settings, **kwargs): # noq if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method update_oauth_settings" % key + " to method update_auth_log_level" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'oauth_settings' is set - if ('oauth_settings' not in params or - params['oauth_settings'] is None): - raise ValueError("Missing the required parameter `oauth_settings` when calling `update_oauth_settings`") # noqa: E501 + # verify the required parameter 'auth_log_level' is set + if ('auth_log_level' not in params or + params['auth_log_level'] is None): + raise ValueError("Missing the required parameter `auth_log_level` when calling `update_auth_log_level`") # noqa: E501 - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `update_oauth_settings`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `update_oauth_settings`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -11186,8 +7635,8 @@ def update_oauth_settings_with_http_info(self, oauth_settings, **kwargs): # noq local_var_files = {} body_params = None - if 'oauth_settings' in params: - body_params = params['oauth_settings'] + if 'auth_log_level' in params: + body_params = params['auth_log_level'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -11200,7 +7649,7 @@ def update_oauth_settings_with_http_info(self, oauth_settings, **kwargs): # noq auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/auth/oauth/settings', 'PUT', + '/platform/12/auth/log-level', 'PUT', path_params, query_params, header_params, @@ -11215,49 +7664,49 @@ def update_oauth_settings_with_http_info(self, oauth_settings, **kwargs): # noq _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_providers_ads_by_id(self, providers_ads_id_params, providers_ads_id, **kwargs): # noqa: E501 - """update_providers_ads_by_id # noqa: E501 + def update_auth_role(self, auth_role, auth_role_id, **kwargs): # noqa: E501 + """update_auth_role # noqa: E501 - Modify the ADS provider. # noqa: E501 + Modify the role. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_providers_ads_by_id(providers_ads_id_params, providers_ads_id, async_req=True) + >>> thread = api.update_auth_role(auth_role, auth_role_id, async_req=True) >>> result = thread.get() :param async_req bool - :param ProvidersAdsIdParams providers_ads_id_params: (required) - :param str providers_ads_id: Modify the ADS provider. (required) - :param str machine_account: Machine account name to use in AD. Default is the cluster name. + :param AuthRole auth_role: (required) + :param str auth_role_id: Modify the role. (required) + :param str zone: Specifies which access zone to use. :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.update_providers_ads_by_id_with_http_info(providers_ads_id_params, providers_ads_id, **kwargs) # noqa: E501 + return self.update_auth_role_with_http_info(auth_role, auth_role_id, **kwargs) # noqa: E501 else: - (data) = self.update_providers_ads_by_id_with_http_info(providers_ads_id_params, providers_ads_id, **kwargs) # noqa: E501 + (data) = self.update_auth_role_with_http_info(auth_role, auth_role_id, **kwargs) # noqa: E501 return data - def update_providers_ads_by_id_with_http_info(self, providers_ads_id_params, providers_ads_id, **kwargs): # noqa: E501 - """update_providers_ads_by_id # noqa: E501 + def update_auth_role_with_http_info(self, auth_role, auth_role_id, **kwargs): # noqa: E501 + """update_auth_role # noqa: E501 - Modify the ADS provider. # noqa: E501 + Modify the role. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_providers_ads_by_id_with_http_info(providers_ads_id_params, providers_ads_id, async_req=True) + >>> thread = api.update_auth_role_with_http_info(auth_role, auth_role_id, async_req=True) >>> result = thread.get() :param async_req bool - :param ProvidersAdsIdParams providers_ads_id_params: (required) - :param str providers_ads_id: Modify the ADS provider. (required) - :param str machine_account: Machine account name to use in AD. Default is the cluster name. + :param AuthRole auth_role: (required) + :param str auth_role_id: Modify the role. (required) + :param str zone: Specifies which access zone to use. :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['providers_ads_id_params', 'providers_ads_id', 'machine_account'] # noqa: E501 + all_params = ['auth_role', 'auth_role_id', 'zone'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -11268,28 +7717,34 @@ def update_providers_ads_by_id_with_http_info(self, providers_ads_id_params, pro if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method update_providers_ads_by_id" % key + " to method update_auth_role" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'providers_ads_id_params' is set - if ('providers_ads_id_params' not in params or - params['providers_ads_id_params'] is None): - raise ValueError("Missing the required parameter `providers_ads_id_params` when calling `update_providers_ads_by_id`") # noqa: E501 - # verify the required parameter 'providers_ads_id' is set - if ('providers_ads_id' not in params or - params['providers_ads_id'] is None): - raise ValueError("Missing the required parameter `providers_ads_id` when calling `update_providers_ads_by_id`") # noqa: E501 + # verify the required parameter 'auth_role' is set + if ('auth_role' not in params or + params['auth_role'] is None): + raise ValueError("Missing the required parameter `auth_role` when calling `update_auth_role`") # noqa: E501 + # verify the required parameter 'auth_role_id' is set + if ('auth_role_id' not in params or + params['auth_role_id'] is None): + raise ValueError("Missing the required parameter `auth_role_id` when calling `update_auth_role`") # noqa: E501 + if ('zone' in params and + len(params['zone']) > 255): + raise ValueError("Invalid value for parameter `zone` when calling `update_auth_role`, length must be less than or equal to `255`") # noqa: E501 + if ('zone' in params and + len(params['zone']) < 0): + raise ValueError("Invalid value for parameter `zone` when calling `update_auth_role`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} - if 'providers_ads_id' in params: - path_params['ProvidersAdsId'] = params['providers_ads_id'] # noqa: E501 + if 'auth_role_id' in params: + path_params['AuthRoleId'] = params['auth_role_id'] # noqa: E501 query_params = [] - if 'machine_account' in params: - query_params.append(('machine_account', params['machine_account'])) # noqa: E501 + if 'zone' in params: + query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -11297,8 +7752,8 @@ def update_providers_ads_by_id_with_http_info(self, providers_ads_id_params, pro local_var_files = {} body_params = None - if 'providers_ads_id_params' in params: - body_params = params['providers_ads_id_params'] + if 'auth_role' in params: + body_params = params['auth_role'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -11311,7 +7766,7 @@ def update_providers_ads_by_id_with_http_info(self, providers_ads_id_params, pro auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/14/auth/providers/ads/{ProvidersAdsId}', 'PUT', + '/platform/14/auth/roles/{AuthRoleId}', 'PUT', path_params, query_params, header_params, @@ -11326,45 +7781,53 @@ def update_providers_ads_by_id_with_http_info(self, providers_ads_id_params, pro _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_providers_duo(self, providers_duo, **kwargs): # noqa: E501 - """update_providers_duo # noqa: E501 + def update_auth_user(self, auth_user, auth_user_id, **kwargs): # noqa: E501 + """update_auth_user # noqa: E501 - Modify Duo provider. # noqa: E501 + Modify the 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.update_providers_duo(providers_duo, async_req=True) + >>> thread = api.update_auth_user(auth_user, auth_user_id, async_req=True) >>> result = thread.get() :param async_req bool - :param ProvidersDuoExtended providers_duo: (required) + :param AuthUser auth_user: (required) + :param str auth_user_id: Modify the user. (required) + :param bool force: Changes to the user ID can result in loss of access to the file system. To mitigate this risk of lost access, the force option is required for user ID changes. + :param str provider: Optional provider type. + :param str zone: Optional zone. :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.update_providers_duo_with_http_info(providers_duo, **kwargs) # noqa: E501 + return self.update_auth_user_with_http_info(auth_user, auth_user_id, **kwargs) # noqa: E501 else: - (data) = self.update_providers_duo_with_http_info(providers_duo, **kwargs) # noqa: E501 + (data) = self.update_auth_user_with_http_info(auth_user, auth_user_id, **kwargs) # noqa: E501 return data - def update_providers_duo_with_http_info(self, providers_duo, **kwargs): # noqa: E501 - """update_providers_duo # noqa: E501 + def update_auth_user_with_http_info(self, auth_user, auth_user_id, **kwargs): # noqa: E501 + """update_auth_user # noqa: E501 - Modify Duo provider. # noqa: E501 + Modify the 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.update_providers_duo_with_http_info(providers_duo, async_req=True) + >>> thread = api.update_auth_user_with_http_info(auth_user, auth_user_id, async_req=True) >>> result = thread.get() :param async_req bool - :param ProvidersDuoExtended providers_duo: (required) + :param AuthUser auth_user: (required) + :param str auth_user_id: Modify the user. (required) + :param bool force: Changes to the user ID can result in loss of access to the file system. To mitigate this risk of lost access, the force option is required for user ID changes. + :param str provider: Optional provider type. + :param str zone: Optional zone. :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['providers_duo'] # noqa: E501 + all_params = ['auth_user', 'auth_user_id', 'force', 'provider', 'zone'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -11375,20 +7838,32 @@ def update_providers_duo_with_http_info(self, providers_duo, **kwargs): # noqa: if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method update_providers_duo" % key + " to method update_auth_user" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'providers_duo' is set - if ('providers_duo' not in params or - params['providers_duo'] is None): - raise ValueError("Missing the required parameter `providers_duo` when calling `update_providers_duo`") # noqa: E501 + # verify the required parameter 'auth_user' is set + if ('auth_user' not in params or + params['auth_user'] is None): + raise ValueError("Missing the required parameter `auth_user` when calling `update_auth_user`") # noqa: E501 + # verify the required parameter 'auth_user_id' is set + if ('auth_user_id' not in params or + params['auth_user_id'] is None): + raise ValueError("Missing the required parameter `auth_user_id` when calling `update_auth_user`") # noqa: E501 collection_formats = {} path_params = {} + if 'auth_user_id' in params: + path_params['AuthUserId'] = params['auth_user_id'] # noqa: E501 query_params = [] + if 'force' in params: + query_params.append(('force', params['force'])) # noqa: E501 + if 'provider' in params: + query_params.append(('provider', params['provider'])) # noqa: E501 + if 'zone' in params: + query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -11396,8 +7871,8 @@ def update_providers_duo_with_http_info(self, providers_duo, **kwargs): # noqa: local_var_files = {} body_params = None - if 'providers_duo' in params: - body_params = params['providers_duo'] + if 'auth_user' in params: + body_params = params['auth_user'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -11410,7 +7885,7 @@ def update_providers_duo_with_http_info(self, providers_duo, **kwargs): # noqa: auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/7/auth/providers/duo', 'PUT', + '/platform/7/auth/users/{AuthUserId}', 'PUT', path_params, query_params, header_params, @@ -11425,47 +7900,49 @@ def update_providers_duo_with_http_info(self, providers_duo, **kwargs): # noqa: _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_providers_file_by_id(self, providers_file_id_params, providers_file_id, **kwargs): # noqa: E501 - """update_providers_file_by_id # noqa: E501 + def update_mapping_import(self, mapping_import, **kwargs): # noqa: E501 + """update_mapping_import # noqa: E501 - Modify the file provider. # noqa: E501 + Set or update a list of mappings between two personae. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_providers_file_by_id(providers_file_id_params, providers_file_id, async_req=True) + >>> thread = api.update_mapping_import(mapping_import, async_req=True) >>> result = thread.get() :param async_req bool - :param ProvidersFileIdParams providers_file_id_params: (required) - :param str providers_file_id: Modify the file provider. (required) + :param MappingDump mapping_import: (required) + :param bool replace: Specify whether existing mappings should be replaced. The default behavior is to leave existing mappings intact and return an error. + :param str zone: Optional zone. :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.update_providers_file_by_id_with_http_info(providers_file_id_params, providers_file_id, **kwargs) # noqa: E501 + return self.update_mapping_import_with_http_info(mapping_import, **kwargs) # noqa: E501 else: - (data) = self.update_providers_file_by_id_with_http_info(providers_file_id_params, providers_file_id, **kwargs) # noqa: E501 + (data) = self.update_mapping_import_with_http_info(mapping_import, **kwargs) # noqa: E501 return data - def update_providers_file_by_id_with_http_info(self, providers_file_id_params, providers_file_id, **kwargs): # noqa: E501 - """update_providers_file_by_id # noqa: E501 + def update_mapping_import_with_http_info(self, mapping_import, **kwargs): # noqa: E501 + """update_mapping_import # noqa: E501 - Modify the file provider. # noqa: E501 + Set or update a list of mappings between two personae. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_providers_file_by_id_with_http_info(providers_file_id_params, providers_file_id, async_req=True) + >>> thread = api.update_mapping_import_with_http_info(mapping_import, async_req=True) >>> result = thread.get() :param async_req bool - :param ProvidersFileIdParams providers_file_id_params: (required) - :param str providers_file_id: Modify the file provider. (required) + :param MappingDump mapping_import: (required) + :param bool replace: Specify whether existing mappings should be replaced. The default behavior is to leave existing mappings intact and return an error. + :param str zone: Optional zone. :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['providers_file_id_params', 'providers_file_id'] # noqa: E501 + all_params = ['mapping_import', 'replace', 'zone'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -11476,26 +7953,24 @@ def update_providers_file_by_id_with_http_info(self, providers_file_id_params, p if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method update_providers_file_by_id" % key + " to method update_mapping_import" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'providers_file_id_params' is set - if ('providers_file_id_params' not in params or - params['providers_file_id_params'] is None): - raise ValueError("Missing the required parameter `providers_file_id_params` when calling `update_providers_file_by_id`") # noqa: E501 - # verify the required parameter 'providers_file_id' is set - if ('providers_file_id' not in params or - params['providers_file_id'] is None): - raise ValueError("Missing the required parameter `providers_file_id` when calling `update_providers_file_by_id`") # noqa: E501 + # verify the required parameter 'mapping_import' is set + if ('mapping_import' not in params or + params['mapping_import'] is None): + raise ValueError("Missing the required parameter `mapping_import` when calling `update_mapping_import`") # noqa: E501 collection_formats = {} path_params = {} - if 'providers_file_id' in params: - path_params['ProvidersFileId'] = params['providers_file_id'] # noqa: E501 query_params = [] + if 'replace' in params: + query_params.append(('replace', params['replace'])) # noqa: E501 + if 'zone' in params: + query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -11503,8 +7978,8 @@ def update_providers_file_by_id_with_http_info(self, providers_file_id_params, p local_var_files = {} body_params = None - if 'providers_file_id_params' in params: - body_params = params['providers_file_id_params'] + if 'mapping_import' in params: + body_params = params['mapping_import'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -11517,7 +7992,7 @@ def update_providers_file_by_id_with_http_info(self, providers_file_id_params, p auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/auth/providers/file/{ProvidersFileId}', 'PUT', + '/platform/3/auth/mapping/import', 'PUT', path_params, query_params, header_params, @@ -11532,47 +8007,47 @@ def update_providers_file_by_id_with_http_info(self, providers_file_id_params, p _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_providers_krb5_by_id(self, providers_krb5_id_params, providers_krb5_id, **kwargs): # noqa: E501 - """update_providers_krb5_by_id # noqa: E501 + def update_mapping_users_rules(self, mapping_users_rules, **kwargs): # noqa: E501 + """update_mapping_users_rules # noqa: E501 - Modify the KRB5 provider. # noqa: E501 + Modify the user mapping rules. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_providers_krb5_by_id(providers_krb5_id_params, providers_krb5_id, async_req=True) + >>> thread = api.update_mapping_users_rules(mapping_users_rules, async_req=True) >>> result = thread.get() :param async_req bool - :param ProvidersKrb5IdParams providers_krb5_id_params: (required) - :param str providers_krb5_id: Modify the KRB5 provider. (required) + :param MappingUsersRulesExtended mapping_users_rules: (required) + :param str zone: The zone to which the user mapping applies. :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.update_providers_krb5_by_id_with_http_info(providers_krb5_id_params, providers_krb5_id, **kwargs) # noqa: E501 + return self.update_mapping_users_rules_with_http_info(mapping_users_rules, **kwargs) # noqa: E501 else: - (data) = self.update_providers_krb5_by_id_with_http_info(providers_krb5_id_params, providers_krb5_id, **kwargs) # noqa: E501 + (data) = self.update_mapping_users_rules_with_http_info(mapping_users_rules, **kwargs) # noqa: E501 return data - def update_providers_krb5_by_id_with_http_info(self, providers_krb5_id_params, providers_krb5_id, **kwargs): # noqa: E501 - """update_providers_krb5_by_id # noqa: E501 + def update_mapping_users_rules_with_http_info(self, mapping_users_rules, **kwargs): # noqa: E501 + """update_mapping_users_rules # noqa: E501 - Modify the KRB5 provider. # noqa: E501 + Modify the user mapping rules. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_providers_krb5_by_id_with_http_info(providers_krb5_id_params, providers_krb5_id, async_req=True) + >>> thread = api.update_mapping_users_rules_with_http_info(mapping_users_rules, async_req=True) >>> result = thread.get() :param async_req bool - :param ProvidersKrb5IdParams providers_krb5_id_params: (required) - :param str providers_krb5_id: Modify the KRB5 provider. (required) + :param MappingUsersRulesExtended mapping_users_rules: (required) + :param str zone: The zone to which the user mapping applies. :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['providers_krb5_id_params', 'providers_krb5_id'] # noqa: E501 + all_params = ['mapping_users_rules', 'zone'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -11583,26 +8058,22 @@ def update_providers_krb5_by_id_with_http_info(self, providers_krb5_id_params, p if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method update_providers_krb5_by_id" % key + " to method update_mapping_users_rules" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'providers_krb5_id_params' is set - if ('providers_krb5_id_params' not in params or - params['providers_krb5_id_params'] is None): - raise ValueError("Missing the required parameter `providers_krb5_id_params` when calling `update_providers_krb5_by_id`") # noqa: E501 - # verify the required parameter 'providers_krb5_id' is set - if ('providers_krb5_id' not in params or - params['providers_krb5_id'] is None): - raise ValueError("Missing the required parameter `providers_krb5_id` when calling `update_providers_krb5_by_id`") # noqa: E501 + # verify the required parameter 'mapping_users_rules' is set + if ('mapping_users_rules' not in params or + params['mapping_users_rules'] is None): + raise ValueError("Missing the required parameter `mapping_users_rules` when calling `update_mapping_users_rules`") # noqa: E501 collection_formats = {} path_params = {} - if 'providers_krb5_id' in params: - path_params['ProvidersKrb5Id'] = params['providers_krb5_id'] # noqa: E501 query_params = [] + if 'zone' in params: + query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -11610,8 +8081,8 @@ def update_providers_krb5_by_id_with_http_info(self, providers_krb5_id_params, p local_var_files = {} body_params = None - if 'providers_krb5_id_params' in params: - body_params = params['providers_krb5_id_params'] + if 'mapping_users_rules' in params: + body_params = params['mapping_users_rules'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -11624,7 +8095,7 @@ def update_providers_krb5_by_id_with_http_info(self, providers_krb5_id_params, p auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/7/auth/providers/krb5/{ProvidersKrb5Id}', 'PUT', + '/platform/1/auth/mapping/users/rules', 'PUT', path_params, query_params, header_params, @@ -11639,49 +8110,47 @@ def update_providers_krb5_by_id_with_http_info(self, providers_krb5_id_params, p _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_providers_ldap_by_id(self, providers_ldap_id_params, providers_ldap_id, **kwargs): # noqa: E501 - """update_providers_ldap_by_id # noqa: E501 + def update_providers_ads_by_id(self, providers_ads_id_params, providers_ads_id, **kwargs): # noqa: E501 + """update_providers_ads_by_id # noqa: E501 - Modify the LDAP provider. # noqa: E501 + Modify the ADS provider. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_providers_ldap_by_id(providers_ldap_id_params, providers_ldap_id, async_req=True) + >>> thread = api.update_providers_ads_by_id(providers_ads_id_params, providers_ads_id, async_req=True) >>> result = thread.get() :param async_req bool - :param ProvidersLdapIdParams providers_ldap_id_params: (required) - :param str providers_ldap_id: Modify the LDAP provider. (required) - :param bool force: Ignore unresolvable server URIs. + :param ProvidersAdsIdParams providers_ads_id_params: (required) + :param str providers_ads_id: Modify the ADS provider. (required) :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.update_providers_ldap_by_id_with_http_info(providers_ldap_id_params, providers_ldap_id, **kwargs) # noqa: E501 + return self.update_providers_ads_by_id_with_http_info(providers_ads_id_params, providers_ads_id, **kwargs) # noqa: E501 else: - (data) = self.update_providers_ldap_by_id_with_http_info(providers_ldap_id_params, providers_ldap_id, **kwargs) # noqa: E501 + (data) = self.update_providers_ads_by_id_with_http_info(providers_ads_id_params, providers_ads_id, **kwargs) # noqa: E501 return data - def update_providers_ldap_by_id_with_http_info(self, providers_ldap_id_params, providers_ldap_id, **kwargs): # noqa: E501 - """update_providers_ldap_by_id # noqa: E501 + def update_providers_ads_by_id_with_http_info(self, providers_ads_id_params, providers_ads_id, **kwargs): # noqa: E501 + """update_providers_ads_by_id # noqa: E501 - Modify the LDAP provider. # noqa: E501 + Modify the ADS provider. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_providers_ldap_by_id_with_http_info(providers_ldap_id_params, providers_ldap_id, async_req=True) + >>> thread = api.update_providers_ads_by_id_with_http_info(providers_ads_id_params, providers_ads_id, async_req=True) >>> result = thread.get() :param async_req bool - :param ProvidersLdapIdParams providers_ldap_id_params: (required) - :param str providers_ldap_id: Modify the LDAP provider. (required) - :param bool force: Ignore unresolvable server URIs. + :param ProvidersAdsIdParams providers_ads_id_params: (required) + :param str providers_ads_id: Modify the ADS provider. (required) :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['providers_ldap_id_params', 'providers_ldap_id', 'force'] # noqa: E501 + all_params = ['providers_ads_id_params', 'providers_ads_id'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -11692,28 +8161,26 @@ def update_providers_ldap_by_id_with_http_info(self, providers_ldap_id_params, p if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method update_providers_ldap_by_id" % key + " to method update_providers_ads_by_id" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'providers_ldap_id_params' is set - if ('providers_ldap_id_params' not in params or - params['providers_ldap_id_params'] is None): - raise ValueError("Missing the required parameter `providers_ldap_id_params` when calling `update_providers_ldap_by_id`") # noqa: E501 - # verify the required parameter 'providers_ldap_id' is set - if ('providers_ldap_id' not in params or - params['providers_ldap_id'] is None): - raise ValueError("Missing the required parameter `providers_ldap_id` when calling `update_providers_ldap_by_id`") # noqa: E501 + # verify the required parameter 'providers_ads_id_params' is set + if ('providers_ads_id_params' not in params or + params['providers_ads_id_params'] is None): + raise ValueError("Missing the required parameter `providers_ads_id_params` when calling `update_providers_ads_by_id`") # noqa: E501 + # verify the required parameter 'providers_ads_id' is set + if ('providers_ads_id' not in params or + params['providers_ads_id'] is None): + raise ValueError("Missing the required parameter `providers_ads_id` when calling `update_providers_ads_by_id`") # noqa: E501 collection_formats = {} path_params = {} - if 'providers_ldap_id' in params: - path_params['ProvidersLdapId'] = params['providers_ldap_id'] # noqa: E501 + if 'providers_ads_id' in params: + path_params['ProvidersAdsId'] = params['providers_ads_id'] # noqa: E501 query_params = [] - if 'force' in params: - query_params.append(('force', params['force'])) # noqa: E501 header_params = {} @@ -11721,8 +8188,8 @@ def update_providers_ldap_by_id_with_http_info(self, providers_ldap_id_params, p local_var_files = {} body_params = None - if 'providers_ldap_id_params' in params: - body_params = params['providers_ldap_id_params'] + if 'providers_ads_id_params' in params: + body_params = params['providers_ads_id_params'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -11735,7 +8202,7 @@ def update_providers_ldap_by_id_with_http_info(self, providers_ldap_id_params, p auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/auth/providers/ldap/{ProvidersLdapId}', 'PUT', + '/platform/14/auth/providers/ads/{ProvidersAdsId}', 'PUT', path_params, query_params, header_params, @@ -11750,47 +8217,45 @@ def update_providers_ldap_by_id_with_http_info(self, providers_ldap_id_params, p _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_providers_local_by_id(self, providers_local_id_params, providers_local_id, **kwargs): # noqa: E501 - """update_providers_local_by_id # noqa: E501 + def update_providers_duo(self, providers_duo, **kwargs): # noqa: E501 + """update_providers_duo # noqa: E501 - Modify the local provider. # noqa: E501 + Modify Duo provider. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_providers_local_by_id(providers_local_id_params, providers_local_id, async_req=True) + >>> thread = api.update_providers_duo(providers_duo, async_req=True) >>> result = thread.get() :param async_req bool - :param ProvidersLocalIdParams providers_local_id_params: (required) - :param str providers_local_id: Modify the local provider. (required) + :param ProvidersDuoExtended providers_duo: (required) :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.update_providers_local_by_id_with_http_info(providers_local_id_params, providers_local_id, **kwargs) # noqa: E501 + return self.update_providers_duo_with_http_info(providers_duo, **kwargs) # noqa: E501 else: - (data) = self.update_providers_local_by_id_with_http_info(providers_local_id_params, providers_local_id, **kwargs) # noqa: E501 + (data) = self.update_providers_duo_with_http_info(providers_duo, **kwargs) # noqa: E501 return data - def update_providers_local_by_id_with_http_info(self, providers_local_id_params, providers_local_id, **kwargs): # noqa: E501 - """update_providers_local_by_id # noqa: E501 + def update_providers_duo_with_http_info(self, providers_duo, **kwargs): # noqa: E501 + """update_providers_duo # noqa: E501 - Modify the local provider. # noqa: E501 + Modify Duo provider. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_providers_local_by_id_with_http_info(providers_local_id_params, providers_local_id, async_req=True) + >>> thread = api.update_providers_duo_with_http_info(providers_duo, async_req=True) >>> result = thread.get() :param async_req bool - :param ProvidersLocalIdParams providers_local_id_params: (required) - :param str providers_local_id: Modify the local provider. (required) + :param ProvidersDuoExtended providers_duo: (required) :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['providers_local_id_params', 'providers_local_id'] # noqa: E501 + all_params = ['providers_duo'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -11801,24 +8266,18 @@ def update_providers_local_by_id_with_http_info(self, providers_local_id_params, if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method update_providers_local_by_id" % key + " to method update_providers_duo" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'providers_local_id_params' is set - if ('providers_local_id_params' not in params or - params['providers_local_id_params'] is None): - raise ValueError("Missing the required parameter `providers_local_id_params` when calling `update_providers_local_by_id`") # noqa: E501 - # verify the required parameter 'providers_local_id' is set - if ('providers_local_id' not in params or - params['providers_local_id'] is None): - raise ValueError("Missing the required parameter `providers_local_id` when calling `update_providers_local_by_id`") # noqa: E501 + # verify the required parameter 'providers_duo' is set + if ('providers_duo' not in params or + params['providers_duo'] is None): + raise ValueError("Missing the required parameter `providers_duo` when calling `update_providers_duo`") # noqa: E501 collection_formats = {} path_params = {} - if 'providers_local_id' in params: - path_params['ProvidersLocalId'] = params['providers_local_id'] # noqa: E501 query_params = [] @@ -11828,8 +8287,8 @@ def update_providers_local_by_id_with_http_info(self, providers_local_id_params, local_var_files = {} body_params = None - if 'providers_local_id_params' in params: - body_params = params['providers_local_id_params'] + if 'providers_duo' in params: + body_params = params['providers_duo'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -11842,7 +8301,7 @@ def update_providers_local_by_id_with_http_info(self, providers_local_id_params, auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/auth/providers/local/{ProvidersLocalId}', 'PUT', + '/platform/7/auth/providers/duo', 'PUT', path_params, query_params, header_params, @@ -11857,47 +8316,47 @@ def update_providers_local_by_id_with_http_info(self, providers_local_id_params, _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_providers_nis_by_id(self, providers_nis_id_params, providers_nis_id, **kwargs): # noqa: E501 - """update_providers_nis_by_id # noqa: E501 + def update_providers_file_by_id(self, providers_file_id_params, providers_file_id, **kwargs): # noqa: E501 + """update_providers_file_by_id # noqa: E501 - Modify the NIS provider. # noqa: E501 + Modify the file provider. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_providers_nis_by_id(providers_nis_id_params, providers_nis_id, async_req=True) + >>> thread = api.update_providers_file_by_id(providers_file_id_params, providers_file_id, async_req=True) >>> result = thread.get() :param async_req bool - :param ProvidersNisIdParams providers_nis_id_params: (required) - :param str providers_nis_id: Modify the NIS provider. (required) + :param ProvidersFileIdParams providers_file_id_params: (required) + :param str providers_file_id: Modify the file provider. (required) :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.update_providers_nis_by_id_with_http_info(providers_nis_id_params, providers_nis_id, **kwargs) # noqa: E501 + return self.update_providers_file_by_id_with_http_info(providers_file_id_params, providers_file_id, **kwargs) # noqa: E501 else: - (data) = self.update_providers_nis_by_id_with_http_info(providers_nis_id_params, providers_nis_id, **kwargs) # noqa: E501 + (data) = self.update_providers_file_by_id_with_http_info(providers_file_id_params, providers_file_id, **kwargs) # noqa: E501 return data - def update_providers_nis_by_id_with_http_info(self, providers_nis_id_params, providers_nis_id, **kwargs): # noqa: E501 - """update_providers_nis_by_id # noqa: E501 + def update_providers_file_by_id_with_http_info(self, providers_file_id_params, providers_file_id, **kwargs): # noqa: E501 + """update_providers_file_by_id # noqa: E501 - Modify the NIS provider. # noqa: E501 + Modify the file provider. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_providers_nis_by_id_with_http_info(providers_nis_id_params, providers_nis_id, async_req=True) + >>> thread = api.update_providers_file_by_id_with_http_info(providers_file_id_params, providers_file_id, async_req=True) >>> result = thread.get() :param async_req bool - :param ProvidersNisIdParams providers_nis_id_params: (required) - :param str providers_nis_id: Modify the NIS provider. (required) + :param ProvidersFileIdParams providers_file_id_params: (required) + :param str providers_file_id: Modify the file provider. (required) :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['providers_nis_id_params', 'providers_nis_id'] # noqa: E501 + all_params = ['providers_file_id_params', 'providers_file_id'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -11908,24 +8367,24 @@ def update_providers_nis_by_id_with_http_info(self, providers_nis_id_params, pro if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method update_providers_nis_by_id" % key + " to method update_providers_file_by_id" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'providers_nis_id_params' is set - if ('providers_nis_id_params' not in params or - params['providers_nis_id_params'] is None): - raise ValueError("Missing the required parameter `providers_nis_id_params` when calling `update_providers_nis_by_id`") # noqa: E501 - # verify the required parameter 'providers_nis_id' is set - if ('providers_nis_id' not in params or - params['providers_nis_id'] is None): - raise ValueError("Missing the required parameter `providers_nis_id` when calling `update_providers_nis_by_id`") # noqa: E501 + # verify the required parameter 'providers_file_id_params' is set + if ('providers_file_id_params' not in params or + params['providers_file_id_params'] is None): + raise ValueError("Missing the required parameter `providers_file_id_params` when calling `update_providers_file_by_id`") # noqa: E501 + # verify the required parameter 'providers_file_id' is set + if ('providers_file_id' not in params or + params['providers_file_id'] is None): + raise ValueError("Missing the required parameter `providers_file_id` when calling `update_providers_file_by_id`") # noqa: E501 collection_formats = {} path_params = {} - if 'providers_nis_id' in params: - path_params['ProvidersNisId'] = params['providers_nis_id'] # noqa: E501 + if 'providers_file_id' in params: + path_params['ProvidersFileId'] = params['providers_file_id'] # noqa: E501 query_params = [] @@ -11935,8 +8394,8 @@ def update_providers_nis_by_id_with_http_info(self, providers_nis_id_params, pro local_var_files = {} body_params = None - if 'providers_nis_id_params' in params: - body_params = params['providers_nis_id_params'] + if 'providers_file_id_params' in params: + body_params = params['providers_file_id_params'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -11949,7 +8408,7 @@ def update_providers_nis_by_id_with_http_info(self, providers_nis_id_params, pro auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/7/auth/providers/nis/{ProvidersNisId}', 'PUT', + '/platform/7/auth/providers/file/{ProvidersFileId}', 'PUT', path_params, query_params, header_params, @@ -11964,49 +8423,47 @@ def update_providers_nis_by_id_with_http_info(self, providers_nis_id_params, pro _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_providers_saml_services_idp(self, providers_saml_services_idp, providers_saml_services_idp_id, **kwargs): # noqa: E501 - """update_providers_saml_services_idp # noqa: E501 + def update_providers_krb5_by_id(self, providers_krb5_id_params, providers_krb5_id, **kwargs): # noqa: E501 + """update_providers_krb5_by_id # noqa: E501 - Modify IDP using its ID. # noqa: E501 + Modify the KRB5 provider. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_providers_saml_services_idp(providers_saml_services_idp, providers_saml_services_idp_id, async_req=True) + >>> thread = api.update_providers_krb5_by_id(providers_krb5_id_params, providers_krb5_id, async_req=True) >>> result = thread.get() :param async_req bool - :param ProvidersSamlServicesIdp providers_saml_services_idp: (required) - :param str providers_saml_services_idp_id: Modify IDP using its ID. (required) - :param str zone: Specifies which access zone to use. + :param ProvidersKrb5IdParams providers_krb5_id_params: (required) + :param str providers_krb5_id: Modify the KRB5 provider. (required) :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.update_providers_saml_services_idp_with_http_info(providers_saml_services_idp, providers_saml_services_idp_id, **kwargs) # noqa: E501 + return self.update_providers_krb5_by_id_with_http_info(providers_krb5_id_params, providers_krb5_id, **kwargs) # noqa: E501 else: - (data) = self.update_providers_saml_services_idp_with_http_info(providers_saml_services_idp, providers_saml_services_idp_id, **kwargs) # noqa: E501 + (data) = self.update_providers_krb5_by_id_with_http_info(providers_krb5_id_params, providers_krb5_id, **kwargs) # noqa: E501 return data - def update_providers_saml_services_idp_with_http_info(self, providers_saml_services_idp, providers_saml_services_idp_id, **kwargs): # noqa: E501 - """update_providers_saml_services_idp # noqa: E501 + def update_providers_krb5_by_id_with_http_info(self, providers_krb5_id_params, providers_krb5_id, **kwargs): # noqa: E501 + """update_providers_krb5_by_id # noqa: E501 - Modify IDP using its ID. # noqa: E501 + Modify the KRB5 provider. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_providers_saml_services_idp_with_http_info(providers_saml_services_idp, providers_saml_services_idp_id, async_req=True) + >>> thread = api.update_providers_krb5_by_id_with_http_info(providers_krb5_id_params, providers_krb5_id, async_req=True) >>> result = thread.get() :param async_req bool - :param ProvidersSamlServicesIdp providers_saml_services_idp: (required) - :param str providers_saml_services_idp_id: Modify IDP using its ID. (required) - :param str zone: Specifies which access zone to use. + :param ProvidersKrb5IdParams providers_krb5_id_params: (required) + :param str providers_krb5_id: Modify the KRB5 provider. (required) :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['providers_saml_services_idp', 'providers_saml_services_idp_id', 'zone'] # noqa: E501 + all_params = ['providers_krb5_id_params', 'providers_krb5_id'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -12017,34 +8474,26 @@ def update_providers_saml_services_idp_with_http_info(self, providers_saml_servi if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method update_providers_saml_services_idp" % key + " to method update_providers_krb5_by_id" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'providers_saml_services_idp' is set - if ('providers_saml_services_idp' not in params or - params['providers_saml_services_idp'] is None): - raise ValueError("Missing the required parameter `providers_saml_services_idp` when calling `update_providers_saml_services_idp`") # noqa: E501 - # verify the required parameter 'providers_saml_services_idp_id' is set - if ('providers_saml_services_idp_id' not in params or - params['providers_saml_services_idp_id'] is None): - raise ValueError("Missing the required parameter `providers_saml_services_idp_id` when calling `update_providers_saml_services_idp`") # noqa: E501 + # verify the required parameter 'providers_krb5_id_params' is set + if ('providers_krb5_id_params' not in params or + params['providers_krb5_id_params'] is None): + raise ValueError("Missing the required parameter `providers_krb5_id_params` when calling `update_providers_krb5_by_id`") # noqa: E501 + # verify the required parameter 'providers_krb5_id' is set + if ('providers_krb5_id' not in params or + params['providers_krb5_id'] is None): + raise ValueError("Missing the required parameter `providers_krb5_id` when calling `update_providers_krb5_by_id`") # noqa: E501 - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `update_providers_saml_services_idp`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `update_providers_saml_services_idp`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} - if 'providers_saml_services_idp_id' in params: - path_params['ProvidersSamlServicesIdpId'] = params['providers_saml_services_idp_id'] # noqa: E501 + if 'providers_krb5_id' in params: + path_params['ProvidersKrb5Id'] = params['providers_krb5_id'] # noqa: E501 query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -12052,8 +8501,8 @@ def update_providers_saml_services_idp_with_http_info(self, providers_saml_servi local_var_files = {} body_params = None - if 'providers_saml_services_idp' in params: - body_params = params['providers_saml_services_idp'] + if 'providers_krb5_id_params' in params: + body_params = params['providers_krb5_id_params'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -12066,7 +8515,7 @@ def update_providers_saml_services_idp_with_http_info(self, providers_saml_servi auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/auth/providers/saml-services/idps/{ProvidersSamlServicesIdpId}', 'PUT', + '/platform/7/auth/providers/krb5/{ProvidersKrb5Id}', 'PUT', path_params, query_params, header_params, @@ -12081,47 +8530,49 @@ def update_providers_saml_services_idp_with_http_info(self, providers_saml_servi _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_providers_saml_services_settings(self, providers_saml_services_settings, **kwargs): # noqa: E501 - """update_providers_saml_services_settings # noqa: E501 + def update_providers_ldap_by_id(self, providers_ldap_id_params, providers_ldap_id, **kwargs): # noqa: E501 + """update_providers_ldap_by_id # noqa: E501 - Modify the SAML services settings. # noqa: E501 + Modify the LDAP provider. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_providers_saml_services_settings(providers_saml_services_settings, async_req=True) + >>> thread = api.update_providers_ldap_by_id(providers_ldap_id_params, providers_ldap_id, async_req=True) >>> result = thread.get() :param async_req bool - :param ProvidersSamlServicesSettingsSettings providers_saml_services_settings: (required) - :param str zone: Specifies which access zone to use. + :param ProvidersLdapIdParams providers_ldap_id_params: (required) + :param str providers_ldap_id: Modify the LDAP provider. (required) + :param bool force: Ignore unresolvable server URIs. :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.update_providers_saml_services_settings_with_http_info(providers_saml_services_settings, **kwargs) # noqa: E501 + return self.update_providers_ldap_by_id_with_http_info(providers_ldap_id_params, providers_ldap_id, **kwargs) # noqa: E501 else: - (data) = self.update_providers_saml_services_settings_with_http_info(providers_saml_services_settings, **kwargs) # noqa: E501 + (data) = self.update_providers_ldap_by_id_with_http_info(providers_ldap_id_params, providers_ldap_id, **kwargs) # noqa: E501 return data - def update_providers_saml_services_settings_with_http_info(self, providers_saml_services_settings, **kwargs): # noqa: E501 - """update_providers_saml_services_settings # noqa: E501 + def update_providers_ldap_by_id_with_http_info(self, providers_ldap_id_params, providers_ldap_id, **kwargs): # noqa: E501 + """update_providers_ldap_by_id # noqa: E501 - Modify the SAML services settings. # noqa: E501 + Modify the LDAP provider. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_providers_saml_services_settings_with_http_info(providers_saml_services_settings, async_req=True) + >>> thread = api.update_providers_ldap_by_id_with_http_info(providers_ldap_id_params, providers_ldap_id, async_req=True) >>> result = thread.get() :param async_req bool - :param ProvidersSamlServicesSettingsSettings providers_saml_services_settings: (required) - :param str zone: Specifies which access zone to use. + :param ProvidersLdapIdParams providers_ldap_id_params: (required) + :param str providers_ldap_id: Modify the LDAP provider. (required) + :param bool force: Ignore unresolvable server URIs. :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['providers_saml_services_settings', 'zone'] # noqa: E501 + all_params = ['providers_ldap_id_params', 'providers_ldap_id', 'force'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -12132,28 +8583,28 @@ def update_providers_saml_services_settings_with_http_info(self, providers_saml_ if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method update_providers_saml_services_settings" % key + " to method update_providers_ldap_by_id" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'providers_saml_services_settings' is set - if ('providers_saml_services_settings' not in params or - params['providers_saml_services_settings'] is None): - raise ValueError("Missing the required parameter `providers_saml_services_settings` when calling `update_providers_saml_services_settings`") # noqa: E501 + # verify the required parameter 'providers_ldap_id_params' is set + if ('providers_ldap_id_params' not in params or + params['providers_ldap_id_params'] is None): + raise ValueError("Missing the required parameter `providers_ldap_id_params` when calling `update_providers_ldap_by_id`") # noqa: E501 + # verify the required parameter 'providers_ldap_id' is set + if ('providers_ldap_id' not in params or + params['providers_ldap_id'] is None): + raise ValueError("Missing the required parameter `providers_ldap_id` when calling `update_providers_ldap_by_id`") # noqa: E501 - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `update_providers_saml_services_settings`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `update_providers_saml_services_settings`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} + if 'providers_ldap_id' in params: + path_params['ProvidersLdapId'] = params['providers_ldap_id'] # noqa: E501 query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 + if 'force' in params: + query_params.append(('force', params['force'])) # noqa: E501 header_params = {} @@ -12161,8 +8612,8 @@ def update_providers_saml_services_settings_with_http_info(self, providers_saml_ local_var_files = {} body_params = None - if 'providers_saml_services_settings' in params: - body_params = params['providers_saml_services_settings'] + if 'providers_ldap_id_params' in params: + body_params = params['providers_ldap_id_params'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -12175,7 +8626,7 @@ def update_providers_saml_services_settings_with_http_info(self, providers_saml_ auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/auth/providers/saml-services/settings', 'PUT', + '/platform/11/auth/providers/ldap/{ProvidersLdapId}', 'PUT', path_params, query_params, header_params, @@ -12190,47 +8641,47 @@ def update_providers_saml_services_settings_with_http_info(self, providers_saml_ _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_providers_saml_services_sp(self, providers_saml_services_sp, **kwargs): # noqa: E501 - """update_providers_saml_services_sp # noqa: E501 + def update_providers_local_by_id(self, providers_local_id_params, providers_local_id, **kwargs): # noqa: E501 + """update_providers_local_by_id # noqa: E501 - Set the SAML SP settings. # noqa: E501 + Modify the local provider. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_providers_saml_services_sp(providers_saml_services_sp, async_req=True) + >>> thread = api.update_providers_local_by_id(providers_local_id_params, providers_local_id, async_req=True) >>> result = thread.get() :param async_req bool - :param ProvidersSamlServicesSpExtended providers_saml_services_sp: (required) - :param str zone: Specifies which access zone to use. + :param ProvidersLocalIdParams providers_local_id_params: (required) + :param str providers_local_id: Modify the local provider. (required) :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.update_providers_saml_services_sp_with_http_info(providers_saml_services_sp, **kwargs) # noqa: E501 + return self.update_providers_local_by_id_with_http_info(providers_local_id_params, providers_local_id, **kwargs) # noqa: E501 else: - (data) = self.update_providers_saml_services_sp_with_http_info(providers_saml_services_sp, **kwargs) # noqa: E501 + (data) = self.update_providers_local_by_id_with_http_info(providers_local_id_params, providers_local_id, **kwargs) # noqa: E501 return data - def update_providers_saml_services_sp_with_http_info(self, providers_saml_services_sp, **kwargs): # noqa: E501 - """update_providers_saml_services_sp # noqa: E501 + def update_providers_local_by_id_with_http_info(self, providers_local_id_params, providers_local_id, **kwargs): # noqa: E501 + """update_providers_local_by_id # noqa: E501 - Set the SAML SP settings. # noqa: E501 + Modify the local provider. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_providers_saml_services_sp_with_http_info(providers_saml_services_sp, async_req=True) + >>> thread = api.update_providers_local_by_id_with_http_info(providers_local_id_params, providers_local_id, async_req=True) >>> result = thread.get() :param async_req bool - :param ProvidersSamlServicesSpExtended providers_saml_services_sp: (required) - :param str zone: Specifies which access zone to use. + :param ProvidersLocalIdParams providers_local_id_params: (required) + :param str providers_local_id: Modify the local provider. (required) :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['providers_saml_services_sp', 'zone'] # noqa: E501 + all_params = ['providers_local_id_params', 'providers_local_id'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -12241,28 +8692,26 @@ def update_providers_saml_services_sp_with_http_info(self, providers_saml_servic if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method update_providers_saml_services_sp" % key + " to method update_providers_local_by_id" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'providers_saml_services_sp' is set - if ('providers_saml_services_sp' not in params or - params['providers_saml_services_sp'] is None): - raise ValueError("Missing the required parameter `providers_saml_services_sp` when calling `update_providers_saml_services_sp`") # noqa: E501 + # verify the required parameter 'providers_local_id_params' is set + if ('providers_local_id_params' not in params or + params['providers_local_id_params'] is None): + raise ValueError("Missing the required parameter `providers_local_id_params` when calling `update_providers_local_by_id`") # noqa: E501 + # verify the required parameter 'providers_local_id' is set + if ('providers_local_id' not in params or + params['providers_local_id'] is None): + raise ValueError("Missing the required parameter `providers_local_id` when calling `update_providers_local_by_id`") # noqa: E501 - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `update_providers_saml_services_sp`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `update_providers_saml_services_sp`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} + if 'providers_local_id' in params: + path_params['ProvidersLocalId'] = params['providers_local_id'] # noqa: E501 query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -12270,8 +8719,8 @@ def update_providers_saml_services_sp_with_http_info(self, providers_saml_servic local_var_files = {} body_params = None - if 'providers_saml_services_sp' in params: - body_params = params['providers_saml_services_sp'] + if 'providers_local_id_params' in params: + body_params = params['providers_local_id_params'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -12284,7 +8733,7 @@ def update_providers_saml_services_sp_with_http_info(self, providers_saml_servic auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/auth/providers/saml-services/sp', 'PUT', + '/platform/7/auth/providers/local/{ProvidersLocalId}', 'PUT', path_params, query_params, header_params, @@ -12299,47 +8748,47 @@ def update_providers_saml_services_sp_with_http_info(self, providers_saml_servic _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_providers_saml_services_sp_signing_key_settings(self, providers_saml_services_sp_signing_key_settings, **kwargs): # noqa: E501 - """update_providers_saml_services_sp_signing_key_settings # noqa: E501 + def update_providers_nis_by_id(self, providers_nis_id_params, providers_nis_id, **kwargs): # noqa: E501 + """update_providers_nis_by_id # noqa: E501 - Set the SAML SP signing key settings. # noqa: E501 + Modify the NIS provider. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_providers_saml_services_sp_signing_key_settings(providers_saml_services_sp_signing_key_settings, async_req=True) + >>> thread = api.update_providers_nis_by_id(providers_nis_id_params, providers_nis_id, async_req=True) >>> result = thread.get() :param async_req bool - :param ProvidersSamlServicesSpSigningKeySettingsSettings providers_saml_services_sp_signing_key_settings: (required) - :param str zone: Specifies which access zone to use. + :param ProvidersNisIdParams providers_nis_id_params: (required) + :param str providers_nis_id: Modify the NIS provider. (required) :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.update_providers_saml_services_sp_signing_key_settings_with_http_info(providers_saml_services_sp_signing_key_settings, **kwargs) # noqa: E501 + return self.update_providers_nis_by_id_with_http_info(providers_nis_id_params, providers_nis_id, **kwargs) # noqa: E501 else: - (data) = self.update_providers_saml_services_sp_signing_key_settings_with_http_info(providers_saml_services_sp_signing_key_settings, **kwargs) # noqa: E501 + (data) = self.update_providers_nis_by_id_with_http_info(providers_nis_id_params, providers_nis_id, **kwargs) # noqa: E501 return data - def update_providers_saml_services_sp_signing_key_settings_with_http_info(self, providers_saml_services_sp_signing_key_settings, **kwargs): # noqa: E501 - """update_providers_saml_services_sp_signing_key_settings # noqa: E501 + def update_providers_nis_by_id_with_http_info(self, providers_nis_id_params, providers_nis_id, **kwargs): # noqa: E501 + """update_providers_nis_by_id # noqa: E501 - Set the SAML SP signing key settings. # noqa: E501 + Modify the NIS provider. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_providers_saml_services_sp_signing_key_settings_with_http_info(providers_saml_services_sp_signing_key_settings, async_req=True) + >>> thread = api.update_providers_nis_by_id_with_http_info(providers_nis_id_params, providers_nis_id, async_req=True) >>> result = thread.get() :param async_req bool - :param ProvidersSamlServicesSpSigningKeySettingsSettings providers_saml_services_sp_signing_key_settings: (required) - :param str zone: Specifies which access zone to use. + :param ProvidersNisIdParams providers_nis_id_params: (required) + :param str providers_nis_id: Modify the NIS provider. (required) :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['providers_saml_services_sp_signing_key_settings', 'zone'] # noqa: E501 + all_params = ['providers_nis_id_params', 'providers_nis_id'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -12350,28 +8799,26 @@ def update_providers_saml_services_sp_signing_key_settings_with_http_info(self, if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method update_providers_saml_services_sp_signing_key_settings" % key + " to method update_providers_nis_by_id" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'providers_saml_services_sp_signing_key_settings' is set - if ('providers_saml_services_sp_signing_key_settings' not in params or - params['providers_saml_services_sp_signing_key_settings'] is None): - raise ValueError("Missing the required parameter `providers_saml_services_sp_signing_key_settings` when calling `update_providers_saml_services_sp_signing_key_settings`") # noqa: E501 + # verify the required parameter 'providers_nis_id_params' is set + if ('providers_nis_id_params' not in params or + params['providers_nis_id_params'] is None): + raise ValueError("Missing the required parameter `providers_nis_id_params` when calling `update_providers_nis_by_id`") # noqa: E501 + # verify the required parameter 'providers_nis_id' is set + if ('providers_nis_id' not in params or + params['providers_nis_id'] is None): + raise ValueError("Missing the required parameter `providers_nis_id` when calling `update_providers_nis_by_id`") # noqa: E501 - if ('zone' in params and - len(params['zone']) > 255): - raise ValueError("Invalid value for parameter `zone` when calling `update_providers_saml_services_sp_signing_key_settings`, length must be less than or equal to `255`") # noqa: E501 - if ('zone' in params and - len(params['zone']) < 0): - raise ValueError("Invalid value for parameter `zone` when calling `update_providers_saml_services_sp_signing_key_settings`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} + if 'providers_nis_id' in params: + path_params['ProvidersNisId'] = params['providers_nis_id'] # noqa: E501 query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -12379,8 +8826,8 @@ def update_providers_saml_services_sp_signing_key_settings_with_http_info(self, local_var_files = {} body_params = None - if 'providers_saml_services_sp_signing_key_settings' in params: - body_params = params['providers_saml_services_sp_signing_key_settings'] + if 'providers_nis_id_params' in params: + body_params = params['providers_nis_id_params'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -12393,7 +8840,7 @@ def update_providers_saml_services_sp_signing_key_settings_with_http_info(self, auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/auth/providers/saml-services/sp/signing-key/settings', 'PUT', + '/platform/7/auth/providers/nis/{ProvidersNisId}', 'PUT', path_params, query_params, header_params, @@ -12492,7 +8939,7 @@ def update_settings_acls_with_http_info(self, settings_acls, **kwargs): # noqa: auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/auth/settings/acls', 'PUT', + '/platform/11/auth/settings/acls', 'PUT', path_params, query_params, header_params, @@ -12595,7 +9042,7 @@ def update_settings_global_with_http_info(self, settings_global, **kwargs): # n auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/auth/settings/global', 'PUT', + '/platform/1/auth/settings/global', 'PUT', path_params, query_params, header_params, @@ -12694,7 +9141,7 @@ def update_settings_krb5_defaults_with_http_info(self, settings_krb5_defaults, * auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/auth/settings/krb5/defaults', 'PUT', + '/platform/1/auth/settings/krb5/defaults', 'PUT', path_params, query_params, header_params, diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/auth_groups_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/auth_groups_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/auth_groups_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/auth_groups_api.py index e7b2b307c..93fc8ba38 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/auth_groups_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/auth_groups_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class AuthGroupsApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/auth_providers_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/auth_providers_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/auth_providers_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/auth_providers_api.py index a305cd551..8c911f15d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/auth_providers_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/auth_providers_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class AuthProvidersApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/auth_roles_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/auth_roles_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/auth_roles_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/auth_roles_api.py index d6193fcab..0b2331844 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/auth_roles_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/auth_roles_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class AuthRolesApi(object): @@ -252,7 +252,7 @@ def create_role_privilege_with_http_info(self, role_privilege, role, **kwargs): auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/auth/roles/{Role}/privileges', 'POST', + '/platform/14/auth/roles/{Role}/privileges', 'POST', path_params, query_params, header_params, @@ -486,7 +486,7 @@ def delete_role_privilege_with_http_info(self, role_privilege_id, role, **kwargs auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/auth/roles/{Role}/privileges/{RolePrivilegeId}', 'DELETE', + '/platform/14/auth/roles/{Role}/privileges/{RolePrivilegeId}', 'DELETE', path_params, query_params, header_params, @@ -743,7 +743,7 @@ def list_role_privileges_with_http_info(self, role, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/auth/roles/{Role}/privileges', 'GET', + '/platform/14/auth/roles/{Role}/privileges', 'GET', path_params, query_params, header_params, diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/auth_users_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/auth_users_api.py similarity index 79% rename from isilon_sdk/isilon_sdk/v9_11_0/api/auth_users_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/auth_users_api.py index 6e9ecbf84..7fd1f7fa2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/auth_users_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/auth_users_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class AuthUsersApi(object): @@ -148,121 +148,6 @@ def create_user_member_of_item_with_http_info(self, user_member_of_item, user, * _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def create_user_reset_password_item(self, user_reset_password_item, user, **kwargs): # noqa: E501 - """create_user_reset_password_item # noqa: E501 - - Reset the user's password. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_user_reset_password_item(user_reset_password_item, user, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param Empty user_reset_password_item: (required) - :param str user: (required) - :param str provider: Optional provider type. - :param str zone: Specifies access zone containing user. - :return: CreateUserResetPasswordItemResponse - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.create_user_reset_password_item_with_http_info(user_reset_password_item, user, **kwargs) # noqa: E501 - else: - (data) = self.create_user_reset_password_item_with_http_info(user_reset_password_item, user, **kwargs) # noqa: E501 - return data - - def create_user_reset_password_item_with_http_info(self, user_reset_password_item, user, **kwargs): # noqa: E501 - """create_user_reset_password_item # noqa: E501 - - Reset the user's password. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_user_reset_password_item_with_http_info(user_reset_password_item, user, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param Empty user_reset_password_item: (required) - :param str user: (required) - :param str provider: Optional provider type. - :param str zone: Specifies access zone containing user. - :return: CreateUserResetPasswordItemResponse - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['user_reset_password_item', 'user', 'provider', 'zone'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method create_user_reset_password_item" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'user_reset_password_item' is set - if ('user_reset_password_item' not in params or - params['user_reset_password_item'] is None): - raise ValueError("Missing the required parameter `user_reset_password_item` when calling `create_user_reset_password_item`") # noqa: E501 - # verify the required parameter 'user' is set - if ('user' not in params or - params['user'] is None): - raise ValueError("Missing the required parameter `user` when calling `create_user_reset_password_item`") # noqa: E501 - - collection_formats = {} - - path_params = {} - if 'user' in params: - path_params['User'] = params['user'] # noqa: E501 - - query_params = [] - if 'provider' in params: - query_params.append(('provider', params['provider'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'user_reset_password_item' in params: - body_params = params['user_reset_password_item'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/auth/users/{User}/reset-password', 'POST', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='CreateUserResetPasswordItemResponse', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - def delete_user_member_of_member_of(self, user_member_of_member_of, user, **kwargs): # noqa: E501 """delete_user_member_of_member_of # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/avscan_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/avscan_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/avscan_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/avscan_api.py index 2c7ba20f0..619172952 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/avscan_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/avscan_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class AvscanApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/avscan_nodes_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/avscan_nodes_api.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/api/avscan_nodes_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/avscan_nodes_api.py index 477e094db..1f0de5330 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/avscan_nodes_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/avscan_nodes_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class AvscanNodesApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/catalog_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/catalog_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/catalog_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/catalog_api.py index 10f825d42..71bf9c3ed 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/catalog_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/catalog_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class CatalogApi(object): @@ -99,8 +99,6 @@ def get_catalog_list_with_http_info(self, **kwargs): # noqa: E501 raise ValueError("Invalid value for parameter `content_type` when calling `get_catalog_list`, length must be greater than or equal to `3`") # noqa: E501 if 'onefs_version' in params and params['onefs_version'] > -1: # noqa: E501 raise ValueError("Invalid value for parameter `onefs_version` when calling `get_catalog_list`, must be a value less than or equal to `-1`") # noqa: E501 - if 'onefs_version' in params and params['onefs_version'] < 0: # noqa: E501 - raise ValueError("Invalid value for parameter `onefs_version` when calling `get_catalog_list`, must be a value greater than or equal to `0`") # noqa: E501 if ('reference' in params and len(params['reference']) > 128): raise ValueError("Invalid value for parameter `reference` when calling `get_catalog_list`, length must be less than or equal to `128`") # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/certificate_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/certificate_api.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/api/certificate_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/certificate_api.py index 145f43ffb..31d0746de 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/certificate_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/certificate_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class CertificateApi(object): @@ -142,7 +142,7 @@ def create_certificate_server_item(self, certificate_server_item, **kwargs): # >>> result = thread.get() :param async_req bool - :param CertificatesSyslogItem certificate_server_item: (required) + :param CertificateServerItem certificate_server_item: (required) :return: CreateResponse If the method is called asynchronously, returns the request thread. @@ -164,7 +164,7 @@ def create_certificate_server_item_with_http_info(self, certificate_server_item, >>> result = thread.get() :param async_req bool - :param CertificatesSyslogItem certificate_server_item: (required) + :param CertificateServerItem certificate_server_item: (required) :return: CreateResponse If the method is called asynchronously, returns the request thread. @@ -440,7 +440,7 @@ def get_certificate_authority_by_id(self, certificate_authority_id, **kwargs): :param async_req bool :param str certificate_authority_id: Retrieve a single TLS certificate authority. (required) - :return: CertificatesSyslog + :return: CertificatesCa If the method is called asynchronously, returns the request thread. """ @@ -462,7 +462,7 @@ def get_certificate_authority_by_id_with_http_info(self, certificate_authority_i :param async_req bool :param str certificate_authority_id: Retrieve a single TLS certificate authority. (required) - :return: CertificatesSyslog + :return: CertificatesCa If the method is called asynchronously, returns the request thread. """ @@ -520,7 +520,7 @@ def get_certificate_authority_by_id_with_http_info(self, certificate_authority_i body=body_params, post_params=form_params, files=local_var_files, - response_type='CertificatesSyslog', # noqa: E501 + response_type='CertificatesCa', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -732,7 +732,7 @@ def list_certificate_authority(self, **kwargs): # noqa: E501 :param int limit: Return no more than this many results at once (see resume). :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). :param str sort: The field that will be used for sorting. - :return: CertificatesSyslogExtended + :return: CertificatesCaExtended If the method is called asynchronously, returns the request thread. """ @@ -757,7 +757,7 @@ def list_certificate_authority_with_http_info(self, **kwargs): # noqa: E501 :param int limit: Return no more than this many results at once (see resume). :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). :param str sort: The field that will be used for sorting. - :return: CertificatesSyslogExtended + :return: CertificatesCaExtended If the method is called asynchronously, returns the request thread. """ @@ -836,7 +836,7 @@ def list_certificate_authority_with_http_info(self, **kwargs): # noqa: E501 body=body_params, post_params=form_params, files=local_var_files, - response_type='CertificatesSyslogExtended', # noqa: E501 + response_type='CertificatesCaExtended', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -980,7 +980,7 @@ def update_certificate_authority_by_id(self, certificate_authority_id_params, ce >>> result = thread.get() :param async_req bool - :param CertificatesSyslogIdParams certificate_authority_id_params: (required) + :param CertificateServerIdParams certificate_authority_id_params: (required) :param str certificate_authority_id: Modify a TLS certificate authority. (required) :return: None If the method is called asynchronously, @@ -1003,7 +1003,7 @@ def update_certificate_authority_by_id_with_http_info(self, certificate_authorit >>> result = thread.get() :param async_req bool - :param CertificatesSyslogIdParams certificate_authority_id_params: (required) + :param CertificateServerIdParams certificate_authority_id_params: (required) :param str certificate_authority_id: Modify a TLS certificate authority. (required) :return: None If the method is called asynchronously, @@ -1087,7 +1087,7 @@ def update_certificate_server_by_id(self, certificate_server_id_params, certific >>> result = thread.get() :param async_req bool - :param CertificatesSyslogIdParams certificate_server_id_params: (required) + :param CertificateServerIdParams certificate_server_id_params: (required) :param str certificate_server_id: Modify a TLS server certificate. (required) :return: None If the method is called asynchronously, @@ -1110,7 +1110,7 @@ def update_certificate_server_by_id_with_http_info(self, certificate_server_id_p >>> result = thread.get() :param async_req bool - :param CertificatesSyslogIdParams certificate_server_id_params: (required) + :param CertificateServerIdParams certificate_server_id_params: (required) :param str certificate_server_id: Modify a TLS server certificate. (required) :return: None If the method is called asynchronously, diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/cloud_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/cloud_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/cloud_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/cloud_api.py index f940e634c..f582164d5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/cloud_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/cloud_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class CloudApi(object): @@ -241,7 +241,7 @@ def create_cloud_certificate(self, cloud_certificate, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :param CertificatesSyslogItem cloud_certificate: (required) + :param CertificateServerItem cloud_certificate: (required) :return: CreateResponse If the method is called asynchronously, returns the request thread. @@ -263,7 +263,7 @@ def create_cloud_certificate_with_http_info(self, cloud_certificate, **kwargs): >>> result = thread.get() :param async_req bool - :param CertificatesSyslogItem cloud_certificate: (required) + :param CertificateServerItem cloud_certificate: (required) :return: CreateResponse If the method is called asynchronously, returns the request thread. @@ -1628,7 +1628,7 @@ def get_cloud_certificate(self, cloud_certificate_id, **kwargs): # noqa: E501 :param async_req bool :param str cloud_certificate_id: Retrieve a CloudPools TLS client certificate. (required) - :return: CertificatesSyslog + :return: CertificatesCa If the method is called asynchronously, returns the request thread. """ @@ -1650,7 +1650,7 @@ def get_cloud_certificate_with_http_info(self, cloud_certificate_id, **kwargs): :param async_req bool :param str cloud_certificate_id: Retrieve a CloudPools TLS client certificate. (required) - :return: CertificatesSyslog + :return: CertificatesCa If the method is called asynchronously, returns the request thread. """ @@ -1708,7 +1708,7 @@ def get_cloud_certificate_with_http_info(self, cloud_certificate_id, **kwargs): body=body_params, post_params=form_params, files=local_var_files, - response_type='CertificatesSyslog', # noqa: E501 + response_type='CertificatesCa', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -3208,7 +3208,7 @@ def update_cloud_certificate(self, cloud_certificate, cloud_certificate_id, **kw >>> result = thread.get() :param async_req bool - :param CertificatesSyslogIdParams cloud_certificate: (required) + :param CertificateServerIdParams cloud_certificate: (required) :param str cloud_certificate_id: Modify a CloudPools TLS client certificate. (required) :return: None If the method is called asynchronously, @@ -3231,7 +3231,7 @@ def update_cloud_certificate_with_http_info(self, cloud_certificate, cloud_certi >>> result = thread.get() :param async_req bool - :param CertificatesSyslogIdParams cloud_certificate: (required) + :param CertificateServerIdParams cloud_certificate: (required) :param str cloud_certificate_id: Modify a CloudPools TLS client certificate. (required) :return: None If the method is called asynchronously, diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/cluster_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/cluster_api.py similarity index 88% rename from isilon_sdk/isilon_sdk/v9_11_0/api/cluster_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/cluster_api.py index dd3b3ac3c..230d24d10 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/cluster_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/cluster_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class ClusterApi(object): @@ -216,7 +216,7 @@ def create_cluster_add_node_item_with_http_info(self, cluster_add_node_item, **k auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/cluster/add-node', 'POST', + '/platform/3/cluster/add-node', 'POST', path_params, query_params, header_params, @@ -241,7 +241,7 @@ def create_diagnostics_gather_start_item(self, diagnostics_gather_start_item, ** >>> result = thread.get() :param async_req bool - :param DiagnosticsGatherStartItem diagnostics_gather_start_item: (required) + :param DiagnosticsGatherSettingsExtended diagnostics_gather_start_item: (required) :return: Empty If the method is called asynchronously, returns the request thread. @@ -263,7 +263,7 @@ def create_diagnostics_gather_start_item_with_http_info(self, diagnostics_gather >>> result = thread.get() :param async_req bool - :param DiagnosticsGatherStartItem diagnostics_gather_start_item: (required) + :param DiagnosticsGatherSettingsExtended diagnostics_gather_start_item: (required) :return: Empty If the method is called asynchronously, returns the request thread. @@ -315,7 +315,7 @@ def create_diagnostics_gather_start_item_with_http_info(self, diagnostics_gather auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/cluster/diagnostics/gather/start', 'POST', + '/platform/3/cluster/diagnostics/gather/start', 'POST', path_params, query_params, header_params, @@ -513,7 +513,7 @@ def create_diagnostics_netlogger_start_item_with_http_info(self, diagnostics_net auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/cluster/diagnostics/netlogger/start', 'POST', + '/platform/3/cluster/diagnostics/netlogger/start', 'POST', path_params, query_params, header_params, @@ -703,7 +703,7 @@ def get_cluster_config_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/17/cluster/config', 'GET', + '/platform/3/cluster/config', 'GET', path_params, query_params, header_params, @@ -794,7 +794,7 @@ def get_cluster_email_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/cluster/email', 'GET', + '/platform/1/cluster/email', 'GET', path_params, query_params, header_params, @@ -1174,7 +1174,7 @@ def get_cluster_node_with_http_info(self, cluster_node_id, **kwargs): # noqa: E auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/cluster/nodes/{ClusterNodeId}', 'GET', + '/platform/15/cluster/nodes/{ClusterNodeId}', 'GET', path_params, query_params, header_params, @@ -1273,7 +1273,7 @@ def get_cluster_nodes_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/cluster/nodes', 'GET', + '/platform/15/cluster/nodes', 'GET', path_params, query_params, header_params, @@ -1935,7 +1935,7 @@ def get_diagnostics_gather(self, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :return: DiagnosticsGather + :return: DiagnosticsGatherStatus If the method is called asynchronously, returns the request thread. """ @@ -1956,7 +1956,7 @@ def get_diagnostics_gather_with_http_info(self, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :return: DiagnosticsGather + :return: DiagnosticsGatherStatus If the method is called asynchronously, returns the request thread. """ @@ -2008,98 +2008,7 @@ def get_diagnostics_gather_with_http_info(self, **kwargs): # noqa: E501 body=body_params, post_params=form_params, files=local_var_files, - response_type='DiagnosticsGather', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_diagnostics_gather_groups(self, **kwargs): # noqa: E501 - """get_diagnostics_gather_groups # noqa: E501 - - Get the list of valid component group arguments. # 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_diagnostics_gather_groups(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: DiagnosticsGatherGroups - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_diagnostics_gather_groups_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_diagnostics_gather_groups_with_http_info(**kwargs) # noqa: E501 - return data - - def get_diagnostics_gather_groups_with_http_info(self, **kwargs): # noqa: E501 - """get_diagnostics_gather_groups # noqa: E501 - - Get the list of valid component group arguments. # 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_diagnostics_gather_groups_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: DiagnosticsGatherGroups - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_diagnostics_gather_groups" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/19/cluster/diagnostics/gather/groups', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='DiagnosticsGatherGroups', # noqa: E501 + response_type='DiagnosticsGatherStatus', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -2110,7 +2019,7 @@ def get_diagnostics_gather_groups_with_http_info(self, **kwargs): # noqa: E501 def get_diagnostics_gather_settings(self, **kwargs): # noqa: E501 """get_diagnostics_gather_settings # noqa: E501 - Get the default options for diagnostics gathers. # noqa: E501 + Get the default options for isi_gather_info. # 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_diagnostics_gather_settings(async_req=True) @@ -2131,7 +2040,7 @@ def get_diagnostics_gather_settings(self, **kwargs): # noqa: E501 def get_diagnostics_gather_settings_with_http_info(self, **kwargs): # noqa: E501 """get_diagnostics_gather_settings # noqa: E501 - Get the default options for diagnostics gathers. # noqa: E501 + Get the default options for isi_gather_info. # 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_diagnostics_gather_settings_with_http_info(async_req=True) @@ -2183,7 +2092,7 @@ def get_diagnostics_gather_settings_with_http_info(self, **kwargs): # noqa: E50 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/cluster/diagnostics/gather/settings', 'GET', + '/platform/3/cluster/diagnostics/gather/settings', 'GET', path_params, query_params, header_params, @@ -2201,14 +2110,13 @@ def get_diagnostics_gather_settings_with_http_info(self, **kwargs): # noqa: E50 def get_diagnostics_gather_status(self, **kwargs): # noqa: E501 """get_diagnostics_gather_status # noqa: E501 - Get the list of diagnostic gathers for reference ID(s). # noqa: E501 + Get the status of isi_gather_info. # 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_diagnostics_gather_status(async_req=True) >>> result = thread.get() :param async_req bool - :param str reference: Comma separated list of reference ID(s) :return: DiagnosticsGatherStatus If the method is called asynchronously, returns the request thread. @@ -2223,20 +2131,19 @@ def get_diagnostics_gather_status(self, **kwargs): # noqa: E501 def get_diagnostics_gather_status_with_http_info(self, **kwargs): # noqa: E501 """get_diagnostics_gather_status # noqa: E501 - Get the list of diagnostic gathers for reference ID(s). # noqa: E501 + Get the status of isi_gather_info. # 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_diagnostics_gather_status_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param str reference: Comma separated list of reference ID(s) :return: DiagnosticsGatherStatus If the method is called asynchronously, returns the request thread. """ - all_params = ['reference'] # noqa: E501 + all_params = [] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2257,8 +2164,6 @@ def get_diagnostics_gather_status_with_http_info(self, **kwargs): # noqa: E501 path_params = {} query_params = [] - if 'reference' in params: - query_params.append(('reference', params['reference'])) # noqa: E501 header_params = {} @@ -2278,7 +2183,7 @@ def get_diagnostics_gather_status_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/cluster/diagnostics/gather/status', 'GET', + '/platform/3/cluster/diagnostics/gather/status', 'GET', path_params, query_params, header_params, @@ -2460,7 +2365,7 @@ def get_diagnostics_netlogger_settings_with_http_info(self, **kwargs): # noqa: auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/20/cluster/diagnostics/netlogger/settings', 'GET', + '/platform/3/cluster/diagnostics/netlogger/settings', 'GET', path_params, query_params, header_params, @@ -2566,97 +2471,6 @@ def get_diagnostics_netlogger_status_with_http_info(self, **kwargs): # noqa: E5 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_iceage_settings(self, **kwargs): # noqa: E501 - """get_iceage_settings # noqa: E501 - - Get the default options for IceAge. # 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_iceage_settings(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: IceageSettings - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_iceage_settings_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_iceage_settings_with_http_info(**kwargs) # noqa: E501 - return data - - def get_iceage_settings_with_http_info(self, **kwargs): # noqa: E501 - """get_iceage_settings # noqa: E501 - - Get the default options for IceAge. # 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_iceage_settings_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: IceageSettings - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_iceage_settings" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/cluster/iceage/settings', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='IceageSettings', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - def get_internal_networks_settings(self, **kwargs): # noqa: E501 """get_internal_networks_settings # noqa: E501 @@ -2748,97 +2562,6 @@ def get_internal_networks_settings_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_maintenance_settings(self, **kwargs): # noqa: E501 - """get_maintenance_settings # noqa: E501 - - Get the options for auto maintenance mode. # 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_maintenance_settings(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: MaintenanceSettings - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_maintenance_settings_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_maintenance_settings_with_http_info(**kwargs) # noqa: E501 - return data - - def get_maintenance_settings_with_http_info(self, **kwargs): # noqa: E501 - """get_maintenance_settings # noqa: E501 - - Get the options for auto maintenance mode. # 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_maintenance_settings_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: MaintenanceSettings - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_maintenance_settings" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/20/cluster/maintenance/settings', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='MaintenanceSettings', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - def get_timezone_region(self, timezone_region_id, **kwargs): # noqa: E501 """get_timezone_region # noqa: E501 @@ -3247,7 +2970,7 @@ def update_cluster_email_with_http_info(self, cluster_email, **kwargs): # noqa: auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/cluster/email', 'PUT', + '/platform/1/cluster/email', 'PUT', path_params, query_params, header_params, @@ -3869,7 +3592,7 @@ def update_cluster_update_lnns_with_http_info(self, cluster_update_lnns, **kwarg def update_diagnostics_gather_settings(self, diagnostics_gather_settings, **kwargs): # noqa: E501 """update_diagnostics_gather_settings # noqa: E501 - Set the default options for diagnostics gathers. # noqa: E501 + Set the default options for isi_gather_info. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.update_diagnostics_gather_settings(diagnostics_gather_settings, async_req=True) @@ -3891,7 +3614,7 @@ def update_diagnostics_gather_settings(self, diagnostics_gather_settings, **kwar def update_diagnostics_gather_settings_with_http_info(self, diagnostics_gather_settings, **kwargs): # noqa: E501 """update_diagnostics_gather_settings # noqa: E501 - Set the default options for diagnostics gathers. # noqa: E501 + Set the default options for isi_gather_info. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.update_diagnostics_gather_settings_with_http_info(diagnostics_gather_settings, async_req=True) @@ -3950,7 +3673,7 @@ def update_diagnostics_gather_settings_with_http_info(self, diagnostics_gather_s auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/cluster/diagnostics/gather/settings', 'PUT', + '/platform/3/cluster/diagnostics/gather/settings', 'PUT', path_params, query_params, header_params, @@ -4049,106 +3772,7 @@ def update_diagnostics_netlogger_settings_with_http_info(self, diagnostics_netlo auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/20/cluster/diagnostics/netlogger/settings', 'PUT', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def update_iceage_settings(self, iceage_settings, **kwargs): # noqa: E501 - """update_iceage_settings # noqa: E501 - - Set the default options for IceAge. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_iceage_settings(iceage_settings, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param IceageSettingsSettings iceage_settings: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.update_iceage_settings_with_http_info(iceage_settings, **kwargs) # noqa: E501 - else: - (data) = self.update_iceage_settings_with_http_info(iceage_settings, **kwargs) # noqa: E501 - return data - - def update_iceage_settings_with_http_info(self, iceage_settings, **kwargs): # noqa: E501 - """update_iceage_settings # noqa: E501 - - Set the default options for IceAge. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_iceage_settings_with_http_info(iceage_settings, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param IceageSettingsSettings iceage_settings: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['iceage_settings'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method update_iceage_settings" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'iceage_settings' is set - if ('iceage_settings' not in params or - params['iceage_settings'] is None): - raise ValueError("Missing the required parameter `iceage_settings` when calling `update_iceage_settings`") # noqa: E501 - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'iceage_settings' in params: - body_params = params['iceage_settings'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/cluster/iceage/settings', 'PUT', + '/platform/3/cluster/diagnostics/netlogger/settings', 'PUT', path_params, query_params, header_params, @@ -4361,105 +3985,6 @@ def update_internal_networks_settings_with_http_info(self, internal_networks_set _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_maintenance_settings(self, maintenance_settings, **kwargs): # noqa: E501 - """update_maintenance_settings # noqa: E501 - - Set the options for auto maintenance mode. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_maintenance_settings(maintenance_settings, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param MaintenanceSettingsExtended maintenance_settings: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.update_maintenance_settings_with_http_info(maintenance_settings, **kwargs) # noqa: E501 - else: - (data) = self.update_maintenance_settings_with_http_info(maintenance_settings, **kwargs) # noqa: E501 - return data - - def update_maintenance_settings_with_http_info(self, maintenance_settings, **kwargs): # noqa: E501 - """update_maintenance_settings # noqa: E501 - - Set the options for auto maintenance mode. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_maintenance_settings_with_http_info(maintenance_settings, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param MaintenanceSettingsExtended maintenance_settings: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['maintenance_settings'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method update_maintenance_settings" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'maintenance_settings' is set - if ('maintenance_settings' not in params or - params['maintenance_settings'] is None): - raise ValueError("Missing the required parameter `maintenance_settings` when calling `update_maintenance_settings`") # noqa: E501 - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'maintenance_settings' in params: - body_params = params['maintenance_settings'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/20/cluster/maintenance/settings', 'PUT', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - def update_timezone_settings(self, timezone_settings, **kwargs): # noqa: E501 """update_timezone_settings # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/cluster_mode_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/cluster_mode_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/cluster_mode_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/cluster_mode_api.py index dc10e8c79..5ffe94f97 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/cluster_mode_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/cluster_mode_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class ClusterModeApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/cluster_nodes_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/cluster_nodes_api.py similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/api/cluster_nodes_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/cluster_nodes_api.py index fb6857d3c..fd5ab96b6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/cluster_nodes_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/cluster_nodes_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class ClusterNodesApi(object): @@ -1267,7 +1267,7 @@ def get_node_drive_with_http_info(self, node_drive_id, lnn, **kwargs): # noqa: auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/cluster/nodes/{Lnn}/drives/{NodeDriveId}', 'GET', + '/platform/15/cluster/nodes/{Lnn}/drives/{NodeDriveId}', 'GET', path_params, query_params, header_params, @@ -1481,7 +1481,7 @@ def get_node_drives_with_http_info(self, lnn, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/cluster/nodes/{Lnn}/drives', 'GET', + '/platform/15/cluster/nodes/{Lnn}/drives', 'GET', path_params, query_params, header_params, @@ -1687,7 +1687,7 @@ def get_node_hardware_with_http_info(self, lnn, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/cluster/nodes/{Lnn}/hardware', 'GET', + '/platform/12/cluster/nodes/{Lnn}/hardware', 'GET', path_params, query_params, header_params, @@ -2800,7 +2800,7 @@ def get_node_status_with_http_info(self, lnn, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/cluster/nodes/{Lnn}/status', 'GET', + '/platform/12/cluster/nodes/{Lnn}/status', 'GET', path_params, query_params, header_params, @@ -3013,105 +3013,6 @@ def get_node_status_cpu_with_http_info(self, lnn, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_node_status_drive_security_level(self, lnn, **kwargs): # noqa: E501 - """get_node_status_drive_security_level # noqa: E501 - - Retrieve node's drive security level information. # 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_node_status_drive_security_level(lnn, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param int lnn: (required) - :return: NodeStatusDriveSecurityLevel - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_node_status_drive_security_level_with_http_info(lnn, **kwargs) # noqa: E501 - else: - (data) = self.get_node_status_drive_security_level_with_http_info(lnn, **kwargs) # noqa: E501 - return data - - def get_node_status_drive_security_level_with_http_info(self, lnn, **kwargs): # noqa: E501 - """get_node_status_drive_security_level # noqa: E501 - - Retrieve node's drive security level information. # 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_node_status_drive_security_level_with_http_info(lnn, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param int lnn: (required) - :return: NodeStatusDriveSecurityLevel - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['lnn'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_node_status_drive_security_level" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'lnn' is set - if ('lnn' not in params or - params['lnn'] is None): - raise ValueError("Missing the required parameter `lnn` when calling `get_node_status_drive_security_level`") # noqa: E501 - - collection_formats = {} - - path_params = {} - if 'lnn' in params: - path_params['Lnn'] = params['lnn'] # noqa: E501 - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/cluster/nodes/{Lnn}/status/drive_security_level', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='NodeStatusDriveSecurityLevel', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - def get_node_status_nvram(self, lnn, **kwargs): # noqa: E501 """get_node_status_nvram # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/config_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/config_api.py similarity index 68% rename from isilon_sdk/isilon_sdk/v9_11_0/api/config_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/config_api.py index cf2164dcf..cd0c3fd0e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/config_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/config_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class ConfigApi(object): @@ -117,7 +117,7 @@ def create_config_export_with_http_info(self, config_export, **kwargs): # noqa: auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/20/config/exports', 'POST', + '/platform/12/config/exports', 'POST', path_params, query_params, header_params, @@ -216,7 +216,7 @@ def create_config_import_with_http_info(self, config_import, **kwargs): # noqa: auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/20/config/imports', 'POST', + '/platform/12/config/imports', 'POST', path_params, query_params, header_params, @@ -231,97 +231,6 @@ def create_config_import_with_http_info(self, config_import, **kwargs): # noqa: _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_config_config_lock(self, **kwargs): # noqa: E501 - """get_config_config_lock # noqa: E501 - - Get configuration lock status. # 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_config_config_lock(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: ConfigConfigLock - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_config_config_lock_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_config_config_lock_with_http_info(**kwargs) # noqa: E501 - return data - - def get_config_config_lock_with_http_info(self, **kwargs): # noqa: E501 - """get_config_config_lock # noqa: E501 - - Get configuration lock status. # 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_config_config_lock_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: ConfigConfigLock - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_config_config_lock" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/18/config/config-lock', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='ConfigConfigLock', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - def get_config_export(self, config_export_id, **kwargs): # noqa: E501 """get_config_export # noqa: E501 @@ -406,7 +315,7 @@ def get_config_export_with_http_info(self, config_export_id, **kwargs): # noqa: auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/20/config/exports/{ConfigExportId}', 'GET', + '/platform/12/config/exports/{ConfigExportId}', 'GET', path_params, query_params, header_params, @@ -505,7 +414,7 @@ def get_config_import_with_http_info(self, config_import_id, **kwargs): # noqa: auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/20/config/imports/{ConfigImportId}', 'GET', + '/platform/12/config/imports/{ConfigImportId}', 'GET', path_params, query_params, header_params, @@ -530,8 +439,6 @@ def list_config_exports(self, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :param str dir: The direction of the sort. - :param str sort: The field that will be used for sorting. :return: ConfigExports If the method is called asynchronously, returns the request thread. @@ -553,14 +460,12 @@ def list_config_exports_with_http_info(self, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :param str dir: The direction of the sort. - :param str sort: The field that will be used for sorting. :return: ConfigExports If the method is called asynchronously, returns the request thread. """ - all_params = ['dir', 'sort'] # noqa: E501 + all_params = [] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -576,24 +481,11 @@ def list_config_exports_with_http_info(self, **kwargs): # noqa: E501 params[key] = val del params['kwargs'] - if ('dir' in params and - len(params['dir']) < 0): - raise ValueError("Invalid value for parameter `dir` when calling `list_config_exports`, length must be greater than or equal to `0`") # noqa: E501 - if ('sort' in params and - len(params['sort']) > 255): - raise ValueError("Invalid value for parameter `sort` when calling `list_config_exports`, length must be less than or equal to `255`") # noqa: E501 - if ('sort' in params and - len(params['sort']) < 0): - raise ValueError("Invalid value for parameter `sort` when calling `list_config_exports`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] - if 'dir' in params: - query_params.append(('dir', params['dir'])) # noqa: E501 - if 'sort' in params: - query_params.append(('sort', params['sort'])) # noqa: E501 header_params = {} @@ -613,7 +505,7 @@ def list_config_exports_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/20/config/exports', 'GET', + '/platform/12/config/exports', 'GET', path_params, query_params, header_params, @@ -638,8 +530,6 @@ def list_config_imports(self, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :param str dir: The direction of the sort. - :param str sort: The field that will be used for sorting. :return: ConfigImports If the method is called asynchronously, returns the request thread. @@ -661,14 +551,12 @@ def list_config_imports_with_http_info(self, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :param str dir: The direction of the sort. - :param str sort: The field that will be used for sorting. :return: ConfigImports If the method is called asynchronously, returns the request thread. """ - all_params = ['dir', 'sort'] # noqa: E501 + all_params = [] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -684,24 +572,11 @@ def list_config_imports_with_http_info(self, **kwargs): # noqa: E501 params[key] = val del params['kwargs'] - if ('dir' in params and - len(params['dir']) < 0): - raise ValueError("Invalid value for parameter `dir` when calling `list_config_imports`, length must be greater than or equal to `0`") # noqa: E501 - if ('sort' in params and - len(params['sort']) > 255): - raise ValueError("Invalid value for parameter `sort` when calling `list_config_imports`, length must be less than or equal to `255`") # noqa: E501 - if ('sort' in params and - len(params['sort']) < 0): - raise ValueError("Invalid value for parameter `sort` when calling `list_config_imports`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] - if 'dir' in params: - query_params.append(('dir', params['dir'])) # noqa: E501 - if 'sort' in params: - query_params.append(('sort', params['sort'])) # noqa: E501 header_params = {} @@ -721,7 +596,7 @@ def list_config_imports_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/20/config/imports', 'GET', + '/platform/12/config/imports', 'GET', path_params, query_params, header_params, @@ -735,110 +610,3 @@ def list_config_imports_with_http_info(self, **kwargs): # noqa: E501 _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - - def update_config_config_lock(self, action, config_config_lock, **kwargs): # noqa: E501 - """update_config_config_lock # noqa: E501 - - Enable/Disable configuration lock. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_config_config_lock(action, config_config_lock, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str action: Enable/disable configuration lock (required) - :param Empty config_config_lock: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.update_config_config_lock_with_http_info(action, config_config_lock, **kwargs) # noqa: E501 - else: - (data) = self.update_config_config_lock_with_http_info(action, config_config_lock, **kwargs) # noqa: E501 - return data - - def update_config_config_lock_with_http_info(self, action, config_config_lock, **kwargs): # noqa: E501 - """update_config_config_lock # noqa: E501 - - Enable/Disable configuration lock. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_config_config_lock_with_http_info(action, config_config_lock, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str action: Enable/disable configuration lock (required) - :param Empty config_config_lock: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['action', 'config_config_lock'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method update_config_config_lock" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'action' is set - if ('action' not in params or - params['action'] is None): - raise ValueError("Missing the required parameter `action` when calling `update_config_config_lock`") # noqa: E501 - # verify the required parameter 'config_config_lock' is set - if ('config_config_lock' not in params or - params['config_config_lock'] is None): - raise ValueError("Missing the required parameter `config_config_lock` when calling `update_config_config_lock`") # noqa: E501 - - collection_formats = {} - - path_params = {} - - query_params = [] - if 'action' in params: - query_params.append(('action', params['action'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'config_config_lock' in params: - body_params = params['config_config_lock'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/18/config/config-lock', 'PUT', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/datamover_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/datamover_api.py similarity index 73% rename from isilon_sdk/isilon_sdk/v9_11_0/api/datamover_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/datamover_api.py index 19262792c..ae09c25ed 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/datamover_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/datamover_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class DatamoverApi(object): @@ -117,7 +117,7 @@ def create_certificates_ca_item_with_http_info(self, certificates_ca_item, **kwa auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/datamover/certificates/ca', 'POST', + '/platform/15/datamover/certificates/ca', 'POST', path_params, query_params, header_params, @@ -216,7 +216,7 @@ def create_certificates_identity_item_with_http_info(self, certificates_identity auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/datamover/certificates/identity', 'POST', + '/platform/15/datamover/certificates/identity', 'POST', path_params, query_params, header_params, @@ -315,7 +315,7 @@ def create_datamover_account_with_http_info(self, datamover_account, **kwargs): auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/datamover/accounts', 'POST', + '/platform/15/datamover/accounts', 'POST', path_params, query_params, header_params, @@ -440,7 +440,7 @@ def create_datamover_policy(self, datamover_policy, **kwargs): # noqa: E501 :param async_req bool :param DatamoverPolicyCreateParams datamover_policy: (required) - :return: CreateDatamoverPolicyResponse + :return: CreateDatamoverBasePolicyResponse If the method is called asynchronously, returns the request thread. """ @@ -462,7 +462,7 @@ def create_datamover_policy_with_http_info(self, datamover_policy, **kwargs): # :param async_req bool :param DatamoverPolicyCreateParams datamover_policy: (required) - :return: CreateDatamoverPolicyResponse + :return: CreateDatamoverBasePolicyResponse If the method is called asynchronously, returns the request thread. """ @@ -513,14 +513,14 @@ def create_datamover_policy_with_http_info(self, datamover_policy, **kwargs): # auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/datamover/policies', 'POST', + '/platform/15/datamover/policies', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='CreateDatamoverPolicyResponse', # noqa: E501 + response_type='CreateDatamoverBasePolicyResponse', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -711,7 +711,7 @@ def delete_certificates_ca_by_id_with_http_info(self, certificates_ca_id, **kwar auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/datamover/certificates/ca/{CertificatesCaId}', 'DELETE', + '/platform/15/datamover/certificates/ca/{CertificatesCaId}', 'DELETE', path_params, query_params, header_params, @@ -810,7 +810,7 @@ def delete_certificates_identity_by_id_with_http_info(self, certificates_identit auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/datamover/certificates/identity/{CertificatesIdentityId}', 'DELETE', + '/platform/15/datamover/certificates/identity/{CertificatesIdentityId}', 'DELETE', path_params, query_params, header_params, @@ -909,7 +909,7 @@ def delete_datamover_account_with_http_info(self, datamover_account_id, **kwargs auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/datamover/accounts/{DatamoverAccountId}', 'DELETE', + '/platform/15/datamover/accounts/{DatamoverAccountId}', 'DELETE', path_params, query_params, header_params, @@ -1111,7 +1111,7 @@ def delete_datamover_historical_jobs_with_http_info(self, **kwargs): # noqa: E5 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/datamover/historical-jobs', 'DELETE', + '/platform/15/datamover/historical-jobs', 'DELETE', path_params, query_params, header_params, @@ -1210,110 +1210,7 @@ def delete_datamover_policy_with_http_info(self, datamover_policy_id, **kwargs): auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/datamover/policies/{DatamoverPolicyId}', 'DELETE', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def delete_datamover_reports(self, **kwargs): # noqa: E501 - """delete_datamover_reports # noqa: E501 - - Delete finished jobs based on their end time. Capped at 1000. If 'after-time' is specified, latest 1000 jobs ended after this time will be listed/deleted. If 'after-time' is not specified, latest 1000 jobs finished in last 24 hours will be listed/deleted. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_datamover_reports(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str after_time: The time in '%Y-%m-%d %H:%M:%S' format. The year range is 2001-2099. - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.delete_datamover_reports_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.delete_datamover_reports_with_http_info(**kwargs) # noqa: E501 - return data - - def delete_datamover_reports_with_http_info(self, **kwargs): # noqa: E501 - """delete_datamover_reports # noqa: E501 - - Delete finished jobs based on their end time. Capped at 1000. If 'after-time' is specified, latest 1000 jobs ended after this time will be listed/deleted. If 'after-time' is not specified, latest 1000 jobs finished in last 24 hours will be listed/deleted. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_datamover_reports_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str after_time: The time in '%Y-%m-%d %H:%M:%S' format. The year range is 2001-2099. - :return: None - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['after_time'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method delete_datamover_reports" % key - ) - params[key] = val - del params['kwargs'] - - if ('after_time' in params and - len(params['after_time']) > 19): - raise ValueError("Invalid value for parameter `after_time` when calling `delete_datamover_reports`, length must be less than or equal to `19`") # noqa: E501 - if ('after_time' in params and - len(params['after_time']) < 14): - raise ValueError("Invalid value for parameter `after_time` when calling `delete_datamover_reports`, length must be greater than or equal to `14`") # noqa: E501 - if 'after_time' in params and not re.search('20[0-9][0-9]-1[0-2]|[1-9]-3[01]|[12][0-9]|0?[1-9] 2[0-3]|1[0-9]|0?[0-9]:[0-5]?[0-9]:[0-5]?[0-9]', params['after_time']): # noqa: E501 - raise ValueError("Invalid value for parameter `after_time` when calling `delete_datamover_reports`, must conform to the pattern `/20[0-9][0-9]-1[0-2]|[1-9]-3[01]|[12][0-9]|0?[1-9] 2[0-3]|1[0-9]|0?[0-9]:[0-5]?[0-9]:[0-5]?[0-9]/`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'after_time' in params: - query_params.append(('after_time', params['after_time'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/21/datamover/reports', 'DELETE', + '/platform/15/datamover/policies/{DatamoverPolicyId}', 'DELETE', path_params, query_params, header_params, @@ -1438,7 +1335,7 @@ def get_certificates_ca_by_id(self, certificates_ca_id, **kwargs): # noqa: E501 :param async_req bool :param str certificates_ca_id: Retrieve a single trusted Datamover TLS CA certificate. (required) - :return: CertificatesSyslog + :return: CertificatesCa If the method is called asynchronously, returns the request thread. """ @@ -1460,7 +1357,7 @@ def get_certificates_ca_by_id_with_http_info(self, certificates_ca_id, **kwargs) :param async_req bool :param str certificates_ca_id: Retrieve a single trusted Datamover TLS CA certificate. (required) - :return: CertificatesSyslog + :return: CertificatesCa If the method is called asynchronously, returns the request thread. """ @@ -1511,14 +1408,14 @@ def get_certificates_ca_by_id_with_http_info(self, certificates_ca_id, **kwargs) auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/datamover/certificates/ca/{CertificatesCaId}', 'GET', + '/platform/15/datamover/certificates/ca/{CertificatesCaId}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='CertificatesSyslog', # noqa: E501 + response_type='CertificatesCa', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -1610,7 +1507,7 @@ def get_certificates_identity_by_id_with_http_info(self, certificates_identity_i auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/datamover/certificates/identity/{CertificatesIdentityId}', 'GET', + '/platform/15/datamover/certificates/identity/{CertificatesIdentityId}', 'GET', path_params, query_params, header_params, @@ -1625,43 +1522,45 @@ def get_certificates_identity_by_id_with_http_info(self, certificates_identity_i _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_certificates_settings(self, **kwargs): # noqa: E501 - """get_certificates_settings # noqa: E501 + def get_datamover_account(self, datamover_account_id, **kwargs): # noqa: E501 + """get_datamover_account # noqa: E501 - Retrieve Datamover TLS settings. # noqa: E501 + Retrieve account information. # 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_certificates_settings(async_req=True) + >>> thread = api.get_datamover_account(datamover_account_id, async_req=True) >>> result = thread.get() :param async_req bool - :return: CertificatesSettings + :param str datamover_account_id: Retrieve account information. (required) + :return: DatamoverAccounts If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_certificates_settings_with_http_info(**kwargs) # noqa: E501 + return self.get_datamover_account_with_http_info(datamover_account_id, **kwargs) # noqa: E501 else: - (data) = self.get_certificates_settings_with_http_info(**kwargs) # noqa: E501 + (data) = self.get_datamover_account_with_http_info(datamover_account_id, **kwargs) # noqa: E501 return data - def get_certificates_settings_with_http_info(self, **kwargs): # noqa: E501 - """get_certificates_settings # noqa: E501 + def get_datamover_account_with_http_info(self, datamover_account_id, **kwargs): # noqa: E501 + """get_datamover_account # noqa: E501 - Retrieve Datamover TLS settings. # noqa: E501 + Retrieve account information. # 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_certificates_settings_with_http_info(async_req=True) + >>> thread = api.get_datamover_account_with_http_info(datamover_account_id, async_req=True) >>> result = thread.get() :param async_req bool - :return: CertificatesSettings + :param str datamover_account_id: Retrieve account information. (required) + :return: DatamoverAccounts If the method is called asynchronously, returns the request thread. """ - all_params = [] # noqa: E501 + all_params = ['datamover_account_id'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -1672,14 +1571,20 @@ def get_certificates_settings_with_http_info(self, **kwargs): # noqa: E501 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_certificates_settings" % key + " to method get_datamover_account" % key ) params[key] = val del params['kwargs'] + # verify the required parameter 'datamover_account_id' is set + if ('datamover_account_id' not in params or + params['datamover_account_id'] is None): + raise ValueError("Missing the required parameter `datamover_account_id` when calling `get_datamover_account`") # noqa: E501 collection_formats = {} path_params = {} + if 'datamover_account_id' in params: + path_params['DatamoverAccountId'] = params['datamover_account_id'] # noqa: E501 query_params = [] @@ -1701,14 +1606,14 @@ def get_certificates_settings_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/datamover/certificates/settings', 'GET', + '/platform/15/datamover/accounts/{DatamoverAccountId}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='CertificatesSettings', # noqa: E501 + response_type='DatamoverAccounts', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -1716,47 +1621,45 @@ def get_certificates_settings_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_config_namespace_by_id(self, config_namespace_id, namespace, **kwargs): # noqa: E501 - """get_config_namespace_by_id # noqa: E501 + def get_datamover_base_policy(self, datamover_base_policy_id, **kwargs): # noqa: E501 + """get_datamover_base_policy # noqa: E501 - Retrieve the manual configuration for a single namespace entry for Datamover. # noqa: E501 + Retrieve base policy information. # 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_config_namespace_by_id(config_namespace_id, namespace, async_req=True) + >>> thread = api.get_datamover_base_policy(datamover_base_policy_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str config_namespace_id: Retrieve the manual configuration for a single namespace entry for Datamover. (required) - :param str namespace: (required) - :return: ConfigNamespace + :param str datamover_base_policy_id: Retrieve base policy information. (required) + :return: DatamoverBasePolicies If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_config_namespace_by_id_with_http_info(config_namespace_id, namespace, **kwargs) # noqa: E501 + return self.get_datamover_base_policy_with_http_info(datamover_base_policy_id, **kwargs) # noqa: E501 else: - (data) = self.get_config_namespace_by_id_with_http_info(config_namespace_id, namespace, **kwargs) # noqa: E501 + (data) = self.get_datamover_base_policy_with_http_info(datamover_base_policy_id, **kwargs) # noqa: E501 return data - def get_config_namespace_by_id_with_http_info(self, config_namespace_id, namespace, **kwargs): # noqa: E501 - """get_config_namespace_by_id # noqa: E501 + def get_datamover_base_policy_with_http_info(self, datamover_base_policy_id, **kwargs): # noqa: E501 + """get_datamover_base_policy # noqa: E501 - Retrieve the manual configuration for a single namespace entry for Datamover. # noqa: E501 + Retrieve base policy information. # 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_config_namespace_by_id_with_http_info(config_namespace_id, namespace, async_req=True) + >>> thread = api.get_datamover_base_policy_with_http_info(datamover_base_policy_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str config_namespace_id: Retrieve the manual configuration for a single namespace entry for Datamover. (required) - :param str namespace: (required) - :return: ConfigNamespace + :param str datamover_base_policy_id: Retrieve base policy information. (required) + :return: DatamoverBasePolicies If the method is called asynchronously, returns the request thread. """ - all_params = ['config_namespace_id', 'namespace'] # noqa: E501 + all_params = ['datamover_base_policy_id'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -1767,26 +1670,20 @@ def get_config_namespace_by_id_with_http_info(self, config_namespace_id, namespa if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_config_namespace_by_id" % key + " to method get_datamover_base_policy" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'config_namespace_id' is set - if ('config_namespace_id' not in params or - params['config_namespace_id'] is None): - raise ValueError("Missing the required parameter `config_namespace_id` when calling `get_config_namespace_by_id`") # noqa: E501 - # verify the required parameter 'namespace' is set - if ('namespace' not in params or - params['namespace'] is None): - raise ValueError("Missing the required parameter `namespace` when calling `get_config_namespace_by_id`") # noqa: E501 + # verify the required parameter 'datamover_base_policy_id' is set + if ('datamover_base_policy_id' not in params or + params['datamover_base_policy_id'] is None): + raise ValueError("Missing the required parameter `datamover_base_policy_id` when calling `get_datamover_base_policy`") # noqa: E501 collection_formats = {} path_params = {} - if 'config_namespace_id' in params: - path_params['ConfigNamespaceId'] = params['config_namespace_id'] # noqa: E501 - if 'namespace' in params: - path_params['Namespace'] = params['namespace'] # noqa: E501 + if 'datamover_base_policy_id' in params: + path_params['DatamoverBasePolicyId'] = params['datamover_base_policy_id'] # noqa: E501 query_params = [] @@ -1808,14 +1705,14 @@ def get_config_namespace_by_id_with_http_info(self, config_namespace_id, namespa auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/datamover/config/{Namespace}/{ConfigNamespaceId}', 'GET', + '/platform/15/datamover/base-policies/{DatamoverBasePolicyId}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='ConfigNamespace', # noqa: E501 + response_type='DatamoverBasePolicies', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -1823,45 +1720,47 @@ def get_config_namespace_by_id_with_http_info(self, config_namespace_id, namespa _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_datamover_account(self, datamover_account_id, **kwargs): # noqa: E501 - """get_datamover_account # noqa: E501 + def get_datamover_dataset(self, datamover_dataset_id, **kwargs): # noqa: E501 + """get_datamover_dataset # noqa: E501 - Retrieve account information. # noqa: E501 + Retrieve dataset information. # 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_datamover_account(datamover_account_id, async_req=True) + >>> thread = api.get_datamover_dataset(datamover_dataset_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str datamover_account_id: Retrieve account information. (required) - :return: DatamoverAccounts + :param str datamover_dataset_id: Retrieve dataset information. (required) + :param str account_id: Unique account ID + :return: DatamoverDatasets If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_datamover_account_with_http_info(datamover_account_id, **kwargs) # noqa: E501 + return self.get_datamover_dataset_with_http_info(datamover_dataset_id, **kwargs) # noqa: E501 else: - (data) = self.get_datamover_account_with_http_info(datamover_account_id, **kwargs) # noqa: E501 + (data) = self.get_datamover_dataset_with_http_info(datamover_dataset_id, **kwargs) # noqa: E501 return data - def get_datamover_account_with_http_info(self, datamover_account_id, **kwargs): # noqa: E501 - """get_datamover_account # noqa: E501 + def get_datamover_dataset_with_http_info(self, datamover_dataset_id, **kwargs): # noqa: E501 + """get_datamover_dataset # noqa: E501 - Retrieve account information. # noqa: E501 + Retrieve dataset information. # 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_datamover_account_with_http_info(datamover_account_id, async_req=True) + >>> thread = api.get_datamover_dataset_with_http_info(datamover_dataset_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str datamover_account_id: Retrieve account information. (required) - :return: DatamoverAccounts + :param str datamover_dataset_id: Retrieve dataset information. (required) + :param str account_id: Unique account ID + :return: DatamoverDatasets If the method is called asynchronously, returns the request thread. """ - all_params = ['datamover_account_id'] # noqa: E501 + all_params = ['datamover_dataset_id', 'account_id'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -1872,22 +1771,30 @@ def get_datamover_account_with_http_info(self, datamover_account_id, **kwargs): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_datamover_account" % key + " to method get_datamover_dataset" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'datamover_account_id' is set - if ('datamover_account_id' not in params or - params['datamover_account_id'] is None): - raise ValueError("Missing the required parameter `datamover_account_id` when calling `get_datamover_account`") # noqa: E501 + # verify the required parameter 'datamover_dataset_id' is set + if ('datamover_dataset_id' not in params or + params['datamover_dataset_id'] is None): + raise ValueError("Missing the required parameter `datamover_dataset_id` when calling `get_datamover_dataset`") # noqa: E501 + if ('account_id' in params and + len(params['account_id']) > 48): + raise ValueError("Invalid value for parameter `account_id` when calling `get_datamover_dataset`, length must be less than or equal to `48`") # noqa: E501 + if ('account_id' in params and + len(params['account_id']) < 2): + raise ValueError("Invalid value for parameter `account_id` when calling `get_datamover_dataset`, length must be greater than or equal to `2`") # noqa: E501 collection_formats = {} path_params = {} - if 'datamover_account_id' in params: - path_params['DatamoverAccountId'] = params['datamover_account_id'] # noqa: E501 + if 'datamover_dataset_id' in params: + path_params['DatamoverDatasetId'] = params['datamover_dataset_id'] # noqa: E501 query_params = [] + if 'account_id' in params: + query_params.append(('account_id', params['account_id'])) # noqa: E501 header_params = {} @@ -1907,14 +1814,14 @@ def get_datamover_account_with_http_info(self, datamover_account_id, **kwargs): auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/datamover/accounts/{DatamoverAccountId}', 'GET', + '/platform/15/datamover/datasets/{DatamoverDatasetId}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='DatamoverAccounts', # noqa: E501 + response_type='DatamoverDatasets', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -1922,45 +1829,51 @@ def get_datamover_account_with_http_info(self, datamover_account_id, **kwargs): _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_datamover_base_policy(self, datamover_base_policy_id, **kwargs): # noqa: E501 - """get_datamover_base_policy # noqa: E501 + def get_datamover_datasets(self, **kwargs): # noqa: E501 + """get_datamover_datasets # noqa: E501 - Retrieve base policy information. # noqa: E501 + List all datasets or retrieve datasets of the specified type. # 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_datamover_base_policy(datamover_base_policy_id, async_req=True) + >>> thread = api.get_datamover_datasets(async_req=True) >>> result = thread.get() :param async_req bool - :param str datamover_base_policy_id: Retrieve base policy information. (required) - :return: DatamoverBasePolicies + :param str account_id: Unique account ID + :param str base_path: + :param int limit: Return no more than this many results at once (see resume). + :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). + :return: DatamoverDatasetsExtended If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_datamover_base_policy_with_http_info(datamover_base_policy_id, **kwargs) # noqa: E501 + return self.get_datamover_datasets_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.get_datamover_base_policy_with_http_info(datamover_base_policy_id, **kwargs) # noqa: E501 + (data) = self.get_datamover_datasets_with_http_info(**kwargs) # noqa: E501 return data - def get_datamover_base_policy_with_http_info(self, datamover_base_policy_id, **kwargs): # noqa: E501 - """get_datamover_base_policy # noqa: E501 + def get_datamover_datasets_with_http_info(self, **kwargs): # noqa: E501 + """get_datamover_datasets # noqa: E501 - Retrieve base policy information. # noqa: E501 + List all datasets or retrieve datasets of the specified type. # 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_datamover_base_policy_with_http_info(datamover_base_policy_id, async_req=True) + >>> thread = api.get_datamover_datasets_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param str datamover_base_policy_id: Retrieve base policy information. (required) - :return: DatamoverBasePolicies + :param str account_id: Unique account ID + :param str base_path: + :param int limit: Return no more than this many results at once (see resume). + :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). + :return: DatamoverDatasetsExtended If the method is called asynchronously, returns the request thread. """ - all_params = ['datamover_base_policy_id'] # noqa: E501 + all_params = ['account_id', 'base_path', 'limit', 'resume'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -1971,793 +1884,42 @@ def get_datamover_base_policy_with_http_info(self, datamover_base_policy_id, **k if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_datamover_base_policy" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'datamover_base_policy_id' is set - if ('datamover_base_policy_id' not in params or - params['datamover_base_policy_id'] is None): - raise ValueError("Missing the required parameter `datamover_base_policy_id` when calling `get_datamover_base_policy`") # noqa: E501 - - collection_formats = {} - - path_params = {} - if 'datamover_base_policy_id' in params: - path_params['DatamoverBasePolicyId'] = params['datamover_base_policy_id'] # noqa: E501 - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/15/datamover/base-policies/{DatamoverBasePolicyId}', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='DatamoverBasePolicies', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_datamover_config(self, **kwargs): # noqa: E501 - """get_datamover_config # noqa: E501 - - Retrieve the global manual configuration for Datamover. # 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_datamover_config(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param int limit: Return no more than this many results at once (see resume). - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :return: DatamoverConfigExtended - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_datamover_config_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_datamover_config_with_http_info(**kwargs) # noqa: E501 - return data - - def get_datamover_config_with_http_info(self, **kwargs): # noqa: E501 - """get_datamover_config # noqa: E501 - - Retrieve the global manual configuration for Datamover. # 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_datamover_config_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param int limit: Return no more than this many results at once (see resume). - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :return: DatamoverConfigExtended - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['limit', 'resume'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_datamover_config" % key - ) - params[key] = val - del params['kwargs'] - - if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_datamover_config`, must be a value less than or equal to `4294967295`") # noqa: E501 - if 'limit' in params and params['limit'] < 1: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_datamover_config`, must be a value greater than or equal to `1`") # noqa: E501 - if ('resume' in params and - len(params['resume']) > 8192): - raise ValueError("Invalid value for parameter `resume` when calling `get_datamover_config`, length must be less than or equal to `8192`") # noqa: E501 - if ('resume' in params and - len(params['resume']) < 0): - raise ValueError("Invalid value for parameter `resume` when calling `get_datamover_config`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'limit' in params: - query_params.append(('limit', params['limit'])) # noqa: E501 - if 'resume' in params: - query_params.append(('resume', params['resume'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/21/datamover/config', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='DatamoverConfigExtended', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_datamover_config_namespace(self, datamover_config_namespace, **kwargs): # noqa: E501 - """get_datamover_config_namespace # noqa: E501 - - Retrieve the manual configuration for a single namespace for Datamover. # 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_datamover_config_namespace(datamover_config_namespace, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str datamover_config_namespace: Retrieve the manual configuration for a single namespace for Datamover. (required) - :param int limit: Return no more than this many results at once (see resume). - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :return: DatamoverConfig - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_datamover_config_namespace_with_http_info(datamover_config_namespace, **kwargs) # noqa: E501 - else: - (data) = self.get_datamover_config_namespace_with_http_info(datamover_config_namespace, **kwargs) # noqa: E501 - return data - - def get_datamover_config_namespace_with_http_info(self, datamover_config_namespace, **kwargs): # noqa: E501 - """get_datamover_config_namespace # noqa: E501 - - Retrieve the manual configuration for a single namespace for Datamover. # 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_datamover_config_namespace_with_http_info(datamover_config_namespace, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str datamover_config_namespace: Retrieve the manual configuration for a single namespace for Datamover. (required) - :param int limit: Return no more than this many results at once (see resume). - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :return: DatamoverConfig - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['datamover_config_namespace', 'limit', 'resume'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_datamover_config_namespace" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'datamover_config_namespace' is set - if ('datamover_config_namespace' not in params or - params['datamover_config_namespace'] is None): - raise ValueError("Missing the required parameter `datamover_config_namespace` when calling `get_datamover_config_namespace`") # noqa: E501 - - if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_datamover_config_namespace`, must be a value less than or equal to `4294967295`") # noqa: E501 - if 'limit' in params and params['limit'] < 1: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_datamover_config_namespace`, must be a value greater than or equal to `1`") # noqa: E501 - if ('resume' in params and - len(params['resume']) > 8192): - raise ValueError("Invalid value for parameter `resume` when calling `get_datamover_config_namespace`, length must be less than or equal to `8192`") # noqa: E501 - if ('resume' in params and - len(params['resume']) < 0): - raise ValueError("Invalid value for parameter `resume` when calling `get_datamover_config_namespace`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - if 'datamover_config_namespace' in params: - path_params['DatamoverConfigNamespace'] = params['datamover_config_namespace'] # noqa: E501 - - query_params = [] - if 'limit' in params: - query_params.append(('limit', params['limit'])) # noqa: E501 - if 'resume' in params: - query_params.append(('resume', params['resume'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/21/datamover/config/{DatamoverConfigNamespace}', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='DatamoverConfig', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_datamover_dataset(self, datamover_dataset_id, **kwargs): # noqa: E501 - """get_datamover_dataset # noqa: E501 - - Retrieve dataset information. # 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_datamover_dataset(datamover_dataset_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str datamover_dataset_id: Retrieve dataset information. (required) - :param str account_id: Unique account ID - :return: DatamoverDatasets - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_datamover_dataset_with_http_info(datamover_dataset_id, **kwargs) # noqa: E501 - else: - (data) = self.get_datamover_dataset_with_http_info(datamover_dataset_id, **kwargs) # noqa: E501 - return data - - def get_datamover_dataset_with_http_info(self, datamover_dataset_id, **kwargs): # noqa: E501 - """get_datamover_dataset # noqa: E501 - - Retrieve dataset information. # 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_datamover_dataset_with_http_info(datamover_dataset_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str datamover_dataset_id: Retrieve dataset information. (required) - :param str account_id: Unique account ID - :return: DatamoverDatasets - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['datamover_dataset_id', 'account_id'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_datamover_dataset" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'datamover_dataset_id' is set - if ('datamover_dataset_id' not in params or - params['datamover_dataset_id'] is None): - raise ValueError("Missing the required parameter `datamover_dataset_id` when calling `get_datamover_dataset`") # noqa: E501 - - if ('account_id' in params and - len(params['account_id']) > 48): - raise ValueError("Invalid value for parameter `account_id` when calling `get_datamover_dataset`, length must be less than or equal to `48`") # noqa: E501 - if ('account_id' in params and - len(params['account_id']) < 2): - raise ValueError("Invalid value for parameter `account_id` when calling `get_datamover_dataset`, length must be greater than or equal to `2`") # noqa: E501 - collection_formats = {} - - path_params = {} - if 'datamover_dataset_id' in params: - path_params['DatamoverDatasetId'] = params['datamover_dataset_id'] # noqa: E501 - - query_params = [] - if 'account_id' in params: - query_params.append(('account_id', params['account_id'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/19/datamover/datasets/{DatamoverDatasetId}', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='DatamoverDatasets', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_datamover_datasets(self, **kwargs): # noqa: E501 - """get_datamover_datasets # noqa: E501 - - List all datasets or retrieve datasets of the specified type. # 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_datamover_datasets(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str account_id: Unique account ID - :param str base_path: - :param int limit: Return no more than this many results at once (see resume). - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :return: DatamoverDatasetsExtended - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_datamover_datasets_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_datamover_datasets_with_http_info(**kwargs) # noqa: E501 - return data - - def get_datamover_datasets_with_http_info(self, **kwargs): # noqa: E501 - """get_datamover_datasets # noqa: E501 - - List all datasets or retrieve datasets of the specified type. # 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_datamover_datasets_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str account_id: Unique account ID - :param str base_path: - :param int limit: Return no more than this many results at once (see resume). - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :return: DatamoverDatasetsExtended - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['account_id', 'base_path', 'limit', 'resume'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_datamover_datasets" % key - ) - params[key] = val - del params['kwargs'] - - if ('account_id' in params and - len(params['account_id']) > 48): - raise ValueError("Invalid value for parameter `account_id` when calling `get_datamover_datasets`, length must be less than or equal to `48`") # noqa: E501 - if ('account_id' in params and - len(params['account_id']) < 2): - raise ValueError("Invalid value for parameter `account_id` when calling `get_datamover_datasets`, length must be greater than or equal to `2`") # noqa: E501 - if ('base_path' in params and - len(params['base_path']) > 4096): - raise ValueError("Invalid value for parameter `base_path` when calling `get_datamover_datasets`, length must be less than or equal to `4096`") # noqa: E501 - if ('base_path' in params and - len(params['base_path']) < 1): - raise ValueError("Invalid value for parameter `base_path` when calling `get_datamover_datasets`, length must be greater than or equal to `1`") # noqa: E501 - if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_datamover_datasets`, must be a value less than or equal to `4294967295`") # noqa: E501 - if 'limit' in params and params['limit'] < 1: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_datamover_datasets`, must be a value greater than or equal to `1`") # noqa: E501 - if ('resume' in params and - len(params['resume']) > 8192): - raise ValueError("Invalid value for parameter `resume` when calling `get_datamover_datasets`, length must be less than or equal to `8192`") # noqa: E501 - if ('resume' in params and - len(params['resume']) < 0): - raise ValueError("Invalid value for parameter `resume` when calling `get_datamover_datasets`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'account_id' in params: - query_params.append(('account_id', params['account_id'])) # noqa: E501 - if 'base_path' in params: - query_params.append(('base_path', params['base_path'])) # noqa: E501 - if 'limit' in params: - query_params.append(('limit', params['limit'])) # noqa: E501 - if 'resume' in params: - query_params.append(('resume', params['resume'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/19/datamover/datasets', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='DatamoverDatasetsExtended', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_datamover_historical_jobs(self, **kwargs): # noqa: E501 - """get_datamover_historical_jobs # noqa: E501 - - List/Delete finished jobs based on their end time. Capped at 1000. If 'after-time' is specified, latest 1000 jobs ended after this time will be listed/deleted. If 'after-time' is not specified, latest 1000 jobs finished in last 24 hours will be listed/deleted. # 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_datamover_historical_jobs(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str after_time: The time in '%Y-%m-%d %H:%M:%S' format. The year range is 2001-2099. - :return: DatamoverHistoricalJobs - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_datamover_historical_jobs_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_datamover_historical_jobs_with_http_info(**kwargs) # noqa: E501 - return data - - def get_datamover_historical_jobs_with_http_info(self, **kwargs): # noqa: E501 - """get_datamover_historical_jobs # noqa: E501 - - List/Delete finished jobs based on their end time. Capped at 1000. If 'after-time' is specified, latest 1000 jobs ended after this time will be listed/deleted. If 'after-time' is not specified, latest 1000 jobs finished in last 24 hours will be listed/deleted. # 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_datamover_historical_jobs_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str after_time: The time in '%Y-%m-%d %H:%M:%S' format. The year range is 2001-2099. - :return: DatamoverHistoricalJobs - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['after_time'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_datamover_historical_jobs" % key - ) - params[key] = val - del params['kwargs'] - - if ('after_time' in params and - len(params['after_time']) > 19): - raise ValueError("Invalid value for parameter `after_time` when calling `get_datamover_historical_jobs`, length must be less than or equal to `19`") # noqa: E501 - if ('after_time' in params and - len(params['after_time']) < 14): - raise ValueError("Invalid value for parameter `after_time` when calling `get_datamover_historical_jobs`, length must be greater than or equal to `14`") # noqa: E501 - if 'after_time' in params and not re.search('20[0-9][0-9]-1[0-2]|[1-9]-3[01]|[12][0-9]|0?[1-9] 2[0-3]|1[0-9]|0?[0-9]:[0-5]?[0-9]:[0-5]?[0-9]', params['after_time']): # noqa: E501 - raise ValueError("Invalid value for parameter `after_time` when calling `get_datamover_historical_jobs`, must conform to the pattern `/20[0-9][0-9]-1[0-2]|[1-9]-3[01]|[12][0-9]|0?[1-9] 2[0-3]|1[0-9]|0?[0-9]:[0-5]?[0-9]:[0-5]?[0-9]/`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'after_time' in params: - query_params.append(('after_time', params['after_time'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/18/datamover/historical-jobs', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='DatamoverHistoricalJobs', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_datamover_job(self, datamover_job_id, **kwargs): # noqa: E501 - """get_datamover_job # noqa: E501 - - Retrieve job information. # 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_datamover_job(datamover_job_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str datamover_job_id: Retrieve job information. (required) - :return: DatamoverJobs - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_datamover_job_with_http_info(datamover_job_id, **kwargs) # noqa: E501 - else: - (data) = self.get_datamover_job_with_http_info(datamover_job_id, **kwargs) # noqa: E501 - return data - - def get_datamover_job_with_http_info(self, datamover_job_id, **kwargs): # noqa: E501 - """get_datamover_job # noqa: E501 - - Retrieve job information. # 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_datamover_job_with_http_info(datamover_job_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str datamover_job_id: Retrieve job information. (required) - :return: DatamoverJobs - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['datamover_job_id'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_datamover_job" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'datamover_job_id' is set - if ('datamover_job_id' not in params or - params['datamover_job_id'] is None): - raise ValueError("Missing the required parameter `datamover_job_id` when calling `get_datamover_job`") # noqa: E501 - - collection_formats = {} - - path_params = {} - if 'datamover_job_id' in params: - path_params['DatamoverJobId'] = params['datamover_job_id'] # noqa: E501 - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/21/datamover/jobs/{DatamoverJobId}', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='DatamoverJobs', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_datamover_jobs(self, **kwargs): # noqa: E501 - """get_datamover_jobs # noqa: E501 - - List all jobs. # 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_datamover_jobs(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param int limit: Return no more than this many results at once (see resume). - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :return: DatamoverJobsExtended - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_datamover_jobs_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_datamover_jobs_with_http_info(**kwargs) # noqa: E501 - return data - - def get_datamover_jobs_with_http_info(self, **kwargs): # noqa: E501 - """get_datamover_jobs # noqa: E501 - - List all jobs. # 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_datamover_jobs_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param int limit: Return no more than this many results at once (see resume). - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :return: DatamoverJobsExtended - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['limit', 'resume'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_datamover_jobs" % key + " to method get_datamover_datasets" % key ) params[key] = val del params['kwargs'] + if ('account_id' in params and + len(params['account_id']) > 48): + raise ValueError("Invalid value for parameter `account_id` when calling `get_datamover_datasets`, length must be less than or equal to `48`") # noqa: E501 + if ('account_id' in params and + len(params['account_id']) < 2): + raise ValueError("Invalid value for parameter `account_id` when calling `get_datamover_datasets`, length must be greater than or equal to `2`") # noqa: E501 + if ('base_path' in params and + len(params['base_path']) > 4096): + raise ValueError("Invalid value for parameter `base_path` when calling `get_datamover_datasets`, length must be less than or equal to `4096`") # noqa: E501 + if ('base_path' in params and + len(params['base_path']) < 1): + raise ValueError("Invalid value for parameter `base_path` when calling `get_datamover_datasets`, length must be greater than or equal to `1`") # noqa: E501 if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_datamover_jobs`, must be a value less than or equal to `4294967295`") # noqa: E501 + raise ValueError("Invalid value for parameter `limit` when calling `get_datamover_datasets`, must be a value less than or equal to `4294967295`") # noqa: E501 if 'limit' in params and params['limit'] < 1: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_datamover_jobs`, must be a value greater than or equal to `1`") # noqa: E501 + raise ValueError("Invalid value for parameter `limit` when calling `get_datamover_datasets`, must be a value greater than or equal to `1`") # noqa: E501 if ('resume' in params and len(params['resume']) > 8192): - raise ValueError("Invalid value for parameter `resume` when calling `get_datamover_jobs`, length must be less than or equal to `8192`") # noqa: E501 + raise ValueError("Invalid value for parameter `resume` when calling `get_datamover_datasets`, length must be less than or equal to `8192`") # noqa: E501 if ('resume' in params and len(params['resume']) < 0): - raise ValueError("Invalid value for parameter `resume` when calling `get_datamover_jobs`, length must be greater than or equal to `0`") # noqa: E501 + raise ValueError("Invalid value for parameter `resume` when calling `get_datamover_datasets`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] + if 'account_id' in params: + query_params.append(('account_id', params['account_id'])) # noqa: E501 + if 'base_path' in params: + query_params.append(('base_path', params['base_path'])) # noqa: E501 if 'limit' in params: query_params.append(('limit', params['limit'])) # noqa: E501 if 'resume' in params: @@ -2781,14 +1943,14 @@ def get_datamover_jobs_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/datamover/jobs', 'GET', + '/platform/15/datamover/datasets', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='DatamoverJobsExtended', # noqa: E501 + response_type='DatamoverDatasetsExtended', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -2796,45 +1958,45 @@ def get_datamover_jobs_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_datamover_policy(self, datamover_policy_id, **kwargs): # noqa: E501 - """get_datamover_policy # noqa: E501 + def get_datamover_historical_jobs(self, **kwargs): # noqa: E501 + """get_datamover_historical_jobs # noqa: E501 - Retrieve policy information. # noqa: E501 + List/Delete finished jobs based on their end time. Capped at 1000. If 'after-time' is specified, latest 1000 jobs ended after this time will be listed/deleted. If 'after-time' is not specified, latest 1000 jobs finished in last 24 hours will be listed/deleted. # 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_datamover_policy(datamover_policy_id, async_req=True) + >>> thread = api.get_datamover_historical_jobs(async_req=True) >>> result = thread.get() :param async_req bool - :param str datamover_policy_id: Retrieve policy information. (required) - :return: DatamoverPolicies + :param str after_time: The time in '%Y-%m-%d %H:%M:%S' format. The year range is 2001-2099. + :return: DatamoverHistoricalJobs If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_datamover_policy_with_http_info(datamover_policy_id, **kwargs) # noqa: E501 + return self.get_datamover_historical_jobs_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.get_datamover_policy_with_http_info(datamover_policy_id, **kwargs) # noqa: E501 + (data) = self.get_datamover_historical_jobs_with_http_info(**kwargs) # noqa: E501 return data - def get_datamover_policy_with_http_info(self, datamover_policy_id, **kwargs): # noqa: E501 - """get_datamover_policy # noqa: E501 + def get_datamover_historical_jobs_with_http_info(self, **kwargs): # noqa: E501 + """get_datamover_historical_jobs # noqa: E501 - Retrieve policy information. # noqa: E501 + List/Delete finished jobs based on their end time. Capped at 1000. If 'after-time' is specified, latest 1000 jobs ended after this time will be listed/deleted. If 'after-time' is not specified, latest 1000 jobs finished in last 24 hours will be listed/deleted. # 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_datamover_policy_with_http_info(datamover_policy_id, async_req=True) + >>> thread = api.get_datamover_historical_jobs_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param str datamover_policy_id: Retrieve policy information. (required) - :return: DatamoverPolicies + :param str after_time: The time in '%Y-%m-%d %H:%M:%S' format. The year range is 2001-2099. + :return: DatamoverHistoricalJobs If the method is called asynchronously, returns the request thread. """ - all_params = ['datamover_policy_id'] # noqa: E501 + all_params = ['after_time'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2845,22 +2007,26 @@ def get_datamover_policy_with_http_info(self, datamover_policy_id, **kwargs): # if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_datamover_policy" % key + " to method get_datamover_historical_jobs" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'datamover_policy_id' is set - if ('datamover_policy_id' not in params or - params['datamover_policy_id'] is None): - raise ValueError("Missing the required parameter `datamover_policy_id` when calling `get_datamover_policy`") # noqa: E501 + if ('after_time' in params and + len(params['after_time']) > 19): + raise ValueError("Invalid value for parameter `after_time` when calling `get_datamover_historical_jobs`, length must be less than or equal to `19`") # noqa: E501 + if ('after_time' in params and + len(params['after_time']) < 14): + raise ValueError("Invalid value for parameter `after_time` when calling `get_datamover_historical_jobs`, length must be greater than or equal to `14`") # noqa: E501 + if 'after_time' in params and not re.search('20[0-9][0-9]-1[0-2]|[1-9]-3[01]|[12][0-9]|0?[1-9] 2[0-3]|1[0-9]|0?[0-9]:[0-5]?[0-9]:[0-5]?[0-9]', params['after_time']): # noqa: E501 + raise ValueError("Invalid value for parameter `after_time` when calling `get_datamover_historical_jobs`, must conform to the pattern `/20[0-9][0-9]-1[0-2]|[1-9]-3[01]|[12][0-9]|0?[1-9] 2[0-3]|1[0-9]|0?[0-9]:[0-5]?[0-9]:[0-5]?[0-9]/`") # noqa: E501 collection_formats = {} path_params = {} - if 'datamover_policy_id' in params: - path_params['DatamoverPolicyId'] = params['datamover_policy_id'] # noqa: E501 query_params = [] + if 'after_time' in params: + query_params.append(('after_time', params['after_time'])) # noqa: E501 header_params = {} @@ -2880,14 +2046,14 @@ def get_datamover_policy_with_http_info(self, datamover_policy_id, **kwargs): # auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/datamover/policies/{DatamoverPolicyId}', 'GET', + '/platform/15/datamover/historical-jobs', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='DatamoverPolicies', # noqa: E501 + response_type='DatamoverHistoricalJobs', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -2895,45 +2061,45 @@ def get_datamover_policy_with_http_info(self, datamover_policy_id, **kwargs): # _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_datamover_report(self, datamover_report_id, **kwargs): # noqa: E501 - """get_datamover_report # noqa: E501 + def get_datamover_job(self, datamover_job_id, **kwargs): # noqa: E501 + """get_datamover_job # noqa: E501 Retrieve job information. # 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_datamover_report(datamover_report_id, async_req=True) + >>> thread = api.get_datamover_job(datamover_job_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str datamover_report_id: Retrieve job information. (required) + :param str datamover_job_id: Retrieve job information. (required) :return: DatamoverJobs If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_datamover_report_with_http_info(datamover_report_id, **kwargs) # noqa: E501 + return self.get_datamover_job_with_http_info(datamover_job_id, **kwargs) # noqa: E501 else: - (data) = self.get_datamover_report_with_http_info(datamover_report_id, **kwargs) # noqa: E501 + (data) = self.get_datamover_job_with_http_info(datamover_job_id, **kwargs) # noqa: E501 return data - def get_datamover_report_with_http_info(self, datamover_report_id, **kwargs): # noqa: E501 - """get_datamover_report # noqa: E501 + def get_datamover_job_with_http_info(self, datamover_job_id, **kwargs): # noqa: E501 + """get_datamover_job # noqa: E501 Retrieve job information. # 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_datamover_report_with_http_info(datamover_report_id, async_req=True) + >>> thread = api.get_datamover_job_with_http_info(datamover_job_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str datamover_report_id: Retrieve job information. (required) + :param str datamover_job_id: Retrieve job information. (required) :return: DatamoverJobs If the method is called asynchronously, returns the request thread. """ - all_params = ['datamover_report_id'] # noqa: E501 + all_params = ['datamover_job_id'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2944,20 +2110,20 @@ def get_datamover_report_with_http_info(self, datamover_report_id, **kwargs): # if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_datamover_report" % key + " to method get_datamover_job" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'datamover_report_id' is set - if ('datamover_report_id' not in params or - params['datamover_report_id'] is None): - raise ValueError("Missing the required parameter `datamover_report_id` when calling `get_datamover_report`") # noqa: E501 + # verify the required parameter 'datamover_job_id' is set + if ('datamover_job_id' not in params or + params['datamover_job_id'] is None): + raise ValueError("Missing the required parameter `datamover_job_id` when calling `get_datamover_job`") # noqa: E501 collection_formats = {} path_params = {} - if 'datamover_report_id' in params: - path_params['DatamoverReportId'] = params['datamover_report_id'] # noqa: E501 + if 'datamover_job_id' in params: + path_params['DatamoverJobId'] = params['datamover_job_id'] # noqa: E501 query_params = [] @@ -2979,7 +2145,7 @@ def get_datamover_report_with_http_info(self, datamover_report_id, **kwargs): # auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/datamover/reports/{DatamoverReportId}', 'GET', + '/platform/15/datamover/jobs/{DatamoverJobId}', 'GET', path_params, query_params, header_params, @@ -2994,49 +2160,47 @@ def get_datamover_report_with_http_info(self, datamover_report_id, **kwargs): # _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_datamover_reports(self, **kwargs): # noqa: E501 - """get_datamover_reports # noqa: E501 + def get_datamover_jobs(self, **kwargs): # noqa: E501 + """get_datamover_jobs # noqa: E501 - List finished jobs based on their end time. Capped at 1000. If 'after-time' is specified, latest 1000 jobs ended after this time will be listed/deleted. If 'after-time' is not specified, latest 1000 jobs finished in last 24 hours will be listed/deleted. # noqa: E501 + List all jobs. # 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_datamover_reports(async_req=True) + >>> thread = api.get_datamover_jobs(async_req=True) >>> result = thread.get() :param async_req bool - :param str after_time: The time in '%Y-%m-%d %H:%M:%S' format. The year range is 2001-2099. :param int limit: Return no more than this many results at once (see resume). :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :return: DatamoverJobsExtended + :return: DatamoverHistoricalJobs If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_datamover_reports_with_http_info(**kwargs) # noqa: E501 + return self.get_datamover_jobs_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.get_datamover_reports_with_http_info(**kwargs) # noqa: E501 + (data) = self.get_datamover_jobs_with_http_info(**kwargs) # noqa: E501 return data - def get_datamover_reports_with_http_info(self, **kwargs): # noqa: E501 - """get_datamover_reports # noqa: E501 + def get_datamover_jobs_with_http_info(self, **kwargs): # noqa: E501 + """get_datamover_jobs # noqa: E501 - List finished jobs based on their end time. Capped at 1000. If 'after-time' is specified, latest 1000 jobs ended after this time will be listed/deleted. If 'after-time' is not specified, latest 1000 jobs finished in last 24 hours will be listed/deleted. # noqa: E501 + List all jobs. # 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_datamover_reports_with_http_info(async_req=True) + >>> thread = api.get_datamover_jobs_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param str after_time: The time in '%Y-%m-%d %H:%M:%S' format. The year range is 2001-2099. :param int limit: Return no more than this many results at once (see resume). :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :return: DatamoverJobsExtended + :return: DatamoverHistoricalJobs If the method is called asynchronously, returns the request thread. """ - all_params = ['after_time', 'limit', 'resume'] # noqa: E501 + all_params = ['limit', 'resume'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -3047,36 +2211,26 @@ def get_datamover_reports_with_http_info(self, **kwargs): # noqa: E501 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_datamover_reports" % key + " to method get_datamover_jobs" % key ) params[key] = val del params['kwargs'] - if ('after_time' in params and - len(params['after_time']) > 19): - raise ValueError("Invalid value for parameter `after_time` when calling `get_datamover_reports`, length must be less than or equal to `19`") # noqa: E501 - if ('after_time' in params and - len(params['after_time']) < 14): - raise ValueError("Invalid value for parameter `after_time` when calling `get_datamover_reports`, length must be greater than or equal to `14`") # noqa: E501 - if 'after_time' in params and not re.search('20[0-9][0-9]-1[0-2]|[1-9]-3[01]|[12][0-9]|0?[1-9] 2[0-3]|1[0-9]|0?[0-9]:[0-5]?[0-9]:[0-5]?[0-9]', params['after_time']): # noqa: E501 - raise ValueError("Invalid value for parameter `after_time` when calling `get_datamover_reports`, must conform to the pattern `/20[0-9][0-9]-1[0-2]|[1-9]-3[01]|[12][0-9]|0?[1-9] 2[0-3]|1[0-9]|0?[0-9]:[0-5]?[0-9]:[0-5]?[0-9]/`") # noqa: E501 if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_datamover_reports`, must be a value less than or equal to `4294967295`") # noqa: E501 + raise ValueError("Invalid value for parameter `limit` when calling `get_datamover_jobs`, must be a value less than or equal to `4294967295`") # noqa: E501 if 'limit' in params and params['limit'] < 1: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_datamover_reports`, must be a value greater than or equal to `1`") # noqa: E501 + raise ValueError("Invalid value for parameter `limit` when calling `get_datamover_jobs`, must be a value greater than or equal to `1`") # noqa: E501 if ('resume' in params and len(params['resume']) > 8192): - raise ValueError("Invalid value for parameter `resume` when calling `get_datamover_reports`, length must be less than or equal to `8192`") # noqa: E501 + raise ValueError("Invalid value for parameter `resume` when calling `get_datamover_jobs`, length must be less than or equal to `8192`") # noqa: E501 if ('resume' in params and len(params['resume']) < 0): - raise ValueError("Invalid value for parameter `resume` when calling `get_datamover_reports`, length must be greater than or equal to `0`") # noqa: E501 + raise ValueError("Invalid value for parameter `resume` when calling `get_datamover_jobs`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] - if 'after_time' in params: - query_params.append(('after_time', params['after_time'])) # noqa: E501 if 'limit' in params: query_params.append(('limit', params['limit'])) # noqa: E501 if 'resume' in params: @@ -3100,240 +2254,14 @@ def get_datamover_reports_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/datamover/reports', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='DatamoverJobsExtended', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_network_discover_accid(self, network_discover_accid, **kwargs): # noqa: E501 - """get_network_discover_accid # noqa: E501 - - Discover hosts for a Datamover account. # 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_network_discover_accid(network_discover_accid, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str network_discover_accid: Discover hosts for a Datamover account. (required) - :param int dm_timeout: Timeout for Datamover ping/discover actions. - :return: NetworkDiscover - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_network_discover_accid_with_http_info(network_discover_accid, **kwargs) # noqa: E501 - else: - (data) = self.get_network_discover_accid_with_http_info(network_discover_accid, **kwargs) # noqa: E501 - return data - - def get_network_discover_accid_with_http_info(self, network_discover_accid, **kwargs): # noqa: E501 - """get_network_discover_accid # noqa: E501 - - Discover hosts for a Datamover account. # 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_network_discover_accid_with_http_info(network_discover_accid, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str network_discover_accid: Discover hosts for a Datamover account. (required) - :param int dm_timeout: Timeout for Datamover ping/discover actions. - :return: NetworkDiscover - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['network_discover_accid', 'dm_timeout'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_network_discover_accid" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'network_discover_accid' is set - if ('network_discover_accid' not in params or - params['network_discover_accid'] is None): - raise ValueError("Missing the required parameter `network_discover_accid` when calling `get_network_discover_accid`") # noqa: E501 - - if 'dm_timeout' in params and params['dm_timeout'] > 30: # noqa: E501 - raise ValueError("Invalid value for parameter `dm_timeout` when calling `get_network_discover_accid`, must be a value less than or equal to `30`") # noqa: E501 - if 'dm_timeout' in params and params['dm_timeout'] < 0: # noqa: E501 - raise ValueError("Invalid value for parameter `dm_timeout` when calling `get_network_discover_accid`, must be a value greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - if 'network_discover_accid' in params: - path_params['NetworkDiscoverAccid'] = params['network_discover_accid'] # noqa: E501 - - query_params = [] - if 'dm_timeout' in params: - query_params.append(('dm_timeout', params['dm_timeout'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/17/datamover/network/discover/{NetworkDiscoverAccid}', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='NetworkDiscover', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_network_ping_accid(self, network_ping_accid, **kwargs): # noqa: E501 - """get_network_ping_accid # noqa: E501 - - Ping a Datamover account. # 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_network_ping_accid(network_ping_accid, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str network_ping_accid: Ping a Datamover account. (required) - :param int dm_timeout: Timeout for Datamover ping/discover actions. - :param int pings: Number of the pings. - :param bool retry: Retry if the ping action failed. - :return: NetworkPing - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_network_ping_accid_with_http_info(network_ping_accid, **kwargs) # noqa: E501 - else: - (data) = self.get_network_ping_accid_with_http_info(network_ping_accid, **kwargs) # noqa: E501 - return data - - def get_network_ping_accid_with_http_info(self, network_ping_accid, **kwargs): # noqa: E501 - """get_network_ping_accid # noqa: E501 - - Ping a Datamover account. # 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_network_ping_accid_with_http_info(network_ping_accid, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str network_ping_accid: Ping a Datamover account. (required) - :param int dm_timeout: Timeout for Datamover ping/discover actions. - :param int pings: Number of the pings. - :param bool retry: Retry if the ping action failed. - :return: NetworkPing - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['network_ping_accid', 'dm_timeout', 'pings', 'retry'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_network_ping_accid" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'network_ping_accid' is set - if ('network_ping_accid' not in params or - params['network_ping_accid'] is None): - raise ValueError("Missing the required parameter `network_ping_accid` when calling `get_network_ping_accid`") # noqa: E501 - - if 'dm_timeout' in params and params['dm_timeout'] > 30: # noqa: E501 - raise ValueError("Invalid value for parameter `dm_timeout` when calling `get_network_ping_accid`, must be a value less than or equal to `30`") # noqa: E501 - if 'dm_timeout' in params and params['dm_timeout'] < 0: # noqa: E501 - raise ValueError("Invalid value for parameter `dm_timeout` when calling `get_network_ping_accid`, must be a value greater than or equal to `0`") # noqa: E501 - if 'pings' in params and params['pings'] > 256: # noqa: E501 - raise ValueError("Invalid value for parameter `pings` when calling `get_network_ping_accid`, must be a value less than or equal to `256`") # noqa: E501 - if 'pings' in params and params['pings'] < 1: # noqa: E501 - raise ValueError("Invalid value for parameter `pings` when calling `get_network_ping_accid`, must be a value greater than or equal to `1`") # noqa: E501 - collection_formats = {} - - path_params = {} - if 'network_ping_accid' in params: - path_params['NetworkPingAccid'] = params['network_ping_accid'] # noqa: E501 - - query_params = [] - if 'dm_timeout' in params: - query_params.append(('dm_timeout', params['dm_timeout'])) # noqa: E501 - if 'pings' in params: - query_params.append(('pings', params['pings'])) # noqa: E501 - if 'retry' in params: - query_params.append(('retry', params['retry'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/17/datamover/network/ping/{NetworkPingAccid}', 'GET', + '/platform/15/datamover/jobs', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='NetworkPing', # noqa: E501 + response_type='DatamoverHistoricalJobs', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -3341,43 +2269,45 @@ def get_network_ping_accid_with_http_info(self, network_ping_accid, **kwargs): _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_settings_reports(self, **kwargs): # noqa: E501 - """get_settings_reports # noqa: E501 + def get_datamover_policy(self, datamover_policy_id, **kwargs): # noqa: E501 + """get_datamover_policy # noqa: E501 - View Datamover report settings. # noqa: E501 + Retrieve policy information. # 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_settings_reports(async_req=True) + >>> thread = api.get_datamover_policy(datamover_policy_id, async_req=True) >>> result = thread.get() :param async_req bool - :return: SettingsReportsExtendedExtended + :param str datamover_policy_id: Retrieve policy information. (required) + :return: DatamoverPolicies If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_settings_reports_with_http_info(**kwargs) # noqa: E501 + return self.get_datamover_policy_with_http_info(datamover_policy_id, **kwargs) # noqa: E501 else: - (data) = self.get_settings_reports_with_http_info(**kwargs) # noqa: E501 + (data) = self.get_datamover_policy_with_http_info(datamover_policy_id, **kwargs) # noqa: E501 return data - def get_settings_reports_with_http_info(self, **kwargs): # noqa: E501 - """get_settings_reports # noqa: E501 + def get_datamover_policy_with_http_info(self, datamover_policy_id, **kwargs): # noqa: E501 + """get_datamover_policy # noqa: E501 - View Datamover report settings. # noqa: E501 + Retrieve policy information. # 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_settings_reports_with_http_info(async_req=True) + >>> thread = api.get_datamover_policy_with_http_info(datamover_policy_id, async_req=True) >>> result = thread.get() :param async_req bool - :return: SettingsReportsExtendedExtended + :param str datamover_policy_id: Retrieve policy information. (required) + :return: DatamoverPolicies If the method is called asynchronously, returns the request thread. """ - all_params = [] # noqa: E501 + all_params = ['datamover_policy_id'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -3388,14 +2318,20 @@ def get_settings_reports_with_http_info(self, **kwargs): # noqa: E501 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_settings_reports" % key + " to method get_datamover_policy" % key ) params[key] = val del params['kwargs'] + # verify the required parameter 'datamover_policy_id' is set + if ('datamover_policy_id' not in params or + params['datamover_policy_id'] is None): + raise ValueError("Missing the required parameter `datamover_policy_id` when calling `get_datamover_policy`") # noqa: E501 collection_formats = {} path_params = {} + if 'datamover_policy_id' in params: + path_params['DatamoverPolicyId'] = params['datamover_policy_id'] # noqa: E501 query_params = [] @@ -3417,14 +2353,14 @@ def get_settings_reports_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/datamover/settings/reports', 'GET', + '/platform/15/datamover/policies/{DatamoverPolicyId}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='SettingsReportsExtendedExtended', # noqa: E501 + response_type='DatamoverPolicies', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -3636,7 +2572,7 @@ def list_certificates_ca(self, **kwargs): # noqa: E501 :param int limit: Return no more than this many results at once (see resume). :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). :param str sort: The field that will be used for sorting. - :return: CertificatesSyslogExtended + :return: CertificatesCaExtended If the method is called asynchronously, returns the request thread. """ @@ -3661,7 +2597,7 @@ def list_certificates_ca_with_http_info(self, **kwargs): # noqa: E501 :param int limit: Return no more than this many results at once (see resume). :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). :param str sort: The field that will be used for sorting. - :return: CertificatesSyslogExtended + :return: CertificatesCaExtended If the method is called asynchronously, returns the request thread. """ @@ -3733,14 +2669,14 @@ def list_certificates_ca_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/datamover/certificates/ca', 'GET', + '/platform/15/datamover/certificates/ca', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='CertificatesSyslogExtended', # noqa: E501 + response_type='CertificatesCaExtended', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -3859,7 +2795,7 @@ def list_certificates_identity_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/datamover/certificates/identity', 'GET', + '/platform/15/datamover/certificates/identity', 'GET', path_params, query_params, header_params, @@ -3968,7 +2904,7 @@ def list_datamover_accounts_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/datamover/accounts', 'GET', + '/platform/15/datamover/accounts', 'GET', path_params, query_params, header_params, @@ -4186,7 +3122,7 @@ def list_datamover_policies_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/datamover/policies', 'GET', + '/platform/15/datamover/policies', 'GET', path_params, query_params, header_params, @@ -4384,7 +3320,7 @@ def update_certificates_ca_by_id_with_http_info(self, certificates_ca_id_params, auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/datamover/certificates/ca/{CertificatesCaId}', 'PUT', + '/platform/15/datamover/certificates/ca/{CertificatesCaId}', 'PUT', path_params, query_params, header_params, @@ -4491,221 +3427,7 @@ def update_certificates_identity_by_id_with_http_info(self, certificates_identit auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/datamover/certificates/identity/{CertificatesIdentityId}', 'PUT', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def update_certificates_settings(self, certificates_settings, **kwargs): # noqa: E501 - """update_certificates_settings # noqa: E501 - - Modify Datamover TLS settings. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_certificates_settings(certificates_settings, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param CertificatesSettingsSettings certificates_settings: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.update_certificates_settings_with_http_info(certificates_settings, **kwargs) # noqa: E501 - else: - (data) = self.update_certificates_settings_with_http_info(certificates_settings, **kwargs) # noqa: E501 - return data - - def update_certificates_settings_with_http_info(self, certificates_settings, **kwargs): # noqa: E501 - """update_certificates_settings # noqa: E501 - - Modify Datamover TLS settings. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_certificates_settings_with_http_info(certificates_settings, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param CertificatesSettingsSettings certificates_settings: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['certificates_settings'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method update_certificates_settings" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'certificates_settings' is set - if ('certificates_settings' not in params or - params['certificates_settings'] is None): - raise ValueError("Missing the required parameter `certificates_settings` when calling `update_certificates_settings`") # noqa: E501 - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'certificates_settings' in params: - body_params = params['certificates_settings'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/datamover/certificates/settings', 'PUT', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def update_config_namespace_by_id(self, config_namespace_id_params, config_namespace_id, namespace, **kwargs): # noqa: E501 - """update_config_namespace_by_id # noqa: E501 - - Modify the configuration for a single namespace entry for Datamover. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_config_namespace_by_id(config_namespace_id_params, config_namespace_id, namespace, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param ConfigNamespaceIdParams config_namespace_id_params: (required) - :param str config_namespace_id: Modify the configuration for a single namespace entry for Datamover. (required) - :param str namespace: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.update_config_namespace_by_id_with_http_info(config_namespace_id_params, config_namespace_id, namespace, **kwargs) # noqa: E501 - else: - (data) = self.update_config_namespace_by_id_with_http_info(config_namespace_id_params, config_namespace_id, namespace, **kwargs) # noqa: E501 - return data - - def update_config_namespace_by_id_with_http_info(self, config_namespace_id_params, config_namespace_id, namespace, **kwargs): # noqa: E501 - """update_config_namespace_by_id # noqa: E501 - - Modify the configuration for a single namespace entry for Datamover. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_config_namespace_by_id_with_http_info(config_namespace_id_params, config_namespace_id, namespace, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param ConfigNamespaceIdParams config_namespace_id_params: (required) - :param str config_namespace_id: Modify the configuration for a single namespace entry for Datamover. (required) - :param str namespace: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['config_namespace_id_params', 'config_namespace_id', 'namespace'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method update_config_namespace_by_id" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'config_namespace_id_params' is set - if ('config_namespace_id_params' not in params or - params['config_namespace_id_params'] is None): - raise ValueError("Missing the required parameter `config_namespace_id_params` when calling `update_config_namespace_by_id`") # noqa: E501 - # verify the required parameter 'config_namespace_id' is set - if ('config_namespace_id' not in params or - params['config_namespace_id'] is None): - raise ValueError("Missing the required parameter `config_namespace_id` when calling `update_config_namespace_by_id`") # noqa: E501 - # verify the required parameter 'namespace' is set - if ('namespace' not in params or - params['namespace'] is None): - raise ValueError("Missing the required parameter `namespace` when calling `update_config_namespace_by_id`") # noqa: E501 - - collection_formats = {} - - path_params = {} - if 'config_namespace_id' in params: - path_params['ConfigNamespaceId'] = params['config_namespace_id'] # noqa: E501 - if 'namespace' in params: - path_params['Namespace'] = params['namespace'] # noqa: E501 - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'config_namespace_id_params' in params: - body_params = params['config_namespace_id_params'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/21/datamover/config/{Namespace}/{ConfigNamespaceId}', 'PUT', + '/platform/15/datamover/certificates/identity/{CertificatesIdentityId}', 'PUT', path_params, query_params, header_params, @@ -4812,7 +3534,7 @@ def update_datamover_account_with_http_info(self, datamover_account, datamover_a auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/datamover/accounts/{DatamoverAccountId}', 'PUT', + '/platform/15/datamover/accounts/{DatamoverAccountId}', 'PUT', path_params, query_params, header_params, @@ -5034,7 +3756,7 @@ def update_datamover_job_with_http_info(self, action, datamover_job, datamover_j auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/datamover/jobs/{DatamoverJobId}', 'PUT', + '/platform/15/datamover/jobs/{DatamoverJobId}', 'PUT', path_params, query_params, header_params, @@ -5141,106 +3863,7 @@ def update_datamover_policy_with_http_info(self, datamover_policy, datamover_pol auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/datamover/policies/{DatamoverPolicyId}', 'PUT', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def update_settings_reports(self, settings_reports, **kwargs): # noqa: E501 - """update_settings_reports # noqa: E501 - - Modify Datamover report settings. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_settings_reports(settings_reports, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param SettingsReportsSettingsExtended settings_reports: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.update_settings_reports_with_http_info(settings_reports, **kwargs) # noqa: E501 - else: - (data) = self.update_settings_reports_with_http_info(settings_reports, **kwargs) # noqa: E501 - return data - - def update_settings_reports_with_http_info(self, settings_reports, **kwargs): # noqa: E501 - """update_settings_reports # noqa: E501 - - Modify Datamover report settings. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_settings_reports_with_http_info(settings_reports, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param SettingsReportsSettingsExtended settings_reports: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['settings_reports'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method update_settings_reports" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'settings_reports' is set - if ('settings_reports' not in params or - params['settings_reports'] is None): - raise ValueError("Missing the required parameter `settings_reports` when calling `update_settings_reports`") # noqa: E501 - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'settings_reports' in params: - body_params = params['settings_reports'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/21/datamover/settings/reports', 'PUT', + '/platform/15/datamover/policies/{DatamoverPolicyId}', 'PUT', path_params, query_params, header_params, diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/debug_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/debug_api.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/api/debug_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/debug_api.py index a610c01f4..0bc152d75 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/debug_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/debug_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class DebugApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/dedupe_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/dedupe_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/dedupe_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/dedupe_api.py index 3cae39764..e65a40868 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/dedupe_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/dedupe_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class DedupeApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/event_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/event_api.py similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/api/event_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/event_api.py index e0cdacec8..43c3877e5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/event_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/event_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class EventApi(object): @@ -117,7 +117,7 @@ def create_event_alert_condition_with_http_info(self, event_alert_condition, **k auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/event/alert-conditions', 'POST', + '/platform/15/event/alert-conditions', 'POST', path_params, query_params, header_params, @@ -216,7 +216,7 @@ def create_event_channel_with_http_info(self, event_channel, **kwargs): # noqa: auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/event/channels', 'POST', + '/platform/12/event/channels', 'POST', path_params, query_params, header_params, @@ -323,7 +323,7 @@ def create_event_channel_0_with_http_info(self, event_channel, event_channel_id, auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/event/channels/{EventChannelId}', 'POST', + '/platform/12/event/channels/{EventChannelId}', 'POST', path_params, query_params, header_params, @@ -521,7 +521,7 @@ def delete_event_alert_condition_with_http_info(self, event_alert_condition_id, auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/event/alert-conditions/{EventAlertConditionId}', 'DELETE', + '/platform/15/event/alert-conditions/{EventAlertConditionId}', 'DELETE', path_params, query_params, header_params, @@ -590,12 +590,6 @@ def delete_event_alert_conditions_with_http_info(self, **kwargs): # noqa: E501 params[key] = val del params['kwargs'] - if ('channel' in params and - len(params['channel']) > 255): - raise ValueError("Invalid value for parameter `channel` when calling `delete_event_alert_conditions`, length must be less than or equal to `255`") # noqa: E501 - if ('channel' in params and - len(params['channel']) < 1): - raise ValueError("Invalid value for parameter `channel` when calling `delete_event_alert_conditions`, length must be greater than or equal to `1`") # noqa: E501 collection_formats = {} path_params = {} @@ -622,7 +616,7 @@ def delete_event_alert_conditions_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/event/alert-conditions', 'DELETE', + '/platform/15/event/alert-conditions', 'DELETE', path_params, query_params, header_params, @@ -721,7 +715,7 @@ def delete_event_channel_with_http_info(self, event_channel_id, **kwargs): # no auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/event/channels/{EventChannelId}', 'DELETE', + '/platform/12/event/channels/{EventChannelId}', 'DELETE', path_params, query_params, header_params, @@ -820,7 +814,7 @@ def get_event_alert_condition_with_http_info(self, event_alert_condition_id, **k auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/event/alert-conditions/{EventAlertConditionId}', 'GET', + '/platform/15/event/alert-conditions/{EventAlertConditionId}', 'GET', path_params, query_params, header_params, @@ -1127,7 +1121,7 @@ def get_event_channel_with_http_info(self, event_channel_id, **kwargs): # noqa: auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/event/channels/{EventChannelId}', 'GET', + '/platform/12/event/channels/{EventChannelId}', 'GET', path_params, query_params, header_params, @@ -1230,7 +1224,7 @@ def get_event_eventgroup_definition_with_http_info(self, event_eventgroup_defini auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/17/event/eventgroup-definitions/{EventEventgroupDefinitionId}', 'GET', + '/platform/12/event/eventgroup-definitions/{EventEventgroupDefinitionId}', 'GET', path_params, query_params, header_params, @@ -1347,7 +1341,7 @@ def get_event_eventgroup_definitions_with_http_info(self, **kwargs): # noqa: E5 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/17/event/eventgroup-definitions', 'GET', + '/platform/12/event/eventgroup-definitions', 'GET', path_params, query_params, header_params, @@ -1446,7 +1440,7 @@ def get_event_eventgroup_occurrence_with_http_info(self, event_eventgroup_occurr auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/event/eventgroup-occurrences/{EventEventgroupOccurrenceId}', 'GET', + '/platform/12/event/eventgroup-occurrences/{EventEventgroupOccurrenceId}', 'GET', path_params, query_params, header_params, @@ -1483,7 +1477,7 @@ def get_event_eventgroup_occurrences(self, **kwargs): # noqa: E501 :param int limit: Return no more than this many results at once (see resume). :param bool maintenance: Filter by eventgroups created during maintenance mode. :param str partial_cause_long: Filter by partial long-cause description. - :param str partial_event_type: Filter eventgroups by their associated event's event-type number. + :param str partial_event_type: Filter eventgroups by there associated event's event-type number. :param str partial_eventgroup_id: Filter by partial eventgroup id. :param bool resolved: Filter by resolved eventgroups. :param str resolver: Filter by eventgroup resolver. @@ -1523,7 +1517,7 @@ def get_event_eventgroup_occurrences_with_http_info(self, **kwargs): # noqa: E5 :param int limit: Return no more than this many results at once (see resume). :param bool maintenance: Filter by eventgroups created during maintenance mode. :param str partial_cause_long: Filter by partial long-cause description. - :param str partial_event_type: Filter eventgroups by their associated event's event-type number. + :param str partial_event_type: Filter eventgroups by there associated event's event-type number. :param str partial_eventgroup_id: Filter by partial eventgroup id. :param bool resolved: Filter by resolved eventgroups. :param str resolver: Filter by eventgroup resolver. @@ -1672,7 +1666,7 @@ def get_event_eventgroup_occurrences_with_http_info(self, **kwargs): # noqa: E5 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/event/eventgroup-occurrences', 'GET', + '/platform/12/event/eventgroup-occurrences', 'GET', path_params, query_params, header_params, @@ -2118,8 +2112,6 @@ def get_event_suppress(self, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :param int limit: Return no more than this many results at once (see resume). - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). :return: EventSuppress If the method is called asynchronously, returns the request thread. @@ -2141,14 +2133,12 @@ def get_event_suppress_with_http_info(self, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :param int limit: Return no more than this many results at once (see resume). - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). :return: EventSuppress If the method is called asynchronously, returns the request thread. """ - all_params = ['limit', 'resume'] # noqa: E501 + all_params = [] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2164,25 +2154,11 @@ def get_event_suppress_with_http_info(self, **kwargs): # noqa: E501 params[key] = val del params['kwargs'] - if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_event_suppress`, must be a value less than or equal to `4294967295`") # noqa: E501 - if 'limit' in params and params['limit'] < 1: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_event_suppress`, must be a value greater than or equal to `1`") # noqa: E501 - if ('resume' in params and - len(params['resume']) > 8192): - raise ValueError("Invalid value for parameter `resume` when calling `get_event_suppress`, length must be less than or equal to `8192`") # noqa: E501 - if ('resume' in params and - len(params['resume']) < 0): - raise ValueError("Invalid value for parameter `resume` when calling `get_event_suppress`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] - if 'limit' in params: - query_params.append(('limit', params['limit'])) # noqa: E501 - if 'resume' in params: - query_params.append(('resume', params['resume'])) # noqa: E501 header_params = {} @@ -2568,7 +2544,7 @@ def list_event_alert_conditions(self, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :param str channel: Return only conditions for the specified channel: + :param str channels: Return only conditions for the specified channel: :param str dir: The direction of the sort. :param int limit: Return no more than this many results at once (see resume). :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). @@ -2594,7 +2570,7 @@ def list_event_alert_conditions_with_http_info(self, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :param str channel: Return only conditions for the specified channel: + :param str channels: Return only conditions for the specified channel: :param str dir: The direction of the sort. :param int limit: Return no more than this many results at once (see resume). :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). @@ -2604,7 +2580,7 @@ def list_event_alert_conditions_with_http_info(self, **kwargs): # noqa: E501 returns the request thread. """ - all_params = ['channel', 'dir', 'limit', 'resume', 'sort'] # noqa: E501 + all_params = ['channels', 'dir', 'limit', 'resume', 'sort'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2620,12 +2596,6 @@ def list_event_alert_conditions_with_http_info(self, **kwargs): # noqa: E501 params[key] = val del params['kwargs'] - if ('channel' in params and - len(params['channel']) > 255): - raise ValueError("Invalid value for parameter `channel` when calling `list_event_alert_conditions`, length must be less than or equal to `255`") # noqa: E501 - if ('channel' in params and - len(params['channel']) < 1): - raise ValueError("Invalid value for parameter `channel` when calling `list_event_alert_conditions`, length must be greater than or equal to `1`") # noqa: E501 if ('dir' in params and len(params['dir']) < 0): raise ValueError("Invalid value for parameter `dir` when calling `list_event_alert_conditions`, length must be greater than or equal to `0`") # noqa: E501 @@ -2650,8 +2620,8 @@ def list_event_alert_conditions_with_http_info(self, **kwargs): # noqa: E501 path_params = {} query_params = [] - if 'channel' in params: - query_params.append(('channel', params['channel'])) # noqa: E501 + if 'channels' in params: + query_params.append(('channels', params['channels'])) # noqa: E501 if 'dir' in params: query_params.append(('dir', params['dir'])) # noqa: E501 if 'limit' in params: @@ -2679,7 +2649,7 @@ def list_event_alert_conditions_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/event/alert-conditions', 'GET', + '/platform/15/event/alert-conditions', 'GET', path_params, query_params, header_params, @@ -2805,7 +2775,7 @@ def list_event_channels_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/event/channels', 'GET', + '/platform/12/event/channels', 'GET', path_params, query_params, header_params, @@ -2912,7 +2882,7 @@ def update_event_alert_condition_with_http_info(self, event_alert_condition, eve auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/event/alert-conditions/{EventAlertConditionId}', 'PUT', + '/platform/15/event/alert-conditions/{EventAlertConditionId}', 'PUT', path_params, query_params, header_params, @@ -3019,7 +2989,7 @@ def update_event_channel_with_http_info(self, event_channel, event_channel_id, * auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/event/channels/{EventChannelId}', 'PUT', + '/platform/12/event/channels/{EventChannelId}', 'PUT', path_params, query_params, header_params, @@ -3126,7 +3096,7 @@ def update_event_eventgroup_occurrence_with_http_info(self, event_eventgroup_occ auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/event/eventgroup-occurrences/{EventEventgroupOccurrenceId}', 'PUT', + '/platform/12/event/eventgroup-occurrences/{EventEventgroupOccurrenceId}', 'PUT', path_params, query_params, header_params, @@ -3225,7 +3195,7 @@ def update_event_eventgroup_occurrences_with_http_info(self, event_eventgroup_oc auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/event/eventgroup-occurrences', 'PUT', + '/platform/12/event/eventgroup-occurrences', 'PUT', path_params, query_params, header_params, diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/file_filter_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/file_filter_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/file_filter_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/file_filter_api.py index 3ed798bd6..73a5347a0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/file_filter_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/file_filter_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class FileFilterApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/filepool_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/filepool_api.py similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/api/filepool_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/filepool_api.py index 3df508c11..1ba3d70ac 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/filepool_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/filepool_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class FilepoolApi(object): @@ -36,7 +36,7 @@ def __init__(self, api_client=None): def create_filepool_policy(self, filepool_policy, **kwargs): # noqa: E501 """create_filepool_policy # noqa: E501 - Create a new file pool policy. # noqa: E501 + Create a new policy. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.create_filepool_policy(filepool_policy, async_req=True) @@ -58,7 +58,7 @@ def create_filepool_policy(self, filepool_policy, **kwargs): # noqa: E501 def create_filepool_policy_with_http_info(self, filepool_policy, **kwargs): # noqa: E501 """create_filepool_policy # noqa: E501 - Create a new file pool policy. # noqa: E501 + Create a new policy. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.create_filepool_policy_with_http_info(filepool_policy, async_req=True) @@ -614,7 +614,7 @@ def get_filepool_templates_with_http_info(self, **kwargs): # noqa: E501 def list_filepool_policies(self, **kwargs): # noqa: E501 """list_filepool_policies # noqa: E501 - List all file pool policies. # noqa: E501 + List all policies. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.list_filepool_policies(async_req=True) @@ -635,7 +635,7 @@ def list_filepool_policies(self, **kwargs): # noqa: E501 def list_filepool_policies_with_http_info(self, **kwargs): # noqa: E501 """list_filepool_policies # noqa: E501 - List all file pool policies. # noqa: E501 + List all policies. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.list_filepool_policies_with_http_info(async_req=True) @@ -804,7 +804,7 @@ def update_filepool_default_policy_with_http_info(self, filepool_default_policy, def update_filepool_policy(self, filepool_policy, filepool_policy_id, **kwargs): # noqa: E501 """update_filepool_policy # noqa: E501 - Modify file pool policy. All input fields are optional, but one or more must be supplied. # noqa: E501 + Modify file pool policy. All input fields are optional, but one or more must be supplied. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.update_filepool_policy(filepool_policy, filepool_policy_id, async_req=True) @@ -812,7 +812,7 @@ def update_filepool_policy(self, filepool_policy, filepool_policy_id, **kwargs): :param async_req bool :param FilepoolPolicy filepool_policy: (required) - :param str filepool_policy_id: Modify file pool policy. All input fields are optional, but one or more must be supplied. (required) + :param str filepool_policy_id: Modify file pool policy. All input fields are optional, but one or more must be supplied. (required) :return: None If the method is called asynchronously, returns the request thread. @@ -827,7 +827,7 @@ def update_filepool_policy(self, filepool_policy, filepool_policy_id, **kwargs): def update_filepool_policy_with_http_info(self, filepool_policy, filepool_policy_id, **kwargs): # noqa: E501 """update_filepool_policy # noqa: E501 - Modify file pool policy. All input fields are optional, but one or more must be supplied. # noqa: E501 + Modify file pool policy. All input fields are optional, but one or more must be supplied. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.update_filepool_policy_with_http_info(filepool_policy, filepool_policy_id, async_req=True) @@ -835,7 +835,7 @@ def update_filepool_policy_with_http_info(self, filepool_policy, filepool_policy :param async_req bool :param FilepoolPolicy filepool_policy: (required) - :param str filepool_policy_id: Modify file pool policy. All input fields are optional, but one or more must be supplied. (required) + :param str filepool_policy_id: Modify file pool policy. All input fields are optional, but one or more must be supplied. (required) :return: None If the method is called asynchronously, returns the request thread. diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/filesystem_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/filesystem_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/filesystem_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/filesystem_api.py index 3224a7fdb..8d3fc4d33 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/filesystem_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/filesystem_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class FilesystemApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/fsa_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/fsa_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/fsa_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/fsa_api.py index 0ec3fa97b..ff764f801 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/fsa_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/fsa_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class FsaApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/fsa_index_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/fsa_index_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/fsa_index_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/fsa_index_api.py index 339c53a89..04007c6c5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/fsa_index_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/fsa_index_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class FsaIndexApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/fsa_results_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/fsa_results_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/fsa_results_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/fsa_results_api.py index bbddc11ba..b6c13b7c0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/fsa_results_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/fsa_results_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class FsaResultsApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/groupnets_summary_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/groupnets_summary_api.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/api/groupnets_summary_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/groupnets_summary_api.py index ceeccaef5..191b881e6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/groupnets_summary_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/groupnets_summary_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class GroupnetsSummaryApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/hardening_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/hardening_api.py similarity index 65% rename from isilon_sdk/isilon_sdk/v9_11_0/api/hardening_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/hardening_api.py index 9c794d9e7..11e830355 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/hardening_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/hardening_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class HardeningApi(object): @@ -36,7 +36,7 @@ def __init__(self, api_client=None): def create_hardening_apply_item(self, hardening_apply_item, **kwargs): # noqa: E501 """create_hardening_apply_item # noqa: E501 - Applies the rules in a hardening profile. # noqa: E501 + Apply hardening on the cluster. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.create_hardening_apply_item(hardening_apply_item, async_req=True) @@ -58,7 +58,7 @@ def create_hardening_apply_item(self, hardening_apply_item, **kwargs): # noqa: def create_hardening_apply_item_with_http_info(self, hardening_apply_item, **kwargs): # noqa: E501 """create_hardening_apply_item # noqa: E501 - Applies the rules in a hardening profile. # noqa: E501 + Apply hardening on the cluster. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.create_hardening_apply_item_with_http_info(hardening_apply_item, async_req=True) @@ -117,7 +117,7 @@ def create_hardening_apply_item_with_http_info(self, hardening_apply_item, **kwa auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/hardening/apply', 'POST', + '/platform/3/hardening/apply', 'POST', path_params, query_params, header_params, @@ -132,144 +132,47 @@ def create_hardening_apply_item_with_http_info(self, hardening_apply_item, **kwa _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def create_hardening_disable_item(self, hardening_disable_item, **kwargs): # noqa: E501 - """create_hardening_disable_item # noqa: E501 + def create_hardening_resolve_item(self, hardening_resolve_item, **kwargs): # noqa: E501 + """create_hardening_resolve_item # noqa: E501 - Reset a hardening profile to its default configuration. # noqa: E501 + Resolve issues related to hardening, found in current cluster configuration. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_hardening_disable_item(hardening_disable_item, async_req=True) + >>> thread = api.create_hardening_resolve_item(hardening_resolve_item, async_req=True) >>> result = thread.get() :param async_req bool - :param HardeningApplyItem hardening_disable_item: (required) - :return: CreateHardeningApplyItemResponse - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.create_hardening_disable_item_with_http_info(hardening_disable_item, **kwargs) # noqa: E501 - else: - (data) = self.create_hardening_disable_item_with_http_info(hardening_disable_item, **kwargs) # noqa: E501 - return data - - def create_hardening_disable_item_with_http_info(self, hardening_disable_item, **kwargs): # noqa: E501 - """create_hardening_disable_item # noqa: E501 - - Reset a hardening profile to its default configuration. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_hardening_disable_item_with_http_info(hardening_disable_item, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param HardeningApplyItem hardening_disable_item: (required) - :return: CreateHardeningApplyItemResponse - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['hardening_disable_item'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method create_hardening_disable_item" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'hardening_disable_item' is set - if ('hardening_disable_item' not in params or - params['hardening_disable_item'] is None): - raise ValueError("Missing the required parameter `hardening_disable_item` when calling `create_hardening_disable_item`") # noqa: E501 - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'hardening_disable_item' in params: - body_params = params['hardening_disable_item'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/hardening/disable', 'POST', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='CreateHardeningApplyItemResponse', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def create_hardening_report(self, hardening_report, **kwargs): # noqa: E501 - """create_hardening_report # noqa: E501 - - Creates a report for all the hardening rules. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_hardening_report(hardening_report, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param Empty hardening_report: (required) - :return: CreateHardeningApplyItemResponse + :param HardeningResolveItem hardening_resolve_item: (required) + :param bool accept: If true, execution proceeds to resolve all issues. If false, execution aborts. This is a required argument. + :return: CreateHardeningResolveItemResponse If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.create_hardening_report_with_http_info(hardening_report, **kwargs) # noqa: E501 + return self.create_hardening_resolve_item_with_http_info(hardening_resolve_item, **kwargs) # noqa: E501 else: - (data) = self.create_hardening_report_with_http_info(hardening_report, **kwargs) # noqa: E501 + (data) = self.create_hardening_resolve_item_with_http_info(hardening_resolve_item, **kwargs) # noqa: E501 return data - def create_hardening_report_with_http_info(self, hardening_report, **kwargs): # noqa: E501 - """create_hardening_report # noqa: E501 + def create_hardening_resolve_item_with_http_info(self, hardening_resolve_item, **kwargs): # noqa: E501 + """create_hardening_resolve_item # noqa: E501 - Creates a report for all the hardening rules. # noqa: E501 + Resolve issues related to hardening, found in current cluster configuration. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_hardening_report_with_http_info(hardening_report, async_req=True) + >>> thread = api.create_hardening_resolve_item_with_http_info(hardening_resolve_item, async_req=True) >>> result = thread.get() :param async_req bool - :param Empty hardening_report: (required) - :return: CreateHardeningApplyItemResponse + :param HardeningResolveItem hardening_resolve_item: (required) + :param bool accept: If true, execution proceeds to resolve all issues. If false, execution aborts. This is a required argument. + :return: CreateHardeningResolveItemResponse If the method is called asynchronously, returns the request thread. """ - all_params = ['hardening_report'] # noqa: E501 + all_params = ['hardening_resolve_item', 'accept'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -280,20 +183,22 @@ def create_hardening_report_with_http_info(self, hardening_report, **kwargs): # if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method create_hardening_report" % key + " to method create_hardening_resolve_item" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'hardening_report' is set - if ('hardening_report' not in params or - params['hardening_report'] is None): - raise ValueError("Missing the required parameter `hardening_report` when calling `create_hardening_report`") # noqa: E501 + # verify the required parameter 'hardening_resolve_item' is set + if ('hardening_resolve_item' not in params or + params['hardening_resolve_item'] is None): + raise ValueError("Missing the required parameter `hardening_resolve_item` when calling `create_hardening_resolve_item`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] + if 'accept' in params: + query_params.append(('accept', params['accept'])) # noqa: E501 header_params = {} @@ -301,8 +206,8 @@ def create_hardening_report_with_http_info(self, hardening_report, **kwargs): # local_var_files = {} body_params = None - if 'hardening_report' in params: - body_params = params['hardening_report'] + if 'hardening_resolve_item' in params: + body_params = params['hardening_resolve_item'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -315,14 +220,14 @@ def create_hardening_report_with_http_info(self, hardening_report, **kwargs): # auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/hardening/reports', 'POST', + '/platform/3/hardening/resolve', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='CreateHardeningApplyItemResponse', # noqa: E501 + response_type='CreateHardeningResolveItemResponse', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -330,43 +235,47 @@ def create_hardening_report_with_http_info(self, hardening_report, **kwargs): # _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_hardening_list(self, **kwargs): # noqa: E501 - """get_hardening_list # noqa: E501 + def create_hardening_revert_item(self, hardening_revert_item, **kwargs): # noqa: E501 + """create_hardening_revert_item # noqa: E501 - Get the list of available hardening profile names, descriptions, and applied status. # noqa: E501 + Revert hardening on the cluster. # 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_hardening_list(async_req=True) + >>> thread = api.create_hardening_revert_item(hardening_revert_item, async_req=True) >>> result = thread.get() :param async_req bool - :return: HardeningList + :param Empty hardening_revert_item: (required) + :param bool force: If specified, revert operation continues even in case of a failure. Default is false in which case revert stops at the first failure. + :return: CreateHardeningRevertItemResponse If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_hardening_list_with_http_info(**kwargs) # noqa: E501 + return self.create_hardening_revert_item_with_http_info(hardening_revert_item, **kwargs) # noqa: E501 else: - (data) = self.get_hardening_list_with_http_info(**kwargs) # noqa: E501 + (data) = self.create_hardening_revert_item_with_http_info(hardening_revert_item, **kwargs) # noqa: E501 return data - def get_hardening_list_with_http_info(self, **kwargs): # noqa: E501 - """get_hardening_list # noqa: E501 + def create_hardening_revert_item_with_http_info(self, hardening_revert_item, **kwargs): # noqa: E501 + """create_hardening_revert_item # noqa: E501 - Get the list of available hardening profile names, descriptions, and applied status. # noqa: E501 + Revert hardening on the cluster. # 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_hardening_list_with_http_info(async_req=True) + >>> thread = api.create_hardening_revert_item_with_http_info(hardening_revert_item, async_req=True) >>> result = thread.get() :param async_req bool - :return: HardeningList + :param Empty hardening_revert_item: (required) + :param bool force: If specified, revert operation continues even in case of a failure. Default is false in which case revert stops at the first failure. + :return: CreateHardeningRevertItemResponse If the method is called asynchronously, returns the request thread. """ - all_params = [] # noqa: E501 + all_params = ['hardening_revert_item', 'force'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -377,16 +286,22 @@ def get_hardening_list_with_http_info(self, **kwargs): # noqa: E501 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_hardening_list" % key + " to method create_hardening_revert_item" % key ) params[key] = val del params['kwargs'] + # verify the required parameter 'hardening_revert_item' is set + if ('hardening_revert_item' not in params or + params['hardening_revert_item'] is None): + raise ValueError("Missing the required parameter `hardening_revert_item` when calling `create_hardening_revert_item`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] + if 'force' in params: + query_params.append(('force', params['force'])) # noqa: E501 header_params = {} @@ -394,6 +309,8 @@ def get_hardening_list_with_http_info(self, **kwargs): # noqa: E501 local_var_files = {} body_params = None + if 'hardening_revert_item' in params: + body_params = params['hardening_revert_item'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -406,14 +323,14 @@ def get_hardening_list_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/hardening/list', 'GET', + '/platform/3/hardening/revert', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='HardeningList', # noqa: E501 + response_type='CreateHardeningRevertItemResponse', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -424,7 +341,7 @@ def get_hardening_list_with_http_info(self, **kwargs): # noqa: E501 def get_hardening_state(self, **kwargs): # noqa: E501 """get_hardening_state # noqa: E501 - Get the state of the hardening service, Running or Available. Note that this is different from the status resource, which returns the status of hardening profiles. # noqa: E501 + Get the state of the current hardening operation, if one is happening. Note that this is different from the /status resource, which returns the overall hardening status of the cluster. # 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_hardening_state(async_req=True) @@ -445,7 +362,7 @@ def get_hardening_state(self, **kwargs): # noqa: E501 def get_hardening_state_with_http_info(self, **kwargs): # noqa: E501 """get_hardening_state # noqa: E501 - Get the state of the hardening service, Running or Available. Note that this is different from the status resource, which returns the status of hardening profiles. # noqa: E501 + Get the state of the current hardening operation, if one is happening. Note that this is different from the /status resource, which returns the overall hardening status of the cluster. # 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_hardening_state_with_http_info(async_req=True) @@ -497,7 +414,7 @@ def get_hardening_state_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/hardening/state', 'GET', + '/platform/3/hardening/state', 'GET', path_params, query_params, header_params, @@ -512,38 +429,38 @@ def get_hardening_state_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def list_hardening_reports(self, **kwargs): # noqa: E501 - """list_hardening_reports # noqa: E501 + def get_hardening_status(self, **kwargs): # noqa: E501 + """get_hardening_status # noqa: E501 - View the report for all the hardening rules. # noqa: E501 + Get a message indicating whether or not the cluster is hardened. Note that this is different from the /state resource, which returns the state of a specific hardening operation (apply or revert). # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_hardening_reports(async_req=True) + >>> thread = api.get_hardening_status(async_req=True) >>> result = thread.get() :param async_req bool - :return: HardeningReports + :return: HardeningStatus If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.list_hardening_reports_with_http_info(**kwargs) # noqa: E501 + return self.get_hardening_status_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.list_hardening_reports_with_http_info(**kwargs) # noqa: E501 + (data) = self.get_hardening_status_with_http_info(**kwargs) # noqa: E501 return data - def list_hardening_reports_with_http_info(self, **kwargs): # noqa: E501 - """list_hardening_reports # noqa: E501 + def get_hardening_status_with_http_info(self, **kwargs): # noqa: E501 + """get_hardening_status # noqa: E501 - View the report for all the hardening rules. # noqa: E501 + Get a message indicating whether or not the cluster is hardened. Note that this is different from the /state resource, which returns the state of a specific hardening operation (apply or revert). # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_hardening_reports_with_http_info(async_req=True) + >>> thread = api.get_hardening_status_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :return: HardeningReports + :return: HardeningStatus If the method is called asynchronously, returns the request thread. """ @@ -559,7 +476,7 @@ def list_hardening_reports_with_http_info(self, **kwargs): # noqa: E501 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method list_hardening_reports" % key + " to method get_hardening_status" % key ) params[key] = val del params['kwargs'] @@ -588,14 +505,14 @@ def list_hardening_reports_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/hardening/reports', 'GET', + '/platform/3/hardening/status', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='HardeningReports', # noqa: E501 + response_type='HardeningStatus', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/hardware_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/hardware_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/hardware_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/hardware_api.py index 783d14151..948bc38fc 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/hardware_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/hardware_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class HardwareApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/healthcheck_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/healthcheck_api.py similarity index 78% rename from isilon_sdk/isilon_sdk/v9_11_0/api/healthcheck_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/healthcheck_api.py index fc6853501..50b841483 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/healthcheck_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/healthcheck_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class HealthcheckApi(object): @@ -33,121 +33,6 @@ def __init__(self, api_client=None): api_client = ApiClient() self.api_client = api_client - def create_healthcheck_definition(self, healthcheck_definition, **kwargs): # noqa: E501 - """create_healthcheck_definition # noqa: E501 - - Install a healthcheck definition. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_healthcheck_definition(healthcheck_definition, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param HealthcheckDefinitionCreateParams healthcheck_definition: (required) - :param bool skip_conflict_check: Bypass conflict checks. Defaults to false. - :param bool skip_dependency_check: Bypass dependency checks. Defaults to false. - :param bool skip_restricted_check: Bypass restricted checks. Defaults to false. - :param bool skip_version_check: Bypass version checks. Defaults to false. - :return: CreateResponse - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.create_healthcheck_definition_with_http_info(healthcheck_definition, **kwargs) # noqa: E501 - else: - (data) = self.create_healthcheck_definition_with_http_info(healthcheck_definition, **kwargs) # noqa: E501 - return data - - def create_healthcheck_definition_with_http_info(self, healthcheck_definition, **kwargs): # noqa: E501 - """create_healthcheck_definition # noqa: E501 - - Install a healthcheck definition. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_healthcheck_definition_with_http_info(healthcheck_definition, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param HealthcheckDefinitionCreateParams healthcheck_definition: (required) - :param bool skip_conflict_check: Bypass conflict checks. Defaults to false. - :param bool skip_dependency_check: Bypass dependency checks. Defaults to false. - :param bool skip_restricted_check: Bypass restricted checks. Defaults to false. - :param bool skip_version_check: Bypass version checks. Defaults to false. - :return: CreateResponse - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['healthcheck_definition', 'skip_conflict_check', 'skip_dependency_check', 'skip_restricted_check', 'skip_version_check'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method create_healthcheck_definition" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'healthcheck_definition' is set - if ('healthcheck_definition' not in params or - params['healthcheck_definition'] is None): - raise ValueError("Missing the required parameter `healthcheck_definition` when calling `create_healthcheck_definition`") # noqa: E501 - - collection_formats = {} - - path_params = {} - - query_params = [] - if 'skip_conflict_check' in params: - query_params.append(('skip_conflict_check', params['skip_conflict_check'])) # noqa: E501 - if 'skip_dependency_check' in params: - query_params.append(('skip_dependency_check', params['skip_dependency_check'])) # noqa: E501 - if 'skip_restricted_check' in params: - query_params.append(('skip_restricted_check', params['skip_restricted_check'])) # noqa: E501 - if 'skip_version_check' in params: - query_params.append(('skip_version_check', params['skip_version_check'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'healthcheck_definition' in params: - body_params = params['healthcheck_definition'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/healthcheck/definitions', 'POST', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='CreateResponse', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - def create_healthcheck_evaluation(self, healthcheck_evaluation, **kwargs): # noqa: E501 """create_healthcheck_evaluation # noqa: E501 @@ -232,7 +117,7 @@ def create_healthcheck_evaluation_with_http_info(self, healthcheck_evaluation, * auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/healthcheck/evaluations', 'POST', + '/platform/10/healthcheck/evaluations', 'POST', path_params, query_params, header_params, @@ -430,7 +315,7 @@ def create_healthcheck_schedule_with_http_info(self, healthcheck_schedule, **kwa auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/healthcheck/schedules', 'POST', + '/platform/10/healthcheck/schedules', 'POST', path_params, query_params, header_params, @@ -445,131 +330,6 @@ def create_healthcheck_schedule_with_http_info(self, healthcheck_schedule, **kwa _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def delete_healthcheck_definition(self, healthcheck_definition_id, **kwargs): # noqa: E501 - """delete_healthcheck_definition # noqa: E501 - - Uninstall a definition. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_healthcheck_definition(healthcheck_definition_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str healthcheck_definition_id: Uninstall a definition. (required) - :param str process_type: Process type can be 'simultaneous', 'rolling', or 'parallel' - :param bool skip_conflict_check: Bypass conflict checks. Defaults to false. - :param bool skip_dependency_check: Bypass dependency checks. Defaults to false. - :param bool skip_restricted_check: Bypass restricted checks. Defaults to false. - :param bool skip_version_check: Bypass version checks. Defaults to false. - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.delete_healthcheck_definition_with_http_info(healthcheck_definition_id, **kwargs) # noqa: E501 - else: - (data) = self.delete_healthcheck_definition_with_http_info(healthcheck_definition_id, **kwargs) # noqa: E501 - return data - - def delete_healthcheck_definition_with_http_info(self, healthcheck_definition_id, **kwargs): # noqa: E501 - """delete_healthcheck_definition # noqa: E501 - - Uninstall a definition. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_healthcheck_definition_with_http_info(healthcheck_definition_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str healthcheck_definition_id: Uninstall a definition. (required) - :param str process_type: Process type can be 'simultaneous', 'rolling', or 'parallel' - :param bool skip_conflict_check: Bypass conflict checks. Defaults to false. - :param bool skip_dependency_check: Bypass dependency checks. Defaults to false. - :param bool skip_restricted_check: Bypass restricted checks. Defaults to false. - :param bool skip_version_check: Bypass version checks. Defaults to false. - :return: None - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['healthcheck_definition_id', 'process_type', 'skip_conflict_check', 'skip_dependency_check', 'skip_restricted_check', 'skip_version_check'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method delete_healthcheck_definition" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'healthcheck_definition_id' is set - if ('healthcheck_definition_id' not in params or - params['healthcheck_definition_id'] is None): - raise ValueError("Missing the required parameter `healthcheck_definition_id` when calling `delete_healthcheck_definition`") # noqa: E501 - - if ('process_type' in params and - len(params['process_type']) > 255): - raise ValueError("Invalid value for parameter `process_type` when calling `delete_healthcheck_definition`, length must be less than or equal to `255`") # noqa: E501 - if ('process_type' in params and - len(params['process_type']) < 6): - raise ValueError("Invalid value for parameter `process_type` when calling `delete_healthcheck_definition`, length must be greater than or equal to `6`") # noqa: E501 - collection_formats = {} - - path_params = {} - if 'healthcheck_definition_id' in params: - path_params['HealthcheckDefinitionId'] = params['healthcheck_definition_id'] # noqa: E501 - - query_params = [] - if 'process_type' in params: - query_params.append(('process_type', params['process_type'])) # noqa: E501 - if 'skip_conflict_check' in params: - query_params.append(('skip_conflict_check', params['skip_conflict_check'])) # noqa: E501 - if 'skip_dependency_check' in params: - query_params.append(('skip_dependency_check', params['skip_dependency_check'])) # noqa: E501 - if 'skip_restricted_check' in params: - query_params.append(('skip_restricted_check', params['skip_restricted_check'])) # noqa: E501 - if 'skip_version_check' in params: - query_params.append(('skip_version_check', params['skip_version_check'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/healthcheck/definitions/{HealthcheckDefinitionId}', 'DELETE', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - def delete_healthcheck_evaluation(self, healthcheck_evaluation_id, **kwargs): # noqa: E501 """delete_healthcheck_evaluation # noqa: E501 @@ -654,7 +414,7 @@ def delete_healthcheck_evaluation_with_http_info(self, healthcheck_evaluation_id auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/healthcheck/evaluations/{HealthcheckEvaluationId}', 'DELETE', + '/platform/10/healthcheck/evaluations/{HealthcheckEvaluationId}', 'DELETE', path_params, query_params, header_params, @@ -852,7 +612,7 @@ def delete_healthcheck_schedule_with_http_info(self, healthcheck_schedule_id, ** auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/healthcheck/schedules/{HealthcheckScheduleId}', 'DELETE', + '/platform/10/healthcheck/schedules/{HealthcheckScheduleId}', 'DELETE', path_params, query_params, header_params, @@ -1042,7 +802,7 @@ def get_healthcheck_checklist_with_http_info(self, healthcheck_checklist_id, **k auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/20/healthcheck/checklists/{HealthcheckChecklistId}', 'GET', + '/platform/10/healthcheck/checklists/{HealthcheckChecklistId}', 'GET', path_params, query_params, header_params, @@ -1151,7 +911,7 @@ def get_healthcheck_checklists_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/20/healthcheck/checklists', 'GET', + '/platform/10/healthcheck/checklists', 'GET', path_params, query_params, header_params, @@ -1166,119 +926,6 @@ def get_healthcheck_checklists_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_healthcheck_definition(self, healthcheck_definition_id, **kwargs): # noqa: E501 - """get_healthcheck_definition # noqa: E501 - - View a single definition. # 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_healthcheck_definition(healthcheck_definition_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str healthcheck_definition_id: View a single definition. (required) - :param bool local: View definition information on local node only. - :param str location: Path location of definition file. - :return: HealthcheckDefinitions - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_healthcheck_definition_with_http_info(healthcheck_definition_id, **kwargs) # noqa: E501 - else: - (data) = self.get_healthcheck_definition_with_http_info(healthcheck_definition_id, **kwargs) # noqa: E501 - return data - - def get_healthcheck_definition_with_http_info(self, healthcheck_definition_id, **kwargs): # noqa: E501 - """get_healthcheck_definition # noqa: E501 - - View a single definition. # 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_healthcheck_definition_with_http_info(healthcheck_definition_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str healthcheck_definition_id: View a single definition. (required) - :param bool local: View definition information on local node only. - :param str location: Path location of definition file. - :return: HealthcheckDefinitions - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['healthcheck_definition_id', 'local', 'location'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_healthcheck_definition" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'healthcheck_definition_id' is set - if ('healthcheck_definition_id' not in params or - params['healthcheck_definition_id'] is None): - raise ValueError("Missing the required parameter `healthcheck_definition_id` when calling `get_healthcheck_definition`") # noqa: E501 - - if ('location' in params and - len(params['location']) > 4096): - raise ValueError("Invalid value for parameter `location` when calling `get_healthcheck_definition`, length must be less than or equal to `4096`") # noqa: E501 - if ('location' in params and - len(params['location']) < 0): - raise ValueError("Invalid value for parameter `location` when calling `get_healthcheck_definition`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - if 'healthcheck_definition_id' in params: - path_params['HealthcheckDefinitionId'] = params['healthcheck_definition_id'] # noqa: E501 - - query_params = [] - if 'local' in params: - query_params.append(('local', params['local'])) # noqa: E501 - if 'location' in params: - query_params.append(('location', params['location'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/healthcheck/definitions/{HealthcheckDefinitionId}', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='HealthcheckDefinitions', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - def get_healthcheck_evaluation(self, healthcheck_evaluation_id, **kwargs): # noqa: E501 """get_healthcheck_evaluation # noqa: E501 @@ -1290,8 +937,7 @@ def get_healthcheck_evaluation(self, healthcheck_evaluation_id, **kwargs): # no :param async_req bool :param str healthcheck_evaluation_id: Retrieve individual evaluation. (required) - :param bool detailed: Default is false; return evaluation details for failing items. If true, return evaluation details for all passing and failing items. - :param bool format_for_csv_download: Allow download of CSV formatted HC results. + :param bool detailed: Also return details for items that pass :return: HealthcheckEvaluations If the method is called asynchronously, returns the request thread. @@ -1314,14 +960,13 @@ def get_healthcheck_evaluation_with_http_info(self, healthcheck_evaluation_id, * :param async_req bool :param str healthcheck_evaluation_id: Retrieve individual evaluation. (required) - :param bool detailed: Default is false; return evaluation details for failing items. If true, return evaluation details for all passing and failing items. - :param bool format_for_csv_download: Allow download of CSV formatted HC results. + :param bool detailed: Also return details for items that pass :return: HealthcheckEvaluations If the method is called asynchronously, returns the request thread. """ - all_params = ['healthcheck_evaluation_id', 'detailed', 'format_for_csv_download'] # noqa: E501 + all_params = ['healthcheck_evaluation_id', 'detailed'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -1350,8 +995,6 @@ def get_healthcheck_evaluation_with_http_info(self, healthcheck_evaluation_id, * query_params = [] if 'detailed' in params: query_params.append(('detailed', params['detailed'])) # noqa: E501 - if 'format_for_csv_download' in params: - query_params.append(('format_for_csv_download', params['format_for_csv_download'])) # noqa: E501 header_params = {} @@ -1371,7 +1014,7 @@ def get_healthcheck_evaluation_with_http_info(self, healthcheck_evaluation_id, * auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/healthcheck/evaluations/{HealthcheckEvaluationId}', 'GET', + '/platform/10/healthcheck/evaluations/{HealthcheckEvaluationId}', 'GET', path_params, query_params, header_params, @@ -1470,7 +1113,7 @@ def get_healthcheck_item_with_http_info(self, healthcheck_item_id, **kwargs): # auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/healthcheck/items/{HealthcheckItemId}', 'GET', + '/platform/3/healthcheck/items/{HealthcheckItemId}', 'GET', path_params, query_params, header_params, @@ -1579,7 +1222,7 @@ def get_healthcheck_items_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/healthcheck/items', 'GET', + '/platform/3/healthcheck/items', 'GET', path_params, query_params, header_params, @@ -1777,7 +1420,7 @@ def get_healthcheck_schedule_with_http_info(self, healthcheck_schedule_id, **kwa auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/healthcheck/schedules/{HealthcheckScheduleId}', 'GET', + '/platform/10/healthcheck/schedules/{HealthcheckScheduleId}', 'GET', path_params, query_params, header_params, @@ -1883,136 +1526,6 @@ def get_healthcheck_version_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def list_healthcheck_definitions(self, **kwargs): # noqa: E501 - """list_healthcheck_definitions # noqa: E501 - - List all definitions. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_healthcheck_definitions(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str dir: The direction of the sort. - :param int limit: Return no more than this many results at once (see resume). - :param bool local: View definitions on the local node only. - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param str sort: The field that will be used for sorting. - :return: HealthcheckDefinitions - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.list_healthcheck_definitions_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.list_healthcheck_definitions_with_http_info(**kwargs) # noqa: E501 - return data - - def list_healthcheck_definitions_with_http_info(self, **kwargs): # noqa: E501 - """list_healthcheck_definitions # noqa: E501 - - List all definitions. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_healthcheck_definitions_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str dir: The direction of the sort. - :param int limit: Return no more than this many results at once (see resume). - :param bool local: View definitions on the local node only. - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param str sort: The field that will be used for sorting. - :return: HealthcheckDefinitions - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['dir', 'limit', 'local', 'resume', 'sort'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method list_healthcheck_definitions" % key - ) - params[key] = val - del params['kwargs'] - - if ('dir' in params and - len(params['dir']) < 0): - raise ValueError("Invalid value for parameter `dir` when calling `list_healthcheck_definitions`, length must be greater than or equal to `0`") # noqa: E501 - if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `list_healthcheck_definitions`, must be a value less than or equal to `4294967295`") # noqa: E501 - if 'limit' in params and params['limit'] < 1: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `list_healthcheck_definitions`, must be a value greater than or equal to `1`") # noqa: E501 - if ('resume' in params and - len(params['resume']) > 8192): - raise ValueError("Invalid value for parameter `resume` when calling `list_healthcheck_definitions`, length must be less than or equal to `8192`") # noqa: E501 - if ('resume' in params and - len(params['resume']) < 0): - raise ValueError("Invalid value for parameter `resume` when calling `list_healthcheck_definitions`, length must be greater than or equal to `0`") # noqa: E501 - if ('sort' in params and - len(params['sort']) > 255): - raise ValueError("Invalid value for parameter `sort` when calling `list_healthcheck_definitions`, length must be less than or equal to `255`") # noqa: E501 - if ('sort' in params and - len(params['sort']) < 0): - raise ValueError("Invalid value for parameter `sort` when calling `list_healthcheck_definitions`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'dir' in params: - query_params.append(('dir', params['dir'])) # noqa: E501 - if 'limit' in params: - query_params.append(('limit', params['limit'])) # noqa: E501 - if 'local' in params: - query_params.append(('local', params['local'])) # noqa: E501 - if 'resume' in params: - query_params.append(('resume', params['resume'])) # noqa: E501 - if 'sort' in params: - query_params.append(('sort', params['sort'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/healthcheck/definitions', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='HealthcheckDefinitions', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - def list_healthcheck_evaluations(self, **kwargs): # noqa: E501 """list_healthcheck_evaluations # noqa: E501 @@ -2023,13 +1536,10 @@ def list_healthcheck_evaluations(self, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :param str checklist_id: Filter results to the specified Checklist or Item. - :param bool detailed: Also return details for items that pass. - :param str dir: The direction of the sort. - :param str level: Content detail level. + :param bool detailed: Also return details for items that pass + :param str level: Content detail level :param int limit: Return no more than this many results at once (see resume). :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param str sort: The field that will be used for sorting. :return: HealthcheckEvaluationsExtended If the method is called asynchronously, returns the request thread. @@ -2051,19 +1561,16 @@ def list_healthcheck_evaluations_with_http_info(self, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :param str checklist_id: Filter results to the specified Checklist or Item. - :param bool detailed: Also return details for items that pass. - :param str dir: The direction of the sort. - :param str level: Content detail level. + :param bool detailed: Also return details for items that pass + :param str level: Content detail level :param int limit: Return no more than this many results at once (see resume). :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param str sort: The field that will be used for sorting. :return: HealthcheckEvaluationsExtended If the method is called asynchronously, returns the request thread. """ - all_params = ['checklist_id', 'detailed', 'dir', 'level', 'limit', 'resume', 'sort'] # noqa: E501 + all_params = ['detailed', 'level', 'limit', 'resume'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2079,9 +1586,6 @@ def list_healthcheck_evaluations_with_http_info(self, **kwargs): # noqa: E501 params[key] = val del params['kwargs'] - if ('dir' in params and - len(params['dir']) < 0): - raise ValueError("Invalid value for parameter `dir` when calling `list_healthcheck_evaluations`, length must be greater than or equal to `0`") # noqa: E501 if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 raise ValueError("Invalid value for parameter `limit` when calling `list_healthcheck_evaluations`, must be a value less than or equal to `4294967295`") # noqa: E501 if 'limit' in params and params['limit'] < 1: # noqa: E501 @@ -2092,31 +1596,19 @@ def list_healthcheck_evaluations_with_http_info(self, **kwargs): # noqa: E501 if ('resume' in params and len(params['resume']) < 0): raise ValueError("Invalid value for parameter `resume` when calling `list_healthcheck_evaluations`, length must be greater than or equal to `0`") # noqa: E501 - if ('sort' in params and - len(params['sort']) > 255): - raise ValueError("Invalid value for parameter `sort` when calling `list_healthcheck_evaluations`, length must be less than or equal to `255`") # noqa: E501 - if ('sort' in params and - len(params['sort']) < 0): - raise ValueError("Invalid value for parameter `sort` when calling `list_healthcheck_evaluations`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] - if 'checklist_id' in params: - query_params.append(('checklist_id', params['checklist_id'])) # noqa: E501 if 'detailed' in params: query_params.append(('detailed', params['detailed'])) # noqa: E501 - if 'dir' in params: - query_params.append(('dir', params['dir'])) # noqa: E501 if 'level' in params: query_params.append(('level', params['level'])) # noqa: E501 if 'limit' in params: query_params.append(('limit', params['limit'])) # noqa: E501 if 'resume' in params: query_params.append(('resume', params['resume'])) # noqa: E501 - if 'sort' in params: - query_params.append(('sort', params['sort'])) # noqa: E501 header_params = {} @@ -2136,7 +1628,7 @@ def list_healthcheck_evaluations_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/healthcheck/evaluations', 'GET', + '/platform/10/healthcheck/evaluations', 'GET', path_params, query_params, header_params, @@ -2354,7 +1846,7 @@ def list_healthcheck_schedules_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/healthcheck/schedules', 'GET', + '/platform/10/healthcheck/schedules', 'GET', path_params, query_params, header_params, @@ -2461,7 +1953,7 @@ def update_healthcheck_checklist_with_http_info(self, healthcheck_checklist, hea auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/20/healthcheck/checklists/{HealthcheckChecklistId}', 'PUT', + '/platform/10/healthcheck/checklists/{HealthcheckChecklistId}', 'PUT', path_params, query_params, header_params, @@ -2568,7 +2060,7 @@ def update_healthcheck_evaluation_with_http_info(self, healthcheck_evaluation, h auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/healthcheck/evaluations/{HealthcheckEvaluationId}', 'PUT', + '/platform/10/healthcheck/evaluations/{HealthcheckEvaluationId}', 'PUT', path_params, query_params, header_params, @@ -2782,7 +2274,7 @@ def update_healthcheck_schedule_with_http_info(self, healthcheck_schedule, healt auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/healthcheck/schedules/{HealthcheckScheduleId}', 'PUT', + '/platform/10/healthcheck/schedules/{HealthcheckScheduleId}', 'PUT', path_params, query_params, header_params, diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/id_resolution_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/id_resolution_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/id_resolution_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/id_resolution_api.py index 9a1c609bb..cd982c818 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/id_resolution_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/id_resolution_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class IdResolutionApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/id_resolution_zones_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/id_resolution_zones_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/id_resolution_zones_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/id_resolution_zones_api.py index a3a5e20d0..0468d8b6d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/id_resolution_zones_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/id_resolution_zones_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class IdResolutionZonesApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/ipmi_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/ipmi_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/ipmi_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/ipmi_api.py index 10a67adf1..df0eae9e8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/ipmi_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/ipmi_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class IpmiApi(object): @@ -1001,7 +1001,7 @@ def update_config_user(self, config_user, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :param ConfigUserExtended config_user: (required) + :param ConfigUserUser config_user: (required) :return: None If the method is called asynchronously, returns the request thread. @@ -1023,7 +1023,7 @@ def update_config_user_with_http_info(self, config_user, **kwargs): # noqa: E50 >>> result = thread.get() :param async_req bool - :param ConfigUserExtended config_user: (required) + :param ConfigUserUser config_user: (required) :return: None If the method is called asynchronously, returns the request thread. diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/job_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/job_api.py similarity index 90% rename from isilon_sdk/isilon_sdk/v9_11_0/api/job_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/job_api.py index 4fbc65b67..dcf024689 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/job_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/job_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class JobApi(object): @@ -117,7 +117,7 @@ def create_job_job_with_http_info(self, job_job, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/job/jobs', 'POST', + '/platform/10/job/jobs', 'POST', path_params, query_params, header_params, @@ -340,8 +340,8 @@ def get_job_events(self, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :param int begin: Restrict the query to events at or after the given time. If positive, this represents seconds since the Epoch; if negative, this represents seconds before the current time. - :param int end: Restrict the query to events before the given time. If positive, this represents seconds since the Epoch; if negative, this represents seconds before the current time. + :param int begin: Restrict the query to events at or after the given time, in seconds since the Epoch. + :param int end: Restrict the query to events before the given time, in seconds since the Epoch. :param bool ended_jobs_only: Request all jobs that ended. This parameter cannot be used with the 'state' parameter. Ended states are 'cancelled_user', 'cancelled_system', 'failed' or 'succeeded' :param int job_id: Restrict the query to the given job ID. :param str job_type: Restrict the query to the given job type. @@ -371,8 +371,8 @@ def get_job_events_with_http_info(self, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :param int begin: Restrict the query to events at or after the given time. If positive, this represents seconds since the Epoch; if negative, this represents seconds before the current time. - :param int end: Restrict the query to events before the given time. If positive, this represents seconds since the Epoch; if negative, this represents seconds before the current time. + :param int begin: Restrict the query to events at or after the given time, in seconds since the Epoch. + :param int end: Restrict the query to events before the given time, in seconds since the Epoch. :param bool ended_jobs_only: Request all jobs that ended. This parameter cannot be used with the 'state' parameter. Ended states are 'cancelled_user', 'cancelled_system', 'failed' or 'succeeded' :param int job_id: Restrict the query to the given job ID. :param str job_type: Restrict the query to the given job type. @@ -555,7 +555,7 @@ def get_job_job_with_http_info(self, job_job_id, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/job/jobs/{JobJobId}', 'GET', + '/platform/10/job/jobs/{JobJobId}', 'GET', path_params, query_params, header_params, @@ -646,7 +646,7 @@ def get_job_job_summary_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/job/job-summary', 'GET', + '/platform/12/job/job-summary', 'GET', path_params, query_params, header_params, @@ -869,8 +869,8 @@ def get_job_reports(self, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :param int begin: Restrict the query to reports at or after the given time. If positive, this represents seconds since the Epoch; if negative, this represents seconds before the current time. - :param int end: Restrict the query to reports before the given time. If positive, this represents seconds since the Epoch; if negative, this represents seconds before the current time; if zero, this represents no end time (no restriction). + :param int begin: Restrict the query to reports at or after the given time, in seconds since the Epoch. + :param int end: Restrict the query to reports before the given time, in seconds since the Epoch. :param int job_id: Restrict the query to the given job ID. :param str job_type: Restrict the query to the given job type. :param str key: Restrict the query to the given report key. @@ -900,8 +900,8 @@ def get_job_reports_with_http_info(self, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :param int begin: Restrict the query to reports at or after the given time. If positive, this represents seconds since the Epoch; if negative, this represents seconds before the current time. - :param int end: Restrict the query to reports before the given time. If positive, this represents seconds since the Epoch; if negative, this represents seconds before the current time; if zero, this represents no end time (no restriction). + :param int begin: Restrict the query to reports at or after the given time, in seconds since the Epoch. + :param int end: Restrict the query to reports before the given time, in seconds since the Epoch. :param int job_id: Restrict the query to the given job ID. :param str job_type: Restrict the query to the given job type. :param str key: Restrict the query to the given report key. @@ -1000,97 +1000,6 @@ def get_job_reports_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_job_settings(self, **kwargs): # noqa: E501 - """get_job_settings # noqa: E501 - - View a subset of Job Engine generic settings. # 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_job_settings(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: JobSettings - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_job_settings_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_job_settings_with_http_info(**kwargs) # noqa: E501 - return data - - def get_job_settings_with_http_info(self, **kwargs): # noqa: E501 - """get_job_settings # noqa: E501 - - View a subset of Job Engine generic settings. # 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_job_settings_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: JobSettings - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_job_settings" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/19/job/settings', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='JobSettings', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - def get_job_statistics(self, **kwargs): # noqa: E501 """get_job_statistics # noqa: E501 @@ -1520,7 +1429,7 @@ def list_job_jobs_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/job/jobs', 'GET', + '/platform/10/job/jobs', 'GET', path_params, query_params, header_params, @@ -1753,7 +1662,7 @@ def update_job_job_with_http_info(self, job_job, job_job_id, **kwargs): # noqa: auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/job/jobs/{JobJobId}', 'PUT', + '/platform/10/job/jobs/{JobJobId}', 'PUT', path_params, query_params, header_params, @@ -1875,105 +1784,6 @@ def update_job_policy_with_http_info(self, job_policy, job_policy_id, **kwargs): _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_job_settings(self, job_settings, **kwargs): # noqa: E501 - """update_job_settings # noqa: E501 - - Modify a subset of Job Engine generic settings. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_job_settings(job_settings, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param JobSettingsSettings job_settings: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.update_job_settings_with_http_info(job_settings, **kwargs) # noqa: E501 - else: - (data) = self.update_job_settings_with_http_info(job_settings, **kwargs) # noqa: E501 - return data - - def update_job_settings_with_http_info(self, job_settings, **kwargs): # noqa: E501 - """update_job_settings # noqa: E501 - - Modify a subset of Job Engine generic settings. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_job_settings_with_http_info(job_settings, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param JobSettingsSettings job_settings: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['job_settings'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method update_job_settings" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'job_settings' is set - if ('job_settings' not in params or - params['job_settings'] is None): - raise ValueError("Missing the required parameter `job_settings` when calling `update_job_settings`") # noqa: E501 - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'job_settings' in params: - body_params = params['job_settings'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/19/job/settings', 'PUT', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - def update_job_type(self, job_type, job_type_id, **kwargs): # noqa: E501 """update_job_type # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/keymanager_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/keymanager_api.py similarity index 59% rename from isilon_sdk/isilon_sdk/v9_11_0/api/keymanager_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/keymanager_api.py index 8e147be30..65249fce5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/keymanager_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/keymanager_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class KeymanagerApi(object): @@ -33,105 +33,6 @@ def __init__(self, api_client=None): api_client = ApiClient() self.api_client = api_client - def create_cluster_rekey_item(self, cluster_rekey_item, **kwargs): # noqa: E501 - """create_cluster_rekey_item # noqa: E501 - - Starts a rekey operation for the provider. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_cluster_rekey_item(cluster_rekey_item, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param ClusterRekeyItem cluster_rekey_item: (required) - :return: CreateClusterRekeyItemResponse - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.create_cluster_rekey_item_with_http_info(cluster_rekey_item, **kwargs) # noqa: E501 - else: - (data) = self.create_cluster_rekey_item_with_http_info(cluster_rekey_item, **kwargs) # noqa: E501 - return data - - def create_cluster_rekey_item_with_http_info(self, cluster_rekey_item, **kwargs): # noqa: E501 - """create_cluster_rekey_item # noqa: E501 - - Starts a rekey operation for the provider. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_cluster_rekey_item_with_http_info(cluster_rekey_item, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param ClusterRekeyItem cluster_rekey_item: (required) - :return: CreateClusterRekeyItemResponse - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['cluster_rekey_item'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method create_cluster_rekey_item" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'cluster_rekey_item' is set - if ('cluster_rekey_item' not in params or - params['cluster_rekey_item'] is None): - raise ValueError("Missing the required parameter `cluster_rekey_item` when calling `create_cluster_rekey_item`") # noqa: E501 - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'cluster_rekey_item' in params: - body_params = params['cluster_rekey_item'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/keymanager/cluster/rekey', 'POST', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='CreateClusterRekeyItemResponse', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - def create_kmip_server(self, kmip_server, **kwargs): # noqa: E501 """create_kmip_server # noqa: E501 @@ -216,7 +117,7 @@ def create_kmip_server_with_http_info(self, kmip_server, **kwargs): # noqa: E50 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/keymanager/kmip/servers', 'POST', + '/platform/12/keymanager/kmip/servers', 'POST', path_params, query_params, header_params, @@ -429,45 +330,45 @@ def create_sed_migrate_item_with_http_info(self, sed_migrate_item, **kwargs): # _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def create_sed_rekey_item(self, sed_rekey_item, **kwargs): # noqa: E501 - """create_sed_rekey_item # noqa: E501 + def delete_kmip_server(self, kmip_server_id, **kwargs): # noqa: E501 + """delete_kmip_server # noqa: E501 - Starts a rekey operation for the seds master key. # noqa: E501 + Delete a KMIP server entry. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_sed_rekey_item(sed_rekey_item, async_req=True) + >>> thread = api.delete_kmip_server(kmip_server_id, async_req=True) >>> result = thread.get() :param async_req bool - :param ClusterRekeyItem sed_rekey_item: (required) - :return: CreateClusterRekeyItemResponse + :param str kmip_server_id: Delete a KMIP server entry. (required) + :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.create_sed_rekey_item_with_http_info(sed_rekey_item, **kwargs) # noqa: E501 + return self.delete_kmip_server_with_http_info(kmip_server_id, **kwargs) # noqa: E501 else: - (data) = self.create_sed_rekey_item_with_http_info(sed_rekey_item, **kwargs) # noqa: E501 + (data) = self.delete_kmip_server_with_http_info(kmip_server_id, **kwargs) # noqa: E501 return data - def create_sed_rekey_item_with_http_info(self, sed_rekey_item, **kwargs): # noqa: E501 - """create_sed_rekey_item # noqa: E501 + def delete_kmip_server_with_http_info(self, kmip_server_id, **kwargs): # noqa: E501 + """delete_kmip_server # noqa: E501 - Starts a rekey operation for the seds master key. # noqa: E501 + Delete a KMIP server entry. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_sed_rekey_item_with_http_info(sed_rekey_item, async_req=True) + >>> thread = api.delete_kmip_server_with_http_info(kmip_server_id, async_req=True) >>> result = thread.get() :param async_req bool - :param ClusterRekeyItem sed_rekey_item: (required) - :return: CreateClusterRekeyItemResponse + :param str kmip_server_id: Delete a KMIP server entry. (required) + :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['sed_rekey_item'] # noqa: E501 + all_params = ['kmip_server_id'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -478,18 +379,20 @@ def create_sed_rekey_item_with_http_info(self, sed_rekey_item, **kwargs): # noq if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method create_sed_rekey_item" % key + " to method delete_kmip_server" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'sed_rekey_item' is set - if ('sed_rekey_item' not in params or - params['sed_rekey_item'] is None): - raise ValueError("Missing the required parameter `sed_rekey_item` when calling `create_sed_rekey_item`") # noqa: E501 + # verify the required parameter 'kmip_server_id' is set + if ('kmip_server_id' not in params or + params['kmip_server_id'] is None): + raise ValueError("Missing the required parameter `kmip_server_id` when calling `delete_kmip_server`") # noqa: E501 collection_formats = {} path_params = {} + if 'kmip_server_id' in params: + path_params['KmipServerId'] = params['kmip_server_id'] # noqa: E501 query_params = [] @@ -499,8 +402,6 @@ def create_sed_rekey_item_with_http_info(self, sed_rekey_item, **kwargs): # noq local_var_files = {} body_params = None - if 'sed_rekey_item' in params: - body_params = params['sed_rekey_item'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -513,14 +414,14 @@ def create_sed_rekey_item_with_http_info(self, sed_rekey_item, **kwargs): # noq auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/keymanager/sed/rekey', 'POST', + '/platform/12/keymanager/kmip/servers/{KmipServerId}', 'DELETE', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='CreateClusterRekeyItemResponse', # noqa: E501 + response_type=None, # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -528,40 +429,40 @@ def create_sed_rekey_item_with_http_info(self, sed_rekey_item, **kwargs): # noq _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def delete_kmip_server(self, kmip_server_id, **kwargs): # noqa: E501 - """delete_kmip_server # noqa: E501 + def get_kmip_server(self, kmip_server_id, **kwargs): # noqa: E501 + """get_kmip_server # noqa: E501 - Delete a KMIP server entry. # noqa: E501 + Retrieve a specific KMIP server entry. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_kmip_server(kmip_server_id, async_req=True) + >>> thread = api.get_kmip_server(kmip_server_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str kmip_server_id: Delete a KMIP server entry. (required) - :return: None + :param str kmip_server_id: Retrieve a specific KMIP server entry. (required) + :return: KmipServers If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.delete_kmip_server_with_http_info(kmip_server_id, **kwargs) # noqa: E501 + return self.get_kmip_server_with_http_info(kmip_server_id, **kwargs) # noqa: E501 else: - (data) = self.delete_kmip_server_with_http_info(kmip_server_id, **kwargs) # noqa: E501 + (data) = self.get_kmip_server_with_http_info(kmip_server_id, **kwargs) # noqa: E501 return data - def delete_kmip_server_with_http_info(self, kmip_server_id, **kwargs): # noqa: E501 - """delete_kmip_server # noqa: E501 + def get_kmip_server_with_http_info(self, kmip_server_id, **kwargs): # noqa: E501 + """get_kmip_server # noqa: E501 - Delete a KMIP server entry. # noqa: E501 + Retrieve a specific KMIP server entry. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_kmip_server_with_http_info(kmip_server_id, async_req=True) + >>> thread = api.get_kmip_server_with_http_info(kmip_server_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str kmip_server_id: Delete a KMIP server entry. (required) - :return: None + :param str kmip_server_id: Retrieve a specific KMIP server entry. (required) + :return: KmipServers If the method is called asynchronously, returns the request thread. """ @@ -577,14 +478,14 @@ def delete_kmip_server_with_http_info(self, kmip_server_id, **kwargs): # noqa: if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method delete_kmip_server" % key + " to method get_kmip_server" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'kmip_server_id' is set if ('kmip_server_id' not in params or params['kmip_server_id'] is None): - raise ValueError("Missing the required parameter `kmip_server_id` when calling `delete_kmip_server`") # noqa: E501 + raise ValueError("Missing the required parameter `kmip_server_id` when calling `get_kmip_server`") # noqa: E501 collection_formats = {} @@ -612,14 +513,14 @@ def delete_kmip_server_with_http_info(self, kmip_server_id, **kwargs): # noqa: auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/keymanager/kmip/servers/{KmipServerId}', 'DELETE', + '/platform/12/keymanager/kmip/servers/{KmipServerId}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type=None, # noqa: E501 + response_type='KmipServers', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -627,45 +528,43 @@ def delete_kmip_server_with_http_info(self, kmip_server_id, **kwargs): # noqa: _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_cluster_status(self, **kwargs): # noqa: E501 - """get_cluster_status # noqa: E501 + def get_sed_settings(self, **kwargs): # noqa: E501 + """get_sed_settings # noqa: E501 - Retrieve all cluster provider domain status. # noqa: E501 + Retrieve Current SED settings. # 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_cluster_status(async_req=True) + >>> thread = api.get_sed_settings(async_req=True) >>> result = thread.get() :param async_req bool - :param int limit: Return no more than this many results at once (see resume). - :return: ClusterStatus + :return: SedSettings If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_cluster_status_with_http_info(**kwargs) # noqa: E501 + return self.get_sed_settings_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.get_cluster_status_with_http_info(**kwargs) # noqa: E501 + (data) = self.get_sed_settings_with_http_info(**kwargs) # noqa: E501 return data - def get_cluster_status_with_http_info(self, **kwargs): # noqa: E501 - """get_cluster_status # noqa: E501 + def get_sed_settings_with_http_info(self, **kwargs): # noqa: E501 + """get_sed_settings # noqa: E501 - Retrieve all cluster provider domain status. # noqa: E501 + Retrieve Current SED settings. # 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_cluster_status_with_http_info(async_req=True) + >>> thread = api.get_sed_settings_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param int limit: Return no more than this many results at once (see resume). - :return: ClusterStatus + :return: SedSettings If the method is called asynchronously, returns the request thread. """ - all_params = ['limit'] # noqa: E501 + all_params = [] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -676,22 +575,16 @@ def get_cluster_status_with_http_info(self, **kwargs): # noqa: E501 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_cluster_status" % key + " to method get_sed_settings" % key ) params[key] = val del params['kwargs'] - if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_cluster_status`, must be a value less than or equal to `4294967295`") # noqa: E501 - if 'limit' in params and params['limit'] < 1: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_cluster_status`, must be a value greater than or equal to `1`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] - if 'limit' in params: - query_params.append(('limit', params['limit'])) # noqa: E501 header_params = {} @@ -711,14 +604,14 @@ def get_cluster_status_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/keymanager/cluster/status', 'GET', + '/platform/12/keymanager/sed/settings', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='ClusterStatus', # noqa: E501 + response_type='SedSettings', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -726,38 +619,38 @@ def get_cluster_status_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_keymanager_cluster(self, **kwargs): # noqa: E501 - """get_keymanager_cluster # noqa: E501 + def get_sed_status(self, **kwargs): # noqa: E501 + """get_sed_status # noqa: E501 - List Key Manager cluster domains. # noqa: E501 + Retrieve SED status on all nodes in this cluster. # 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_keymanager_cluster(async_req=True) + >>> thread = api.get_sed_status(async_req=True) >>> result = thread.get() :param async_req bool - :return: KeymanagerCluster + :return: SedStatusExtended If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_keymanager_cluster_with_http_info(**kwargs) # noqa: E501 + return self.get_sed_status_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.get_keymanager_cluster_with_http_info(**kwargs) # noqa: E501 + (data) = self.get_sed_status_with_http_info(**kwargs) # noqa: E501 return data - def get_keymanager_cluster_with_http_info(self, **kwargs): # noqa: E501 - """get_keymanager_cluster # noqa: E501 + def get_sed_status_with_http_info(self, **kwargs): # noqa: E501 + """get_sed_status # noqa: E501 - List Key Manager cluster domains. # noqa: E501 + Retrieve SED status on all nodes in this cluster. # 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_keymanager_cluster_with_http_info(async_req=True) + >>> thread = api.get_sed_status_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :return: KeymanagerCluster + :return: SedStatusExtended If the method is called asynchronously, returns the request thread. """ @@ -773,7 +666,7 @@ def get_keymanager_cluster_with_http_info(self, **kwargs): # noqa: E501 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_keymanager_cluster" % key + " to method get_sed_status" % key ) params[key] = val del params['kwargs'] @@ -802,14 +695,14 @@ def get_keymanager_cluster_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/keymanager/cluster', 'GET', + '/platform/12/keymanager/sed/status', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='KeymanagerCluster', # noqa: E501 + response_type='SedStatusExtended', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -817,45 +710,45 @@ def get_keymanager_cluster_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_kmip_server(self, kmip_server_id, **kwargs): # noqa: E501 - """get_kmip_server # noqa: E501 + def get_sed_status_lnn(self, sed_status_lnn, **kwargs): # noqa: E501 + """get_sed_status_lnn # noqa: E501 - Retrieve a specific KMIP server entry. # noqa: E501 + Retrieve SED status on a node in this cluster. # 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_kmip_server(kmip_server_id, async_req=True) + >>> thread = api.get_sed_status_lnn(sed_status_lnn, async_req=True) >>> result = thread.get() :param async_req bool - :param str kmip_server_id: Retrieve a specific KMIP server entry. (required) - :return: KmipServers + :param int sed_status_lnn: Retrieve SED status on a node in this cluster. (required) + :return: SedStatus If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_kmip_server_with_http_info(kmip_server_id, **kwargs) # noqa: E501 + return self.get_sed_status_lnn_with_http_info(sed_status_lnn, **kwargs) # noqa: E501 else: - (data) = self.get_kmip_server_with_http_info(kmip_server_id, **kwargs) # noqa: E501 + (data) = self.get_sed_status_lnn_with_http_info(sed_status_lnn, **kwargs) # noqa: E501 return data - def get_kmip_server_with_http_info(self, kmip_server_id, **kwargs): # noqa: E501 - """get_kmip_server # noqa: E501 + def get_sed_status_lnn_with_http_info(self, sed_status_lnn, **kwargs): # noqa: E501 + """get_sed_status_lnn # noqa: E501 - Retrieve a specific KMIP server entry. # noqa: E501 + Retrieve SED status on a node in this cluster. # 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_kmip_server_with_http_info(kmip_server_id, async_req=True) + >>> thread = api.get_sed_status_lnn_with_http_info(sed_status_lnn, async_req=True) >>> result = thread.get() :param async_req bool - :param str kmip_server_id: Retrieve a specific KMIP server entry. (required) - :return: KmipServers + :param int sed_status_lnn: Retrieve SED status on a node in this cluster. (required) + :return: SedStatus If the method is called asynchronously, returns the request thread. """ - all_params = ['kmip_server_id'] # noqa: E501 + all_params = ['sed_status_lnn'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -866,20 +759,20 @@ def get_kmip_server_with_http_info(self, kmip_server_id, **kwargs): # noqa: E50 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_kmip_server" % key + " to method get_sed_status_lnn" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'kmip_server_id' is set - if ('kmip_server_id' not in params or - params['kmip_server_id'] is None): - raise ValueError("Missing the required parameter `kmip_server_id` when calling `get_kmip_server`") # noqa: E501 + # verify the required parameter 'sed_status_lnn' is set + if ('sed_status_lnn' not in params or + params['sed_status_lnn'] is None): + raise ValueError("Missing the required parameter `sed_status_lnn` when calling `get_sed_status_lnn`") # noqa: E501 collection_formats = {} path_params = {} - if 'kmip_server_id' in params: - path_params['KmipServerId'] = params['kmip_server_id'] # noqa: E501 + if 'sed_status_lnn' in params: + path_params['SedStatusLnn'] = params['sed_status_lnn'] # noqa: E501 query_params = [] @@ -901,14 +794,14 @@ def get_kmip_server_with_http_info(self, kmip_server_id, **kwargs): # noqa: E50 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/keymanager/kmip/servers/{KmipServerId}', 'GET', + '/platform/12/keymanager/sed/status/{SedStatusLnn}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='KmipServers', # noqa: E501 + response_type='SedStatus', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -916,43 +809,51 @@ def get_kmip_server_with_http_info(self, kmip_server_id, **kwargs): # noqa: E50 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_sed_settings(self, **kwargs): # noqa: E501 - """get_sed_settings # noqa: E501 + def list_kmip_servers(self, **kwargs): # noqa: E501 + """list_kmip_servers # noqa: E501 - Retrieve Current SED settings. # noqa: E501 + Retrieve a list of configured KMIP server entries. # 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_sed_settings(async_req=True) + >>> thread = api.list_kmip_servers(async_req=True) >>> result = thread.get() :param async_req bool - :return: SedSettings + :param str dir: The direction of the sort. + :param int limit: Return no more than this many results at once (see resume). + :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). + :param str sort: The field that will be used for sorting. + :return: KmipServersExtended If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_sed_settings_with_http_info(**kwargs) # noqa: E501 + return self.list_kmip_servers_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.get_sed_settings_with_http_info(**kwargs) # noqa: E501 + (data) = self.list_kmip_servers_with_http_info(**kwargs) # noqa: E501 return data - def get_sed_settings_with_http_info(self, **kwargs): # noqa: E501 - """get_sed_settings # noqa: E501 + def list_kmip_servers_with_http_info(self, **kwargs): # noqa: E501 + """list_kmip_servers # noqa: E501 - Retrieve Current SED settings. # noqa: E501 + Retrieve a list of configured KMIP server entries. # 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_sed_settings_with_http_info(async_req=True) + >>> thread = api.list_kmip_servers_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :return: SedSettings + :param str dir: The direction of the sort. + :param int limit: Return no more than this many results at once (see resume). + :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). + :param str sort: The field that will be used for sorting. + :return: KmipServersExtended If the method is called asynchronously, returns the request thread. """ - all_params = [] # noqa: E501 + all_params = ['dir', 'limit', 'resume', 'sort'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -963,387 +864,7 @@ def get_sed_settings_with_http_info(self, **kwargs): # noqa: E501 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method get_sed_settings" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/12/keymanager/sed/settings', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='SedSettings', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_sed_status(self, **kwargs): # noqa: E501 - """get_sed_status # noqa: E501 - - Retrieve SED status on all nodes in this cluster. # 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_sed_status(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: SedStatusExtended - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_sed_status_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_sed_status_with_http_info(**kwargs) # noqa: E501 - return data - - def get_sed_status_with_http_info(self, **kwargs): # noqa: E501 - """get_sed_status # noqa: E501 - - Retrieve SED status on all nodes in this cluster. # 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_sed_status_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: SedStatusExtended - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_sed_status" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/keymanager/sed/status', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='SedStatusExtended', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_sed_status_lnn(self, sed_status_lnn, **kwargs): # noqa: E501 - """get_sed_status_lnn # noqa: E501 - - Retrieve SED status on a node in this cluster. # 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_sed_status_lnn(sed_status_lnn, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param int sed_status_lnn: Retrieve SED status on a node in this cluster. (required) - :return: SedStatus - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_sed_status_lnn_with_http_info(sed_status_lnn, **kwargs) # noqa: E501 - else: - (data) = self.get_sed_status_lnn_with_http_info(sed_status_lnn, **kwargs) # noqa: E501 - return data - - def get_sed_status_lnn_with_http_info(self, sed_status_lnn, **kwargs): # noqa: E501 - """get_sed_status_lnn # noqa: E501 - - Retrieve SED status on a node in this cluster. # 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_sed_status_lnn_with_http_info(sed_status_lnn, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param int sed_status_lnn: Retrieve SED status on a node in this cluster. (required) - :return: SedStatus - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['sed_status_lnn'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_sed_status_lnn" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'sed_status_lnn' is set - if ('sed_status_lnn' not in params or - params['sed_status_lnn'] is None): - raise ValueError("Missing the required parameter `sed_status_lnn` when calling `get_sed_status_lnn`") # noqa: E501 - - collection_formats = {} - - path_params = {} - if 'sed_status_lnn' in params: - path_params['SedStatusLnn'] = params['sed_status_lnn'] # noqa: E501 - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/keymanager/sed/status/{SedStatusLnn}', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='SedStatus', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def list_cluster_rekey(self, **kwargs): # noqa: E501 - """list_cluster_rekey # noqa: E501 - - Get master key rotation settings for the provider. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_cluster_rekey(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: ClusterRekey - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.list_cluster_rekey_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.list_cluster_rekey_with_http_info(**kwargs) # noqa: E501 - return data - - def list_cluster_rekey_with_http_info(self, **kwargs): # noqa: E501 - """list_cluster_rekey # noqa: E501 - - Get master key rotation settings for the provider. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_cluster_rekey_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: ClusterRekey - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method list_cluster_rekey" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/keymanager/cluster/rekey', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='ClusterRekey', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def list_kmip_servers(self, **kwargs): # noqa: E501 - """list_kmip_servers # noqa: E501 - - Retrieve a list of configured KMIP server entries. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_kmip_servers(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str dir: The direction of the sort. - :param int limit: Return no more than this many results at once (see resume). - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param str sort: The field that will be used for sorting. - :return: KmipServersExtended - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.list_kmip_servers_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.list_kmip_servers_with_http_info(**kwargs) # noqa: E501 - return data - - def list_kmip_servers_with_http_info(self, **kwargs): # noqa: E501 - """list_kmip_servers # noqa: E501 - - Retrieve a list of configured KMIP server entries. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_kmip_servers_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str dir: The direction of the sort. - :param int limit: Return no more than this many results at once (see resume). - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param str sort: The field that will be used for sorting. - :return: KmipServersExtended - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['dir', 'limit', 'resume', 'sort'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method list_kmip_servers" % key + " to method list_kmip_servers" % key ) params[key] = val del params['kwargs'] @@ -1399,7 +920,7 @@ def list_kmip_servers_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/keymanager/kmip/servers', 'GET', + '/platform/12/keymanager/kmip/servers', 'GET', path_params, query_params, header_params, @@ -1414,196 +935,6 @@ def list_kmip_servers_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def list_sed_rekey(self, **kwargs): # noqa: E501 - """list_sed_rekey # noqa: E501 - - Get rekey rotation settings for the seds master key. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_sed_rekey(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: ClusterRekey - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.list_sed_rekey_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.list_sed_rekey_with_http_info(**kwargs) # noqa: E501 - return data - - def list_sed_rekey_with_http_info(self, **kwargs): # noqa: E501 - """list_sed_rekey # noqa: E501 - - Get rekey rotation settings for the seds master key. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_sed_rekey_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: ClusterRekey - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method list_sed_rekey" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/keymanager/sed/rekey', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='ClusterRekey', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def update_cluster_rekey(self, cluster_rekey, **kwargs): # noqa: E501 - """update_cluster_rekey # noqa: E501 - - Configure rekey rotation for the provider. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_cluster_rekey(cluster_rekey, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param ClusterRekeyExtended cluster_rekey: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.update_cluster_rekey_with_http_info(cluster_rekey, **kwargs) # noqa: E501 - else: - (data) = self.update_cluster_rekey_with_http_info(cluster_rekey, **kwargs) # noqa: E501 - return data - - def update_cluster_rekey_with_http_info(self, cluster_rekey, **kwargs): # noqa: E501 - """update_cluster_rekey # noqa: E501 - - Configure rekey rotation for the provider. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_cluster_rekey_with_http_info(cluster_rekey, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param ClusterRekeyExtended cluster_rekey: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['cluster_rekey'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method update_cluster_rekey" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'cluster_rekey' is set - if ('cluster_rekey' not in params or - params['cluster_rekey'] is None): - raise ValueError("Missing the required parameter `cluster_rekey` when calling `update_cluster_rekey`") # noqa: E501 - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'cluster_rekey' in params: - body_params = params['cluster_rekey'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/keymanager/cluster/rekey', 'PUT', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - def update_kmip_server(self, kmip_server, kmip_server_id, **kwargs): # noqa: E501 """update_kmip_server # noqa: E501 @@ -1696,106 +1027,7 @@ def update_kmip_server_with_http_info(self, kmip_server, kmip_server_id, **kwarg auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/keymanager/kmip/servers/{KmipServerId}', 'PUT', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def update_sed_rekey(self, sed_rekey, **kwargs): # noqa: E501 - """update_sed_rekey # noqa: E501 - - Configure rekey rotation for the seds master key. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_sed_rekey(sed_rekey, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param ClusterRekeyExtended sed_rekey: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.update_sed_rekey_with_http_info(sed_rekey, **kwargs) # noqa: E501 - else: - (data) = self.update_sed_rekey_with_http_info(sed_rekey, **kwargs) # noqa: E501 - return data - - def update_sed_rekey_with_http_info(self, sed_rekey, **kwargs): # noqa: E501 - """update_sed_rekey # noqa: E501 - - Configure rekey rotation for the seds master key. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_sed_rekey_with_http_info(sed_rekey, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param ClusterRekeyExtended sed_rekey: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['sed_rekey'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method update_sed_rekey" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'sed_rekey' is set - if ('sed_rekey' not in params or - params['sed_rekey'] is None): - raise ValueError("Missing the required parameter `sed_rekey` when calling `update_sed_rekey`") # noqa: E501 - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'sed_rekey' in params: - body_params = params['sed_rekey'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/keymanager/sed/rekey', 'PUT', + '/platform/12/keymanager/kmip/servers/{KmipServerId}', 'PUT', path_params, query_params, header_params, diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/lfn_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/lfn_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/lfn_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/lfn_api.py index bbef33f97..aa719adca 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/lfn_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/lfn_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class LfnApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/license_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/license_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/license_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/license_api.py index be25c4966..87cfdfd74 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/license_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/license_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class LicenseApi(object): @@ -216,7 +216,7 @@ def create_license_license_with_http_info(self, license_license, **kwargs): # n auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/17/license/licenses', 'POST', + '/platform/5/license/licenses', 'POST', path_params, query_params, header_params, @@ -449,7 +449,7 @@ def get_license_license_with_http_info(self, license_license_id, **kwargs): # n auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/17/license/licenses/{LicenseLicenseId}', 'GET', + '/platform/5/license/licenses/{LicenseLicenseId}', 'GET', path_params, query_params, header_params, @@ -666,7 +666,7 @@ def list_license_licenses_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/17/license/licenses', 'GET', + '/platform/5/license/licenses', 'GET', path_params, query_params, header_params, diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/local_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/local_api.py similarity index 91% rename from isilon_sdk/isilon_sdk/v9_11_0/api/local_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/local_api.py index 4fff82a5a..197da9ba7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/local_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/local_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class LocalApi(object): @@ -134,13 +134,10 @@ def get_network_interfaces(self, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :param str cache: Control where interface data is sourced from. no-cache only returns live data from a running node, and if a node can't be reached, no results will be returned. cache-only only returns cached data, some fields are set as null/unknown if they can't be determined, and IPs listed are the IPs that should be configured. Finally, nodes-first will try to query live nodes, and fall back to the cache for any nodes that fail. Default: nodes-first + :param str cache: Control where interface data is source from. no-cache only returns live data from a running node, and if a node can't be reached, no results will be returned. cache-only only returns cached data, some fields are set as null/unknown if they can't be determined, and IPs listed are the IPs that should be configured. Finally, nodes-first will try to query live nodes, and fall back to the cache for any nodes that fail. Default: nodes-first :param str dir: The direction of the sort. - :param str flag: Filters results to only show interfaces with the specified flag. Only one flag can be specified. - :param bool include_access_zones: If include_access_zones is set to false, the 'access_zone' field will be set to an empty string. :param bool include_vlans: If include_vlans is set to true, all vlans are returned unless further filtered by vlan_id. If include_vlans is set to false, no vlans are returned. :param int limit: Return no more than this many results at once (see resume). - :param str linklayer: Filters results to only show interfaces with the specified linklayer. Default: all :param list[int] lnn: Get a list of interfaces for the specified lnns. :param str network: Show interfaces associated with external and/or internal networks. Default is 'external' :param str owner: Filter results by owner id. Support partials matches too. Ex owner=groupnet0 or owner=groupnet0.subnet0.pool0. @@ -169,13 +166,10 @@ def get_network_interfaces_with_http_info(self, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :param str cache: Control where interface data is sourced from. no-cache only returns live data from a running node, and if a node can't be reached, no results will be returned. cache-only only returns cached data, some fields are set as null/unknown if they can't be determined, and IPs listed are the IPs that should be configured. Finally, nodes-first will try to query live nodes, and fall back to the cache for any nodes that fail. Default: nodes-first + :param str cache: Control where interface data is source from. no-cache only returns live data from a running node, and if a node can't be reached, no results will be returned. cache-only only returns cached data, some fields are set as null/unknown if they can't be determined, and IPs listed are the IPs that should be configured. Finally, nodes-first will try to query live nodes, and fall back to the cache for any nodes that fail. Default: nodes-first :param str dir: The direction of the sort. - :param str flag: Filters results to only show interfaces with the specified flag. Only one flag can be specified. - :param bool include_access_zones: If include_access_zones is set to false, the 'access_zone' field will be set to an empty string. :param bool include_vlans: If include_vlans is set to true, all vlans are returned unless further filtered by vlan_id. If include_vlans is set to false, no vlans are returned. :param int limit: Return no more than this many results at once (see resume). - :param str linklayer: Filters results to only show interfaces with the specified linklayer. Default: all :param list[int] lnn: Get a list of interfaces for the specified lnns. :param str network: Show interfaces associated with external and/or internal networks. Default is 'external' :param str owner: Filter results by owner id. Support partials matches too. Ex owner=groupnet0 or owner=groupnet0.subnet0.pool0. @@ -188,7 +182,7 @@ def get_network_interfaces_with_http_info(self, **kwargs): # noqa: E501 returns the request thread. """ - all_params = ['cache', 'dir', 'flag', 'include_access_zones', 'include_vlans', 'limit', 'linklayer', 'lnn', 'network', 'owner', 'resume', 'sort', 'type', 'vlan_id'] # noqa: E501 + all_params = ['cache', 'dir', 'include_vlans', 'limit', 'lnn', 'network', 'owner', 'resume', 'sort', 'type', 'vlan_id'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -207,12 +201,6 @@ def get_network_interfaces_with_http_info(self, **kwargs): # noqa: E501 if ('dir' in params and len(params['dir']) < 0): raise ValueError("Invalid value for parameter `dir` when calling `get_network_interfaces`, length must be greater than or equal to `0`") # noqa: E501 - if ('flag' in params and - len(params['flag']) > 255): - raise ValueError("Invalid value for parameter `flag` when calling `get_network_interfaces`, length must be less than or equal to `255`") # noqa: E501 - if ('flag' in params and - len(params['flag']) < 1): - raise ValueError("Invalid value for parameter `flag` when calling `get_network_interfaces`, length must be greater than or equal to `1`") # noqa: E501 if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 raise ValueError("Invalid value for parameter `limit` when calling `get_network_interfaces`, must be a value less than or equal to `4294967295`") # noqa: E501 if 'limit' in params and params['limit'] < 1: # noqa: E501 @@ -248,16 +236,10 @@ def get_network_interfaces_with_http_info(self, **kwargs): # noqa: E501 query_params.append(('cache', params['cache'])) # noqa: E501 if 'dir' in params: query_params.append(('dir', params['dir'])) # noqa: E501 - if 'flag' in params: - query_params.append(('flag', params['flag'])) # noqa: E501 - if 'include_access_zones' in params: - query_params.append(('include_access_zones', params['include_access_zones'])) # noqa: E501 if 'include_vlans' in params: query_params.append(('include_vlans', params['include_vlans'])) # noqa: E501 if 'limit' in params: query_params.append(('limit', params['limit'])) # noqa: E501 - if 'linklayer' in params: - query_params.append(('linklayer', params['linklayer'])) # noqa: E501 if 'lnn' in params: query_params.append(('lnn', params['lnn'])) # noqa: E501 collection_formats['lnn'] = 'csv' # noqa: E501 @@ -292,7 +274,7 @@ def get_network_interfaces_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/local/network/interfaces', 'GET', + '/platform/14/local/network/interfaces', 'GET', path_params, query_params, header_params, diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/local_cluster_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/local_cluster_api.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/api/local_cluster_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/local_cluster_api.py index 982ac4841..fdc0cd821 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/local_cluster_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/local_cluster_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class LocalClusterApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/namespace_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/namespace_api.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/api/namespace_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/namespace_api.py index b0e2ee4b3..edf47cbc8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/namespace_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/namespace_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class NamespaceApi(object): @@ -1188,7 +1188,6 @@ def get_acl(self, namespace_path, acl, **kwargs): # noqa: E501 :param str namespace_path: Namespace path relative to /. (required) :param bool acl: Show access control lists. (required) :param bool nsaccess: Indicates that the operation is on the access point instead of the store path. - :param str zone: Specifies the access zone name. :return: NamespaceAcl If the method is called asynchronously, returns the request thread. @@ -1213,13 +1212,12 @@ def get_acl_with_http_info(self, namespace_path, acl, **kwargs): # noqa: E501 :param str namespace_path: Namespace path relative to /. (required) :param bool acl: Show access control lists. (required) :param bool nsaccess: Indicates that the operation is on the access point instead of the store path. - :param str zone: Specifies the access zone name. :return: NamespaceAcl If the method is called asynchronously, returns the request thread. """ - all_params = ['namespace_path', 'acl', 'nsaccess', 'zone'] # noqa: E501 + all_params = ['namespace_path', 'acl', 'nsaccess'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -1254,8 +1252,6 @@ def get_acl_with_http_info(self, namespace_path, acl, **kwargs): # noqa: E501 query_params.append(('acl', params['acl'])) # noqa: E501 if 'nsaccess' in params: query_params.append(('nsaccess', params['nsaccess'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -1536,7 +1532,6 @@ def get_directory_metadata(self, directory_metadata_path, metadata, **kwargs): :param async_req bool :param str directory_metadata_path: Directory path relative to /. (required) :param bool metadata: Show directory metadata. (required) - :param str zone: Specifies the access zone name. :return: NamespaceMetadataList If the method is called asynchronously, returns the request thread. @@ -1560,13 +1555,12 @@ def get_directory_metadata_with_http_info(self, directory_metadata_path, metadat :param async_req bool :param str directory_metadata_path: Directory path relative to /. (required) :param bool metadata: Show directory metadata. (required) - :param str zone: Specifies the access zone name. :return: NamespaceMetadataList If the method is called asynchronously, returns the request thread. """ - all_params = ['directory_metadata_path', 'metadata', 'zone'] # noqa: E501 + all_params = ['directory_metadata_path', 'metadata'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -1599,8 +1593,6 @@ def get_directory_metadata_with_http_info(self, directory_metadata_path, metadat query_params = [] if 'metadata' in params: query_params.append(('metadata', params['metadata'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -2000,7 +1992,6 @@ def get_file_metadata(self, file_metadata_path, metadata, **kwargs): # noqa: E5 :param async_req bool :param str file_metadata_path: File path relative to /. (required) :param bool metadata: Show file metadata. (required) - :param str zone: Specifies the access zone name. :return: NamespaceMetadataList If the method is called asynchronously, returns the request thread. @@ -2024,13 +2015,12 @@ def get_file_metadata_with_http_info(self, file_metadata_path, metadata, **kwarg :param async_req bool :param str file_metadata_path: File path relative to /. (required) :param bool metadata: Show file metadata. (required) - :param str zone: Specifies the access zone name. :return: NamespaceMetadataList If the method is called asynchronously, returns the request thread. """ - all_params = ['file_metadata_path', 'metadata', 'zone'] # noqa: E501 + all_params = ['file_metadata_path', 'metadata'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2063,8 +2053,6 @@ def get_file_metadata_with_http_info(self, file_metadata_path, metadata, **kwarg query_params = [] if 'metadata' in params: query_params.append(('metadata', params['metadata'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -2791,7 +2779,6 @@ def set_acl(self, namespace_path, acl, namespace_acl, **kwargs): # noqa: E501 :param bool acl: Update access control lists. (required) :param NamespaceAcl namespace_acl: Namespace ACL parameters model. (required) :param bool nsaccess: Indicates that the operation is on the access point instead of the store path. - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. @@ -2817,13 +2804,12 @@ def set_acl_with_http_info(self, namespace_path, acl, namespace_acl, **kwargs): :param bool acl: Update access control lists. (required) :param NamespaceAcl namespace_acl: Namespace ACL parameters model. (required) :param bool nsaccess: Indicates that the operation is on the access point instead of the store path. - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. """ - all_params = ['namespace_path', 'acl', 'namespace_acl', 'nsaccess', 'zone'] # noqa: E501 + all_params = ['namespace_path', 'acl', 'namespace_acl', 'nsaccess'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2862,8 +2848,6 @@ def set_acl_with_http_info(self, namespace_path, acl, namespace_acl, **kwargs): query_params.append(('acl', params['acl'])) # noqa: E501 if 'nsaccess' in params: query_params.append(('nsaccess', params['nsaccess'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -2913,7 +2897,6 @@ def set_directory_metadata(self, directory_metadata_path, metadata, directory_me :param str directory_metadata_path: Directory path relative to /. (required) :param bool metadata: Set directory metadata. (required) :param NamespaceMetadata directory_metadata: Directory metadata parameters model. (required) - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. @@ -2938,13 +2921,12 @@ def set_directory_metadata_with_http_info(self, directory_metadata_path, metadat :param str directory_metadata_path: Directory path relative to /. (required) :param bool metadata: Set directory metadata. (required) :param NamespaceMetadata directory_metadata: Directory metadata parameters model. (required) - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. """ - all_params = ['directory_metadata_path', 'metadata', 'directory_metadata', 'zone'] # noqa: E501 + all_params = ['directory_metadata_path', 'metadata', 'directory_metadata'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2981,8 +2963,6 @@ def set_directory_metadata_with_http_info(self, directory_metadata_path, metadat query_params = [] if 'metadata' in params: query_params.append(('metadata', params['metadata'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -3032,7 +3012,6 @@ def set_file_metadata(self, file_metadata_path, metadata, file_metadata, **kwarg :param str file_metadata_path: File path relative to /. (required) :param bool metadata: Set file metadata. (required) :param NamespaceMetadata file_metadata: File metadata parameters model. (required) - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. @@ -3057,13 +3036,12 @@ def set_file_metadata_with_http_info(self, file_metadata_path, metadata, file_me :param str file_metadata_path: File path relative to /. (required) :param bool metadata: Set file metadata. (required) :param NamespaceMetadata file_metadata: File metadata parameters model. (required) - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. """ - all_params = ['file_metadata_path', 'metadata', 'file_metadata', 'zone'] # noqa: E501 + all_params = ['file_metadata_path', 'metadata', 'file_metadata'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -3100,8 +3078,6 @@ def set_file_metadata_with_http_info(self, file_metadata_path, metadata, file_me query_params = [] if 'metadata' in params: query_params.append(('metadata', params['metadata'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/network_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/network_api.py similarity index 51% rename from isilon_sdk/isilon_sdk/v9_11_0/api/network_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/network_api.py index dda4daa4d..78074abe3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/network_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/network_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class NetworkApi(object): @@ -132,45 +132,45 @@ def create_dnscache_flush_item_with_http_info(self, dnscache_flush_item, **kwarg _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def create_firewall_policy(self, firewall_policy, **kwargs): # noqa: E501 - """create_firewall_policy # noqa: E501 + def create_network_groupnet(self, network_groupnet, **kwargs): # noqa: E501 + """create_network_groupnet # noqa: E501 - Create a new network policy with empty rules. # noqa: E501 + Create a new groupnet. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_firewall_policy(firewall_policy, async_req=True) + >>> thread = api.create_network_groupnet(network_groupnet, async_req=True) >>> result = thread.get() :param async_req bool - :param FirewallPolicyCreateParams firewall_policy: (required) + :param NetworkGroupnetCreateParams network_groupnet: (required) :return: CreateResponse If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.create_firewall_policy_with_http_info(firewall_policy, **kwargs) # noqa: E501 + return self.create_network_groupnet_with_http_info(network_groupnet, **kwargs) # noqa: E501 else: - (data) = self.create_firewall_policy_with_http_info(firewall_policy, **kwargs) # noqa: E501 + (data) = self.create_network_groupnet_with_http_info(network_groupnet, **kwargs) # noqa: E501 return data - def create_firewall_policy_with_http_info(self, firewall_policy, **kwargs): # noqa: E501 - """create_firewall_policy # noqa: E501 + def create_network_groupnet_with_http_info(self, network_groupnet, **kwargs): # noqa: E501 + """create_network_groupnet # noqa: E501 - Create a new network policy with empty rules. # noqa: E501 + Create a new groupnet. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_firewall_policy_with_http_info(firewall_policy, async_req=True) + >>> thread = api.create_network_groupnet_with_http_info(network_groupnet, async_req=True) >>> result = thread.get() :param async_req bool - :param FirewallPolicyCreateParams firewall_policy: (required) + :param NetworkGroupnetCreateParams network_groupnet: (required) :return: CreateResponse If the method is called asynchronously, returns the request thread. """ - all_params = ['firewall_policy'] # noqa: E501 + all_params = ['network_groupnet'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -181,14 +181,14 @@ def create_firewall_policy_with_http_info(self, firewall_policy, **kwargs): # n if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method create_firewall_policy" % key + " to method create_network_groupnet" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'firewall_policy' is set - if ('firewall_policy' not in params or - params['firewall_policy'] is None): - raise ValueError("Missing the required parameter `firewall_policy` when calling `create_firewall_policy`") # noqa: E501 + # verify the required parameter 'network_groupnet' is set + if ('network_groupnet' not in params or + params['network_groupnet'] is None): + raise ValueError("Missing the required parameter `network_groupnet` when calling `create_network_groupnet`") # noqa: E501 collection_formats = {} @@ -202,8 +202,8 @@ def create_firewall_policy_with_http_info(self, firewall_policy, **kwargs): # n local_var_files = {} body_params = None - if 'firewall_policy' in params: - body_params = params['firewall_policy'] + if 'network_groupnet' in params: + body_params = params['network_groupnet'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -216,7 +216,7 @@ def create_firewall_policy_with_http_info(self, firewall_policy, **kwargs): # n auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/network/firewall/policies', 'POST', + '/platform/10/network/groupnets', 'POST', path_params, query_params, header_params, @@ -231,47 +231,45 @@ def create_firewall_policy_with_http_info(self, firewall_policy, **kwargs): # n _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def create_firewall_reset_dscp_setting_item(self, firewall_reset_dscp_setting_item, **kwargs): # noqa: E501 - """create_firewall_reset_dscp_setting_item # noqa: E501 + def create_network_sc_rebalance_all_item(self, network_sc_rebalance_all_item, **kwargs): # noqa: E501 + """create_network_sc_rebalance_all_item # noqa: E501 - Reset DSCP configuration to default. # noqa: E501 + Rebalance IP addresses in all pools. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_firewall_reset_dscp_setting_item(firewall_reset_dscp_setting_item, async_req=True) + >>> thread = api.create_network_sc_rebalance_all_item(network_sc_rebalance_all_item, async_req=True) >>> result = thread.get() :param async_req bool - :param Empty firewall_reset_dscp_setting_item: (required) - :param bool live: Live option must be used when resetting DSCP configuration. If DSCP is enabled, the reset will take effect immediately. + :param Empty network_sc_rebalance_all_item: (required) :return: Empty If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.create_firewall_reset_dscp_setting_item_with_http_info(firewall_reset_dscp_setting_item, **kwargs) # noqa: E501 + return self.create_network_sc_rebalance_all_item_with_http_info(network_sc_rebalance_all_item, **kwargs) # noqa: E501 else: - (data) = self.create_firewall_reset_dscp_setting_item_with_http_info(firewall_reset_dscp_setting_item, **kwargs) # noqa: E501 + (data) = self.create_network_sc_rebalance_all_item_with_http_info(network_sc_rebalance_all_item, **kwargs) # noqa: E501 return data - def create_firewall_reset_dscp_setting_item_with_http_info(self, firewall_reset_dscp_setting_item, **kwargs): # noqa: E501 - """create_firewall_reset_dscp_setting_item # noqa: E501 + def create_network_sc_rebalance_all_item_with_http_info(self, network_sc_rebalance_all_item, **kwargs): # noqa: E501 + """create_network_sc_rebalance_all_item # noqa: E501 - Reset DSCP configuration to default. # noqa: E501 + Rebalance IP addresses in all pools. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_firewall_reset_dscp_setting_item_with_http_info(firewall_reset_dscp_setting_item, async_req=True) + >>> thread = api.create_network_sc_rebalance_all_item_with_http_info(network_sc_rebalance_all_item, async_req=True) >>> result = thread.get() :param async_req bool - :param Empty firewall_reset_dscp_setting_item: (required) - :param bool live: Live option must be used when resetting DSCP configuration. If DSCP is enabled, the reset will take effect immediately. + :param Empty network_sc_rebalance_all_item: (required) :return: Empty If the method is called asynchronously, returns the request thread. """ - all_params = ['firewall_reset_dscp_setting_item', 'live'] # noqa: E501 + all_params = ['network_sc_rebalance_all_item'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -282,22 +280,20 @@ def create_firewall_reset_dscp_setting_item_with_http_info(self, firewall_reset_ if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method create_firewall_reset_dscp_setting_item" % key + " to method create_network_sc_rebalance_all_item" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'firewall_reset_dscp_setting_item' is set - if ('firewall_reset_dscp_setting_item' not in params or - params['firewall_reset_dscp_setting_item'] is None): - raise ValueError("Missing the required parameter `firewall_reset_dscp_setting_item` when calling `create_firewall_reset_dscp_setting_item`") # noqa: E501 + # verify the required parameter 'network_sc_rebalance_all_item' is set + if ('network_sc_rebalance_all_item' not in params or + params['network_sc_rebalance_all_item'] is None): + raise ValueError("Missing the required parameter `network_sc_rebalance_all_item` when calling `create_network_sc_rebalance_all_item`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] - if 'live' in params: - query_params.append(('live', params['live'])) # noqa: E501 header_params = {} @@ -305,8 +301,8 @@ def create_firewall_reset_dscp_setting_item_with_http_info(self, firewall_reset_ local_var_files = {} body_params = None - if 'firewall_reset_dscp_setting_item' in params: - body_params = params['firewall_reset_dscp_setting_item'] + if 'network_sc_rebalance_all_item' in params: + body_params = params['network_sc_rebalance_all_item'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -319,7 +315,7 @@ def create_firewall_reset_dscp_setting_item_with_http_info(self, firewall_reset_ auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/20/network/firewall/reset-dscp-setting', 'POST', + '/platform/3/network/sc-rebalance-all', 'POST', path_params, query_params, header_params, @@ -334,47 +330,45 @@ def create_firewall_reset_dscp_setting_item_with_http_info(self, firewall_reset_ _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def create_firewall_reset_global_policy_item(self, firewall_reset_global_policy_item, **kwargs): # noqa: E501 - """create_firewall_reset_global_policy_item # noqa: E501 + def delete_network_groupnet(self, network_groupnet_id, **kwargs): # noqa: E501 + """delete_network_groupnet # noqa: E501 - Reset global policies to default. # noqa: E501 + Delete a network groupnet. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_firewall_reset_global_policy_item(firewall_reset_global_policy_item, async_req=True) + >>> thread = api.delete_network_groupnet(network_groupnet_id, async_req=True) >>> result = thread.get() :param async_req bool - :param Empty firewall_reset_global_policy_item: (required) - :param bool live: Live option must be used with global policies. Such reset will take effect immediately. - :return: Empty + :param str network_groupnet_id: Delete a network groupnet. (required) + :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.create_firewall_reset_global_policy_item_with_http_info(firewall_reset_global_policy_item, **kwargs) # noqa: E501 + return self.delete_network_groupnet_with_http_info(network_groupnet_id, **kwargs) # noqa: E501 else: - (data) = self.create_firewall_reset_global_policy_item_with_http_info(firewall_reset_global_policy_item, **kwargs) # noqa: E501 + (data) = self.delete_network_groupnet_with_http_info(network_groupnet_id, **kwargs) # noqa: E501 return data - def create_firewall_reset_global_policy_item_with_http_info(self, firewall_reset_global_policy_item, **kwargs): # noqa: E501 - """create_firewall_reset_global_policy_item # noqa: E501 + def delete_network_groupnet_with_http_info(self, network_groupnet_id, **kwargs): # noqa: E501 + """delete_network_groupnet # noqa: E501 - Reset global policies to default. # noqa: E501 + Delete a network groupnet. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_firewall_reset_global_policy_item_with_http_info(firewall_reset_global_policy_item, async_req=True) + >>> thread = api.delete_network_groupnet_with_http_info(network_groupnet_id, async_req=True) >>> result = thread.get() :param async_req bool - :param Empty firewall_reset_global_policy_item: (required) - :param bool live: Live option must be used with global policies. Such reset will take effect immediately. - :return: Empty + :param str network_groupnet_id: Delete a network groupnet. (required) + :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['firewall_reset_global_policy_item', 'live'] # noqa: E501 + all_params = ['network_groupnet_id'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -385,22 +379,22 @@ def create_firewall_reset_global_policy_item_with_http_info(self, firewall_reset if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method create_firewall_reset_global_policy_item" % key + " to method delete_network_groupnet" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'firewall_reset_global_policy_item' is set - if ('firewall_reset_global_policy_item' not in params or - params['firewall_reset_global_policy_item'] is None): - raise ValueError("Missing the required parameter `firewall_reset_global_policy_item` when calling `create_firewall_reset_global_policy_item`") # noqa: E501 + # verify the required parameter 'network_groupnet_id' is set + if ('network_groupnet_id' not in params or + params['network_groupnet_id'] is None): + raise ValueError("Missing the required parameter `network_groupnet_id` when calling `delete_network_groupnet`") # noqa: E501 collection_formats = {} path_params = {} + if 'network_groupnet_id' in params: + path_params['NetworkGroupnetId'] = params['network_groupnet_id'] # noqa: E501 query_params = [] - if 'live' in params: - query_params.append(('live', params['live'])) # noqa: E501 header_params = {} @@ -408,8 +402,6 @@ def create_firewall_reset_global_policy_item_with_http_info(self, firewall_reset local_var_files = {} body_params = None - if 'firewall_reset_global_policy_item' in params: - body_params = params['firewall_reset_global_policy_item'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -422,14 +414,14 @@ def create_firewall_reset_global_policy_item_with_http_info(self, firewall_reset auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/network/firewall/reset-global-policy', 'POST', + '/platform/10/network/groupnets/{NetworkGroupnetId}', 'DELETE', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='Empty', # noqa: E501 + response_type=None, # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -437,45 +429,43 @@ def create_firewall_reset_global_policy_item_with_http_info(self, firewall_reset _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def create_network_groupnet(self, network_groupnet, **kwargs): # noqa: E501 - """create_network_groupnet # noqa: E501 + def get_network_dnscache(self, **kwargs): # noqa: E501 + """get_network_dnscache # noqa: E501 - Create a new groupnet. # noqa: E501 + View network dns cache settings. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_network_groupnet(network_groupnet, async_req=True) + >>> thread = api.get_network_dnscache(async_req=True) >>> result = thread.get() :param async_req bool - :param NetworkGroupnetCreateParams network_groupnet: (required) - :return: CreateResponse + :return: NetworkDnscache If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.create_network_groupnet_with_http_info(network_groupnet, **kwargs) # noqa: E501 + return self.get_network_dnscache_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.create_network_groupnet_with_http_info(network_groupnet, **kwargs) # noqa: E501 + (data) = self.get_network_dnscache_with_http_info(**kwargs) # noqa: E501 return data - def create_network_groupnet_with_http_info(self, network_groupnet, **kwargs): # noqa: E501 - """create_network_groupnet # noqa: E501 + def get_network_dnscache_with_http_info(self, **kwargs): # noqa: E501 + """get_network_dnscache # noqa: E501 - Create a new groupnet. # noqa: E501 + View network dns cache settings. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_network_groupnet_with_http_info(network_groupnet, async_req=True) + >>> thread = api.get_network_dnscache_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param NetworkGroupnetCreateParams network_groupnet: (required) - :return: CreateResponse + :return: NetworkDnscache If the method is called asynchronously, returns the request thread. """ - all_params = ['network_groupnet'] # noqa: E501 + all_params = [] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -486,14 +476,10 @@ def create_network_groupnet_with_http_info(self, network_groupnet, **kwargs): # if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method create_network_groupnet" % key + " to method get_network_dnscache" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'network_groupnet' is set - if ('network_groupnet' not in params or - params['network_groupnet'] is None): - raise ValueError("Missing the required parameter `network_groupnet` when calling `create_network_groupnet`") # noqa: E501 collection_formats = {} @@ -507,8 +493,6 @@ def create_network_groupnet_with_http_info(self, network_groupnet, **kwargs): # local_var_files = {} body_params = None - if 'network_groupnet' in params: - body_params = params['network_groupnet'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -521,14 +505,14 @@ def create_network_groupnet_with_http_info(self, network_groupnet, **kwargs): # auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/10/network/groupnets', 'POST', + '/platform/3/network/dnscache', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='CreateResponse', # noqa: E501 + response_type='NetworkDnscache', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -536,45 +520,43 @@ def create_network_groupnet_with_http_info(self, network_groupnet, **kwargs): # _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def create_network_sc_rebalance_all_item(self, network_sc_rebalance_all_item, **kwargs): # noqa: E501 - """create_network_sc_rebalance_all_item # noqa: E501 + def get_network_external(self, **kwargs): # noqa: E501 + """get_network_external # noqa: E501 - Rebalance IP addresses in all pools. # noqa: E501 + View external network settings. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_network_sc_rebalance_all_item(network_sc_rebalance_all_item, async_req=True) + >>> thread = api.get_network_external(async_req=True) >>> result = thread.get() :param async_req bool - :param Empty network_sc_rebalance_all_item: (required) - :return: Empty + :return: NetworkExternal If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.create_network_sc_rebalance_all_item_with_http_info(network_sc_rebalance_all_item, **kwargs) # noqa: E501 + return self.get_network_external_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.create_network_sc_rebalance_all_item_with_http_info(network_sc_rebalance_all_item, **kwargs) # noqa: E501 + (data) = self.get_network_external_with_http_info(**kwargs) # noqa: E501 return data - def create_network_sc_rebalance_all_item_with_http_info(self, network_sc_rebalance_all_item, **kwargs): # noqa: E501 - """create_network_sc_rebalance_all_item # noqa: E501 + def get_network_external_with_http_info(self, **kwargs): # noqa: E501 + """get_network_external # noqa: E501 - Rebalance IP addresses in all pools. # noqa: E501 + View external network settings. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.create_network_sc_rebalance_all_item_with_http_info(network_sc_rebalance_all_item, async_req=True) + >>> thread = api.get_network_external_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param Empty network_sc_rebalance_all_item: (required) - :return: Empty + :return: NetworkExternal If the method is called asynchronously, returns the request thread. """ - all_params = ['network_sc_rebalance_all_item'] # noqa: E501 + all_params = [] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -585,14 +567,10 @@ def create_network_sc_rebalance_all_item_with_http_info(self, network_sc_rebalan if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method create_network_sc_rebalance_all_item" % key + " to method get_network_external" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'network_sc_rebalance_all_item' is set - if ('network_sc_rebalance_all_item' not in params or - params['network_sc_rebalance_all_item'] is None): - raise ValueError("Missing the required parameter `network_sc_rebalance_all_item` when calling `create_network_sc_rebalance_all_item`") # noqa: E501 collection_formats = {} @@ -606,8 +584,6 @@ def create_network_sc_rebalance_all_item_with_http_info(self, network_sc_rebalan local_var_files = {} body_params = None - if 'network_sc_rebalance_all_item' in params: - body_params = params['network_sc_rebalance_all_item'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -620,14 +596,14 @@ def create_network_sc_rebalance_all_item_with_http_info(self, network_sc_rebalan auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/3/network/sc-rebalance-all', 'POST', + '/platform/12/network/external', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='Empty', # noqa: E501 + response_type='NetworkExternal', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -635,45 +611,45 @@ def create_network_sc_rebalance_all_item_with_http_info(self, network_sc_rebalan _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def delete_firewall_policy(self, firewall_policy_id, **kwargs): # noqa: E501 - """delete_firewall_policy # noqa: E501 + def get_network_groupnet(self, network_groupnet_id, **kwargs): # noqa: E501 + """get_network_groupnet # noqa: E501 - Delete a network firewall policy. # noqa: E501 + View a network groupnet. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_firewall_policy(firewall_policy_id, async_req=True) + >>> thread = api.get_network_groupnet(network_groupnet_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str firewall_policy_id: Delete a network firewall policy. (required) - :return: None + :param str network_groupnet_id: View a network groupnet. (required) + :return: NetworkGroupnets If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.delete_firewall_policy_with_http_info(firewall_policy_id, **kwargs) # noqa: E501 + return self.get_network_groupnet_with_http_info(network_groupnet_id, **kwargs) # noqa: E501 else: - (data) = self.delete_firewall_policy_with_http_info(firewall_policy_id, **kwargs) # noqa: E501 + (data) = self.get_network_groupnet_with_http_info(network_groupnet_id, **kwargs) # noqa: E501 return data - def delete_firewall_policy_with_http_info(self, firewall_policy_id, **kwargs): # noqa: E501 - """delete_firewall_policy # noqa: E501 + def get_network_groupnet_with_http_info(self, network_groupnet_id, **kwargs): # noqa: E501 + """get_network_groupnet # noqa: E501 - Delete a network firewall policy. # noqa: E501 + View a network groupnet. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_firewall_policy_with_http_info(firewall_policy_id, async_req=True) + >>> thread = api.get_network_groupnet_with_http_info(network_groupnet_id, async_req=True) >>> result = thread.get() :param async_req bool - :param str firewall_policy_id: Delete a network firewall policy. (required) - :return: None + :param str network_groupnet_id: View a network groupnet. (required) + :return: NetworkGroupnets If the method is called asynchronously, returns the request thread. """ - all_params = ['firewall_policy_id'] # noqa: E501 + all_params = ['network_groupnet_id'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -684,20 +660,20 @@ def delete_firewall_policy_with_http_info(self, firewall_policy_id, **kwargs): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method delete_firewall_policy" % key + " to method get_network_groupnet" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'firewall_policy_id' is set - if ('firewall_policy_id' not in params or - params['firewall_policy_id'] is None): - raise ValueError("Missing the required parameter `firewall_policy_id` when calling `delete_firewall_policy`") # noqa: E501 + # verify the required parameter 'network_groupnet_id' is set + if ('network_groupnet_id' not in params or + params['network_groupnet_id'] is None): + raise ValueError("Missing the required parameter `network_groupnet_id` when calling `get_network_groupnet`") # noqa: E501 collection_formats = {} path_params = {} - if 'firewall_policy_id' in params: - path_params['FirewallPolicyId'] = params['firewall_policy_id'] # noqa: E501 + if 'network_groupnet_id' in params: + path_params['NetworkGroupnetId'] = params['network_groupnet_id'] # noqa: E501 query_params = [] @@ -719,14 +695,14 @@ def delete_firewall_policy_with_http_info(self, firewall_policy_id, **kwargs): auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/network/firewall/policies/{FirewallPolicyId}', 'DELETE', + '/platform/10/network/groupnets/{NetworkGroupnetId}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type=None, # noqa: E501 + response_type='NetworkGroupnets', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -734,45 +710,65 @@ def delete_firewall_policy_with_http_info(self, firewall_policy_id, **kwargs): _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def delete_network_groupnet(self, network_groupnet_id, **kwargs): # noqa: E501 - """delete_network_groupnet # noqa: E501 + def get_network_interfaces(self, **kwargs): # noqa: E501 + """get_network_interfaces # noqa: E501 - Delete a network groupnet. # noqa: E501 + Get a list of interfaces. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_network_groupnet(network_groupnet_id, async_req=True) + >>> thread = api.get_network_interfaces(async_req=True) >>> result = thread.get() :param async_req bool - :param str network_groupnet_id: Delete a network groupnet. (required) - :return: None + :param str cache: Control where interface data is source from. no-cache only returns live data from a running node, and if a node can't be reached, no results will be returned. cache-only only returns cached data, some fields are set as null/unknown if they can't be determined, and IPs listed are the IPs that should be configured. Finally, nodes-first will try to query live nodes, and fall back to the cache for any nodes that fail. Default: nodes-first + :param str dir: The direction of the sort. + :param bool include_vlans: If include_vlans is set to true, all vlans are returned unless further filtered by vlan_id. If include_vlans is set to false, no vlans are returned. + :param int limit: Return no more than this many results at once (see resume). + :param list[int] lnn: Get a list of interfaces for the specified lnns. + :param str network: Show interfaces associated with external and/or internal networks. Default is 'external' + :param str owner: Filter results by owner id. Support partials matches too. Ex owner=groupnet0 or owner=groupnet0.subnet0.pool0. + :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). + :param str sort: The field that will be used for sorting. + :param str type: Filter the returned IPs by IP type. + :param int vlan_id: Only return IPs/interfaces configured in the specified VLAN ID + :return: NetworkInterfacesExtended If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.delete_network_groupnet_with_http_info(network_groupnet_id, **kwargs) # noqa: E501 + return self.get_network_interfaces_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.delete_network_groupnet_with_http_info(network_groupnet_id, **kwargs) # noqa: E501 + (data) = self.get_network_interfaces_with_http_info(**kwargs) # noqa: E501 return data - def delete_network_groupnet_with_http_info(self, network_groupnet_id, **kwargs): # noqa: E501 - """delete_network_groupnet # noqa: E501 + def get_network_interfaces_with_http_info(self, **kwargs): # noqa: E501 + """get_network_interfaces # noqa: E501 - Delete a network groupnet. # noqa: E501 + Get a list of interfaces. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_network_groupnet_with_http_info(network_groupnet_id, async_req=True) + >>> thread = api.get_network_interfaces_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param str network_groupnet_id: Delete a network groupnet. (required) - :return: None + :param str cache: Control where interface data is source from. no-cache only returns live data from a running node, and if a node can't be reached, no results will be returned. cache-only only returns cached data, some fields are set as null/unknown if they can't be determined, and IPs listed are the IPs that should be configured. Finally, nodes-first will try to query live nodes, and fall back to the cache for any nodes that fail. Default: nodes-first + :param str dir: The direction of the sort. + :param bool include_vlans: If include_vlans is set to true, all vlans are returned unless further filtered by vlan_id. If include_vlans is set to false, no vlans are returned. + :param int limit: Return no more than this many results at once (see resume). + :param list[int] lnn: Get a list of interfaces for the specified lnns. + :param str network: Show interfaces associated with external and/or internal networks. Default is 'external' + :param str owner: Filter results by owner id. Support partials matches too. Ex owner=groupnet0 or owner=groupnet0.subnet0.pool0. + :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). + :param str sort: The field that will be used for sorting. + :param str type: Filter the returned IPs by IP type. + :param int vlan_id: Only return IPs/interfaces configured in the specified VLAN ID + :return: NetworkInterfacesExtended If the method is called asynchronously, returns the request thread. """ - all_params = ['network_groupnet_id'] # noqa: E501 + all_params = ['cache', 'dir', 'include_vlans', 'limit', 'lnn', 'network', 'owner', 'resume', 'sort', 'type', 'vlan_id'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -783,1757 +779,68 @@ def delete_network_groupnet_with_http_info(self, network_groupnet_id, **kwargs): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method delete_network_groupnet" % key + " to method get_network_interfaces" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'network_groupnet_id' is set - if ('network_groupnet_id' not in params or - params['network_groupnet_id'] is None): - raise ValueError("Missing the required parameter `network_groupnet_id` when calling `delete_network_groupnet`") # noqa: E501 - collection_formats = {} - - path_params = {} - if 'network_groupnet_id' in params: - path_params['NetworkGroupnetId'] = params['network_groupnet_id'] # noqa: E501 - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/10/network/groupnets/{NetworkGroupnetId}', 'DELETE', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_firewall_dscp(self, **kwargs): # noqa: E501 - """get_firewall_dscp # noqa: E501 - - Get a list of DSCP rules. # 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_firewall_dscp(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: FirewallDscpExtended - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_firewall_dscp_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_firewall_dscp_with_http_info(**kwargs) # noqa: E501 - return data - - def get_firewall_dscp_with_http_info(self, **kwargs): # noqa: E501 - """get_firewall_dscp # noqa: E501 - - Get a list of DSCP rules. # 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_firewall_dscp_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: FirewallDscpExtended - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_firewall_dscp" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/20/network/firewall/dscp', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='FirewallDscpExtended', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_firewall_dscp_rule(self, firewall_dscp_rule, **kwargs): # noqa: E501 - """get_firewall_dscp_rule # noqa: E501 - - View a DSCP rule. # 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_firewall_dscp_rule(firewall_dscp_rule, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str firewall_dscp_rule: View a DSCP rule. (required) - :return: FirewallDscp - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_firewall_dscp_rule_with_http_info(firewall_dscp_rule, **kwargs) # noqa: E501 - else: - (data) = self.get_firewall_dscp_rule_with_http_info(firewall_dscp_rule, **kwargs) # noqa: E501 - return data - - def get_firewall_dscp_rule_with_http_info(self, firewall_dscp_rule, **kwargs): # noqa: E501 - """get_firewall_dscp_rule # noqa: E501 - - View a DSCP rule. # 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_firewall_dscp_rule_with_http_info(firewall_dscp_rule, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str firewall_dscp_rule: View a DSCP rule. (required) - :return: FirewallDscp - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['firewall_dscp_rule'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_firewall_dscp_rule" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'firewall_dscp_rule' is set - if ('firewall_dscp_rule' not in params or - params['firewall_dscp_rule'] is None): - raise ValueError("Missing the required parameter `firewall_dscp_rule` when calling `get_firewall_dscp_rule`") # noqa: E501 - - collection_formats = {} - - path_params = {} - if 'firewall_dscp_rule' in params: - path_params['FirewallDscpRule'] = params['firewall_dscp_rule'] # noqa: E501 - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/20/network/firewall/dscp/{FirewallDscpRule}', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='FirewallDscp', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_firewall_policy(self, firewall_policy_id, **kwargs): # noqa: E501 - """get_firewall_policy # noqa: E501 - - View a network firewall policy. # 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_firewall_policy(firewall_policy_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str firewall_policy_id: View a network firewall policy. (required) - :return: FirewallPolicies - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_firewall_policy_with_http_info(firewall_policy_id, **kwargs) # noqa: E501 - else: - (data) = self.get_firewall_policy_with_http_info(firewall_policy_id, **kwargs) # noqa: E501 - return data - - def get_firewall_policy_with_http_info(self, firewall_policy_id, **kwargs): # noqa: E501 - """get_firewall_policy # noqa: E501 - - View a network firewall policy. # 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_firewall_policy_with_http_info(firewall_policy_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str firewall_policy_id: View a network firewall policy. (required) - :return: FirewallPolicies - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['firewall_policy_id'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_firewall_policy" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'firewall_policy_id' is set - if ('firewall_policy_id' not in params or - params['firewall_policy_id'] is None): - raise ValueError("Missing the required parameter `firewall_policy_id` when calling `get_firewall_policy`") # noqa: E501 - - collection_formats = {} - - path_params = {} - if 'firewall_policy_id' in params: - path_params['FirewallPolicyId'] = params['firewall_policy_id'] # noqa: E501 - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/network/firewall/policies/{FirewallPolicyId}', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='FirewallPolicies', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_firewall_rules(self, **kwargs): # noqa: E501 - """get_firewall_rules # noqa: E501 - - Get a list of all firewall rules. # 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_firewall_rules(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str dir: The direction of the sort. - :param int limit: Return no more than this many results at once (see resume). - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param str sort: The field that will be used for sorting. - :return: FirewallRules - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_firewall_rules_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_firewall_rules_with_http_info(**kwargs) # noqa: E501 - return data - - def get_firewall_rules_with_http_info(self, **kwargs): # noqa: E501 - """get_firewall_rules # noqa: E501 - - Get a list of all firewall rules. # 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_firewall_rules_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str dir: The direction of the sort. - :param int limit: Return no more than this many results at once (see resume). - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param str sort: The field that will be used for sorting. - :return: FirewallRules - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['dir', 'limit', 'resume', 'sort'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_firewall_rules" % key - ) - params[key] = val - del params['kwargs'] - - if ('dir' in params and - len(params['dir']) < 0): - raise ValueError("Invalid value for parameter `dir` when calling `get_firewall_rules`, length must be greater than or equal to `0`") # noqa: E501 - if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_firewall_rules`, must be a value less than or equal to `4294967295`") # noqa: E501 - if 'limit' in params and params['limit'] < 1: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_firewall_rules`, must be a value greater than or equal to `1`") # noqa: E501 - if ('resume' in params and - len(params['resume']) > 8192): - raise ValueError("Invalid value for parameter `resume` when calling `get_firewall_rules`, length must be less than or equal to `8192`") # noqa: E501 - if ('resume' in params and - len(params['resume']) < 0): - raise ValueError("Invalid value for parameter `resume` when calling `get_firewall_rules`, length must be greater than or equal to `0`") # noqa: E501 - if ('sort' in params and - len(params['sort']) > 255): - raise ValueError("Invalid value for parameter `sort` when calling `get_firewall_rules`, length must be less than or equal to `255`") # noqa: E501 - if ('sort' in params and - len(params['sort']) < 0): - raise ValueError("Invalid value for parameter `sort` when calling `get_firewall_rules`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'dir' in params: - query_params.append(('dir', params['dir'])) # noqa: E501 - if 'limit' in params: - query_params.append(('limit', params['limit'])) # noqa: E501 - if 'resume' in params: - query_params.append(('resume', params['resume'])) # noqa: E501 - if 'sort' in params: - query_params.append(('sort', params['sort'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/network/firewall/rules', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='FirewallRules', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_firewall_services(self, **kwargs): # noqa: E501 - """get_firewall_services # noqa: E501 - - View network firewall default services. # 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_firewall_services(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str dir: The direction of the sort. - :param int limit: Return no more than this many results at once (see resume). - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param str sort: The field that will be used for sorting. - :return: FirewallServices - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_firewall_services_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_firewall_services_with_http_info(**kwargs) # noqa: E501 - return data - - def get_firewall_services_with_http_info(self, **kwargs): # noqa: E501 - """get_firewall_services # noqa: E501 - - View network firewall default services. # 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_firewall_services_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str dir: The direction of the sort. - :param int limit: Return no more than this many results at once (see resume). - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param str sort: The field that will be used for sorting. - :return: FirewallServices - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['dir', 'limit', 'resume', 'sort'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_firewall_services" % key - ) - params[key] = val - del params['kwargs'] - - if ('dir' in params and - len(params['dir']) < 0): - raise ValueError("Invalid value for parameter `dir` when calling `get_firewall_services`, length must be greater than or equal to `0`") # noqa: E501 - if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_firewall_services`, must be a value less than or equal to `4294967295`") # noqa: E501 - if 'limit' in params and params['limit'] < 1: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_firewall_services`, must be a value greater than or equal to `1`") # noqa: E501 - if ('resume' in params and - len(params['resume']) > 8192): - raise ValueError("Invalid value for parameter `resume` when calling `get_firewall_services`, length must be less than or equal to `8192`") # noqa: E501 - if ('resume' in params and - len(params['resume']) < 0): - raise ValueError("Invalid value for parameter `resume` when calling `get_firewall_services`, length must be greater than or equal to `0`") # noqa: E501 - if ('sort' in params and - len(params['sort']) > 255): - raise ValueError("Invalid value for parameter `sort` when calling `get_firewall_services`, length must be less than or equal to `255`") # noqa: E501 - if ('sort' in params and - len(params['sort']) < 0): - raise ValueError("Invalid value for parameter `sort` when calling `get_firewall_services`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'dir' in params: - query_params.append(('dir', params['dir'])) # noqa: E501 - if 'limit' in params: - query_params.append(('limit', params['limit'])) # noqa: E501 - if 'resume' in params: - query_params.append(('resume', params['resume'])) # noqa: E501 - if 'sort' in params: - query_params.append(('sort', params['sort'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/network/firewall/services', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='FirewallServices', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_firewall_settings(self, **kwargs): # noqa: E501 - """get_firewall_settings # noqa: E501 - - View network firewall settings. # 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_firewall_settings(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: FirewallSettings - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_firewall_settings_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_firewall_settings_with_http_info(**kwargs) # noqa: E501 - return data - - def get_firewall_settings_with_http_info(self, **kwargs): # noqa: E501 - """get_firewall_settings # noqa: E501 - - View network firewall settings. # 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_firewall_settings_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: FirewallSettings - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_firewall_settings" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/20/network/firewall/settings', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='FirewallSettings', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_network_dnscache(self, **kwargs): # noqa: E501 - """get_network_dnscache # noqa: E501 - - View network dns cache settings. # 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_network_dnscache(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: NetworkDnscache - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_network_dnscache_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_network_dnscache_with_http_info(**kwargs) # noqa: E501 - return data - - def get_network_dnscache_with_http_info(self, **kwargs): # noqa: E501 - """get_network_dnscache # noqa: E501 - - View network dns cache settings. # 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_network_dnscache_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: NetworkDnscache - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_network_dnscache" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/3/network/dnscache', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='NetworkDnscache', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_network_external(self, **kwargs): # noqa: E501 - """get_network_external # noqa: E501 - - View external network settings. # 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_network_external(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: NetworkExternal - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_network_external_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_network_external_with_http_info(**kwargs) # noqa: E501 - return data - - def get_network_external_with_http_info(self, **kwargs): # noqa: E501 - """get_network_external # noqa: E501 - - View external network settings. # 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_network_external_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: NetworkExternal - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_network_external" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/network/external', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='NetworkExternal', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_network_groupnet(self, network_groupnet_id, **kwargs): # noqa: E501 - """get_network_groupnet # noqa: E501 - - View a network groupnet. # 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_network_groupnet(network_groupnet_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str network_groupnet_id: View a network groupnet. (required) - :return: NetworkGroupnets - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_network_groupnet_with_http_info(network_groupnet_id, **kwargs) # noqa: E501 - else: - (data) = self.get_network_groupnet_with_http_info(network_groupnet_id, **kwargs) # noqa: E501 - return data - - def get_network_groupnet_with_http_info(self, network_groupnet_id, **kwargs): # noqa: E501 - """get_network_groupnet # noqa: E501 - - View a network groupnet. # 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_network_groupnet_with_http_info(network_groupnet_id, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str network_groupnet_id: View a network groupnet. (required) - :return: NetworkGroupnets - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['network_groupnet_id'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_network_groupnet" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'network_groupnet_id' is set - if ('network_groupnet_id' not in params or - params['network_groupnet_id'] is None): - raise ValueError("Missing the required parameter `network_groupnet_id` when calling `get_network_groupnet`") # noqa: E501 - - collection_formats = {} - - path_params = {} - if 'network_groupnet_id' in params: - path_params['NetworkGroupnetId'] = params['network_groupnet_id'] # noqa: E501 - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/10/network/groupnets/{NetworkGroupnetId}', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='NetworkGroupnets', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_network_interface_names(self, **kwargs): # noqa: E501 - """get_network_interface_names # noqa: E501 - - Get a list of supported interface names. # 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_network_interface_names(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str linklayer: Filter the names of supported interfaces by linklayer. - :return: NetworkInterfaceNames - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_network_interface_names_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_network_interface_names_with_http_info(**kwargs) # noqa: E501 - return data - - def get_network_interface_names_with_http_info(self, **kwargs): # noqa: E501 - """get_network_interface_names # noqa: E501 - - Get a list of supported interface names. # 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_network_interface_names_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str linklayer: Filter the names of supported interfaces by linklayer. - :return: NetworkInterfaceNames - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['linklayer'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_network_interface_names" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - if 'linklayer' in params: - query_params.append(('linklayer', params['linklayer'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/21/network/interface-names', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='NetworkInterfaceNames', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_network_interfaces(self, **kwargs): # noqa: E501 - """get_network_interfaces # noqa: E501 - - Get a list of interfaces. # 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_network_interfaces(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str cache: Control where interface data is sourced from. no-cache only returns live data from a running node, and if a node can't be reached, no results will be returned. cache-only only returns cached data, some fields are set as null/unknown if they can't be determined, and IPs listed are the IPs that should be configured. Finally, nodes-first will try to query live nodes, and fall back to the cache for any nodes that fail. Default: nodes-first - :param str dir: The direction of the sort. - :param str flag: Filters results to only show interfaces with the specified flag. Only one flag can be specified. - :param bool include_access_zones: If include_access_zones is set to false, the 'access_zone' field will be set to an empty string. - :param bool include_vlans: If include_vlans is set to true, all vlans are returned unless further filtered by vlan_id. If include_vlans is set to false, no vlans are returned. - :param int limit: Return no more than this many results at once (see resume). - :param str linklayer: Filters results to only show interfaces with the specified linklayer. Default: all - :param list[int] lnn: Get a list of interfaces for the specified lnns. - :param str network: Show interfaces associated with external and/or internal networks. Default is 'external' - :param str owner: Filter results by owner id. Support partials matches too. Ex owner=groupnet0 or owner=groupnet0.subnet0.pool0. - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param str sort: The field that will be used for sorting. - :param str type: Filter the returned IPs by IP type. - :param int vlan_id: Only return IPs/interfaces configured in the specified VLAN ID - :return: NetworkInterfaces - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_network_interfaces_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_network_interfaces_with_http_info(**kwargs) # noqa: E501 - return data - - def get_network_interfaces_with_http_info(self, **kwargs): # noqa: E501 - """get_network_interfaces # noqa: E501 - - Get a list of interfaces. # 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_network_interfaces_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str cache: Control where interface data is sourced from. no-cache only returns live data from a running node, and if a node can't be reached, no results will be returned. cache-only only returns cached data, some fields are set as null/unknown if they can't be determined, and IPs listed are the IPs that should be configured. Finally, nodes-first will try to query live nodes, and fall back to the cache for any nodes that fail. Default: nodes-first - :param str dir: The direction of the sort. - :param str flag: Filters results to only show interfaces with the specified flag. Only one flag can be specified. - :param bool include_access_zones: If include_access_zones is set to false, the 'access_zone' field will be set to an empty string. - :param bool include_vlans: If include_vlans is set to true, all vlans are returned unless further filtered by vlan_id. If include_vlans is set to false, no vlans are returned. - :param int limit: Return no more than this many results at once (see resume). - :param str linklayer: Filters results to only show interfaces with the specified linklayer. Default: all - :param list[int] lnn: Get a list of interfaces for the specified lnns. - :param str network: Show interfaces associated with external and/or internal networks. Default is 'external' - :param str owner: Filter results by owner id. Support partials matches too. Ex owner=groupnet0 or owner=groupnet0.subnet0.pool0. - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param str sort: The field that will be used for sorting. - :param str type: Filter the returned IPs by IP type. - :param int vlan_id: Only return IPs/interfaces configured in the specified VLAN ID - :return: NetworkInterfaces - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['cache', 'dir', 'flag', 'include_access_zones', 'include_vlans', 'limit', 'linklayer', 'lnn', 'network', 'owner', 'resume', 'sort', 'type', 'vlan_id'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_network_interfaces" % key - ) - params[key] = val - del params['kwargs'] - - if ('dir' in params and - len(params['dir']) < 0): - raise ValueError("Invalid value for parameter `dir` when calling `get_network_interfaces`, length must be greater than or equal to `0`") # noqa: E501 - if ('flag' in params and - len(params['flag']) > 255): - raise ValueError("Invalid value for parameter `flag` when calling `get_network_interfaces`, length must be less than or equal to `255`") # noqa: E501 - if ('flag' in params and - len(params['flag']) < 1): - raise ValueError("Invalid value for parameter `flag` when calling `get_network_interfaces`, length must be greater than or equal to `1`") # noqa: E501 - if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_network_interfaces`, must be a value less than or equal to `4294967295`") # noqa: E501 - if 'limit' in params and params['limit'] < 1: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_network_interfaces`, must be a value greater than or equal to `1`") # noqa: E501 - if ('owner' in params and - len(params['owner']) > 99): - raise ValueError("Invalid value for parameter `owner` when calling `get_network_interfaces`, length must be less than or equal to `99`") # noqa: E501 - if ('owner' in params and - len(params['owner']) < 1): - raise ValueError("Invalid value for parameter `owner` when calling `get_network_interfaces`, length must be greater than or equal to `1`") # noqa: E501 - if ('resume' in params and - len(params['resume']) > 8192): - raise ValueError("Invalid value for parameter `resume` when calling `get_network_interfaces`, length must be less than or equal to `8192`") # noqa: E501 - if ('resume' in params and - len(params['resume']) < 0): - raise ValueError("Invalid value for parameter `resume` when calling `get_network_interfaces`, length must be greater than or equal to `0`") # noqa: E501 - if ('sort' in params and - len(params['sort']) > 255): - raise ValueError("Invalid value for parameter `sort` when calling `get_network_interfaces`, length must be less than or equal to `255`") # noqa: E501 - if ('sort' in params and - len(params['sort']) < 0): - raise ValueError("Invalid value for parameter `sort` when calling `get_network_interfaces`, length must be greater than or equal to `0`") # noqa: E501 - if 'vlan_id' in params and params['vlan_id'] > 4094: # noqa: E501 - raise ValueError("Invalid value for parameter `vlan_id` when calling `get_network_interfaces`, must be a value less than or equal to `4094`") # noqa: E501 - if 'vlan_id' in params and params['vlan_id'] < 1: # noqa: E501 - raise ValueError("Invalid value for parameter `vlan_id` when calling `get_network_interfaces`, must be a value greater than or equal to `1`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'cache' in params: - query_params.append(('cache', params['cache'])) # noqa: E501 - if 'dir' in params: - query_params.append(('dir', params['dir'])) # noqa: E501 - if 'flag' in params: - query_params.append(('flag', params['flag'])) # noqa: E501 - if 'include_access_zones' in params: - query_params.append(('include_access_zones', params['include_access_zones'])) # noqa: E501 - if 'include_vlans' in params: - query_params.append(('include_vlans', params['include_vlans'])) # noqa: E501 - if 'limit' in params: - query_params.append(('limit', params['limit'])) # noqa: E501 - if 'linklayer' in params: - query_params.append(('linklayer', params['linklayer'])) # noqa: E501 - if 'lnn' in params: - query_params.append(('lnn', params['lnn'])) # noqa: E501 - collection_formats['lnn'] = 'csv' # noqa: E501 - if 'network' in params: - query_params.append(('network', params['network'])) # noqa: E501 - if 'owner' in params: - query_params.append(('owner', params['owner'])) # noqa: E501 - if 'resume' in params: - query_params.append(('resume', params['resume'])) # noqa: E501 - if 'sort' in params: - query_params.append(('sort', params['sort'])) # noqa: E501 - if 'type' in params: - query_params.append(('type', params['type'])) # noqa: E501 - if 'vlan_id' in params: - query_params.append(('vlan_id', params['vlan_id'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/21/network/interfaces', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='NetworkInterfaces', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_network_pools(self, **kwargs): # noqa: E501 - """get_network_pools # noqa: E501 - - Get a list of network pools. # 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_network_pools(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str access_zone: If specified, only pools with this zone name will be returned. - :param str alloc_method: If specified, only pools with this allocation type will be returned. - :param str dir: The direction of the sort. - :param str groupnet: If specified, only pools for this groupnet will be returned. - :param int limit: Return no more than this many results at once (see resume). - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param str sort: The field that will be used for sorting. - :param str subnet: If specified, only pools for this subnet will be returned. - :return: NetworkPools - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_network_pools_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_network_pools_with_http_info(**kwargs) # noqa: E501 - return data - - def get_network_pools_with_http_info(self, **kwargs): # noqa: E501 - """get_network_pools # noqa: E501 - - Get a list of network pools. # 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_network_pools_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str access_zone: If specified, only pools with this zone name will be returned. - :param str alloc_method: If specified, only pools with this allocation type will be returned. - :param str dir: The direction of the sort. - :param str groupnet: If specified, only pools for this groupnet will be returned. - :param int limit: Return no more than this many results at once (see resume). - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param str sort: The field that will be used for sorting. - :param str subnet: If specified, only pools for this subnet will be returned. - :return: NetworkPools - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['access_zone', 'alloc_method', 'dir', 'groupnet', 'limit', 'resume', 'sort', 'subnet'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_network_pools" % key - ) - params[key] = val - del params['kwargs'] - - if ('dir' in params and - len(params['dir']) < 0): - raise ValueError("Invalid value for parameter `dir` when calling `get_network_pools`, length must be greater than or equal to `0`") # noqa: E501 - if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_network_pools`, must be a value less than or equal to `4294967295`") # noqa: E501 - if 'limit' in params and params['limit'] < 1: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_network_pools`, must be a value greater than or equal to `1`") # noqa: E501 - if ('resume' in params and - len(params['resume']) > 8192): - raise ValueError("Invalid value for parameter `resume` when calling `get_network_pools`, length must be less than or equal to `8192`") # noqa: E501 - if ('resume' in params and - len(params['resume']) < 0): - raise ValueError("Invalid value for parameter `resume` when calling `get_network_pools`, length must be greater than or equal to `0`") # noqa: E501 - if ('sort' in params and - len(params['sort']) > 255): - raise ValueError("Invalid value for parameter `sort` when calling `get_network_pools`, length must be less than or equal to `255`") # noqa: E501 - if ('sort' in params and - len(params['sort']) < 0): - raise ValueError("Invalid value for parameter `sort` when calling `get_network_pools`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'access_zone' in params: - query_params.append(('access_zone', params['access_zone'])) # noqa: E501 - if 'alloc_method' in params: - query_params.append(('alloc_method', params['alloc_method'])) # noqa: E501 - if 'dir' in params: - query_params.append(('dir', params['dir'])) # noqa: E501 - if 'groupnet' in params: - query_params.append(('groupnet', params['groupnet'])) # noqa: E501 - if 'limit' in params: - query_params.append(('limit', params['limit'])) # noqa: E501 - if 'resume' in params: - query_params.append(('resume', params['resume'])) # noqa: E501 - if 'sort' in params: - query_params.append(('sort', params['sort'])) # noqa: E501 - if 'subnet' in params: - query_params.append(('subnet', params['subnet'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/21/network/pools', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='NetworkPools', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_network_rules(self, **kwargs): # noqa: E501 - """get_network_rules # noqa: E501 - - Get a list of network rules. # 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_network_rules(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str dir: The direction of the sort. - :param str groupnet: Name of the groupnet to list rules from. - :param int limit: Return no more than this many results at once (see resume). - :param str pool: Name of the pool to list rules from. - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param str sort: The field that will be used for sorting. - :param str subnet: Name of the subnet to list rules from. - :return: PoolsPoolRulesExtended - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_network_rules_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_network_rules_with_http_info(**kwargs) # noqa: E501 - return data - - def get_network_rules_with_http_info(self, **kwargs): # noqa: E501 - """get_network_rules # noqa: E501 - - Get a list of network rules. # 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_network_rules_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str dir: The direction of the sort. - :param str groupnet: Name of the groupnet to list rules from. - :param int limit: Return no more than this many results at once (see resume). - :param str pool: Name of the pool to list rules from. - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param str sort: The field that will be used for sorting. - :param str subnet: Name of the subnet to list rules from. - :return: PoolsPoolRulesExtended - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['dir', 'groupnet', 'limit', 'pool', 'resume', 'sort', 'subnet'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_network_rules" % key - ) - params[key] = val - del params['kwargs'] - - if ('dir' in params and - len(params['dir']) < 0): - raise ValueError("Invalid value for parameter `dir` when calling `get_network_rules`, length must be greater than or equal to `0`") # noqa: E501 - if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_network_rules`, must be a value less than or equal to `4294967295`") # noqa: E501 - if 'limit' in params and params['limit'] < 1: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_network_rules`, must be a value greater than or equal to `1`") # noqa: E501 - if ('resume' in params and - len(params['resume']) > 8192): - raise ValueError("Invalid value for parameter `resume` when calling `get_network_rules`, length must be less than or equal to `8192`") # noqa: E501 - if ('resume' in params and - len(params['resume']) < 0): - raise ValueError("Invalid value for parameter `resume` when calling `get_network_rules`, length must be greater than or equal to `0`") # noqa: E501 - if ('sort' in params and - len(params['sort']) > 255): - raise ValueError("Invalid value for parameter `sort` when calling `get_network_rules`, length must be less than or equal to `255`") # noqa: E501 - if ('sort' in params and - len(params['sort']) < 0): - raise ValueError("Invalid value for parameter `sort` when calling `get_network_rules`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'dir' in params: - query_params.append(('dir', params['dir'])) # noqa: E501 - if 'groupnet' in params: - query_params.append(('groupnet', params['groupnet'])) # noqa: E501 - if 'limit' in params: - query_params.append(('limit', params['limit'])) # noqa: E501 - if 'pool' in params: - query_params.append(('pool', params['pool'])) # noqa: E501 - if 'resume' in params: - query_params.append(('resume', params['resume'])) # noqa: E501 - if 'sort' in params: - query_params.append(('sort', params['sort'])) # noqa: E501 - if 'subnet' in params: - query_params.append(('subnet', params['subnet'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/21/network/rules', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='PoolsPoolRulesExtended', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_network_subnets(self, **kwargs): # noqa: E501 - """get_network_subnets # noqa: E501 - - Get a list of subnets. # 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_network_subnets(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str dir: The direction of the sort. - :param str groupnet: If specified, only subnets for this groupnet will be returned. - :param int limit: Return no more than this many results at once (see resume). - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param str sort: The field that will be used for sorting. - :return: GroupnetSubnetsExtended - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_network_subnets_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_network_subnets_with_http_info(**kwargs) # noqa: E501 - return data - - def get_network_subnets_with_http_info(self, **kwargs): # noqa: E501 - """get_network_subnets # noqa: E501 - - Get a list of subnets. # 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_network_subnets_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str dir: The direction of the sort. - :param str groupnet: If specified, only subnets for this groupnet will be returned. - :param int limit: Return no more than this many results at once (see resume). - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param str sort: The field that will be used for sorting. - :return: GroupnetSubnetsExtended - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['dir', 'groupnet', 'limit', 'resume', 'sort'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_network_subnets" % key - ) - params[key] = val - del params['kwargs'] - - if ('dir' in params and - len(params['dir']) < 0): - raise ValueError("Invalid value for parameter `dir` when calling `get_network_subnets`, length must be greater than or equal to `0`") # noqa: E501 - if ('groupnet' in params and - len(params['groupnet']) > 32): - raise ValueError("Invalid value for parameter `groupnet` when calling `get_network_subnets`, length must be less than or equal to `32`") # noqa: E501 - if ('groupnet' in params and - len(params['groupnet']) < 0): - raise ValueError("Invalid value for parameter `groupnet` when calling `get_network_subnets`, length must be greater than or equal to `0`") # noqa: E501 - if 'groupnet' in params and not re.search('(^[0-9a-zA-Z_-]*$|^~DEFAULT$)', params['groupnet']): # noqa: E501 - raise ValueError("Invalid value for parameter `groupnet` when calling `get_network_subnets`, must conform to the pattern `/(^[0-9a-zA-Z_-]*$|^~DEFAULT$)/`") # noqa: E501 - if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_network_subnets`, must be a value less than or equal to `4294967295`") # noqa: E501 - if 'limit' in params and params['limit'] < 1: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_network_subnets`, must be a value greater than or equal to `1`") # noqa: E501 - if ('resume' in params and - len(params['resume']) > 8192): - raise ValueError("Invalid value for parameter `resume` when calling `get_network_subnets`, length must be less than or equal to `8192`") # noqa: E501 - if ('resume' in params and - len(params['resume']) < 0): - raise ValueError("Invalid value for parameter `resume` when calling `get_network_subnets`, length must be greater than or equal to `0`") # noqa: E501 - if ('sort' in params and - len(params['sort']) > 255): - raise ValueError("Invalid value for parameter `sort` when calling `get_network_subnets`, length must be less than or equal to `255`") # noqa: E501 - if ('sort' in params and - len(params['sort']) < 0): - raise ValueError("Invalid value for parameter `sort` when calling `get_network_subnets`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'dir' in params: - query_params.append(('dir', params['dir'])) # noqa: E501 - if 'groupnet' in params: - query_params.append(('groupnet', params['groupnet'])) # noqa: E501 - if 'limit' in params: - query_params.append(('limit', params['limit'])) # noqa: E501 - if 'resume' in params: - query_params.append(('resume', params['resume'])) # noqa: E501 - if 'sort' in params: - query_params.append(('sort', params['sort'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/21/network/subnets', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='GroupnetSubnetsExtended', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def list_firewall_policies(self, **kwargs): # noqa: E501 - """list_firewall_policies # noqa: E501 - - Get a list of firewall policies. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_firewall_policies(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str dir: The direction of the sort. - :param int limit: Return no more than this many results at once (see resume). - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param str sort: The field that will be used for sorting. - :return: FirewallPoliciesExtended - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.list_firewall_policies_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.list_firewall_policies_with_http_info(**kwargs) # noqa: E501 - return data - - def list_firewall_policies_with_http_info(self, **kwargs): # noqa: E501 - """list_firewall_policies # noqa: E501 - - Get a list of firewall policies. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_firewall_policies_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str dir: The direction of the sort. - :param int limit: Return no more than this many results at once (see resume). - :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). - :param str sort: The field that will be used for sorting. - :return: FirewallPoliciesExtended - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['dir', 'limit', 'resume', 'sort'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method list_firewall_policies" % key - ) - params[key] = val - del params['kwargs'] - - if ('dir' in params and - len(params['dir']) < 0): - raise ValueError("Invalid value for parameter `dir` when calling `list_firewall_policies`, length must be greater than or equal to `0`") # noqa: E501 - if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `list_firewall_policies`, must be a value less than or equal to `4294967295`") # noqa: E501 - if 'limit' in params and params['limit'] < 1: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `list_firewall_policies`, must be a value greater than or equal to `1`") # noqa: E501 - if ('resume' in params and - len(params['resume']) > 8192): - raise ValueError("Invalid value for parameter `resume` when calling `list_firewall_policies`, length must be less than or equal to `8192`") # noqa: E501 - if ('resume' in params and - len(params['resume']) < 0): - raise ValueError("Invalid value for parameter `resume` when calling `list_firewall_policies`, length must be greater than or equal to `0`") # noqa: E501 - if ('sort' in params and - len(params['sort']) > 255): - raise ValueError("Invalid value for parameter `sort` when calling `list_firewall_policies`, length must be less than or equal to `255`") # noqa: E501 - if ('sort' in params and - len(params['sort']) < 0): - raise ValueError("Invalid value for parameter `sort` when calling `list_firewall_policies`, length must be greater than or equal to `0`") # noqa: E501 + if ('dir' in params and + len(params['dir']) < 0): + raise ValueError("Invalid value for parameter `dir` when calling `get_network_interfaces`, length must be greater than or equal to `0`") # noqa: E501 + if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 + raise ValueError("Invalid value for parameter `limit` when calling `get_network_interfaces`, must be a value less than or equal to `4294967295`") # noqa: E501 + if 'limit' in params and params['limit'] < 1: # noqa: E501 + raise ValueError("Invalid value for parameter `limit` when calling `get_network_interfaces`, must be a value greater than or equal to `1`") # noqa: E501 + if ('owner' in params and + len(params['owner']) > 99): + raise ValueError("Invalid value for parameter `owner` when calling `get_network_interfaces`, length must be less than or equal to `99`") # noqa: E501 + if ('owner' in params and + len(params['owner']) < 1): + raise ValueError("Invalid value for parameter `owner` when calling `get_network_interfaces`, length must be greater than or equal to `1`") # noqa: E501 + if ('resume' in params and + len(params['resume']) > 8192): + raise ValueError("Invalid value for parameter `resume` when calling `get_network_interfaces`, length must be less than or equal to `8192`") # noqa: E501 + if ('resume' in params and + len(params['resume']) < 0): + raise ValueError("Invalid value for parameter `resume` when calling `get_network_interfaces`, length must be greater than or equal to `0`") # noqa: E501 + if ('sort' in params and + len(params['sort']) > 255): + raise ValueError("Invalid value for parameter `sort` when calling `get_network_interfaces`, length must be less than or equal to `255`") # noqa: E501 + if ('sort' in params and + len(params['sort']) < 0): + raise ValueError("Invalid value for parameter `sort` when calling `get_network_interfaces`, length must be greater than or equal to `0`") # noqa: E501 + if 'vlan_id' in params and params['vlan_id'] > 4094: # noqa: E501 + raise ValueError("Invalid value for parameter `vlan_id` when calling `get_network_interfaces`, must be a value less than or equal to `4094`") # noqa: E501 + if 'vlan_id' in params and params['vlan_id'] < 1: # noqa: E501 + raise ValueError("Invalid value for parameter `vlan_id` when calling `get_network_interfaces`, must be a value greater than or equal to `1`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] + if 'cache' in params: + query_params.append(('cache', params['cache'])) # noqa: E501 if 'dir' in params: query_params.append(('dir', params['dir'])) # noqa: E501 + if 'include_vlans' in params: + query_params.append(('include_vlans', params['include_vlans'])) # noqa: E501 if 'limit' in params: query_params.append(('limit', params['limit'])) # noqa: E501 + if 'lnn' in params: + query_params.append(('lnn', params['lnn'])) # noqa: E501 + collection_formats['lnn'] = 'csv' # noqa: E501 + if 'network' in params: + query_params.append(('network', params['network'])) # noqa: E501 + if 'owner' in params: + query_params.append(('owner', params['owner'])) # noqa: E501 if 'resume' in params: query_params.append(('resume', params['resume'])) # noqa: E501 if 'sort' in params: query_params.append(('sort', params['sort'])) # noqa: E501 + if 'type' in params: + query_params.append(('type', params['type'])) # noqa: E501 + if 'vlan_id' in params: + query_params.append(('vlan_id', params['vlan_id'])) # noqa: E501 header_params = {} @@ -2553,14 +860,14 @@ def list_firewall_policies_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/network/firewall/policies', 'GET', + '/platform/14/network/interfaces', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='FirewallPoliciesExtended', # noqa: E501 + response_type='NetworkInterfacesExtended', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -2568,51 +875,59 @@ def list_firewall_policies_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def list_network_groupnets(self, **kwargs): # noqa: E501 - """list_network_groupnets # noqa: E501 + def get_network_pools(self, **kwargs): # noqa: E501 + """get_network_pools # noqa: E501 - Get a list of groupnets. # noqa: E501 + Get a list of flexnet pools. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_network_groupnets(async_req=True) + >>> thread = api.get_network_pools(async_req=True) >>> result = thread.get() :param async_req bool + :param str access_zone: If specified, only pools with this zone name will be returned. + :param str alloc_method: If specified, only pools with this allocation type will be returned. :param str dir: The direction of the sort. + :param str groupnet: If specified, only pools for this groupnet will be returned. :param int limit: Return no more than this many results at once (see resume). :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). :param str sort: The field that will be used for sorting. - :return: NetworkGroupnetsExtended + :param str subnet: If specified, only pools for this subnet will be returned. + :return: NetworkPools If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.list_network_groupnets_with_http_info(**kwargs) # noqa: E501 + return self.get_network_pools_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.list_network_groupnets_with_http_info(**kwargs) # noqa: E501 + (data) = self.get_network_pools_with_http_info(**kwargs) # noqa: E501 return data - def list_network_groupnets_with_http_info(self, **kwargs): # noqa: E501 - """list_network_groupnets # noqa: E501 + def get_network_pools_with_http_info(self, **kwargs): # noqa: E501 + """get_network_pools # noqa: E501 - Get a list of groupnets. # noqa: E501 + Get a list of flexnet pools. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_network_groupnets_with_http_info(async_req=True) + >>> thread = api.get_network_pools_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool + :param str access_zone: If specified, only pools with this zone name will be returned. + :param str alloc_method: If specified, only pools with this allocation type will be returned. :param str dir: The direction of the sort. + :param str groupnet: If specified, only pools for this groupnet will be returned. :param int limit: Return no more than this many results at once (see resume). :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). :param str sort: The field that will be used for sorting. - :return: NetworkGroupnetsExtended + :param str subnet: If specified, only pools for this subnet will be returned. + :return: NetworkPools If the method is called asynchronously, returns the request thread. """ - all_params = ['dir', 'limit', 'resume', 'sort'] # noqa: E501 + all_params = ['access_zone', 'alloc_method', 'dir', 'groupnet', 'limit', 'resume', 'sort', 'subnet'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2623,43 +938,51 @@ def list_network_groupnets_with_http_info(self, **kwargs): # noqa: E501 if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method list_network_groupnets" % key + " to method get_network_pools" % key ) params[key] = val del params['kwargs'] if ('dir' in params and len(params['dir']) < 0): - raise ValueError("Invalid value for parameter `dir` when calling `list_network_groupnets`, length must be greater than or equal to `0`") # noqa: E501 + raise ValueError("Invalid value for parameter `dir` when calling `get_network_pools`, length must be greater than or equal to `0`") # noqa: E501 if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `list_network_groupnets`, must be a value less than or equal to `4294967295`") # noqa: E501 + raise ValueError("Invalid value for parameter `limit` when calling `get_network_pools`, must be a value less than or equal to `4294967295`") # noqa: E501 if 'limit' in params and params['limit'] < 1: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `list_network_groupnets`, must be a value greater than or equal to `1`") # noqa: E501 + raise ValueError("Invalid value for parameter `limit` when calling `get_network_pools`, must be a value greater than or equal to `1`") # noqa: E501 if ('resume' in params and len(params['resume']) > 8192): - raise ValueError("Invalid value for parameter `resume` when calling `list_network_groupnets`, length must be less than or equal to `8192`") # noqa: E501 + raise ValueError("Invalid value for parameter `resume` when calling `get_network_pools`, length must be less than or equal to `8192`") # noqa: E501 if ('resume' in params and len(params['resume']) < 0): - raise ValueError("Invalid value for parameter `resume` when calling `list_network_groupnets`, length must be greater than or equal to `0`") # noqa: E501 + raise ValueError("Invalid value for parameter `resume` when calling `get_network_pools`, length must be greater than or equal to `0`") # noqa: E501 if ('sort' in params and len(params['sort']) > 255): - raise ValueError("Invalid value for parameter `sort` when calling `list_network_groupnets`, length must be less than or equal to `255`") # noqa: E501 + raise ValueError("Invalid value for parameter `sort` when calling `get_network_pools`, length must be less than or equal to `255`") # noqa: E501 if ('sort' in params and len(params['sort']) < 0): - raise ValueError("Invalid value for parameter `sort` when calling `list_network_groupnets`, length must be greater than or equal to `0`") # noqa: E501 + raise ValueError("Invalid value for parameter `sort` when calling `get_network_pools`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] + if 'access_zone' in params: + query_params.append(('access_zone', params['access_zone'])) # noqa: E501 + if 'alloc_method' in params: + query_params.append(('alloc_method', params['alloc_method'])) # noqa: E501 if 'dir' in params: query_params.append(('dir', params['dir'])) # noqa: E501 + if 'groupnet' in params: + query_params.append(('groupnet', params['groupnet'])) # noqa: E501 if 'limit' in params: query_params.append(('limit', params['limit'])) # noqa: E501 if 'resume' in params: query_params.append(('resume', params['resume'])) # noqa: E501 if 'sort' in params: query_params.append(('sort', params['sort'])) # noqa: E501 + if 'subnet' in params: + query_params.append(('subnet', params['subnet'])) # noqa: E501 header_params = {} @@ -2679,14 +1002,14 @@ def list_network_groupnets_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/10/network/groupnets', 'GET', + '/platform/12/network/pools', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='NetworkGroupnetsExtended', # noqa: E501 + response_type='NetworkPools', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -2694,49 +1017,57 @@ def list_network_groupnets_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_firewall_dscp_rule(self, firewall_dscp_rule_params, firewall_dscp_rule, **kwargs): # noqa: E501 - """update_firewall_dscp_rule # noqa: E501 + def get_network_rules(self, **kwargs): # noqa: E501 + """get_network_rules # noqa: E501 - Modify a DSCP rule. # noqa: E501 + Get a list of network rules. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_firewall_dscp_rule(firewall_dscp_rule_params, firewall_dscp_rule, async_req=True) + >>> thread = api.get_network_rules(async_req=True) >>> result = thread.get() :param async_req bool - :param FirewallDscpRuleParams firewall_dscp_rule_params: (required) - :param str firewall_dscp_rule: Modify a DSCP rule. (required) - :param bool live: Live flag can only be used with active rules. Update will take effect immediately on all related network pools. - :return: None + :param str dir: The direction of the sort. + :param str groupnet: Name of the groupnet to list rules from. + :param int limit: Return no more than this many results at once (see resume). + :param str pool: Name of the pool to list rules from. + :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). + :param str sort: The field that will be used for sorting. + :param str subnet: Name of the subnet to list rules from. + :return: PoolsPoolRulesExtended If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.update_firewall_dscp_rule_with_http_info(firewall_dscp_rule_params, firewall_dscp_rule, **kwargs) # noqa: E501 + return self.get_network_rules_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.update_firewall_dscp_rule_with_http_info(firewall_dscp_rule_params, firewall_dscp_rule, **kwargs) # noqa: E501 + (data) = self.get_network_rules_with_http_info(**kwargs) # noqa: E501 return data - def update_firewall_dscp_rule_with_http_info(self, firewall_dscp_rule_params, firewall_dscp_rule, **kwargs): # noqa: E501 - """update_firewall_dscp_rule # noqa: E501 + def get_network_rules_with_http_info(self, **kwargs): # noqa: E501 + """get_network_rules # noqa: E501 - Modify a DSCP rule. # noqa: E501 + Get a list of network rules. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_firewall_dscp_rule_with_http_info(firewall_dscp_rule_params, firewall_dscp_rule, async_req=True) + >>> thread = api.get_network_rules_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param FirewallDscpRuleParams firewall_dscp_rule_params: (required) - :param str firewall_dscp_rule: Modify a DSCP rule. (required) - :param bool live: Live flag can only be used with active rules. Update will take effect immediately on all related network pools. - :return: None + :param str dir: The direction of the sort. + :param str groupnet: Name of the groupnet to list rules from. + :param int limit: Return no more than this many results at once (see resume). + :param str pool: Name of the pool to list rules from. + :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). + :param str sort: The field that will be used for sorting. + :param str subnet: Name of the subnet to list rules from. + :return: PoolsPoolRulesExtended If the method is called asynchronously, returns the request thread. """ - all_params = ['firewall_dscp_rule_params', 'firewall_dscp_rule', 'live'] # noqa: E501 + all_params = ['dir', 'groupnet', 'limit', 'pool', 'resume', 'sort', 'subnet'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2747,28 +1078,49 @@ def update_firewall_dscp_rule_with_http_info(self, firewall_dscp_rule_params, fi if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method update_firewall_dscp_rule" % key + " to method get_network_rules" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'firewall_dscp_rule_params' is set - if ('firewall_dscp_rule_params' not in params or - params['firewall_dscp_rule_params'] is None): - raise ValueError("Missing the required parameter `firewall_dscp_rule_params` when calling `update_firewall_dscp_rule`") # noqa: E501 - # verify the required parameter 'firewall_dscp_rule' is set - if ('firewall_dscp_rule' not in params or - params['firewall_dscp_rule'] is None): - raise ValueError("Missing the required parameter `firewall_dscp_rule` when calling `update_firewall_dscp_rule`") # noqa: E501 + if ('dir' in params and + len(params['dir']) < 0): + raise ValueError("Invalid value for parameter `dir` when calling `get_network_rules`, length must be greater than or equal to `0`") # noqa: E501 + if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 + raise ValueError("Invalid value for parameter `limit` when calling `get_network_rules`, must be a value less than or equal to `4294967295`") # noqa: E501 + if 'limit' in params and params['limit'] < 1: # noqa: E501 + raise ValueError("Invalid value for parameter `limit` when calling `get_network_rules`, must be a value greater than or equal to `1`") # noqa: E501 + if ('resume' in params and + len(params['resume']) > 8192): + raise ValueError("Invalid value for parameter `resume` when calling `get_network_rules`, length must be less than or equal to `8192`") # noqa: E501 + if ('resume' in params and + len(params['resume']) < 0): + raise ValueError("Invalid value for parameter `resume` when calling `get_network_rules`, length must be greater than or equal to `0`") # noqa: E501 + if ('sort' in params and + len(params['sort']) > 255): + raise ValueError("Invalid value for parameter `sort` when calling `get_network_rules`, length must be less than or equal to `255`") # noqa: E501 + if ('sort' in params and + len(params['sort']) < 0): + raise ValueError("Invalid value for parameter `sort` when calling `get_network_rules`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} - if 'firewall_dscp_rule' in params: - path_params['FirewallDscpRule'] = params['firewall_dscp_rule'] # noqa: E501 query_params = [] - if 'live' in params: - query_params.append(('live', params['live'])) # noqa: E501 + if 'dir' in params: + query_params.append(('dir', params['dir'])) # noqa: E501 + if 'groupnet' in params: + query_params.append(('groupnet', params['groupnet'])) # noqa: E501 + if 'limit' in params: + query_params.append(('limit', params['limit'])) # noqa: E501 + if 'pool' in params: + query_params.append(('pool', params['pool'])) # noqa: E501 + if 'resume' in params: + query_params.append(('resume', params['resume'])) # noqa: E501 + if 'sort' in params: + query_params.append(('sort', params['sort'])) # noqa: E501 + if 'subnet' in params: + query_params.append(('subnet', params['subnet'])) # noqa: E501 header_params = {} @@ -2776,8 +1128,6 @@ def update_firewall_dscp_rule_with_http_info(self, firewall_dscp_rule_params, fi local_var_files = {} body_params = None - if 'firewall_dscp_rule_params' in params: - body_params = params['firewall_dscp_rule_params'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -2790,14 +1140,14 @@ def update_firewall_dscp_rule_with_http_info(self, firewall_dscp_rule_params, fi auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/20/network/firewall/dscp/{FirewallDscpRule}', 'PUT', + '/platform/3/network/rules', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type=None, # noqa: E501 + response_type='PoolsPoolRulesExtended', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -2805,51 +1155,53 @@ def update_firewall_dscp_rule_with_http_info(self, firewall_dscp_rule_params, fi _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_firewall_policy(self, firewall_policy, firewall_policy_id, **kwargs): # noqa: E501 - """update_firewall_policy # noqa: E501 + def get_network_subnets(self, **kwargs): # noqa: E501 + """get_network_subnets # noqa: E501 - Modify a network firewall policy. # noqa: E501 + Get a list of subnets. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_firewall_policy(firewall_policy, firewall_policy_id, async_req=True) + >>> thread = api.get_network_subnets(async_req=True) >>> result = thread.get() :param async_req bool - :param FirewallPolicy firewall_policy: (required) - :param str firewall_policy_id: Modify a network firewall policy. (required) - :param bool clone: Clone an existing policy to a new one. - :param bool live: Live flag can only be used with active rules. Update will take effect immediately on all related network pools. - :return: None + :param str dir: The direction of the sort. + :param str groupnet: If specified, only subnets for this groupnet will be returned. + :param int limit: Return no more than this many results at once (see resume). + :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). + :param str sort: The field that will be used for sorting. + :return: GroupnetSubnetsExtended If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.update_firewall_policy_with_http_info(firewall_policy, firewall_policy_id, **kwargs) # noqa: E501 + return self.get_network_subnets_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.update_firewall_policy_with_http_info(firewall_policy, firewall_policy_id, **kwargs) # noqa: E501 + (data) = self.get_network_subnets_with_http_info(**kwargs) # noqa: E501 return data - def update_firewall_policy_with_http_info(self, firewall_policy, firewall_policy_id, **kwargs): # noqa: E501 - """update_firewall_policy # noqa: E501 + def get_network_subnets_with_http_info(self, **kwargs): # noqa: E501 + """get_network_subnets # noqa: E501 - Modify a network firewall policy. # noqa: E501 + Get a list of subnets. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_firewall_policy_with_http_info(firewall_policy, firewall_policy_id, async_req=True) + >>> thread = api.get_network_subnets_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param FirewallPolicy firewall_policy: (required) - :param str firewall_policy_id: Modify a network firewall policy. (required) - :param bool clone: Clone an existing policy to a new one. - :param bool live: Live flag can only be used with active rules. Update will take effect immediately on all related network pools. - :return: None + :param str dir: The direction of the sort. + :param str groupnet: If specified, only subnets for this groupnet will be returned. + :param int limit: Return no more than this many results at once (see resume). + :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). + :param str sort: The field that will be used for sorting. + :return: GroupnetSubnetsExtended If the method is called asynchronously, returns the request thread. """ - all_params = ['firewall_policy', 'firewall_policy_id', 'clone', 'live'] # noqa: E501 + all_params = ['dir', 'groupnet', 'limit', 'resume', 'sort'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2860,30 +1212,53 @@ def update_firewall_policy_with_http_info(self, firewall_policy, firewall_policy if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method update_firewall_policy" % key + " to method get_network_subnets" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'firewall_policy' is set - if ('firewall_policy' not in params or - params['firewall_policy'] is None): - raise ValueError("Missing the required parameter `firewall_policy` when calling `update_firewall_policy`") # noqa: E501 - # verify the required parameter 'firewall_policy_id' is set - if ('firewall_policy_id' not in params or - params['firewall_policy_id'] is None): - raise ValueError("Missing the required parameter `firewall_policy_id` when calling `update_firewall_policy`") # noqa: E501 + if ('dir' in params and + len(params['dir']) < 0): + raise ValueError("Invalid value for parameter `dir` when calling `get_network_subnets`, length must be greater than or equal to `0`") # noqa: E501 + if ('groupnet' in params and + len(params['groupnet']) > 32): + raise ValueError("Invalid value for parameter `groupnet` when calling `get_network_subnets`, length must be less than or equal to `32`") # noqa: E501 + if ('groupnet' in params and + len(params['groupnet']) < 0): + raise ValueError("Invalid value for parameter `groupnet` when calling `get_network_subnets`, length must be greater than or equal to `0`") # noqa: E501 + if 'groupnet' in params and not re.search('(^[0-9a-zA-Z_-]*$|^~DEFAULT$)', params['groupnet']): # noqa: E501 + raise ValueError("Invalid value for parameter `groupnet` when calling `get_network_subnets`, must conform to the pattern `/(^[0-9a-zA-Z_-]*$|^~DEFAULT$)/`") # noqa: E501 + if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 + raise ValueError("Invalid value for parameter `limit` when calling `get_network_subnets`, must be a value less than or equal to `4294967295`") # noqa: E501 + if 'limit' in params and params['limit'] < 1: # noqa: E501 + raise ValueError("Invalid value for parameter `limit` when calling `get_network_subnets`, must be a value greater than or equal to `1`") # noqa: E501 + if ('resume' in params and + len(params['resume']) > 8192): + raise ValueError("Invalid value for parameter `resume` when calling `get_network_subnets`, length must be less than or equal to `8192`") # noqa: E501 + if ('resume' in params and + len(params['resume']) < 0): + raise ValueError("Invalid value for parameter `resume` when calling `get_network_subnets`, length must be greater than or equal to `0`") # noqa: E501 + if ('sort' in params and + len(params['sort']) > 255): + raise ValueError("Invalid value for parameter `sort` when calling `get_network_subnets`, length must be less than or equal to `255`") # noqa: E501 + if ('sort' in params and + len(params['sort']) < 0): + raise ValueError("Invalid value for parameter `sort` when calling `get_network_subnets`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} - if 'firewall_policy_id' in params: - path_params['FirewallPolicyId'] = params['firewall_policy_id'] # noqa: E501 query_params = [] - if 'clone' in params: - query_params.append(('clone', params['clone'])) # noqa: E501 - if 'live' in params: - query_params.append(('live', params['live'])) # noqa: E501 + if 'dir' in params: + query_params.append(('dir', params['dir'])) # noqa: E501 + if 'groupnet' in params: + query_params.append(('groupnet', params['groupnet'])) # noqa: E501 + if 'limit' in params: + query_params.append(('limit', params['limit'])) # noqa: E501 + if 'resume' in params: + query_params.append(('resume', params['resume'])) # noqa: E501 + if 'sort' in params: + query_params.append(('sort', params['sort'])) # noqa: E501 header_params = {} @@ -2891,8 +1266,6 @@ def update_firewall_policy_with_http_info(self, firewall_policy, firewall_policy local_var_files = {} body_params = None - if 'firewall_policy' in params: - body_params = params['firewall_policy'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -2905,14 +1278,14 @@ def update_firewall_policy_with_http_info(self, firewall_policy, firewall_policy auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/network/firewall/policies/{FirewallPolicyId}', 'PUT', + '/platform/7/network/subnets', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type=None, # noqa: E501 + response_type='GroupnetSubnetsExtended', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -2920,47 +1293,51 @@ def update_firewall_policy_with_http_info(self, firewall_policy, firewall_policy _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_firewall_settings(self, firewall_settings, **kwargs): # noqa: E501 - """update_firewall_settings # noqa: E501 + def list_network_groupnets(self, **kwargs): # noqa: E501 + """list_network_groupnets # noqa: E501 - Modify network firewall settings. # noqa: E501 + Get a list of groupnets. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_firewall_settings(firewall_settings, async_req=True) + >>> thread = api.list_network_groupnets(async_req=True) >>> result = thread.get() :param async_req bool - :param FirewallSettingsExtended firewall_settings: (required) - :param bool force: Force modify firewall settings, even if it leads to FTP service being blocked - :return: None + :param str dir: The direction of the sort. + :param int limit: Return no more than this many results at once (see resume). + :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). + :param str sort: The field that will be used for sorting. + :return: NetworkGroupnetsExtended If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.update_firewall_settings_with_http_info(firewall_settings, **kwargs) # noqa: E501 + return self.list_network_groupnets_with_http_info(**kwargs) # noqa: E501 else: - (data) = self.update_firewall_settings_with_http_info(firewall_settings, **kwargs) # noqa: E501 + (data) = self.list_network_groupnets_with_http_info(**kwargs) # noqa: E501 return data - def update_firewall_settings_with_http_info(self, firewall_settings, **kwargs): # noqa: E501 - """update_firewall_settings # noqa: E501 + def list_network_groupnets_with_http_info(self, **kwargs): # noqa: E501 + """list_network_groupnets # noqa: E501 - Modify network firewall settings. # noqa: E501 + Get a list of groupnets. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_firewall_settings_with_http_info(firewall_settings, async_req=True) + >>> thread = api.list_network_groupnets_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool - :param FirewallSettingsExtended firewall_settings: (required) - :param bool force: Force modify firewall settings, even if it leads to FTP service being blocked - :return: None + :param str dir: The direction of the sort. + :param int limit: Return no more than this many results at once (see resume). + :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). + :param str sort: The field that will be used for sorting. + :return: NetworkGroupnetsExtended If the method is called asynchronously, returns the request thread. """ - all_params = ['firewall_settings', 'force'] # noqa: E501 + all_params = ['dir', 'limit', 'resume', 'sort'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2971,22 +1348,43 @@ def update_firewall_settings_with_http_info(self, firewall_settings, **kwargs): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" - " to method update_firewall_settings" % key + " to method list_network_groupnets" % key ) params[key] = val del params['kwargs'] - # verify the required parameter 'firewall_settings' is set - if ('firewall_settings' not in params or - params['firewall_settings'] is None): - raise ValueError("Missing the required parameter `firewall_settings` when calling `update_firewall_settings`") # noqa: E501 + if ('dir' in params and + len(params['dir']) < 0): + raise ValueError("Invalid value for parameter `dir` when calling `list_network_groupnets`, length must be greater than or equal to `0`") # noqa: E501 + if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 + raise ValueError("Invalid value for parameter `limit` when calling `list_network_groupnets`, must be a value less than or equal to `4294967295`") # noqa: E501 + if 'limit' in params and params['limit'] < 1: # noqa: E501 + raise ValueError("Invalid value for parameter `limit` when calling `list_network_groupnets`, must be a value greater than or equal to `1`") # noqa: E501 + if ('resume' in params and + len(params['resume']) > 8192): + raise ValueError("Invalid value for parameter `resume` when calling `list_network_groupnets`, length must be less than or equal to `8192`") # noqa: E501 + if ('resume' in params and + len(params['resume']) < 0): + raise ValueError("Invalid value for parameter `resume` when calling `list_network_groupnets`, length must be greater than or equal to `0`") # noqa: E501 + if ('sort' in params and + len(params['sort']) > 255): + raise ValueError("Invalid value for parameter `sort` when calling `list_network_groupnets`, length must be less than or equal to `255`") # noqa: E501 + if ('sort' in params and + len(params['sort']) < 0): + raise ValueError("Invalid value for parameter `sort` when calling `list_network_groupnets`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] - if 'force' in params: - query_params.append(('force', params['force'])) # noqa: E501 + if 'dir' in params: + query_params.append(('dir', params['dir'])) # noqa: E501 + if 'limit' in params: + query_params.append(('limit', params['limit'])) # noqa: E501 + if 'resume' in params: + query_params.append(('resume', params['resume'])) # noqa: E501 + if 'sort' in params: + query_params.append(('sort', params['sort'])) # noqa: E501 header_params = {} @@ -2994,8 +1392,6 @@ def update_firewall_settings_with_http_info(self, firewall_settings, **kwargs): local_var_files = {} body_params = None - if 'firewall_settings' in params: - body_params = params['firewall_settings'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 @@ -3008,14 +1404,14 @@ def update_firewall_settings_with_http_info(self, firewall_settings, **kwargs): auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/20/network/firewall/settings', 'PUT', + '/platform/10/network/groupnets', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type=None, # noqa: E501 + response_type='NetworkGroupnetsExtended', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -3206,7 +1602,7 @@ def update_network_external_with_http_info(self, network_external, **kwargs): # auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/network/external', 'PUT', + '/platform/12/network/external', 'PUT', path_params, query_params, header_params, diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/network_groupnets_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/network_groupnets_api.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/api/network_groupnets_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/network_groupnets_api.py index 5bad80158..47d4d0927 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/network_groupnets_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/network_groupnets_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class NetworkGroupnetsApi(object): @@ -125,7 +125,7 @@ def create_groupnet_subnet_with_http_info(self, groupnet_subnet, groupnet, **kwa auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/network/groupnets/{Groupnet}/subnets', 'POST', + '/platform/12/network/groupnets/{Groupnet}/subnets', 'POST', path_params, query_params, header_params, @@ -244,7 +244,7 @@ def create_subnets_subnet_pool_with_http_info(self, subnets_subnet_pool, groupne auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools', 'POST', + '/platform/12/network/groupnets/{Groupnet}/subnets/{Subnet}/pools', 'POST', path_params, query_params, header_params, @@ -355,7 +355,7 @@ def delete_groupnet_subnet_with_http_info(self, groupnet_subnet_id, groupnet, ** auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/network/groupnets/{Groupnet}/subnets/{GroupnetSubnetId}', 'DELETE', + '/platform/12/network/groupnets/{Groupnet}/subnets/{GroupnetSubnetId}', 'DELETE', path_params, query_params, header_params, @@ -470,7 +470,7 @@ def delete_subnets_subnet_pool_with_http_info(self, subnets_subnet_pool_id, grou auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{SubnetsSubnetPoolId}', 'DELETE', + '/platform/12/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{SubnetsSubnetPoolId}', 'DELETE', path_params, query_params, header_params, @@ -577,7 +577,7 @@ def get_groupnet_subnet_with_http_info(self, groupnet_subnet_id, groupnet, **kwa auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/network/groupnets/{Groupnet}/subnets/{GroupnetSubnetId}', 'GET', + '/platform/12/network/groupnets/{Groupnet}/subnets/{GroupnetSubnetId}', 'GET', path_params, query_params, header_params, @@ -692,7 +692,7 @@ def get_subnets_subnet_pool_with_http_info(self, subnets_subnet_pool_id, groupne auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{SubnetsSubnetPoolId}', 'GET', + '/platform/12/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{SubnetsSubnetPoolId}', 'GET', path_params, query_params, header_params, @@ -826,7 +826,7 @@ def list_groupnet_subnets_with_http_info(self, groupnet, **kwargs): # noqa: E50 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/network/groupnets/{Groupnet}/subnets', 'GET', + '/platform/12/network/groupnets/{Groupnet}/subnets', 'GET', path_params, query_params, header_params, @@ -976,7 +976,7 @@ def list_subnets_subnet_pools_with_http_info(self, groupnet, subnet, **kwargs): auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools', 'GET', + '/platform/12/network/groupnets/{Groupnet}/subnets/{Subnet}/pools', 'GET', path_params, query_params, header_params, @@ -1095,7 +1095,7 @@ def update_groupnet_subnet_with_http_info(self, groupnet_subnet, groupnet_subnet auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/network/groupnets/{Groupnet}/subnets/{GroupnetSubnetId}', 'PUT', + '/platform/12/network/groupnets/{Groupnet}/subnets/{GroupnetSubnetId}', 'PUT', path_params, query_params, header_params, @@ -1222,7 +1222,7 @@ def update_subnets_subnet_pool_with_http_info(self, subnets_subnet_pool, subnets auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{SubnetsSubnetPoolId}', 'PUT', + '/platform/12/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{SubnetsSubnetPoolId}', 'PUT', path_params, query_params, header_params, diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/network_groupnets_subnets_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/network_groupnets_subnets_api.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/api/network_groupnets_subnets_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/network_groupnets_subnets_api.py index 8298b65bb..662ed0819 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/network_groupnets_subnets_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/network_groupnets_subnets_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class NetworkGroupnetsSubnetsApi(object): @@ -264,7 +264,7 @@ def create_pools_pool_rule_with_http_info(self, pools_pool_rule, groupnet, subne auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules', 'POST', + '/platform/3/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules', 'POST', path_params, query_params, header_params, @@ -633,7 +633,7 @@ def delete_pools_pool_rule_with_http_info(self, pools_pool_rule_id, groupnet, su auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules/{PoolsPoolRuleId}', 'DELETE', + '/platform/3/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules/{PoolsPoolRuleId}', 'DELETE', path_params, query_params, header_params, @@ -910,7 +910,7 @@ def get_pools_pool_rule_with_http_info(self, pools_pool_rule_id, groupnet, subne auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules/{PoolsPoolRuleId}', 'GET', + '/platform/3/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules/{PoolsPoolRuleId}', 'GET', path_params, query_params, header_params, @@ -1179,7 +1179,7 @@ def list_pools_pool_rules_with_http_info(self, groupnet, subnet, pool, **kwargs) auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules', 'GET', + '/platform/3/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules', 'GET', path_params, query_params, header_params, @@ -1310,7 +1310,7 @@ def update_pools_pool_rule_with_http_info(self, pools_pool_rule, pools_pool_rule auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules/{PoolsPoolRuleId}', 'PUT', + '/platform/3/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules/{PoolsPoolRuleId}', 'PUT', path_params, query_params, header_params, diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/papi_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/papi_api.py similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/api/papi_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/papi_api.py index a2e1be32f..3ce4433e0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/papi_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/papi_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class PapiApi(object): @@ -109,7 +109,7 @@ def get_papi_settings_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/papi/settings', 'GET', + '/platform/14/papi/settings', 'GET', path_params, query_params, header_params, @@ -134,7 +134,7 @@ def update_papi_settings(self, papi_settings, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :param PapiSettingsExtended papi_settings: (required) + :param PapiSettingsPapiSettings papi_settings: (required) :return: None If the method is called asynchronously, returns the request thread. @@ -156,7 +156,7 @@ def update_papi_settings_with_http_info(self, papi_settings, **kwargs): # noqa: >>> result = thread.get() :param async_req bool - :param PapiSettingsExtended papi_settings: (required) + :param PapiSettingsPapiSettings papi_settings: (required) :return: None If the method is called asynchronously, returns the request thread. @@ -208,7 +208,7 @@ def update_papi_settings_with_http_info(self, papi_settings, **kwargs): # noqa: auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/papi/settings', 'PUT', + '/platform/14/papi/settings', 'PUT', path_params, query_params, header_params, diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/performance_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/performance_api.py similarity index 86% rename from isilon_sdk/isilon_sdk/v9_11_0/api/performance_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/performance_api.py index 9eeaada3a..01fe3c817 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/performance_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/performance_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class PerformanceApi(object): @@ -121,7 +121,7 @@ def create_performance_dataset_with_http_info(self, performance_dataset, **kwarg auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/performance/datasets', 'POST', + '/platform/12/performance/datasets', 'POST', path_params, query_params, header_params, @@ -136,121 +136,6 @@ def create_performance_dataset_with_http_info(self, performance_dataset, **kwarg _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def delete_datasets_dataset_workloads_workload_limit(self, datasets_dataset_workloads_workload_limit_id, dataset, workload, **kwargs): # noqa: E501 - """delete_datasets_dataset_workloads_workload_limit # noqa: E501 - - Delete the workload limit. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_datasets_dataset_workloads_workload_limit(datasets_dataset_workloads_workload_limit_id, dataset, workload, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str datasets_dataset_workloads_workload_limit_id: Delete the workload limit. (required) - :param str dataset: (required) - :param str workload: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.delete_datasets_dataset_workloads_workload_limit_with_http_info(datasets_dataset_workloads_workload_limit_id, dataset, workload, **kwargs) # noqa: E501 - else: - (data) = self.delete_datasets_dataset_workloads_workload_limit_with_http_info(datasets_dataset_workloads_workload_limit_id, dataset, workload, **kwargs) # noqa: E501 - return data - - def delete_datasets_dataset_workloads_workload_limit_with_http_info(self, datasets_dataset_workloads_workload_limit_id, dataset, workload, **kwargs): # noqa: E501 - """delete_datasets_dataset_workloads_workload_limit # noqa: E501 - - Delete the workload limit. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.delete_datasets_dataset_workloads_workload_limit_with_http_info(datasets_dataset_workloads_workload_limit_id, dataset, workload, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str datasets_dataset_workloads_workload_limit_id: Delete the workload limit. (required) - :param str dataset: (required) - :param str workload: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['datasets_dataset_workloads_workload_limit_id', 'dataset', 'workload'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method delete_datasets_dataset_workloads_workload_limit" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'datasets_dataset_workloads_workload_limit_id' is set - if ('datasets_dataset_workloads_workload_limit_id' not in params or - params['datasets_dataset_workloads_workload_limit_id'] is None): - raise ValueError("Missing the required parameter `datasets_dataset_workloads_workload_limit_id` when calling `delete_datasets_dataset_workloads_workload_limit`") # noqa: E501 - # verify the required parameter 'dataset' is set - if ('dataset' not in params or - params['dataset'] is None): - raise ValueError("Missing the required parameter `dataset` when calling `delete_datasets_dataset_workloads_workload_limit`") # noqa: E501 - # verify the required parameter 'workload' is set - if ('workload' not in params or - params['workload'] is None): - raise ValueError("Missing the required parameter `workload` when calling `delete_datasets_dataset_workloads_workload_limit`") # noqa: E501 - - collection_formats = {} - - path_params = {} - if 'datasets_dataset_workloads_workload_limit_id' in params: - path_params['DatasetsDatasetWorkloadsWorkloadLimitId'] = params['datasets_dataset_workloads_workload_limit_id'] # noqa: E501 - if 'dataset' in params: - path_params['Dataset'] = params['dataset'] # noqa: E501 - if 'workload' in params: - path_params['Workload'] = params['workload'] # noqa: E501 - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/performance/datasets/{Dataset}/workloads/{Workload}/limits/{DatasetsDatasetWorkloadsWorkloadLimitId}', 'DELETE', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - def delete_performance_dataset(self, performance_dataset_id, **kwargs): # noqa: E501 """delete_performance_dataset # noqa: E501 @@ -335,7 +220,7 @@ def delete_performance_dataset_with_http_info(self, performance_dataset_id, **kw auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/performance/datasets/{PerformanceDatasetId}', 'DELETE', + '/platform/12/performance/datasets/{PerformanceDatasetId}', 'DELETE', path_params, query_params, header_params, @@ -434,7 +319,7 @@ def get_performance_dataset_with_http_info(self, performance_dataset_id, **kwarg auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/performance/datasets/{PerformanceDatasetId}', 'GET', + '/platform/12/performance/datasets/{PerformanceDatasetId}', 'GET', path_params, query_params, header_params, @@ -533,7 +418,7 @@ def get_performance_metric_with_http_info(self, performance_metric_id, **kwargs) auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/performance/metrics/{PerformanceMetricId}', 'GET', + '/platform/12/performance/metrics/{PerformanceMetricId}', 'GET', path_params, query_params, header_params, @@ -641,7 +526,7 @@ def get_performance_metrics_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/performance/metrics', 'GET', + '/platform/12/performance/metrics', 'GET', path_params, query_params, header_params, @@ -732,7 +617,7 @@ def get_performance_settings_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/performance/settings', 'GET', + '/platform/12/performance/settings', 'GET', path_params, query_params, header_params, @@ -858,7 +743,7 @@ def list_performance_datasets_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/performance/datasets', 'GET', + '/platform/12/performance/datasets', 'GET', path_params, query_params, header_params, @@ -965,7 +850,7 @@ def update_performance_dataset_with_http_info(self, performance_dataset, perform auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/performance/datasets/{PerformanceDatasetId}', 'PUT', + '/platform/12/performance/datasets/{PerformanceDatasetId}', 'PUT', path_params, query_params, header_params, @@ -1068,7 +953,7 @@ def update_performance_settings_with_http_info(self, performance_settings, **kwa auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/performance/settings', 'PUT', + '/platform/12/performance/settings', 'PUT', path_params, query_params, header_params, diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/performance_datasets_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/performance_datasets_api.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/api/performance_datasets_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/performance_datasets_api.py index 393bf80b1..ffe482997 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/performance_datasets_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/performance_datasets_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class PerformanceDatasetsApi(object): @@ -129,7 +129,7 @@ def create_dataset_filter_with_http_info(self, dataset_filter, dataset, **kwargs auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/performance/datasets/{Dataset}/filters', 'POST', + '/platform/12/performance/datasets/{Dataset}/filters', 'POST', path_params, query_params, header_params, @@ -240,7 +240,7 @@ def create_dataset_workload_with_http_info(self, dataset_workload, dataset, **kw auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/performance/datasets/{Dataset}/workloads', 'POST', + '/platform/12/performance/datasets/{Dataset}/workloads', 'POST', path_params, query_params, header_params, @@ -347,7 +347,7 @@ def delete_dataset_filter_with_http_info(self, dataset_filter_id, dataset, **kwa auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/performance/datasets/{Dataset}/filters/{DatasetFilterId}', 'DELETE', + '/platform/12/performance/datasets/{Dataset}/filters/{DatasetFilterId}', 'DELETE', path_params, query_params, header_params, @@ -446,7 +446,7 @@ def delete_dataset_filters_with_http_info(self, dataset, **kwargs): # noqa: E50 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/performance/datasets/{Dataset}/filters', 'DELETE', + '/platform/12/performance/datasets/{Dataset}/filters', 'DELETE', path_params, query_params, header_params, @@ -553,7 +553,7 @@ def delete_dataset_workload_with_http_info(self, dataset_workload_id, dataset, * auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/performance/datasets/{Dataset}/workloads/{DatasetWorkloadId}', 'DELETE', + '/platform/12/performance/datasets/{Dataset}/workloads/{DatasetWorkloadId}', 'DELETE', path_params, query_params, header_params, @@ -652,7 +652,7 @@ def delete_dataset_workloads_with_http_info(self, dataset, **kwargs): # noqa: E auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/performance/datasets/{Dataset}/workloads', 'DELETE', + '/platform/12/performance/datasets/{Dataset}/workloads', 'DELETE', path_params, query_params, header_params, @@ -759,7 +759,7 @@ def get_dataset_filter_with_http_info(self, dataset_filter_id, dataset, **kwargs auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/performance/datasets/{Dataset}/filters/{DatasetFilterId}', 'GET', + '/platform/12/performance/datasets/{Dataset}/filters/{DatasetFilterId}', 'GET', path_params, query_params, header_params, @@ -866,7 +866,7 @@ def get_dataset_workload_with_http_info(self, dataset_workload_id, dataset, **kw auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/performance/datasets/{Dataset}/workloads/{DatasetWorkloadId}', 'GET', + '/platform/12/performance/datasets/{Dataset}/workloads/{DatasetWorkloadId}', 'GET', path_params, query_params, header_params, @@ -1000,7 +1000,7 @@ def list_dataset_filters_with_http_info(self, dataset, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/performance/datasets/{Dataset}/filters', 'GET', + '/platform/12/performance/datasets/{Dataset}/filters', 'GET', path_params, query_params, header_params, @@ -1134,7 +1134,7 @@ def list_dataset_workloads_with_http_info(self, dataset, **kwargs): # noqa: E50 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/performance/datasets/{Dataset}/workloads', 'GET', + '/platform/12/performance/datasets/{Dataset}/workloads', 'GET', path_params, query_params, header_params, @@ -1249,7 +1249,7 @@ def update_dataset_filter_with_http_info(self, dataset_filter, dataset_filter_id auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/performance/datasets/{Dataset}/filters/{DatasetFilterId}', 'PUT', + '/platform/12/performance/datasets/{Dataset}/filters/{DatasetFilterId}', 'PUT', path_params, query_params, header_params, @@ -1364,7 +1364,7 @@ def update_dataset_workload_with_http_info(self, dataset_workload, dataset_workl auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/performance/datasets/{Dataset}/workloads/{DatasetWorkloadId}', 'PUT', + '/platform/12/performance/datasets/{Dataset}/workloads/{DatasetWorkloadId}', 'PUT', path_params, query_params, header_params, diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/protocols_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/protocols_api.py similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/api/protocols_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/protocols_api.py index 9485b91e3..f1b2057b9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/protocols_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/protocols_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class ProtocolsApi(object): @@ -864,7 +864,7 @@ def create_nfs_export_with_http_info(self, nfs_export, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/protocols/nfs/exports', 'POST', + '/platform/4/protocols/nfs/exports', 'POST', path_params, query_params, header_params, @@ -2017,7 +2017,7 @@ def create_smb_share_with_http_info(self, smb_share, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/protocols/smb/shares', 'POST', + '/platform/12/protocols/smb/shares', 'POST', path_params, query_params, header_params, @@ -2032,6 +2032,109 @@ def create_smb_share_with_http_info(self, smb_share, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) + def create_swift_account(self, swift_account, **kwargs): # noqa: E501 + """create_swift_account # noqa: E501 + + Create a new Swift account # noqa: E501 + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + >>> thread = api.create_swift_account(swift_account, async_req=True) + >>> result = thread.get() + + :param async_req bool + :param SwiftAccount swift_account: (required) + :param str zone: Access zone which contains Swift account. + :return: Empty + If the method is called asynchronously, + returns the request thread. + """ + kwargs['_return_http_data_only'] = True + if kwargs.get('async_req'): + return self.create_swift_account_with_http_info(swift_account, **kwargs) # noqa: E501 + else: + (data) = self.create_swift_account_with_http_info(swift_account, **kwargs) # noqa: E501 + return data + + def create_swift_account_with_http_info(self, swift_account, **kwargs): # noqa: E501 + """create_swift_account # noqa: E501 + + Create a new Swift account # noqa: E501 + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + >>> thread = api.create_swift_account_with_http_info(swift_account, async_req=True) + >>> result = thread.get() + + :param async_req bool + :param SwiftAccount swift_account: (required) + :param str zone: Access zone which contains Swift account. + :return: Empty + If the method is called asynchronously, + returns the request thread. + """ + + all_params = ['swift_account', 'zone'] # noqa: E501 + all_params.append('async_req') + all_params.append('_return_http_data_only') + all_params.append('_preload_content') + all_params.append('_request_timeout') + + params = locals() + for key, val in six.iteritems(params['kwargs']): + if key not in all_params: + raise TypeError( + "Got an unexpected keyword argument '%s'" + " to method create_swift_account" % key + ) + params[key] = val + del params['kwargs'] + # verify the required parameter 'swift_account' is set + if ('swift_account' not in params or + params['swift_account'] is None): + raise ValueError("Missing the required parameter `swift_account` when calling `create_swift_account`") # noqa: E501 + + collection_formats = {} + + path_params = {} + + query_params = [] + if 'zone' in params: + query_params.append(('zone', params['zone'])) # noqa: E501 + + header_params = {} + + form_params = [] + local_var_files = {} + + body_params = None + if 'swift_account' in params: + body_params = params['swift_account'] + # HTTP header `Accept` + header_params['Accept'] = self.api_client.select_header_accept( + ['application/json']) # noqa: E501 + + # HTTP header `Content-Type` + header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 + ['application/json']) # noqa: E501 + + # Authentication setting + auth_settings = ['basicAuth'] # noqa: E501 + + return self.api_client.call_api( + '/platform/3/protocols/swift/accounts', 'POST', + path_params, + query_params, + header_params, + body=body_params, + post_params=form_params, + files=local_var_files, + response_type='Empty', # noqa: E501 + auth_settings=auth_settings, + async_req=params.get('async_req'), + _return_http_data_only=params.get('_return_http_data_only'), + _preload_content=params.get('_preload_content', True), + _request_timeout=params.get('_request_timeout'), + collection_formats=collection_formats) + def delete_hdfs_fsimage_latest(self, **kwargs): # noqa: E501 """delete_hdfs_fsimage_latest # noqa: E501 @@ -3428,7 +3531,7 @@ def delete_nfs_export_with_http_info(self, nfs_export_id, **kwargs): # noqa: E5 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/protocols/nfs/exports/{NfsExportId}', 'DELETE', + '/platform/4/protocols/nfs/exports/{NfsExportId}', 'DELETE', path_params, query_params, header_params, @@ -4640,7 +4743,7 @@ def delete_smb_share_with_http_info(self, smb_share_id, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/protocols/smb/shares/{SmbShareId}', 'DELETE', + '/platform/12/protocols/smb/shares/{SmbShareId}', 'DELETE', path_params, query_params, header_params, @@ -4741,7 +4844,110 @@ def delete_smb_shares_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/protocols/smb/shares', 'DELETE', + '/platform/12/protocols/smb/shares', 'DELETE', + path_params, + query_params, + header_params, + body=body_params, + post_params=form_params, + files=local_var_files, + response_type=None, # noqa: E501 + auth_settings=auth_settings, + async_req=params.get('async_req'), + _return_http_data_only=params.get('_return_http_data_only'), + _preload_content=params.get('_preload_content', True), + _request_timeout=params.get('_request_timeout'), + collection_formats=collection_formats) + + def delete_swift_account(self, swift_account_id, **kwargs): # noqa: E501 + """delete_swift_account # noqa: E501 + + Delete a Swift account. # noqa: E501 + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + >>> thread = api.delete_swift_account(swift_account_id, async_req=True) + >>> result = thread.get() + + :param async_req bool + :param str swift_account_id: Delete a Swift account. (required) + :param str zone: Access zone which contains Swift account. + :return: None + If the method is called asynchronously, + returns the request thread. + """ + kwargs['_return_http_data_only'] = True + if kwargs.get('async_req'): + return self.delete_swift_account_with_http_info(swift_account_id, **kwargs) # noqa: E501 + else: + (data) = self.delete_swift_account_with_http_info(swift_account_id, **kwargs) # noqa: E501 + return data + + def delete_swift_account_with_http_info(self, swift_account_id, **kwargs): # noqa: E501 + """delete_swift_account # noqa: E501 + + Delete a Swift account. # noqa: E501 + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + >>> thread = api.delete_swift_account_with_http_info(swift_account_id, async_req=True) + >>> result = thread.get() + + :param async_req bool + :param str swift_account_id: Delete a Swift account. (required) + :param str zone: Access zone which contains Swift account. + :return: None + If the method is called asynchronously, + returns the request thread. + """ + + all_params = ['swift_account_id', 'zone'] # noqa: E501 + all_params.append('async_req') + all_params.append('_return_http_data_only') + all_params.append('_preload_content') + all_params.append('_request_timeout') + + params = locals() + for key, val in six.iteritems(params['kwargs']): + if key not in all_params: + raise TypeError( + "Got an unexpected keyword argument '%s'" + " to method delete_swift_account" % key + ) + params[key] = val + del params['kwargs'] + # verify the required parameter 'swift_account_id' is set + if ('swift_account_id' not in params or + params['swift_account_id'] is None): + raise ValueError("Missing the required parameter `swift_account_id` when calling `delete_swift_account`") # noqa: E501 + + collection_formats = {} + + path_params = {} + if 'swift_account_id' in params: + path_params['SwiftAccountId'] = params['swift_account_id'] # noqa: E501 + + query_params = [] + if 'zone' in params: + query_params.append(('zone', params['zone'])) # noqa: E501 + + header_params = {} + + form_params = [] + local_var_files = {} + + body_params = None + # HTTP header `Accept` + header_params['Accept'] = self.api_client.select_header_accept( + ['application/json']) # noqa: E501 + + # HTTP header `Content-Type` + header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 + ['application/json']) # noqa: E501 + + # Authentication setting + auth_settings = ['basicAuth'] # noqa: E501 + + return self.api_client.call_api( + '/platform/3/protocols/swift/accounts/{SwiftAccountId}', 'DELETE', path_params, query_params, header_params, @@ -4832,7 +5038,7 @@ def get_ftp_settings_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/protocols/ftp/settings', 'GET', + '/platform/3/protocols/ftp/settings', 'GET', path_params, query_params, header_params, @@ -6362,7 +6568,7 @@ def get_http_settings_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/protocols/http/settings', 'GET', + '/platform/3/protocols/http/settings', 'GET', path_params, query_params, header_params, @@ -7728,7 +7934,7 @@ def get_ndmp_settings_global_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/20/protocols/ndmp/settings/global', 'GET', + '/platform/3/protocols/ndmp/settings/global', 'GET', path_params, query_params, header_params, @@ -8296,7 +8502,7 @@ def get_nfs_export(self, nfs_export_id, **kwargs): # noqa: E501 :param async_req bool :param str nfs_export_id: Retrieve export information. (required) - :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. + :param str scope: When specified as 'effective', or not specified, all fields are returned. When specified as 'user', only fields with non-default values are shown. When specified as 'default', the original values are returned. :param str zone: Access zone :return: NfsExports If the method is called asynchronously, @@ -8320,7 +8526,7 @@ def get_nfs_export_with_http_info(self, nfs_export_id, **kwargs): # noqa: E501 :param async_req bool :param str nfs_export_id: Retrieve export information. (required) - :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. + :param str scope: When specified as 'effective', or not specified, all fields are returned. When specified as 'user', only fields with non-default values are shown. When specified as 'default', the original values are returned. :param str zone: Access zone :return: NfsExports If the method is called asynchronously, @@ -8347,12 +8553,6 @@ def get_nfs_export_with_http_info(self, nfs_export_id, **kwargs): # noqa: E501 params['nfs_export_id'] is None): raise ValueError("Missing the required parameter `nfs_export_id` when calling `get_nfs_export`") # noqa: E501 - if ('scope' in params and - len(params['scope']) > 255): - raise ValueError("Invalid value for parameter `scope` when calling `get_nfs_export`, length must be less than or equal to `255`") # noqa: E501 - if ('scope' in params and - len(params['scope']) < 0): - raise ValueError("Invalid value for parameter `scope` when calling `get_nfs_export`, length must be greater than or equal to `0`") # noqa: E501 collection_formats = {} path_params = {} @@ -8383,7 +8583,7 @@ def get_nfs_export_with_http_info(self, nfs_export_id, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/protocols/nfs/exports/{NfsExportId}', 'GET', + '/platform/4/protocols/nfs/exports/{NfsExportId}', 'GET', path_params, query_params, header_params, @@ -8493,178 +8693,6 @@ def get_nfs_exports_summary_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_nfs_locks(self, **kwargs): # noqa: E501 - """get_nfs_locks # noqa: E501 - - List all locks. # 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_nfs_locks(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str client: Filter locks by the specified client host - :param int client_id: Filter locks by the specified client ID. - :param int created: Return locks created before the - :param str dir: The direction of the sort. - :param int limit: Return no more than this many results at once (see resume). - :param int lin: Filter locks by the specified LIN in /ifs that is locked. - :param str path: Filter locks by the specified path under /ifs. - :param str sort: The field that will be used for sorting. - :param str version: Filter by major NFS version: v3 or v4. - :return: NfsLocks - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_nfs_locks_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_nfs_locks_with_http_info(**kwargs) # noqa: E501 - return data - - def get_nfs_locks_with_http_info(self, **kwargs): # noqa: E501 - """get_nfs_locks # noqa: E501 - - List all locks. # 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_nfs_locks_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str client: Filter locks by the specified client host - :param int client_id: Filter locks by the specified client ID. - :param int created: Return locks created before the - :param str dir: The direction of the sort. - :param int limit: Return no more than this many results at once (see resume). - :param int lin: Filter locks by the specified LIN in /ifs that is locked. - :param str path: Filter locks by the specified path under /ifs. - :param str sort: The field that will be used for sorting. - :param str version: Filter by major NFS version: v3 or v4. - :return: NfsLocks - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['client', 'client_id', 'created', 'dir', 'limit', 'lin', 'path', 'sort', 'version'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_nfs_locks" % key - ) - params[key] = val - del params['kwargs'] - - if ('client' in params and - len(params['client']) > 255): - raise ValueError("Invalid value for parameter `client` when calling `get_nfs_locks`, length must be less than or equal to `255`") # noqa: E501 - if ('client' in params and - len(params['client']) < 1): - raise ValueError("Invalid value for parameter `client` when calling `get_nfs_locks`, length must be greater than or equal to `1`") # noqa: E501 - if 'client_id' in params and params['client_id'] > -1: # noqa: E501 - raise ValueError("Invalid value for parameter `client_id` when calling `get_nfs_locks`, must be a value less than or equal to `-1`") # noqa: E501 - if 'client_id' in params and params['client_id'] < 0: # noqa: E501 - raise ValueError("Invalid value for parameter `client_id` when calling `get_nfs_locks`, must be a value greater than or equal to `0`") # noqa: E501 - if 'created' in params and params['created'] > 4294967295: # noqa: E501 - raise ValueError("Invalid value for parameter `created` when calling `get_nfs_locks`, must be a value less than or equal to `4294967295`") # noqa: E501 - if 'created' in params and params['created'] < 0: # noqa: E501 - raise ValueError("Invalid value for parameter `created` when calling `get_nfs_locks`, must be a value greater than or equal to `0`") # noqa: E501 - if ('dir' in params and - len(params['dir']) < 0): - raise ValueError("Invalid value for parameter `dir` when calling `get_nfs_locks`, length must be greater than or equal to `0`") # noqa: E501 - if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_nfs_locks`, must be a value less than or equal to `4294967295`") # noqa: E501 - if 'limit' in params and params['limit'] < 1: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_nfs_locks`, must be a value greater than or equal to `1`") # noqa: E501 - if 'lin' in params and params['lin'] > -1: # noqa: E501 - raise ValueError("Invalid value for parameter `lin` when calling `get_nfs_locks`, must be a value less than or equal to `-1`") # noqa: E501 - if 'lin' in params and params['lin'] < 0: # noqa: E501 - raise ValueError("Invalid value for parameter `lin` when calling `get_nfs_locks`, must be a value greater than or equal to `0`") # noqa: E501 - if ('path' in params and - len(params['path']) > 4096): - raise ValueError("Invalid value for parameter `path` when calling `get_nfs_locks`, length must be less than or equal to `4096`") # noqa: E501 - if ('path' in params and - len(params['path']) < 4): - raise ValueError("Invalid value for parameter `path` when calling `get_nfs_locks`, length must be greater than or equal to `4`") # noqa: E501 - if 'path' in params and not re.search('^\/ifs$|^\/ifs\/', params['path']): # noqa: E501 - raise ValueError("Invalid value for parameter `path` when calling `get_nfs_locks`, must conform to the pattern `/^\/ifs$|^\/ifs\//`") # noqa: E501 - if ('sort' in params and - len(params['sort']) > 255): - raise ValueError("Invalid value for parameter `sort` when calling `get_nfs_locks`, length must be less than or equal to `255`") # noqa: E501 - if ('sort' in params and - len(params['sort']) < 0): - raise ValueError("Invalid value for parameter `sort` when calling `get_nfs_locks`, length must be greater than or equal to `0`") # noqa: E501 - if ('version' in params and - len(params['version']) > 5): - raise ValueError("Invalid value for parameter `version` when calling `get_nfs_locks`, length must be less than or equal to `5`") # noqa: E501 - if ('version' in params and - len(params['version']) < 2): - raise ValueError("Invalid value for parameter `version` when calling `get_nfs_locks`, length must be greater than or equal to `2`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'client' in params: - query_params.append(('client', params['client'])) # noqa: E501 - if 'client_id' in params: - query_params.append(('client_id', params['client_id'])) # noqa: E501 - if 'created' in params: - query_params.append(('created', params['created'])) # noqa: E501 - if 'dir' in params: - query_params.append(('dir', params['dir'])) # noqa: E501 - if 'limit' in params: - query_params.append(('limit', params['limit'])) # noqa: E501 - if 'lin' in params: - query_params.append(('lin', params['lin'])) # noqa: E501 - if 'path' in params: - query_params.append(('path', params['path'])) # noqa: E501 - if 'sort' in params: - query_params.append(('sort', params['sort'])) # noqa: E501 - if 'version' in params: - query_params.append(('version', params['version'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/protocols/nfs/locks', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='NfsLocks', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - def get_nfs_log_level(self, **kwargs): # noqa: E501 """get_nfs_log_level # noqa: E501 @@ -9535,7 +9563,7 @@ def get_nfs_settings_global_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/protocols/nfs/settings/global', 'GET', + '/platform/14/protocols/nfs/settings/global', 'GET', path_params, query_params, header_params, @@ -9596,183 +9624,21 @@ def get_nfs_settings_zone_with_http_info(self, **kwargs): # noqa: E501 params = locals() for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_nfs_settings_zone" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/2/protocols/nfs/settings/zone', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='NfsSettingsZone', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - - def get_nfs_waiters(self, **kwargs): # noqa: E501 - """get_nfs_waiters # noqa: E501 - - List all persisted lock waiters. # 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_nfs_waiters(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str client: Filter locks by the specified client host - :param int client_id: Filter locks by the specified client ID. - :param int created: Return locks created before the - :param str dir: The direction of the sort. - :param int limit: Return no more than this many results at once (see resume). - :param int lin: Filter locks by the specified LIN in /ifs that is locked. - :param str path: Filter locks by the specified path under /ifs. - :param str sort: The field that will be used for sorting. - :return: NfsWaiters - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_nfs_waiters_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_nfs_waiters_with_http_info(**kwargs) # noqa: E501 - return data - - def get_nfs_waiters_with_http_info(self, **kwargs): # noqa: E501 - """get_nfs_waiters # noqa: E501 - - List all persisted lock waiters. # 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_nfs_waiters_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str client: Filter locks by the specified client host - :param int client_id: Filter locks by the specified client ID. - :param int created: Return locks created before the - :param str dir: The direction of the sort. - :param int limit: Return no more than this many results at once (see resume). - :param int lin: Filter locks by the specified LIN in /ifs that is locked. - :param str path: Filter locks by the specified path under /ifs. - :param str sort: The field that will be used for sorting. - :return: NfsWaiters - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['client', 'client_id', 'created', 'dir', 'limit', 'lin', 'path', 'sort'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_nfs_waiters" % key - ) - params[key] = val - del params['kwargs'] - - if ('client' in params and - len(params['client']) > 255): - raise ValueError("Invalid value for parameter `client` when calling `get_nfs_waiters`, length must be less than or equal to `255`") # noqa: E501 - if ('client' in params and - len(params['client']) < 1): - raise ValueError("Invalid value for parameter `client` when calling `get_nfs_waiters`, length must be greater than or equal to `1`") # noqa: E501 - if 'client_id' in params and params['client_id'] > -1: # noqa: E501 - raise ValueError("Invalid value for parameter `client_id` when calling `get_nfs_waiters`, must be a value less than or equal to `-1`") # noqa: E501 - if 'client_id' in params and params['client_id'] < 0: # noqa: E501 - raise ValueError("Invalid value for parameter `client_id` when calling `get_nfs_waiters`, must be a value greater than or equal to `0`") # noqa: E501 - if 'created' in params and params['created'] > 4294967295: # noqa: E501 - raise ValueError("Invalid value for parameter `created` when calling `get_nfs_waiters`, must be a value less than or equal to `4294967295`") # noqa: E501 - if 'created' in params and params['created'] < 0: # noqa: E501 - raise ValueError("Invalid value for parameter `created` when calling `get_nfs_waiters`, must be a value greater than or equal to `0`") # noqa: E501 - if ('dir' in params and - len(params['dir']) < 0): - raise ValueError("Invalid value for parameter `dir` when calling `get_nfs_waiters`, length must be greater than or equal to `0`") # noqa: E501 - if 'limit' in params and params['limit'] > 4294967295: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_nfs_waiters`, must be a value less than or equal to `4294967295`") # noqa: E501 - if 'limit' in params and params['limit'] < 1: # noqa: E501 - raise ValueError("Invalid value for parameter `limit` when calling `get_nfs_waiters`, must be a value greater than or equal to `1`") # noqa: E501 - if 'lin' in params and params['lin'] > -1: # noqa: E501 - raise ValueError("Invalid value for parameter `lin` when calling `get_nfs_waiters`, must be a value less than or equal to `-1`") # noqa: E501 - if 'lin' in params and params['lin'] < 0: # noqa: E501 - raise ValueError("Invalid value for parameter `lin` when calling `get_nfs_waiters`, must be a value greater than or equal to `0`") # noqa: E501 - if ('path' in params and - len(params['path']) > 4096): - raise ValueError("Invalid value for parameter `path` when calling `get_nfs_waiters`, length must be less than or equal to `4096`") # noqa: E501 - if ('path' in params and - len(params['path']) < 4): - raise ValueError("Invalid value for parameter `path` when calling `get_nfs_waiters`, length must be greater than or equal to `4`") # noqa: E501 - if 'path' in params and not re.search('^\/ifs$|^\/ifs\/', params['path']): # noqa: E501 - raise ValueError("Invalid value for parameter `path` when calling `get_nfs_waiters`, must conform to the pattern `/^\/ifs$|^\/ifs\//`") # noqa: E501 - if ('sort' in params and - len(params['sort']) > 255): - raise ValueError("Invalid value for parameter `sort` when calling `get_nfs_waiters`, length must be less than or equal to `255`") # noqa: E501 - if ('sort' in params and - len(params['sort']) < 0): - raise ValueError("Invalid value for parameter `sort` when calling `get_nfs_waiters`, length must be greater than or equal to `0`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'client' in params: - query_params.append(('client', params['client'])) # noqa: E501 - if 'client_id' in params: - query_params.append(('client_id', params['client_id'])) # noqa: E501 - if 'created' in params: - query_params.append(('created', params['created'])) # noqa: E501 - if 'dir' in params: - query_params.append(('dir', params['dir'])) # noqa: E501 - if 'limit' in params: - query_params.append(('limit', params['limit'])) # noqa: E501 - if 'lin' in params: - query_params.append(('lin', params['lin'])) # noqa: E501 - if 'path' in params: - query_params.append(('path', params['path'])) # noqa: E501 - if 'sort' in params: - query_params.append(('sort', params['sort'])) # noqa: E501 + if key not in all_params: + raise TypeError( + "Got an unexpected keyword argument '%s'" + " to method get_nfs_settings_zone" % key + ) + params[key] = val + del params['kwargs'] + + collection_formats = {} + + path_params = {} + + query_params = [] + if 'zone' in params: + query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -9792,14 +9658,14 @@ def get_nfs_waiters_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/protocols/nfs/waiters', 'GET', + '/platform/2/protocols/nfs/settings/zone', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, - response_type='NfsWaiters', # noqa: E501 + response_type='NfsSettingsZone', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -10993,7 +10859,7 @@ def get_smb_settings_global_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/17/protocols/smb/settings/global', 'GET', + '/platform/7/protocols/smb/settings/global', 'GET', path_params, query_params, header_params, @@ -11203,7 +11069,7 @@ def get_smb_settings_zone_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/17/protocols/smb/settings/zone', 'GET', + '/platform/6/protocols/smb/settings/zone', 'GET', path_params, query_params, header_params, @@ -11320,7 +11186,7 @@ def get_smb_share_with_http_info(self, smb_share_id, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/protocols/smb/shares/{SmbShareId}', 'GET', + '/platform/12/protocols/smb/shares/{SmbShareId}', 'GET', path_params, query_params, header_params, @@ -11512,7 +11378,7 @@ def get_snmp_settings_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/protocols/snmp/settings', 'GET', + '/platform/5/protocols/snmp/settings', 'GET', path_params, query_params, header_params, @@ -11603,7 +11469,7 @@ def get_ssh_settings_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/protocols/ssh/settings', 'GET', + '/platform/8/protocols/ssh/settings', 'GET', path_params, query_params, header_params, @@ -11618,6 +11484,109 @@ def get_ssh_settings_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) + def get_swift_account(self, swift_account_id, **kwargs): # noqa: E501 + """get_swift_account # noqa: E501 + + List a swift account. # 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_swift_account(swift_account_id, async_req=True) + >>> result = thread.get() + + :param async_req bool + :param str swift_account_id: List a swift account. (required) + :param str zone: Access zone which contains Swift account. + :return: SwiftAccounts + If the method is called asynchronously, + returns the request thread. + """ + kwargs['_return_http_data_only'] = True + if kwargs.get('async_req'): + return self.get_swift_account_with_http_info(swift_account_id, **kwargs) # noqa: E501 + else: + (data) = self.get_swift_account_with_http_info(swift_account_id, **kwargs) # noqa: E501 + return data + + def get_swift_account_with_http_info(self, swift_account_id, **kwargs): # noqa: E501 + """get_swift_account # noqa: E501 + + List a swift account. # 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_swift_account_with_http_info(swift_account_id, async_req=True) + >>> result = thread.get() + + :param async_req bool + :param str swift_account_id: List a swift account. (required) + :param str zone: Access zone which contains Swift account. + :return: SwiftAccounts + If the method is called asynchronously, + returns the request thread. + """ + + all_params = ['swift_account_id', 'zone'] # noqa: E501 + all_params.append('async_req') + all_params.append('_return_http_data_only') + all_params.append('_preload_content') + all_params.append('_request_timeout') + + params = locals() + for key, val in six.iteritems(params['kwargs']): + if key not in all_params: + raise TypeError( + "Got an unexpected keyword argument '%s'" + " to method get_swift_account" % key + ) + params[key] = val + del params['kwargs'] + # verify the required parameter 'swift_account_id' is set + if ('swift_account_id' not in params or + params['swift_account_id'] is None): + raise ValueError("Missing the required parameter `swift_account_id` when calling `get_swift_account`") # noqa: E501 + + collection_formats = {} + + path_params = {} + if 'swift_account_id' in params: + path_params['SwiftAccountId'] = params['swift_account_id'] # noqa: E501 + + query_params = [] + if 'zone' in params: + query_params.append(('zone', params['zone'])) # noqa: E501 + + header_params = {} + + form_params = [] + local_var_files = {} + + body_params = None + # HTTP header `Accept` + header_params['Accept'] = self.api_client.select_header_accept( + ['application/json']) # noqa: E501 + + # HTTP header `Content-Type` + header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 + ['application/json']) # noqa: E501 + + # Authentication setting + auth_settings = ['basicAuth'] # noqa: E501 + + return self.api_client.call_api( + '/platform/3/protocols/swift/accounts/{SwiftAccountId}', 'GET', + path_params, + query_params, + header_params, + body=body_params, + post_params=form_params, + files=local_var_files, + response_type='SwiftAccounts', # noqa: E501 + auth_settings=auth_settings, + async_req=params.get('async_req'), + _return_http_data_only=params.get('_return_http_data_only'), + _preload_content=params.get('_preload_content', True), + _request_timeout=params.get('_request_timeout'), + collection_formats=collection_formats) + def list_hdfs_crypto_encryption_zones(self, **kwargs): # noqa: E501 """list_hdfs_crypto_encryption_zones # noqa: E501 @@ -12467,7 +12436,7 @@ def list_nfs_exports_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/protocols/nfs/exports', 'GET', + '/platform/4/protocols/nfs/exports', 'GET', path_params, query_params, header_params, @@ -13102,7 +13071,7 @@ def list_smb_shares_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/protocols/smb/shares', 'GET', + '/platform/12/protocols/smb/shares', 'GET', path_params, query_params, header_params, @@ -13117,6 +13086,101 @@ def list_smb_shares_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) + def list_swift_accounts(self, **kwargs): # noqa: E501 + """list_swift_accounts # noqa: E501 + + List all swift accounts. # noqa: E501 + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + >>> thread = api.list_swift_accounts(async_req=True) + >>> result = thread.get() + + :param async_req bool + :param str zone: Access zone which contains Swift accounts. + :return: SwiftAccountsExtended + If the method is called asynchronously, + returns the request thread. + """ + kwargs['_return_http_data_only'] = True + if kwargs.get('async_req'): + return self.list_swift_accounts_with_http_info(**kwargs) # noqa: E501 + else: + (data) = self.list_swift_accounts_with_http_info(**kwargs) # noqa: E501 + return data + + def list_swift_accounts_with_http_info(self, **kwargs): # noqa: E501 + """list_swift_accounts # noqa: E501 + + List all swift accounts. # noqa: E501 + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + >>> thread = api.list_swift_accounts_with_http_info(async_req=True) + >>> result = thread.get() + + :param async_req bool + :param str zone: Access zone which contains Swift accounts. + :return: SwiftAccountsExtended + If the method is called asynchronously, + returns the request thread. + """ + + all_params = ['zone'] # noqa: E501 + all_params.append('async_req') + all_params.append('_return_http_data_only') + all_params.append('_preload_content') + all_params.append('_request_timeout') + + params = locals() + for key, val in six.iteritems(params['kwargs']): + if key not in all_params: + raise TypeError( + "Got an unexpected keyword argument '%s'" + " to method list_swift_accounts" % key + ) + params[key] = val + del params['kwargs'] + + collection_formats = {} + + path_params = {} + + query_params = [] + if 'zone' in params: + query_params.append(('zone', params['zone'])) # noqa: E501 + + header_params = {} + + form_params = [] + local_var_files = {} + + body_params = None + # HTTP header `Accept` + header_params['Accept'] = self.api_client.select_header_accept( + ['application/json']) # noqa: E501 + + # HTTP header `Content-Type` + header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 + ['application/json']) # noqa: E501 + + # Authentication setting + auth_settings = ['basicAuth'] # noqa: E501 + + return self.api_client.call_api( + '/platform/3/protocols/swift/accounts', 'GET', + path_params, + query_params, + header_params, + body=body_params, + post_params=form_params, + files=local_var_files, + response_type='SwiftAccountsExtended', # noqa: E501 + auth_settings=auth_settings, + async_req=params.get('async_req'), + _return_http_data_only=params.get('_return_http_data_only'), + _preload_content=params.get('_preload_content', True), + _request_timeout=params.get('_request_timeout'), + collection_formats=collection_formats) + def update_ftp_settings(self, ftp_settings, **kwargs): # noqa: E501 """update_ftp_settings # noqa: E501 @@ -13128,7 +13192,6 @@ def update_ftp_settings(self, ftp_settings, **kwargs): # noqa: E501 :param async_req bool :param FtpSettingsExtended ftp_settings: (required) - :param bool force: Force modify FTP settings, even if it leads to FTP service being blocked :return: None If the method is called asynchronously, returns the request thread. @@ -13151,13 +13214,12 @@ def update_ftp_settings_with_http_info(self, ftp_settings, **kwargs): # noqa: E :param async_req bool :param FtpSettingsExtended ftp_settings: (required) - :param bool force: Force modify FTP settings, even if it leads to FTP service being blocked :return: None If the method is called asynchronously, returns the request thread. """ - all_params = ['ftp_settings', 'force'] # noqa: E501 + all_params = ['ftp_settings'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -13182,8 +13244,6 @@ def update_ftp_settings_with_http_info(self, ftp_settings, **kwargs): # noqa: E path_params = {} query_params = [] - if 'force' in params: - query_params.append(('force', params['force'])) # noqa: E501 header_params = {} @@ -13205,7 +13265,7 @@ def update_ftp_settings_with_http_info(self, ftp_settings, **kwargs): # noqa: E auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/protocols/ftp/settings', 'PUT', + '/platform/3/protocols/ftp/settings', 'PUT', path_params, query_params, header_params, @@ -14381,7 +14441,7 @@ def update_http_settings(self, http_settings, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :param HttpSettingsExtended http_settings: (required) + :param HttpSettingsSettings http_settings: (required) :return: None If the method is called asynchronously, returns the request thread. @@ -14403,7 +14463,7 @@ def update_http_settings_with_http_info(self, http_settings, **kwargs): # noqa: >>> result = thread.get() :param async_req bool - :param HttpSettingsExtended http_settings: (required) + :param HttpSettingsSettings http_settings: (required) :return: None If the method is called asynchronously, returns the request thread. @@ -14455,7 +14515,7 @@ def update_http_settings_with_http_info(self, http_settings, **kwargs): # noqa: auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/protocols/http/settings', 'PUT', + '/platform/3/protocols/http/settings', 'PUT', path_params, query_params, header_params, @@ -14653,7 +14713,7 @@ def update_ndmp_settings_global_with_http_info(self, ndmp_settings_global, **kwa auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/20/protocols/ndmp/settings/global', 'PUT', + '/platform/3/protocols/ndmp/settings/global', 'PUT', path_params, query_params, header_params, @@ -15225,7 +15285,7 @@ def update_nfs_export_with_http_info(self, nfs_export, nfs_export_id, **kwargs): auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/protocols/nfs/exports/{NfsExportId}', 'PUT', + '/platform/4/protocols/nfs/exports/{NfsExportId}', 'PUT', path_params, query_params, header_params, @@ -15548,7 +15608,7 @@ def update_nfs_settings_export_with_http_info(self, nfs_settings_export, **kwarg def update_nfs_settings_global(self, nfs_settings_global, **kwargs): # noqa: E501 """update_nfs_settings_global # noqa: E501 - Modify the default values for NFS exports. All input fields areoptional, but one or more must be supplied. # noqa: E501 + Modify the default values for NFS exports. All input fields are optional, but one or more must be supplied. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.update_nfs_settings_global(nfs_settings_global, async_req=True) @@ -15570,7 +15630,7 @@ def update_nfs_settings_global(self, nfs_settings_global, **kwargs): # noqa: E5 def update_nfs_settings_global_with_http_info(self, nfs_settings_global, **kwargs): # noqa: E501 """update_nfs_settings_global # noqa: E501 - Modify the default values for NFS exports. All input fields areoptional, but one or more must be supplied. # noqa: E501 + Modify the default values for NFS exports. All input fields are optional, but one or more must be supplied. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.update_nfs_settings_global_with_http_info(nfs_settings_global, async_req=True) @@ -15629,7 +15689,7 @@ def update_nfs_settings_global_with_http_info(self, nfs_settings_global, **kwarg auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/protocols/nfs/settings/global', 'PUT', + '/platform/14/protocols/nfs/settings/global', 'PUT', path_params, query_params, header_params, @@ -16554,7 +16614,7 @@ def update_smb_settings_global_with_http_info(self, smb_settings_global, **kwarg auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/17/protocols/smb/settings/global', 'PUT', + '/platform/7/protocols/smb/settings/global', 'PUT', path_params, query_params, header_params, @@ -16772,7 +16832,7 @@ def update_smb_settings_zone_with_http_info(self, smb_settings_zone, **kwargs): auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/17/protocols/smb/settings/zone', 'PUT', + '/platform/6/protocols/smb/settings/zone', 'PUT', path_params, query_params, header_params, @@ -16889,7 +16949,7 @@ def update_smb_share_with_http_info(self, smb_share, smb_share_id, **kwargs): # auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/protocols/smb/shares/{SmbShareId}', 'PUT', + '/platform/12/protocols/smb/shares/{SmbShareId}', 'PUT', path_params, query_params, header_params, @@ -16988,7 +17048,7 @@ def update_snmp_settings_with_http_info(self, snmp_settings, **kwargs): # noqa: auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/protocols/snmp/settings', 'PUT', + '/platform/5/protocols/snmp/settings', 'PUT', path_params, query_params, header_params, @@ -17013,7 +17073,7 @@ def update_ssh_settings(self, ssh_settings, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :param SshSettingsSettings ssh_settings: (required) + :param SshSettingsExtended ssh_settings: (required) :return: None If the method is called asynchronously, returns the request thread. @@ -17035,7 +17095,7 @@ def update_ssh_settings_with_http_info(self, ssh_settings, **kwargs): # noqa: E >>> result = thread.get() :param async_req bool - :param SshSettingsSettings ssh_settings: (required) + :param SshSettingsExtended ssh_settings: (required) :return: None If the method is called asynchronously, returns the request thread. @@ -17087,7 +17147,118 @@ def update_ssh_settings_with_http_info(self, ssh_settings, **kwargs): # noqa: E auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/protocols/ssh/settings', 'PUT', + '/platform/8/protocols/ssh/settings', 'PUT', + path_params, + query_params, + header_params, + body=body_params, + post_params=form_params, + files=local_var_files, + response_type=None, # noqa: E501 + auth_settings=auth_settings, + async_req=params.get('async_req'), + _return_http_data_only=params.get('_return_http_data_only'), + _preload_content=params.get('_preload_content', True), + _request_timeout=params.get('_request_timeout'), + collection_formats=collection_formats) + + def update_swift_account(self, swift_account, swift_account_id, **kwargs): # noqa: E501 + """update_swift_account # noqa: E501 + + Modify a Swift account # noqa: E501 + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + >>> thread = api.update_swift_account(swift_account, swift_account_id, async_req=True) + >>> result = thread.get() + + :param async_req bool + :param SwiftAccount swift_account: (required) + :param str swift_account_id: Modify a Swift account (required) + :param str zone: Access zone which contains Swift account. + :return: None + If the method is called asynchronously, + returns the request thread. + """ + kwargs['_return_http_data_only'] = True + if kwargs.get('async_req'): + return self.update_swift_account_with_http_info(swift_account, swift_account_id, **kwargs) # noqa: E501 + else: + (data) = self.update_swift_account_with_http_info(swift_account, swift_account_id, **kwargs) # noqa: E501 + return data + + def update_swift_account_with_http_info(self, swift_account, swift_account_id, **kwargs): # noqa: E501 + """update_swift_account # noqa: E501 + + Modify a Swift account # noqa: E501 + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + >>> thread = api.update_swift_account_with_http_info(swift_account, swift_account_id, async_req=True) + >>> result = thread.get() + + :param async_req bool + :param SwiftAccount swift_account: (required) + :param str swift_account_id: Modify a Swift account (required) + :param str zone: Access zone which contains Swift account. + :return: None + If the method is called asynchronously, + returns the request thread. + """ + + all_params = ['swift_account', 'swift_account_id', 'zone'] # noqa: E501 + all_params.append('async_req') + all_params.append('_return_http_data_only') + all_params.append('_preload_content') + all_params.append('_request_timeout') + + params = locals() + for key, val in six.iteritems(params['kwargs']): + if key not in all_params: + raise TypeError( + "Got an unexpected keyword argument '%s'" + " to method update_swift_account" % key + ) + params[key] = val + del params['kwargs'] + # verify the required parameter 'swift_account' is set + if ('swift_account' not in params or + params['swift_account'] is None): + raise ValueError("Missing the required parameter `swift_account` when calling `update_swift_account`") # noqa: E501 + # verify the required parameter 'swift_account_id' is set + if ('swift_account_id' not in params or + params['swift_account_id'] is None): + raise ValueError("Missing the required parameter `swift_account_id` when calling `update_swift_account`") # noqa: E501 + + collection_formats = {} + + path_params = {} + if 'swift_account_id' in params: + path_params['SwiftAccountId'] = params['swift_account_id'] # noqa: E501 + + query_params = [] + if 'zone' in params: + query_params.append(('zone', params['zone'])) # noqa: E501 + + header_params = {} + + form_params = [] + local_var_files = {} + + body_params = None + if 'swift_account' in params: + body_params = params['swift_account'] + # HTTP header `Accept` + header_params['Accept'] = self.api_client.select_header_accept( + ['application/json']) # noqa: E501 + + # HTTP header `Content-Type` + header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 + ['application/json']) # noqa: E501 + + # Authentication setting + auth_settings = ['basicAuth'] # noqa: E501 + + return self.api_client.call_api( + '/platform/3/protocols/swift/accounts/{SwiftAccountId}', 'PUT', path_params, query_params, header_params, diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/protocols_hdfs_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/protocols_hdfs_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/protocols_hdfs_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/protocols_hdfs_api.py index 8c69988b3..40e3cff6b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/protocols_hdfs_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/protocols_hdfs_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class ProtocolsHdfsApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/quota_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/quota_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/quota_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/quota_api.py index 4f950c055..3ad6dfbe4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/quota_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/quota_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class QuotaApi(object): @@ -121,7 +121,7 @@ def create_quota_quota_with_http_info(self, quota_quota, **kwargs): # noqa: E50 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/quota/quotas', 'POST', + '/platform/15/quota/quotas', 'POST', path_params, query_params, header_params, @@ -517,7 +517,7 @@ def delete_quota_quota_with_http_info(self, quota_quota_id, **kwargs): # noqa: auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/quota/quotas/{QuotaQuotaId}', 'DELETE', + '/platform/15/quota/quotas/{QuotaQuotaId}', 'DELETE', path_params, query_params, header_params, @@ -546,7 +546,7 @@ def delete_quota_quotas(self, **kwargs): # noqa: E501 :param bool include_snapshots: Only delete quotas with this setting for include_snapshots. :param str path: Only delete quotas matching this path (see also recurse_path_*). :param str persona: Only delete user or group quotas matching this persona (must be used with the corresponding type argument). Format is :, where PERSONA_TYPE is one of USER, GROUP, SID, ID, or GID. - :param bool recurse_path_children: If used with the path argument, delete all quotas at that path or any descendant sub-directory. + :param bool recurse_path_children: If used with the path argument, delete all quotas at that path or any descendent sub-directory. :param bool recurse_path_parents: If used with the path argument, delete all quotas at that path or any parent directory. :param str type: Only delete quotas matching this type. :param str zone: Optional named zone to use for user and group resolution. @@ -575,7 +575,7 @@ def delete_quota_quotas_with_http_info(self, **kwargs): # noqa: E501 :param bool include_snapshots: Only delete quotas with this setting for include_snapshots. :param str path: Only delete quotas matching this path (see also recurse_path_*). :param str persona: Only delete user or group quotas matching this persona (must be used with the corresponding type argument). Format is :, where PERSONA_TYPE is one of USER, GROUP, SID, ID, or GID. - :param bool recurse_path_children: If used with the path argument, delete all quotas at that path or any descendant sub-directory. + :param bool recurse_path_children: If used with the path argument, delete all quotas at that path or any descendent sub-directory. :param bool recurse_path_parents: If used with the path argument, delete all quotas at that path or any parent directory. :param str type: Only delete quotas matching this type. :param str zone: Optional named zone to use for user and group resolution. @@ -640,7 +640,7 @@ def delete_quota_quotas_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/quota/quotas', 'DELETE', + '/platform/15/quota/quotas', 'DELETE', path_params, query_params, header_params, @@ -1144,7 +1144,7 @@ def get_quota_license(self, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :return: QuotaLicense + :return: LicenseLicense If the method is called asynchronously, returns the request thread. """ @@ -1165,7 +1165,7 @@ def get_quota_license_with_http_info(self, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :return: QuotaLicense + :return: LicenseLicense If the method is called asynchronously, returns the request thread. """ @@ -1217,7 +1217,7 @@ def get_quota_license_with_http_info(self, **kwargs): # noqa: E501 body=body_params, post_params=form_params, files=local_var_files, - response_type='QuotaLicense', # noqa: E501 + response_type='LicenseLicense', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -1323,7 +1323,7 @@ def get_quota_quota_with_http_info(self, quota_quota_id, **kwargs): # noqa: E50 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/quota/quotas/{QuotaQuotaId}', 'GET', + '/platform/15/quota/quotas/{QuotaQuotaId}', 'GET', path_params, query_params, header_params, @@ -1847,7 +1847,7 @@ def list_quota_quotas(self, **kwargs): # noqa: E501 :param int limit: Return no more than this many results at once (see resume). :param str path: Only list quotas matching this path (see also recurse_path_*). :param str persona: Only list user or group quotas matching this persona (must be used with the corresponding type argument). Format is :, where PERSONA_TYPE is one of USER, GROUP, SID, ID, or GID. - :param bool recurse_path_children: If used with the path argument, match all quotas at that path or any descendant sub-directory. + :param bool recurse_path_children: If used with the path argument, match all quotas at that path or any descendent sub-directory. :param bool recurse_path_parents: If used with the path argument, match all quotas at that path or any parent directory. :param str report_id: Use the named report as a source rather than the live quotas. See the /q/quota/reports resource for a list of valid reports. :param bool resolve_names: If true, resolve group and user names in personas. @@ -1881,7 +1881,7 @@ def list_quota_quotas_with_http_info(self, **kwargs): # noqa: E501 :param int limit: Return no more than this many results at once (see resume). :param str path: Only list quotas matching this path (see also recurse_path_*). :param str persona: Only list user or group quotas matching this persona (must be used with the corresponding type argument). Format is :, where PERSONA_TYPE is one of USER, GROUP, SID, ID, or GID. - :param bool recurse_path_children: If used with the path argument, match all quotas at that path or any descendant sub-directory. + :param bool recurse_path_children: If used with the path argument, match all quotas at that path or any descendent sub-directory. :param bool recurse_path_parents: If used with the path argument, match all quotas at that path or any parent directory. :param str report_id: Use the named report as a source rather than the live quotas. See the /q/quota/reports resource for a list of valid reports. :param bool resolve_names: If true, resolve group and user names in personas. @@ -1969,7 +1969,7 @@ def list_quota_quotas_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/quota/quotas', 'GET', + '/platform/15/quota/quotas', 'GET', path_params, query_params, header_params, @@ -2386,7 +2386,7 @@ def update_quota_quota_with_http_info(self, quota_quota, quota_quota_id, **kwarg auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/19/quota/quotas/{QuotaQuotaId}', 'PUT', + '/platform/15/quota/quotas/{QuotaQuotaId}', 'PUT', path_params, query_params, header_params, diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/quota_quotas_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/quota_quotas_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/quota_quotas_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/quota_quotas_api.py index 77422b162..2afd2aea5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/quota_quotas_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/quota_quotas_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class QuotaQuotasApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/quota_reports_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/quota_reports_api.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/api/quota_reports_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/quota_reports_api.py index 9d9ac0c9a..9cc420402 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/quota_reports_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/quota_reports_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class QuotaReportsApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/security_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/security_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/security_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/security_api.py index 4f1a53db0..416dca4cc 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/security_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/security_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class SecurityApi(object): @@ -390,7 +390,7 @@ def get_security_settings_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/security/settings', 'GET', + '/platform/15/security/settings', 'GET', path_params, query_params, header_params, @@ -679,7 +679,7 @@ def update_security_settings_with_http_info(self, security_settings, **kwargs): auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/security/settings', 'PUT', + '/platform/15/security/settings', 'PUT', path_params, query_params, header_params, diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/snapshot_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/snapshot_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/snapshot_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/snapshot_api.py index a08c947f3..8ec162f64 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/snapshot_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/snapshot_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class SnapshotApi(object): @@ -242,7 +242,7 @@ def create_snapshot_snapshot(self, snapshot_snapshot, **kwargs): # noqa: E501 :param async_req bool :param SnapshotSnapshotCreateParams snapshot_snapshot: (required) - :return: CreateSnapshotSnapshotResponse + :return: SnapshotSnapshotExtended If the method is called asynchronously, returns the request thread. """ @@ -264,7 +264,7 @@ def create_snapshot_snapshot_with_http_info(self, snapshot_snapshot, **kwargs): :param async_req bool :param SnapshotSnapshotCreateParams snapshot_snapshot: (required) - :return: CreateSnapshotSnapshotResponse + :return: SnapshotSnapshotExtended If the method is called asynchronously, returns the request thread. """ @@ -322,7 +322,7 @@ def create_snapshot_snapshot_with_http_info(self, snapshot_snapshot, **kwargs): body=body_params, post_params=form_params, files=local_var_files, - response_type='CreateSnapshotSnapshotResponse', # noqa: E501 + response_type='SnapshotSnapshotExtended', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -1863,7 +1863,7 @@ def get_snapshot_license(self, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :return: QuotaLicense + :return: LicenseLicense If the method is called asynchronously, returns the request thread. """ @@ -1884,7 +1884,7 @@ def get_snapshot_license_with_http_info(self, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :return: QuotaLicense + :return: LicenseLicense If the method is called asynchronously, returns the request thread. """ @@ -1936,7 +1936,7 @@ def get_snapshot_license_with_http_info(self, **kwargs): # noqa: E501 body=body_params, post_params=form_params, files=local_var_files, - response_type='QuotaLicense', # noqa: E501 + response_type='LicenseLicense', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/snapshot_changelists_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/snapshot_changelists_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/snapshot_changelists_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/snapshot_changelists_api.py index 1c74ee10c..aae3d7c6f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/snapshot_changelists_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/snapshot_changelists_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class SnapshotChangelistsApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/snapshot_snapshots_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/snapshot_snapshots_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/snapshot_snapshots_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/snapshot_snapshots_api.py index ed1f1701e..62b11ce2a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/snapshot_snapshots_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/snapshot_snapshots_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class SnapshotSnapshotsApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/statistics_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/statistics_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/statistics_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/statistics_api.py index 234f7172f..3091f503b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/statistics_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/statistics_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class StatisticsApi(object): @@ -762,7 +762,7 @@ def get_summary_client(self, **kwargs): # noqa: E501 :param str local_names: A comma separated list. Only report statistics for operations handled by the local hosts with resolved names enumerated. :param str nodes: A comma separated list. Specify node(s) for which statistics should be reported. Default is all. Zero (0) should be passed in as the sole argument to indicate local. :param bool numeric: Do not resolve hostnames and usernames to their human readable form(s). Default is false. - :param str protocols: A comma separated list. Default is all. (nfs3 | smb1 | nlm | ftp | http | siq | smb2 | nfs4 | nfsrdma | nfs4rdma | papi | jobd | irp | lsass_in | lsass_out | hdfs | s3 | internal | external) + :param str protocols: A comma separated list. Default is all. (nfs3 | smb1 | nlm | ftp | http | siq | smb2 | nfs4 | nfsrdma | papi | jobd | irp | lsass_in | lsass_out | hdfs | s3 | internal | external) :param str remote_addresses: A comma separated list. Only report statistics for operations requested by the remote clients with dotted-quad IP addresses enumerated. :param str remote_names: A comma separated list. Only report statistics for operations requested by the remote clients with resolved names enumerated. :param str sort: Sort data by the specified comma-separated field(s). (num_operations | operation_rate | in_max | in_min | in | in_avg | out_max | out_min | out | out_avg | time_max | time_min | time_avg | node | protocol | class | user_id | user_name | local_addr | local_name | remote_addr | remote_name) Prepend 'asc:' or 'desc:' to a field to change the sort direction. @@ -797,7 +797,7 @@ def get_summary_client_with_http_info(self, **kwargs): # noqa: E501 :param str local_names: A comma separated list. Only report statistics for operations handled by the local hosts with resolved names enumerated. :param str nodes: A comma separated list. Specify node(s) for which statistics should be reported. Default is all. Zero (0) should be passed in as the sole argument to indicate local. :param bool numeric: Do not resolve hostnames and usernames to their human readable form(s). Default is false. - :param str protocols: A comma separated list. Default is all. (nfs3 | smb1 | nlm | ftp | http | siq | smb2 | nfs4 | nfsrdma | nfs4rdma | papi | jobd | irp | lsass_in | lsass_out | hdfs | s3 | internal | external) + :param str protocols: A comma separated list. Default is all. (nfs3 | smb1 | nlm | ftp | http | siq | smb2 | nfs4 | nfsrdma | papi | jobd | irp | lsass_in | lsass_out | hdfs | s3 | internal | external) :param str remote_addresses: A comma separated list. Only report statistics for operations requested by the remote clients with dotted-quad IP addresses enumerated. :param str remote_names: A comma separated list. Only report statistics for operations requested by the remote clients with resolved names enumerated. :param str sort: Sort data by the specified comma-separated field(s). (num_operations | operation_rate | in_max | in_min | in | in_avg | out_max | out_min | out | out_avg | time_max | time_min | time_avg | node | protocol | class | user_id | user_name | local_addr | local_name | remote_addr | remote_name) Prepend 'asc:' or 'desc:' to a field to change the sort direction. @@ -1286,7 +1286,7 @@ def get_summary_protocol(self, **kwargs): # noqa: E501 :param bool degraded: Continue to report if some nodes do not respond. :param str nodes: A comma separated list. Specify node(s) for which statistics should be reported. Default is all. Zero (0) should be passed in as the sole argument to indicate local. :param str operations: Specify operation(s) for which statistics should be reported (See the cli command: 'isi statistics list operations', for a total list). Default is all. - :param str protocols: A comma separated list. Default is all external protocols. (nfs3 | smb1 | nlm | ftp | http | siq | smb2 | nfs4 | nfsrdma | nfs4rdma | papi | jobd | irp | lsass_in | lsass_out | hdfs | s3 | all | internal | external) + :param str protocols: A comma separated list. Default is all external protocols. (nfs3 | smb1 | nlm | ftp | http | siq | smb2 | nfs4 | nfsrdma | papi | jobd | irp | lsass_in | lsass_out | hdfs | s3 | all | internal | external) :param str sort: Sort data by the specified comma-separated field(s). (time | operation_count | operation_rate | in_max | in_min | in | in_avg | in_standard_dev | out_max | out_min | out | out_avg | out_standard_dev | time_max | time_min | time_avg | time_standard_dev | node | protocol | class | operation). Prepend 'asc:' or 'desc:' to a field to change the sort direction. :param int timeout: Timeout remote commands after NUM seconds, where NUM is the integer passed to the argument. :param str totalby: A comma separated list specifying what should be unique. (node | protocol | class | operation). Aggregation is performed over all the fields not specified in the list. @@ -1316,7 +1316,7 @@ def get_summary_protocol_with_http_info(self, **kwargs): # noqa: E501 :param bool degraded: Continue to report if some nodes do not respond. :param str nodes: A comma separated list. Specify node(s) for which statistics should be reported. Default is all. Zero (0) should be passed in as the sole argument to indicate local. :param str operations: Specify operation(s) for which statistics should be reported (See the cli command: 'isi statistics list operations', for a total list). Default is all. - :param str protocols: A comma separated list. Default is all external protocols. (nfs3 | smb1 | nlm | ftp | http | siq | smb2 | nfs4 | nfsrdma | nfs4rdma | papi | jobd | irp | lsass_in | lsass_out | hdfs | s3 | all | internal | external) + :param str protocols: A comma separated list. Default is all external protocols. (nfs3 | smb1 | nlm | ftp | http | siq | smb2 | nfs4 | nfsrdma | papi | jobd | irp | lsass_in | lsass_out | hdfs | s3 | all | internal | external) :param str sort: Sort data by the specified comma-separated field(s). (time | operation_count | operation_rate | in_max | in_min | in | in_avg | in_standard_dev | out_max | out_min | out | out_avg | out_standard_dev | time_max | time_min | time_avg | time_standard_dev | node | protocol | class | operation). Prepend 'asc:' or 'desc:' to a field to change the sort direction. :param int timeout: Timeout remote commands after NUM seconds, where NUM is the integer passed to the argument. :param str totalby: A comma separated list specifying what should be unique. (node | protocol | class | operation). Aggregation is performed over all the fields not specified in the list. @@ -1411,7 +1411,7 @@ def get_summary_protocol_stats(self, **kwargs): # noqa: E501 :param async_req bool :param bool degraded: Continue to report if some nodes do not respond. :param str nodes: A comma separated list. Specify node(s) for which statistics should be reported. Default is all. Zero (0) should be passed in as the sole argument to indicate local. - :param str protocol: A single protocol. Default is nfs3. (nfs3 | smb1 | nlm | ftp | http | siq | smb2 | nfs4 | nfsrdma | nfs4rdma | papi | jobd | irp | lsass_in | lsass_out | hdfs | s3) + :param str protocol: A single protocol. Default is nfs3. (nfs3 | smb1 | nlm | ftp | http | siq | smb2 | nfs4 | nfsrdma | papi | jobd | irp | lsass_in | lsass_out | hdfs | s3) :param int timeout: Timeout remote commands after NUM seconds, where NUM is the integer passed to the argument. :return: SummaryProtocolStats If the method is called asynchronously, @@ -1436,7 +1436,7 @@ def get_summary_protocol_stats_with_http_info(self, **kwargs): # noqa: E501 :param async_req bool :param bool degraded: Continue to report if some nodes do not respond. :param str nodes: A comma separated list. Specify node(s) for which statistics should be reported. Default is all. Zero (0) should be passed in as the sole argument to indicate local. - :param str protocol: A single protocol. Default is nfs3. (nfs3 | smb1 | nlm | ftp | http | siq | smb2 | nfs4 | nfsrdma | nfs4rdma | papi | jobd | irp | lsass_in | lsass_out | hdfs | s3) + :param str protocol: A single protocol. Default is nfs3. (nfs3 | smb1 | nlm | ftp | http | siq | smb2 | nfs4 | nfsrdma | papi | jobd | irp | lsass_in | lsass_out | hdfs | s3) :param int timeout: Timeout remote commands after NUM seconds, where NUM is the integer passed to the argument. :return: SummaryProtocolStats If the method is called asynchronously, diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/storagepool_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/storagepool_api.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/api/storagepool_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/storagepool_api.py index 78659754d..8169c7ade 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/storagepool_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/storagepool_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class StoragepoolApi(object): @@ -117,7 +117,7 @@ def create_storagepool_nodepool_with_http_info(self, storagepool_nodepool, **kwa auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/storagepool/nodepools', 'POST', + '/platform/9/storagepool/nodepools', 'POST', path_params, query_params, header_params, @@ -216,7 +216,7 @@ def create_storagepool_tier_with_http_info(self, storagepool_tier, **kwargs): # auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/storagepool/tiers', 'POST', + '/platform/1/storagepool/tiers', 'POST', path_params, query_params, header_params, @@ -315,7 +315,7 @@ def delete_storagepool_nodepool_with_http_info(self, storagepool_nodepool_id, ** auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/storagepool/nodepools/{StoragepoolNodepoolId}', 'DELETE', + '/platform/9/storagepool/nodepools/{StoragepoolNodepoolId}', 'DELETE', path_params, query_params, header_params, @@ -406,7 +406,7 @@ def delete_storagepool_nodepools_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/storagepool/nodepools', 'DELETE', + '/platform/9/storagepool/nodepools', 'DELETE', path_params, query_params, header_params, @@ -505,7 +505,7 @@ def delete_storagepool_tier_with_http_info(self, storagepool_tier_id, **kwargs): auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/storagepool/tiers/{StoragepoolTierId}', 'DELETE', + '/platform/1/storagepool/tiers/{StoragepoolTierId}', 'DELETE', path_params, query_params, header_params, @@ -596,7 +596,7 @@ def delete_storagepool_tiers_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/storagepool/tiers', 'DELETE', + '/platform/1/storagepool/tiers', 'DELETE', path_params, query_params, header_params, @@ -695,7 +695,7 @@ def get_storagepool_nodepool_with_http_info(self, storagepool_nodepool_id, **kwa auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/storagepool/nodepools/{StoragepoolNodepoolId}', 'GET', + '/platform/9/storagepool/nodepools/{StoragepoolNodepoolId}', 'GET', path_params, query_params, header_params, @@ -794,7 +794,7 @@ def get_storagepool_nodetype_with_http_info(self, storagepool_nodetype_id, **kwa auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/storagepool/nodetypes/{StoragepoolNodetypeId}', 'GET', + '/platform/12/storagepool/nodetypes/{StoragepoolNodetypeId}', 'GET', path_params, query_params, header_params, @@ -885,7 +885,7 @@ def get_storagepool_nodetypes_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/storagepool/nodetypes', 'GET', + '/platform/12/storagepool/nodetypes', 'GET', path_params, query_params, header_params, @@ -976,7 +976,7 @@ def get_storagepool_settings_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/storagepool/settings', 'GET', + '/platform/5/storagepool/settings', 'GET', path_params, query_params, header_params, @@ -1179,7 +1179,7 @@ def get_storagepool_storagepools_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/storagepool/storagepools', 'GET', + '/platform/9/storagepool/storagepools', 'GET', path_params, query_params, header_params, @@ -1377,7 +1377,7 @@ def get_storagepool_tier_with_http_info(self, storagepool_tier_id, **kwargs): # auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/storagepool/tiers/{StoragepoolTierId}', 'GET', + '/platform/1/storagepool/tiers/{StoragepoolTierId}', 'GET', path_params, query_params, header_params, @@ -1559,7 +1559,7 @@ def list_storagepool_nodepools_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/storagepool/nodepools', 'GET', + '/platform/9/storagepool/nodepools', 'GET', path_params, query_params, header_params, @@ -1650,7 +1650,7 @@ def list_storagepool_tiers_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/storagepool/tiers', 'GET', + '/platform/1/storagepool/tiers', 'GET', path_params, query_params, header_params, @@ -1757,7 +1757,7 @@ def update_storagepool_nodepool_with_http_info(self, storagepool_nodepool, stora auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/storagepool/nodepools/{StoragepoolNodepoolId}', 'PUT', + '/platform/9/storagepool/nodepools/{StoragepoolNodepoolId}', 'PUT', path_params, query_params, header_params, @@ -1856,7 +1856,7 @@ def update_storagepool_settings_with_http_info(self, storagepool_settings, **kwa auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/storagepool/settings', 'PUT', + '/platform/5/storagepool/settings', 'PUT', path_params, query_params, header_params, @@ -1963,7 +1963,7 @@ def update_storagepool_tier_with_http_info(self, storagepool_tier, storagepool_t auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/storagepool/tiers/{StoragepoolTierId}', 'PUT', + '/platform/1/storagepool/tiers/{StoragepoolTierId}', 'PUT', path_params, query_params, header_params, diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/storagepool_nodetypes_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/storagepool_nodetypes_api.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/api/storagepool_nodetypes_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/storagepool_nodetypes_api.py index f8f41c865..65a5d09fb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/storagepool_nodetypes_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/storagepool_nodetypes_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class StoragepoolNodetypesApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/sync_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/sync_api.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/api/sync_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/sync_api.py index 562cc6181..9743d2017 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/sync_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/sync_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class SyncApi(object): @@ -142,7 +142,7 @@ def create_certificates_server_item(self, certificates_server_item, **kwargs): >>> result = thread.get() :param async_req bool - :param CertificatesSyslogItem certificates_server_item: (required) + :param CertificateServerItem certificates_server_item: (required) :return: CreateResponse If the method is called asynchronously, returns the request thread. @@ -164,7 +164,7 @@ def create_certificates_server_item_with_http_info(self, certificates_server_ite >>> result = thread.get() :param async_req bool - :param CertificatesSyslogItem certificates_server_item: (required) + :param CertificateServerItem certificates_server_item: (required) :return: CreateResponse If the method is called asynchronously, returns the request thread. @@ -414,7 +414,7 @@ def create_sync_job_with_http_info(self, sync_job, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/sync/jobs', 'POST', + '/platform/15/sync/jobs', 'POST', path_params, query_params, header_params, @@ -513,7 +513,7 @@ def create_sync_policy_with_http_info(self, sync_policy, **kwargs): # noqa: E50 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/sync/policies', 'POST', + '/platform/14/sync/policies', 'POST', path_params, query_params, header_params, @@ -1309,7 +1309,7 @@ def delete_sync_jobs_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/sync/jobs', 'DELETE', + '/platform/15/sync/jobs', 'DELETE', path_params, query_params, header_params, @@ -1408,7 +1408,7 @@ def delete_sync_policies_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/sync/policies', 'DELETE', + '/platform/14/sync/policies', 'DELETE', path_params, query_params, header_params, @@ -1515,7 +1515,7 @@ def delete_sync_policy_with_http_info(self, sync_policy_id, **kwargs): # noqa: auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/sync/policies/{SyncPolicyId}', 'DELETE', + '/platform/14/sync/policies/{SyncPolicyId}', 'DELETE', path_params, query_params, header_params, @@ -1812,7 +1812,7 @@ def delete_target_policy_with_http_info(self, target_policy_id, **kwargs): # no auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/sync/target/policies/{TargetPolicyId}', 'DELETE', + '/platform/1/sync/target/policies/{TargetPolicyId}', 'DELETE', path_params, query_params, header_params, @@ -1838,7 +1838,7 @@ def get_certificates_peer_by_id(self, certificates_peer_id, **kwargs): # noqa: :param async_req bool :param str certificates_peer_id: Retrieve a single trusted SyncIQ TLS certificate. (required) - :return: CertificatesSyslog + :return: CertificatesCa If the method is called asynchronously, returns the request thread. """ @@ -1860,7 +1860,7 @@ def get_certificates_peer_by_id_with_http_info(self, certificates_peer_id, **kwa :param async_req bool :param str certificates_peer_id: Retrieve a single trusted SyncIQ TLS certificate. (required) - :return: CertificatesSyslog + :return: CertificatesCa If the method is called asynchronously, returns the request thread. """ @@ -1918,7 +1918,7 @@ def get_certificates_peer_by_id_with_http_info(self, certificates_peer_id, **kwa body=body_params, post_params=form_params, files=local_var_files, - response_type='CertificatesSyslog', # noqa: E501 + response_type='CertificatesCa', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -2543,7 +2543,7 @@ def get_service_target_policies(self, **kwargs): # noqa: E501 :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). :param str sort: The field that will be used for sorting. :param str target_path: Filter the returned policies to include only those with this target path. - :return: ServiceTargetPoliciesExtended + :return: ServiceTargetPolicies If the method is called asynchronously, returns the request thread. """ @@ -2569,7 +2569,7 @@ def get_service_target_policies_with_http_info(self, **kwargs): # noqa: E501 :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). :param str sort: The field that will be used for sorting. :param str target_path: Filter the returned policies to include only those with this target path. - :return: ServiceTargetPoliciesExtended + :return: ServiceTargetPolicies If the method is called asynchronously, returns the request thread. """ @@ -2650,7 +2650,7 @@ def get_service_target_policies_with_http_info(self, **kwargs): # noqa: E501 body=body_params, post_params=form_params, files=local_var_files, - response_type='ServiceTargetPoliciesExtended', # noqa: E501 + response_type='ServiceTargetPolicies', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -2669,7 +2669,7 @@ def get_service_target_policy(self, service_target_policy_id, **kwargs): # noqa :param async_req bool :param str service_target_policy_id: View a single SyncIQ target service replication policy. (required) - :return: ServiceTargetPolicies + :return: TargetPolicies If the method is called asynchronously, returns the request thread. """ @@ -2691,7 +2691,7 @@ def get_service_target_policy_with_http_info(self, service_target_policy_id, **k :param async_req bool :param str service_target_policy_id: View a single SyncIQ target service replication policy. (required) - :return: ServiceTargetPolicies + :return: TargetPolicies If the method is called asynchronously, returns the request thread. """ @@ -2749,7 +2749,7 @@ def get_service_target_policy_with_http_info(self, service_target_policy_id, **k body=body_params, post_params=form_params, files=local_var_files, - response_type='ServiceTargetPolicies', # noqa: E501 + response_type='TargetPolicies', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -2841,7 +2841,7 @@ def get_sync_job_with_http_info(self, sync_job_id, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/sync/jobs/{SyncJobId}', 'GET', + '/platform/15/sync/jobs/{SyncJobId}', 'GET', path_params, query_params, header_params, @@ -2866,7 +2866,7 @@ def get_sync_license(self, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :return: QuotaLicense + :return: LicenseLicense If the method is called asynchronously, returns the request thread. """ @@ -2887,7 +2887,7 @@ def get_sync_license_with_http_info(self, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool - :return: QuotaLicense + :return: LicenseLicense If the method is called asynchronously, returns the request thread. """ @@ -2939,7 +2939,7 @@ def get_sync_license_with_http_info(self, **kwargs): # noqa: E501 body=body_params, post_params=form_params, files=local_var_files, - response_type='QuotaLicense', # noqa: E501 + response_type='LicenseLicense', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), @@ -3031,7 +3031,7 @@ def get_sync_policy_with_http_info(self, sync_policy_id, **kwargs): # noqa: E50 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/sync/policies/{SyncPolicyId}', 'GET', + '/platform/14/sync/policies/{SyncPolicyId}', 'GET', path_params, query_params, header_params, @@ -3130,7 +3130,7 @@ def get_sync_report_with_http_info(self, sync_report_id, **kwargs): # noqa: E50 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/sync/reports/{SyncReportId}', 'GET', + '/platform/15/sync/reports/{SyncReportId}', 'GET', path_params, query_params, header_params, @@ -3222,8 +3222,6 @@ def get_sync_reports_with_http_info(self, **kwargs): # noqa: E501 raise ValueError("Invalid value for parameter `limit` when calling `get_sync_reports`, must be a value less than or equal to `4294967295`") # noqa: E501 if 'limit' in params and params['limit'] < 1: # noqa: E501 raise ValueError("Invalid value for parameter `limit` when calling `get_sync_reports`, must be a value greater than or equal to `1`") # noqa: E501 - if 'reports_per_policy' in params and params['reports_per_policy'] < 1: # noqa: E501 - raise ValueError("Invalid value for parameter `reports_per_policy` when calling `get_sync_reports`, must be a value greater than or equal to `1`") # noqa: E501 if ('resume' in params and len(params['resume']) > 8192): raise ValueError("Invalid value for parameter `resume` when calling `get_sync_reports`, length must be less than or equal to `8192`") # noqa: E501 @@ -3278,7 +3276,7 @@ def get_sync_reports_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/sync/reports', 'GET', + '/platform/15/sync/reports', 'GET', path_params, query_params, header_params, @@ -3468,7 +3466,7 @@ def get_sync_settings_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/sync/settings', 'GET', + '/platform/14/sync/settings', 'GET', path_params, query_params, header_params, @@ -3598,7 +3596,7 @@ def get_target_policies_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/sync/target/policies', 'GET', + '/platform/1/sync/target/policies', 'GET', path_params, query_params, header_params, @@ -3697,7 +3695,7 @@ def get_target_policy_with_http_info(self, target_policy_id, **kwargs): # noqa: auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/sync/target/policies/{TargetPolicyId}', 'GET', + '/platform/1/sync/target/policies/{TargetPolicyId}', 'GET', path_params, query_params, header_params, @@ -3796,7 +3794,7 @@ def get_target_report_with_http_info(self, target_report_id, **kwargs): # noqa: auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/sync/target/reports/{TargetReportId}', 'GET', + '/platform/15/sync/target/reports/{TargetReportId}', 'GET', path_params, query_params, header_params, @@ -3888,8 +3886,6 @@ def get_target_reports_with_http_info(self, **kwargs): # noqa: E501 raise ValueError("Invalid value for parameter `limit` when calling `get_target_reports`, must be a value less than or equal to `4294967295`") # noqa: E501 if 'limit' in params and params['limit'] < 1: # noqa: E501 raise ValueError("Invalid value for parameter `limit` when calling `get_target_reports`, must be a value greater than or equal to `1`") # noqa: E501 - if 'reports_per_policy' in params and params['reports_per_policy'] < 1: # noqa: E501 - raise ValueError("Invalid value for parameter `reports_per_policy` when calling `get_target_reports`, must be a value greater than or equal to `1`") # noqa: E501 if ('resume' in params and len(params['resume']) > 8192): raise ValueError("Invalid value for parameter `resume` when calling `get_target_reports`, length must be less than or equal to `8192`") # noqa: E501 @@ -3944,7 +3940,7 @@ def get_target_reports_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/sync/target/reports', 'GET', + '/platform/15/sync/target/reports', 'GET', path_params, query_params, header_params, @@ -4472,7 +4468,7 @@ def list_sync_jobs_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/sync/jobs', 'GET', + '/platform/15/sync/jobs', 'GET', path_params, query_params, header_params, @@ -4502,7 +4498,6 @@ def list_sync_policies(self, **kwargs): # noqa: E501 :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. :param str sort: The field that will be used for sorting. - :param str state: Returned policies in active and/or deleting state. Default is 'all' :param bool summary: Return a summary rather than entire objects. :return: SyncPoliciesExtended If the method is called asynchronously, @@ -4530,14 +4525,13 @@ def list_sync_policies_with_http_info(self, **kwargs): # noqa: E501 :param str resume: Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). :param str scope: If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. :param str sort: The field that will be used for sorting. - :param str state: Returned policies in active and/or deleting state. Default is 'all' :param bool summary: Return a summary rather than entire objects. :return: SyncPoliciesExtended If the method is called asynchronously, returns the request thread. """ - all_params = ['dir', 'limit', 'resume', 'scope', 'sort', 'state', 'summary'] # noqa: E501 + all_params = ['dir', 'limit', 'resume', 'scope', 'sort', 'summary'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -4593,8 +4587,6 @@ def list_sync_policies_with_http_info(self, **kwargs): # noqa: E501 query_params.append(('scope', params['scope'])) # noqa: E501 if 'sort' in params: query_params.append(('sort', params['sort'])) # noqa: E501 - if 'state' in params: - query_params.append(('state', params['state'])) # noqa: E501 if 'summary' in params: query_params.append(('summary', params['summary'])) # noqa: E501 @@ -4616,7 +4608,7 @@ def list_sync_policies_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/sync/policies', 'GET', + '/platform/14/sync/policies', 'GET', path_params, query_params, header_params, @@ -4862,7 +4854,7 @@ def update_certificates_peer_by_id(self, certificates_peer_id_params, certificat >>> result = thread.get() :param async_req bool - :param CertificatesSyslogIdParams certificates_peer_id_params: (required) + :param CertificateServerIdParams certificates_peer_id_params: (required) :param str certificates_peer_id: Modify a trusted SyncIQ TLS certificate. (required) :return: None If the method is called asynchronously, @@ -4885,7 +4877,7 @@ def update_certificates_peer_by_id_with_http_info(self, certificates_peer_id_par >>> result = thread.get() :param async_req bool - :param CertificatesSyslogIdParams certificates_peer_id_params: (required) + :param CertificateServerIdParams certificates_peer_id_params: (required) :param str certificates_peer_id: Modify a trusted SyncIQ TLS certificate. (required) :return: None If the method is called asynchronously, @@ -4969,7 +4961,7 @@ def update_certificates_server_by_id(self, certificates_server_id_params, certif >>> result = thread.get() :param async_req bool - :param CertificatesSyslogIdParams certificates_server_id_params: (required) + :param CertificateServerIdParams certificates_server_id_params: (required) :param str certificates_server_id: Modify a SyncIQ TLS server certificate. (required) :return: None If the method is called asynchronously, @@ -4992,7 +4984,7 @@ def update_certificates_server_by_id_with_http_info(self, certificates_server_id >>> result = thread.get() :param async_req bool - :param CertificatesSyslogIdParams certificates_server_id_params: (required) + :param CertificateServerIdParams certificates_server_id_params: (required) :param str certificates_server_id: Modify a SyncIQ TLS server certificate. (required) :return: None If the method is called asynchronously, @@ -5265,7 +5257,7 @@ def update_sync_job_with_http_info(self, sync_job, sync_job_id, **kwargs): # no auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/sync/jobs/{SyncJobId}', 'PUT', + '/platform/15/sync/jobs/{SyncJobId}', 'PUT', path_params, query_params, header_params, @@ -5372,7 +5364,7 @@ def update_sync_policy_with_http_info(self, sync_policy, sync_policy_id, **kwarg auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/18/sync/policies/{SyncPolicyId}', 'PUT', + '/platform/14/sync/policies/{SyncPolicyId}', 'PUT', path_params, query_params, header_params, @@ -5578,7 +5570,7 @@ def update_sync_settings_with_http_info(self, sync_settings, **kwargs): # noqa: auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/sync/settings', 'PUT', + '/platform/14/sync/settings', 'PUT', path_params, query_params, header_params, diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/sync_policies_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/sync_policies_api.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/api/sync_policies_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/sync_policies_api.py index b27f2e1ea..eb197261d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/sync_policies_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/sync_policies_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class SyncPoliciesApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/sync_reports_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/sync_reports_api.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/api/sync_reports_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/sync_reports_api.py index fb1eb3b38..2ade24fa0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/sync_reports_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/sync_reports_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class SyncReportsApi(object): @@ -125,7 +125,7 @@ def get_report_subreport_with_http_info(self, report_subreport_id, rid, **kwargs auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/sync/reports/{Rid}/subreports/{ReportSubreportId}', 'GET', + '/platform/15/sync/reports/{Rid}/subreports/{ReportSubreportId}', 'GET', path_params, query_params, header_params, @@ -267,7 +267,7 @@ def get_report_subreports_with_http_info(self, rid, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/sync/reports/{Rid}/subreports', 'GET', + '/platform/15/sync/reports/{Rid}/subreports', 'GET', path_params, query_params, header_params, diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/sync_service_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/sync_service_api.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/api/sync_service_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/sync_service_api.py index a3fbcb2ab..03eb65ffb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/sync_service_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/sync_service_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class SyncServiceApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/sync_service_target_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/sync_service_target_api.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/api/sync_service_target_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/sync_service_target_api.py index a799dd64d..3453da986 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/sync_service_target_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/sync_service_target_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class SyncServiceTargetApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/sync_target_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/sync_target_api.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/api/sync_target_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/sync_target_api.py index 51ce078cf..c7ed21556 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/sync_target_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/sync_target_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class SyncTargetApi(object): @@ -232,7 +232,7 @@ def get_reports_report_subreport_with_http_info(self, reports_report_subreport_i auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/sync/target/reports/{Rid}/subreports/{ReportsReportSubreportId}', 'GET', + '/platform/15/sync/target/reports/{Rid}/subreports/{ReportsReportSubreportId}', 'GET', path_params, query_params, header_params, @@ -374,7 +374,7 @@ def get_reports_report_subreports_with_http_info(self, rid, **kwargs): # noqa: auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/sync/target/reports/{Rid}/subreports', 'GET', + '/platform/15/sync/target/reports/{Rid}/subreports', 'GET', path_params, query_params, header_params, diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/upgrade_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/upgrade_api.py similarity index 90% rename from isilon_sdk/isilon_sdk/v9_11_0/api/upgrade_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/upgrade_api.py index 1e3d3881b..6777b68ae 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/upgrade_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/upgrade_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class UpgradeApi(object): @@ -315,7 +315,7 @@ def create_cluster_assess_item_with_http_info(self, cluster_assess_item, **kwarg auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/20/upgrade/cluster/assess', 'POST', + '/platform/5/upgrade/cluster/assess', 'POST', path_params, query_params, header_params, @@ -842,7 +842,7 @@ def create_cluster_patch_patch_with_http_info(self, cluster_patch_patch, **kwarg auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/upgrade/cluster/patch/patches', 'POST', + '/platform/14/upgrade/cluster/patch/patches', 'POST', path_params, query_params, header_params, @@ -1478,7 +1478,7 @@ def delete_cluster_patch_patch_with_http_info(self, cluster_patch_patch_id, **kw auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/upgrade/cluster/patch/patches/{ClusterPatchPatchId}', 'DELETE', + '/platform/14/upgrade/cluster/patch/patches/{ClusterPatchPatchId}', 'DELETE', path_params, query_params, header_params, @@ -1694,6 +1694,7 @@ def get_cluster_firmware_device(self, **kwargs): # noqa: E501 :param async_req bool :param bool devices: Show devices. If false, this returns an empty list. Default is false. + :param bool package: Show package. If false, this returns an empty list. Default is false. :param bool refresh: Re-gather firmware status. Default is false. :return: ClusterFirmwareDevice If the method is called asynchronously, @@ -1717,13 +1718,14 @@ def get_cluster_firmware_device_with_http_info(self, **kwargs): # noqa: E501 :param async_req bool :param bool devices: Show devices. If false, this returns an empty list. Default is false. + :param bool package: Show package. If false, this returns an empty list. Default is false. :param bool refresh: Re-gather firmware status. Default is false. :return: ClusterFirmwareDevice If the method is called asynchronously, returns the request thread. """ - all_params = ['devices', 'refresh'] # noqa: E501 + all_params = ['devices', 'package', 'refresh'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -1746,6 +1748,8 @@ def get_cluster_firmware_device_with_http_info(self, **kwargs): # noqa: E501 query_params = [] if 'devices' in params: query_params.append(('devices', params['devices'])) # noqa: E501 + if 'package' in params: + query_params.append(('package', params['package'])) # noqa: E501 if 'refresh' in params: query_params.append(('refresh', params['refresh'])) # noqa: E501 @@ -1972,97 +1976,6 @@ def get_cluster_firmware_status_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_cluster_mixed_mode(self, **kwargs): # noqa: E501 - """get_cluster_mixed_mode # noqa: E501 - - View mixed mode state. # 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_cluster_mixed_mode(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: ClusterMixedMode - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.get_cluster_mixed_mode_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.get_cluster_mixed_mode_with_http_info(**kwargs) # noqa: E501 - return data - - def get_cluster_mixed_mode_with_http_info(self, **kwargs): # noqa: E501 - """get_cluster_mixed_mode # noqa: E501 - - View mixed mode state. # 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_cluster_mixed_mode_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :return: ClusterMixedMode - If the method is called asynchronously, - returns the request thread. - """ - - all_params = [] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method get_cluster_mixed_mode" % key - ) - params[key] = val - del params['kwargs'] - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/16/upgrade/cluster/mixed-mode', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='ClusterMixedMode', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - def get_cluster_node(self, cluster_node_id, **kwargs): # noqa: E501 """get_cluster_node # noqa: E501 @@ -2355,7 +2268,7 @@ def get_cluster_patch_patch_with_http_info(self, cluster_patch_patch_id, **kwarg auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/upgrade/cluster/patch/patches/{ClusterPatchPatchId}', 'GET', + '/platform/14/upgrade/cluster/patch/patches/{ClusterPatchPatchId}', 'GET', path_params, query_params, header_params, @@ -2446,7 +2359,7 @@ def get_upgrade_cluster_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/20/upgrade/cluster', 'GET', + '/platform/12/upgrade/cluster', 'GET', path_params, query_params, header_params, @@ -2461,117 +2374,6 @@ def get_upgrade_cluster_with_http_info(self, **kwargs): # noqa: E501 _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def list_cluster_assess(self, **kwargs): # noqa: E501 - """list_cluster_assess # noqa: E501 - - Assessment result. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_cluster_assess(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str latest: query for the latest report. - :param str success: query for the passed/failed checks - :return: Empty - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.list_cluster_assess_with_http_info(**kwargs) # noqa: E501 - else: - (data) = self.list_cluster_assess_with_http_info(**kwargs) # noqa: E501 - return data - - def list_cluster_assess_with_http_info(self, **kwargs): # noqa: E501 - """list_cluster_assess # noqa: E501 - - Assessment result. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_cluster_assess_with_http_info(async_req=True) - >>> result = thread.get() - - :param async_req bool - :param str latest: query for the latest report. - :param str success: query for the passed/failed checks - :return: Empty - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['latest', 'success'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method list_cluster_assess" % key - ) - params[key] = val - del params['kwargs'] - - if ('latest' in params and - len(params['latest']) > 5): - raise ValueError("Invalid value for parameter `latest` when calling `list_cluster_assess`, length must be less than or equal to `5`") # noqa: E501 - if ('latest' in params and - len(params['latest']) < 4): - raise ValueError("Invalid value for parameter `latest` when calling `list_cluster_assess`, length must be greater than or equal to `4`") # noqa: E501 - if ('success' in params and - len(params['success']) > 5): - raise ValueError("Invalid value for parameter `success` when calling `list_cluster_assess`, length must be less than or equal to `5`") # noqa: E501 - if ('success' in params and - len(params['success']) < 4): - raise ValueError("Invalid value for parameter `success` when calling `list_cluster_assess`, length must be greater than or equal to `4`") # noqa: E501 - collection_formats = {} - - path_params = {} - - query_params = [] - if 'latest' in params: - query_params.append(('latest', params['latest'])) # noqa: E501 - if 'success' in params: - query_params.append(('success', params['success'])) # noqa: E501 - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/20/upgrade/cluster/assess', 'GET', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type='Empty', # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - def list_cluster_patch_patches(self, **kwargs): # noqa: E501 """list_cluster_patch_patches # noqa: E501 @@ -2697,7 +2499,7 @@ def list_cluster_patch_patches_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/16/upgrade/cluster/patch/patches', 'GET', + '/platform/14/upgrade/cluster/patch/patches', 'GET', path_params, query_params, header_params, @@ -2910,105 +2712,6 @@ def update_cluster_drain_timeout_with_http_info(self, cluster_drain_timeout, **k _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_cluster_skip_optional(self, cluster_skip_optional, **kwargs): # noqa: E501 - """update_cluster_skip_optional # noqa: E501 - - The option to indicate if the optional pre-upgrade checks should be skipped. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_cluster_skip_optional(cluster_skip_optional, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param ClusterSkipOptional cluster_skip_optional: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - kwargs['_return_http_data_only'] = True - if kwargs.get('async_req'): - return self.update_cluster_skip_optional_with_http_info(cluster_skip_optional, **kwargs) # noqa: E501 - else: - (data) = self.update_cluster_skip_optional_with_http_info(cluster_skip_optional, **kwargs) # noqa: E501 - return data - - def update_cluster_skip_optional_with_http_info(self, cluster_skip_optional, **kwargs): # noqa: E501 - """update_cluster_skip_optional # noqa: E501 - - The option to indicate if the optional pre-upgrade checks should be skipped. # noqa: E501 - This method makes a synchronous HTTP request by default. To make an - asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_cluster_skip_optional_with_http_info(cluster_skip_optional, async_req=True) - >>> result = thread.get() - - :param async_req bool - :param ClusterSkipOptional cluster_skip_optional: (required) - :return: None - If the method is called asynchronously, - returns the request thread. - """ - - all_params = ['cluster_skip_optional'] # noqa: E501 - all_params.append('async_req') - all_params.append('_return_http_data_only') - all_params.append('_preload_content') - all_params.append('_request_timeout') - - params = locals() - for key, val in six.iteritems(params['kwargs']): - if key not in all_params: - raise TypeError( - "Got an unexpected keyword argument '%s'" - " to method update_cluster_skip_optional" % key - ) - params[key] = val - del params['kwargs'] - # verify the required parameter 'cluster_skip_optional' is set - if ('cluster_skip_optional' not in params or - params['cluster_skip_optional'] is None): - raise ValueError("Missing the required parameter `cluster_skip_optional` when calling `update_cluster_skip_optional`") # noqa: E501 - - collection_formats = {} - - path_params = {} - - query_params = [] - - header_params = {} - - form_params = [] - local_var_files = {} - - body_params = None - if 'cluster_skip_optional' in params: - body_params = params['cluster_skip_optional'] - # HTTP header `Accept` - header_params['Accept'] = self.api_client.select_header_accept( - ['application/json']) # noqa: E501 - - # HTTP header `Content-Type` - header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 - ['application/json']) # noqa: E501 - - # Authentication setting - auth_settings = ['basicAuth'] # noqa: E501 - - return self.api_client.call_api( - '/platform/20/upgrade/cluster/skip-optional', 'PUT', - path_params, - query_params, - header_params, - body=body_params, - post_params=form_params, - files=local_var_files, - response_type=None, # noqa: E501 - auth_settings=auth_settings, - async_req=params.get('async_req'), - _return_http_data_only=params.get('_return_http_data_only'), - _preload_content=params.get('_preload_content', True), - _request_timeout=params.get('_request_timeout'), - collection_formats=collection_formats) - def update_cluster_unblock(self, cluster_unblock, **kwargs): # noqa: E501 """update_cluster_unblock # noqa: E501 @@ -3093,7 +2796,7 @@ def update_cluster_unblock_with_http_info(self, cluster_unblock, **kwargs): # n auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/22/upgrade/cluster/unblock', 'PUT', + '/platform/9/upgrade/cluster/unblock', 'PUT', path_params, query_params, header_params, diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/upgrade_cluster_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/upgrade_cluster_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/upgrade_cluster_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/upgrade_cluster_api.py index fd4960bec..32161673d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/upgrade_cluster_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/upgrade_cluster_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class UpgradeClusterApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/worm_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/worm_api.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/api/worm_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/worm_api.py index c81e43de9..a05e204d1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/worm_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/worm_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class WormApi(object): @@ -117,7 +117,7 @@ def create_worm_domain_with_http_info(self, worm_domain, **kwargs): # noqa: E50 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/20/worm/domains', 'POST', + '/platform/7/worm/domains', 'POST', path_params, query_params, header_params, @@ -216,7 +216,7 @@ def get_worm_domain_with_http_info(self, worm_domain_id, **kwargs): # noqa: E50 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/20/worm/domains/{WormDomainId}', 'GET', + '/platform/7/worm/domains/{WormDomainId}', 'GET', path_params, query_params, header_params, @@ -433,7 +433,7 @@ def list_worm_domains_with_http_info(self, **kwargs): # noqa: E501 auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/20/worm/domains', 'GET', + '/platform/7/worm/domains', 'GET', path_params, query_params, header_params, @@ -540,7 +540,7 @@ def update_worm_domain_with_http_info(self, worm_domain, worm_domain_id, **kwarg auth_settings = ['basicAuth'] # noqa: E501 return self.api_client.call_api( - '/platform/20/worm/domains/{WormDomainId}', 'PUT', + '/platform/7/worm/domains/{WormDomainId}', 'PUT', path_params, query_params, header_params, diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/zones_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/zones_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/zones_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/zones_api.py index 14f64ef45..ba0229318 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/zones_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/zones_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class ZonesApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api/zones_summary_api.py b/isilon_sdk/isilon_sdk/v9_4_0/api/zones_summary_api.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/api/zones_summary_api.py rename to isilon_sdk/isilon_sdk/v9_4_0/api/zones_summary_api.py index 19ddd25dc..90739766a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api/zones_summary_api.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api/zones_summary_api.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -18,7 +18,7 @@ # python 2 and python 3 compatibility library import six -from isilon_sdk.v9_11_0.api_client import ApiClient +from isilon_sdk.v9_4_0.api_client import ApiClient class ZonesSummaryApi(object): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/api_client.py b/isilon_sdk/isilon_sdk/v9_4_0/api_client.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/api_client.py rename to isilon_sdk/isilon_sdk/v9_4_0/api_client.py index 402d1e431..32dee97ef 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/api_client.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/api_client.py @@ -4,7 +4,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -24,9 +24,9 @@ import six from six.moves.urllib.parse import quote, quote_plus -from isilon_sdk.v9_11_0.configuration import Configuration -import isilon_sdk.v9_11_0.models -from isilon_sdk.v9_11_0 import rest +from isilon_sdk.v9_4_0.configuration import Configuration +import isilon_sdk.v9_4_0.models +from isilon_sdk.v9_4_0 import rest class ApiClient(object): @@ -74,7 +74,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None, self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'Swagger-Codegen/0.6.0/python' + self.user_agent = 'Swagger-Codegen/0.5.0/python' # This is used for detecting for the special case of a path parameter # that is tagged with x-isi-url-encode-path-param (more details in the # __call_api function). @@ -282,7 +282,7 @@ def __deserialize(self, data, klass): if klass in self.NATIVE_TYPES_MAPPING: klass = self.NATIVE_TYPES_MAPPING[klass] else: - klass = getattr(isilon_sdk.v9_11_0.models, klass) + klass = getattr(isilon_sdk.v9_4_0.models, klass) if klass in self.PRIMITIVE_TYPES: return self.__deserialize_primitive(data, klass) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/configuration.py b/isilon_sdk/isilon_sdk/v9_4_0/configuration.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/configuration.py rename to isilon_sdk/isilon_sdk/v9_4_0/configuration.py index 2c408be68..ba479aed6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/configuration.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/configuration.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -63,7 +63,7 @@ def __init__(self): # Logging Settings self.logger = {} - self.logger["package_logger"] = logging.getLogger("isilon_sdk.v9_11_0") + self.logger["package_logger"] = logging.getLogger("isilon_sdk.v9_4_0") self.logger["urllib3_logger"] = logging.getLogger("urllib3") # Log format self.logger_format = '%(asctime)s %(levelname)s %(message)s' @@ -259,6 +259,6 @@ def to_debug_report(self): return "Python SDK Debug Report:\n"\ "OS: {env}\n"\ "Python Version: {pyversion}\n"\ - "Version of the API: 22\n"\ - "SDK Package Version: 0.6.0".\ + "Version of the API: 15\n"\ + "SDK Package Version: 0.5.0".\ format(env=sys.platform, pyversion=sys.version) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AccessPointCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AccessPointCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AccessPointCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AccessPointCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AclObject.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AclObject.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AclObject.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AclObject.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AdsProviderControllers.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AdsProviderControllers.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AdsProviderControllers.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AdsProviderControllers.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AdsProviderControllersController.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AdsProviderControllersController.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AdsProviderControllersController.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AdsProviderControllersController.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AdsProviderDomains.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AdsProviderDomains.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AdsProviderDomains.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AdsProviderDomains.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AdsProviderDomainsDomain.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AdsProviderDomainsDomain.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AdsProviderDomainsDomain.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AdsProviderDomainsDomain.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AdsProviderSearchItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AdsProviderSearchItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AdsProviderSearchItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AdsProviderSearchItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusApi.md similarity index 86% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusApi.md index 5243aebfd..437d8d527 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.AntivirusApi +# isilon_sdk.v9_4_0.AntivirusApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -40,18 +40,18 @@ Create new antivirus scan policies. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AntivirusApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -antivirus_policy = isilon_sdk.v9_11_0.AntivirusPolicyCreateParams() # AntivirusPolicyCreateParams | +api_instance = isilon_sdk.v9_4_0.AntivirusApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +antivirus_policy = isilon_sdk.v9_4_0.AntivirusPolicyCreateParams() # AntivirusPolicyCreateParams | try: api_response = api_instance.create_antivirus_policy(antivirus_policy) @@ -92,18 +92,18 @@ Manually scan a file. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AntivirusApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -antivirus_scan_item = isilon_sdk.v9_11_0.AntivirusScanItem() # AntivirusScanItem | +api_instance = isilon_sdk.v9_4_0.AntivirusApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +antivirus_scan_item = isilon_sdk.v9_4_0.AntivirusScanItem() # AntivirusScanItem | try: api_response = api_instance.create_antivirus_scan_item(antivirus_scan_item) @@ -144,18 +144,18 @@ Create new antivirus servers. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AntivirusApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -antivirus_server = isilon_sdk.v9_11_0.AntivirusServerCreateParams() # AntivirusServerCreateParams | +api_instance = isilon_sdk.v9_4_0.AntivirusApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +antivirus_server = isilon_sdk.v9_4_0.AntivirusServerCreateParams() # AntivirusServerCreateParams | try: api_response = api_instance.create_antivirus_server(antivirus_server) @@ -196,17 +196,17 @@ Delete all antivirus scan policies. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AntivirusApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AntivirusApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_instance.delete_antivirus_policies() @@ -243,17 +243,17 @@ Delete an antivirus scan policy. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AntivirusApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AntivirusApi(isilon_sdk.v9_4_0.ApiClient(configuration)) antivirus_policy_id = 'antivirus_policy_id_example' # str | Delete an antivirus scan policy. try: @@ -294,17 +294,17 @@ Delete an antivirus server entry. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AntivirusApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AntivirusApi(isilon_sdk.v9_4_0.ApiClient(configuration)) antivirus_server_id = 'antivirus_server_id_example' # str | Delete an antivirus server entry. try: @@ -345,17 +345,17 @@ Delete all antivirus servers. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AntivirusApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AntivirusApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_instance.delete_antivirus_servers() @@ -392,17 +392,17 @@ Delete one antivirus scan report, and all of its associated threat reports. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AntivirusApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AntivirusApi(isilon_sdk.v9_4_0.ApiClient(configuration)) reports_scan_id = 'reports_scan_id_example' # str | Delete one antivirus scan report, and all of its associated threat reports. try: @@ -443,17 +443,17 @@ Delete antivirus scan reports, and any threat reports associated with those scan ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AntivirusApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AntivirusApi(isilon_sdk.v9_4_0.ApiClient(configuration)) age = 56 # int | An amount of time in seconds. If present, only reports older than this age are deleted. (optional) try: @@ -494,17 +494,17 @@ Retrieve one antivirus scan policy. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AntivirusApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AntivirusApi(isilon_sdk.v9_4_0.ApiClient(configuration)) antivirus_policy_id = 'antivirus_policy_id_example' # str | Retrieve one antivirus scan policy. try: @@ -546,17 +546,17 @@ Retrieve the quarantine status of the file at the specified path. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AntivirusApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AntivirusApi(isilon_sdk.v9_4_0.ApiClient(configuration)) antivirus_quarantine_path = 'antivirus_quarantine_path_example' # str | Retrieve the quarantine status of the file at the specified path. try: @@ -598,17 +598,17 @@ Retrieve one antivirus server entry. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AntivirusApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AntivirusApi(isilon_sdk.v9_4_0.ApiClient(configuration)) antivirus_server_id = 'antivirus_server_id_example' # str | Retrieve one antivirus server entry. try: @@ -650,17 +650,17 @@ Retrieve the Antivirus settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AntivirusApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AntivirusApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_antivirus_settings() @@ -698,17 +698,17 @@ Retrieve one antivirus scan report. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AntivirusApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AntivirusApi(isilon_sdk.v9_4_0.ApiClient(configuration)) reports_scan_id = 'reports_scan_id_example' # str | Retrieve one antivirus scan report. try: @@ -750,17 +750,17 @@ List antivirus scan reports. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AntivirusApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AntivirusApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) offset = 56 # int | The position of the first item returned for a paginated query within the full result set. (optional) @@ -814,17 +814,17 @@ Retrieve one antivirus threat report. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AntivirusApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AntivirusApi(isilon_sdk.v9_4_0.ApiClient(configuration)) reports_threat_id = 'reports_threat_id_example' # str | Retrieve one antivirus threat report. try: @@ -866,17 +866,17 @@ List antivirus threat reports. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AntivirusApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AntivirusApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) file = 'file_example' # str | If present, only returns threat reports for the given file. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) @@ -932,17 +932,17 @@ List antivirus scan policies. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AntivirusApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AntivirusApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -990,17 +990,17 @@ List antivirus servers. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AntivirusApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AntivirusApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -1048,18 +1048,18 @@ Modify an antivirus scan policy. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AntivirusApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -antivirus_policy = isilon_sdk.v9_11_0.AntivirusPolicy() # AntivirusPolicy | +api_instance = isilon_sdk.v9_4_0.AntivirusApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +antivirus_policy = isilon_sdk.v9_4_0.AntivirusPolicy() # AntivirusPolicy | antivirus_policy_id = 'antivirus_policy_id_example' # str | Modify an antivirus scan policy. try: @@ -1101,18 +1101,18 @@ Set the quarantine status of the file at the specified path. Use either an empt ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AntivirusApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -antivirus_quarantine_path_params = isilon_sdk.v9_11_0.AntivirusQuarantinePathParams() # AntivirusQuarantinePathParams | +api_instance = isilon_sdk.v9_4_0.AntivirusApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +antivirus_quarantine_path_params = isilon_sdk.v9_4_0.AntivirusQuarantinePathParams() # AntivirusQuarantinePathParams | antivirus_quarantine_path = 'antivirus_quarantine_path_example' # str | Set the quarantine status of the file at the specified path. Use either an empty object {} in the request body or {\"quarantined\":true} to quarantine the file, and {\"quarantined\":false} to unquarantine the file. try: @@ -1154,18 +1154,18 @@ Modify an antivirus server entry. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AntivirusApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -antivirus_server = isilon_sdk.v9_11_0.AntivirusServer() # AntivirusServer | +api_instance = isilon_sdk.v9_4_0.AntivirusApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +antivirus_server = isilon_sdk.v9_4_0.AntivirusServer() # AntivirusServer | antivirus_server_id = 'antivirus_server_id_example' # str | Modify an antivirus server entry. try: @@ -1207,18 +1207,18 @@ Modify the Antivirus settings. All input fields are optional, but one or more mu ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AntivirusApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -antivirus_settings = isilon_sdk.v9_11_0.AntivirusSettingsExtended() # AntivirusSettingsExtended | +api_instance = isilon_sdk.v9_4_0.AntivirusApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +antivirus_settings = isilon_sdk.v9_4_0.AntivirusSettingsExtended() # AntivirusSettingsExtended | try: api_instance.update_antivirus_settings(antivirus_settings) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusPolicies.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusPolicies.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusPolicies.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusPolicies.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusPoliciesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusPoliciesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusPoliciesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusPoliciesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusPolicy.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusPolicy.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusPolicy.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusPolicy.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusPolicyCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusPolicyCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusPolicyCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusPolicyCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusPolicyExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusPolicyExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusPolicyExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusPolicyExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusQuarantine.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusQuarantine.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusQuarantine.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusQuarantine.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusQuarantinePathParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusQuarantinePathParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusQuarantinePathParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusQuarantinePathParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusScanItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusScanItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusScanItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusScanItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusServer.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusServer.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusServer.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusServer.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusServerCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusServerCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusServerCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusServerCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusServerExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusServerExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusServerExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusServerExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusServers.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusServers.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusServers.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusServers.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusServersExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusServersExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusServersExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusServersExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusSettingsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusSettingsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusSettingsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusSettingsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusSettingsSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AntivirusSettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AntivirusSettingsSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ApiApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ApiApi.md similarity index 83% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ApiApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ApiApi.md index 95b7732d1..b94f55eb4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ApiApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ApiApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.ApiApi +# isilon_sdk.v9_4_0.ApiApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -8,10 +8,10 @@ Method | HTTP request | Description [**create_sessions_rekey_item**](ApiApi.md#create_sessions_rekey_item) | **POST** /platform/14/api/sessions/rekey | [**delete_sessions_invalidation**](ApiApi.md#delete_sessions_invalidation) | **DELETE** /platform/14/api/sessions/invalidations/{SessionsInvalidationId} | [**get_sessions_invalidation**](ApiApi.md#get_sessions_invalidation) | **GET** /platform/14/api/sessions/invalidations/{SessionsInvalidationId} | -[**get_settings_sessions**](ApiApi.md#get_settings_sessions) | **GET** /platform/16/api/settings/sessions | +[**get_settings_sessions**](ApiApi.md#get_settings_sessions) | **GET** /platform/14/api/settings/sessions | [**list_sessions_invalidations**](ApiApi.md#list_sessions_invalidations) | **GET** /platform/14/api/sessions/invalidations | [**update_sessions_invalidation**](ApiApi.md#update_sessions_invalidation) | **PUT** /platform/14/api/sessions/invalidations/{SessionsInvalidationId} | -[**update_settings_sessions**](ApiApi.md#update_settings_sessions) | **PUT** /platform/16/api/settings/sessions | +[**update_settings_sessions**](ApiApi.md#update_settings_sessions) | **PUT** /platform/14/api/settings/sessions | # **create_sessions_invalidation** @@ -25,18 +25,18 @@ Create a new Platform API session invalidation. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ApiApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -sessions_invalidation = isilon_sdk.v9_11_0.SessionsInvalidationCreateParams() # SessionsInvalidationCreateParams | +api_instance = isilon_sdk.v9_4_0.ApiApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +sessions_invalidation = isilon_sdk.v9_4_0.SessionsInvalidationCreateParams() # SessionsInvalidationCreateParams | zone = 'zone_example' # str | The zone to create the invalidation in. (optional) try: @@ -79,18 +79,18 @@ Delete all existing session API signing keys and create a new signing key. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ApiApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -sessions_rekey_item = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.ApiApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +sessions_rekey_item = isilon_sdk.v9_4_0.Empty() # Empty | try: api_response = api_instance.create_sessions_rekey_item(sessions_rekey_item) @@ -131,17 +131,17 @@ Delete a user's Platform API session invalidation. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ApiApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ApiApi(isilon_sdk.v9_4_0.ApiClient(configuration)) sessions_invalidation_id = 'sessions_invalidation_id_example' # str | Delete a user's Platform API session invalidation. zone = 'zone_example' # str | The zone to delete an invalidation from. (optional) @@ -184,17 +184,17 @@ Get user Platform API session invalidation information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ApiApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ApiApi(isilon_sdk.v9_4_0.ApiClient(configuration)) sessions_invalidation_id = 'sessions_invalidation_id_example' # str | Get user Platform API session invalidation information. zone = 'zone_example' # str | The zone to get the invalidation from. (optional) @@ -238,17 +238,17 @@ Retrieve the HTTP API session settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ApiApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ApiApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_settings_sessions() @@ -286,17 +286,17 @@ Get Platform API session invalidations. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ApiApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ApiApi(isilon_sdk.v9_4_0.ApiClient(configuration)) zone = 'zone_example' # str | The zone to get invalidations from. (optional) try: @@ -338,18 +338,18 @@ Modify a user's Platform API session invalidation. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ApiApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -sessions_invalidation = isilon_sdk.v9_11_0.SessionsInvalidation() # SessionsInvalidation | +api_instance = isilon_sdk.v9_4_0.ApiApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +sessions_invalidation = isilon_sdk.v9_4_0.SessionsInvalidation() # SessionsInvalidation | sessions_invalidation_id = 'sessions_invalidation_id_example' # str | Modify a user's Platform API session invalidation. zone = 'zone_example' # str | The zone to modify an invalidation in. (optional) @@ -393,18 +393,18 @@ Modify the HTTP API session settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ApiApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -settings_sessions = isilon_sdk.v9_11_0.SettingsSessionsExtended() # SettingsSessionsExtended | +api_instance = isilon_sdk.v9_4_0.ApiApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +settings_sessions = isilon_sdk.v9_4_0.SettingsSessionsSettings() # SettingsSessionsSettings | try: api_instance.update_settings_sessions(settings_sessions) @@ -416,7 +416,7 @@ except ApiException as e: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **settings_sessions** | [**SettingsSessionsExtended**](SettingsSessionsExtended.md)| | + **settings_sessions** | [**SettingsSessionsSettings**](SettingsSessionsSettings.md)| | ### Return type diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuditApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuditApi.md similarity index 55% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuditApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuditApi.md index 554825dcc..15f9acaf0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuditApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuditApi.md @@ -1,27 +1,22 @@ -# isilon_sdk.v9_11_0.AuditApi +# isilon_sdk.v9_4_0.AuditApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* Method | HTTP request | Description ------------- | ------------- | ------------- [**create_audit_topic**](AuditApi.md#create_audit_topic) | **POST** /platform/1/audit/topics | -[**create_certificates_syslog_item**](AuditApi.md#create_certificates_syslog_item) | **POST** /platform/16/audit/certificates/syslog | [**delete_audit_logs**](AuditApi.md#delete_audit_logs) | **DELETE** /platform/11/audit/logs | [**delete_audit_topic**](AuditApi.md#delete_audit_topic) | **DELETE** /platform/1/audit/topics/{AuditTopicId} | -[**delete_certificates_syslog_by_id**](AuditApi.md#delete_certificates_syslog_by_id) | **DELETE** /platform/16/audit/certificates/syslog/{CertificatesSyslogId} | [**get_audit_logs**](AuditApi.md#get_audit_logs) | **GET** /platform/11/audit/logs | [**get_audit_progress**](AuditApi.md#get_audit_progress) | **GET** /platform/4/audit/progress | -[**get_audit_settings**](AuditApi.md#get_audit_settings) | **GET** /platform/16/audit/settings | +[**get_audit_settings**](AuditApi.md#get_audit_settings) | **GET** /platform/7/audit/settings | [**get_audit_topic**](AuditApi.md#get_audit_topic) | **GET** /platform/1/audit/topics/{AuditTopicId} | -[**get_certificates_syslog_by_id**](AuditApi.md#get_certificates_syslog_by_id) | **GET** /platform/16/audit/certificates/syslog/{CertificatesSyslogId} | [**get_progress_global**](AuditApi.md#get_progress_global) | **GET** /platform/4/audit/progress/global | -[**get_settings_global**](AuditApi.md#get_settings_global) | **GET** /platform/16/audit/settings/global | +[**get_settings_global**](AuditApi.md#get_settings_global) | **GET** /platform/11/audit/settings/global | [**list_audit_topics**](AuditApi.md#list_audit_topics) | **GET** /platform/1/audit/topics | -[**list_certificates_syslog**](AuditApi.md#list_certificates_syslog) | **GET** /platform/16/audit/certificates/syslog | -[**update_audit_settings**](AuditApi.md#update_audit_settings) | **PUT** /platform/16/audit/settings | +[**update_audit_settings**](AuditApi.md#update_audit_settings) | **PUT** /platform/7/audit/settings | [**update_audit_topic**](AuditApi.md#update_audit_topic) | **PUT** /platform/1/audit/topics/{AuditTopicId} | -[**update_certificates_syslog_by_id**](AuditApi.md#update_certificates_syslog_by_id) | **PUT** /platform/16/audit/certificates/syslog/{CertificatesSyslogId} | -[**update_settings_global**](AuditApi.md#update_settings_global) | **PUT** /platform/16/audit/settings/global | +[**update_settings_global**](AuditApi.md#update_settings_global) | **PUT** /platform/11/audit/settings/global | # **create_audit_topic** @@ -35,18 +30,18 @@ Create a new audit topic. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuditApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -audit_topic = isilon_sdk.v9_11_0.AuditTopicCreateParams() # AuditTopicCreateParams | +api_instance = isilon_sdk.v9_4_0.AuditApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +audit_topic = isilon_sdk.v9_4_0.AuditTopicCreateParams() # AuditTopicCreateParams | try: api_response = api_instance.create_audit_topic(audit_topic) @@ -76,58 +71,6 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **create_certificates_syslog_item** -> CreateResponse create_certificates_syslog_item(certificates_syslog_item) - - - -Import a syslog TLS server certificate. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuditApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -certificates_syslog_item = isilon_sdk.v9_11_0.CertificatesSyslogItem() # CertificatesSyslogItem | - -try: - api_response = api_instance.create_certificates_syslog_item(certificates_syslog_item) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuditApi->create_certificates_syslog_item: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **certificates_syslog_item** | [**CertificatesSyslogItem**](CertificatesSyslogItem.md)| | - -### Return type - -[**CreateResponse**](CreateResponse.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **delete_audit_logs** > delete_audit_logs(before, force=force) @@ -139,17 +82,17 @@ Manually delete audit log files. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuditApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AuditApi(isilon_sdk.v9_4_0.ApiClient(configuration)) before = 56 # int | The timestamp before which logs will be deleted. force = true # bool | Do not ask for confirmation. (optional) @@ -192,17 +135,17 @@ Delete the audit topic. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuditApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AuditApi(isilon_sdk.v9_4_0.ApiClient(configuration)) audit_topic_id = 'audit_topic_id_example' # str | Delete the audit topic. try: @@ -232,57 +175,6 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **delete_certificates_syslog_by_id** -> delete_certificates_syslog_by_id(certificates_syslog_id) - - - -Delete a syslog TLS server certificate. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuditApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -certificates_syslog_id = 'certificates_syslog_id_example' # str | Delete a syslog TLS server certificate. - -try: - api_instance.delete_certificates_syslog_by_id(certificates_syslog_id) -except ApiException as e: - print("Exception when calling AuditApi->delete_certificates_syslog_by_id: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **certificates_syslog_id** | **str**| Delete a syslog TLS server certificate. | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **get_audit_logs** > AuditLogs get_audit_logs() @@ -294,17 +186,17 @@ Get the manual deletion status. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuditApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AuditApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_audit_logs() @@ -342,17 +234,17 @@ View current audit log time. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuditApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AuditApi(isilon_sdk.v9_4_0.ApiClient(configuration)) lnn = 56 # int | lnn of the node. (optional) try: @@ -394,17 +286,17 @@ View per-Access Zone Audit settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuditApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AuditApi(isilon_sdk.v9_4_0.ApiClient(configuration)) zone = 'zone_example' # str | Access zone which contains audit settings. (optional) try: @@ -446,17 +338,17 @@ Retrieve the audit topic information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuditApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AuditApi(isilon_sdk.v9_4_0.ApiClient(configuration)) audit_topic_id = 'audit_topic_id_example' # str | Retrieve the audit topic information. try: @@ -487,58 +379,6 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **get_certificates_syslog_by_id** -> CertificatesSyslog get_certificates_syslog_by_id(certificates_syslog_id) - - - -Retrieve a syslog TLS server certificate. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuditApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -certificates_syslog_id = 'certificates_syslog_id_example' # str | Retrieve a syslog TLS server certificate. - -try: - api_response = api_instance.get_certificates_syslog_by_id(certificates_syslog_id) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuditApi->get_certificates_syslog_by_id: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **certificates_syslog_id** | **str**| Retrieve a syslog TLS server certificate. | - -### Return type - -[**CertificatesSyslog**](CertificatesSyslog.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **get_progress_global** > ProgressGlobal get_progress_global() @@ -550,17 +390,17 @@ View the global audit log time. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuditApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AuditApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_progress_global() @@ -588,7 +428,7 @@ This endpoint does not need any parameter. [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_settings_global** -> SettingsGlobal get_settings_global() +> SettingsGlobalExtended get_settings_global() @@ -598,17 +438,17 @@ View global audit settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuditApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AuditApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_settings_global() @@ -622,7 +462,7 @@ This endpoint does not need any parameter. ### Return type -[**SettingsGlobal**](SettingsGlobal.md) +[**SettingsGlobalExtended**](SettingsGlobalExtended.md) ### Authorization @@ -646,17 +486,17 @@ Retrieve a list of audit topics. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuditApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AuditApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.list_audit_topics() @@ -683,64 +523,6 @@ This endpoint does not need any parameter. [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **list_certificates_syslog** -> CertificatesSyslogExtended list_certificates_syslog(dir=dir, limit=limit, resume=resume, sort=sort) - - - -Retrieve a list of all syslog TLS server certificates. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuditApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -dir = 'dir_example' # str | The direction of the sort. (optional) -limit = 56 # int | Return no more than this many results at once (see resume). (optional) -resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) -sort = 'sort_example' # str | The field that will be used for sorting. (optional) - -try: - api_response = api_instance.list_certificates_syslog(dir=dir, limit=limit, resume=resume, sort=sort) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuditApi->list_certificates_syslog: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **dir** | **str**| The direction of the sort. | [optional] - **limit** | **int**| Return no more than this many results at once (see resume). | [optional] - **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] - **sort** | **str**| The field that will be used for sorting. | [optional] - -### Return type - -[**CertificatesSyslogExtended**](CertificatesSyslogExtended.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **update_audit_settings** > update_audit_settings(audit_settings, zone=zone) @@ -752,18 +534,18 @@ Modify per-Access Zone Audit settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuditApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -audit_settings = isilon_sdk.v9_11_0.AuditSettingsSettings() # AuditSettingsSettings | +api_instance = isilon_sdk.v9_4_0.AuditApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +audit_settings = isilon_sdk.v9_4_0.AuditSettingsSettings() # AuditSettingsSettings | zone = 'zone_example' # str | Access zone which contains audit settings. (optional) try: @@ -805,18 +587,18 @@ Modify the audit topic. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuditApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -audit_topic = isilon_sdk.v9_11_0.AuditTopic() # AuditTopic | +api_instance = isilon_sdk.v9_4_0.AuditApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +audit_topic = isilon_sdk.v9_4_0.AuditTopic() # AuditTopic | audit_topic_id = 'audit_topic_id_example' # str | Modify the audit topic. try: @@ -847,59 +629,6 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_certificates_syslog_by_id** -> update_certificates_syslog_by_id(certificates_syslog_id_params, certificates_syslog_id) - - - -Modify a syslog TLS server certificate. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuditApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -certificates_syslog_id_params = isilon_sdk.v9_11_0.CertificatesSyslogIdParams() # CertificatesSyslogIdParams | -certificates_syslog_id = 'certificates_syslog_id_example' # str | Modify a syslog TLS server certificate. - -try: - api_instance.update_certificates_syslog_by_id(certificates_syslog_id_params, certificates_syslog_id) -except ApiException as e: - print("Exception when calling AuditApi->update_certificates_syslog_by_id: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **certificates_syslog_id_params** | [**CertificatesSyslogIdParams**](CertificatesSyslogIdParams.md)| | - **certificates_syslog_id** | **str**| Modify a syslog TLS server certificate. | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **update_settings_global** > update_settings_global(settings_global, force=force) @@ -911,18 +640,18 @@ Modify global audit settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuditApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -settings_global = isilon_sdk.v9_11_0.SettingsGlobalSettings() # SettingsGlobalSettings | +api_instance = isilon_sdk.v9_4_0.AuditApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +settings_global = isilon_sdk.v9_4_0.SettingsGlobalSettings() # SettingsGlobalSettings | force = true # bool | Do not ask for confirmation. (optional) try: diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuditLogs.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuditLogs.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuditLogs.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuditLogs.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuditLogsBlockerItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuditLogsBlockerItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuditLogsBlockerItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuditLogsBlockerItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuditLogsDeletionItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuditLogsDeletionItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuditLogsDeletionItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuditLogsDeletionItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuditProgress.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuditProgress.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuditProgress.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuditProgress.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuditProgressProgress.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuditProgressProgress.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuditProgressProgress.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuditProgressProgress.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuditSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuditSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuditSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuditSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuditSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuditSettingsSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuditSettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuditSettingsSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuditTopic.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuditTopic.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuditTopic.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuditTopic.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuditTopicCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuditTopicCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuditTopicCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuditTopicCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuditTopicExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuditTopicExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuditTopicExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuditTopicExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuditTopics.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuditTopics.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuditTopics.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuditTopics.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthAccess.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthAccess.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthAccess.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthAccess.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthAccessAccessItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthAccessAccessItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthAccessAccessItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthAccessAccessItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthAccessAccessItemFile.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthAccessAccessItemFile.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthAccessAccessItemFile.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthAccessAccessItemFile.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthAccessAccessItemFileFilePermissions.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthAccessAccessItemFileFilePermissions.md similarity index 80% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthAccessAccessItemFileFilePermissions.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthAccessAccessItemFileFilePermissions.md index becca8036..b5ad2c36d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthAccessAccessItemFileFilePermissions.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthAccessAccessItemFileFilePermissions.md @@ -7,7 +7,7 @@ Name | Type | Description | Notes **expected** | **str** | Specifies the expected access rights for the user on the file. | [optional] **mode** | **str** | Specifies the mode bits on the file. | [optional] **ownership** | **bool** | True if the user owns the file. | [optional] -**relevant_aces** | **list[str]** | Specifies a list of the relevant Access Control Entrieswith respect to the user in the share. | [optional] +**relevant_aces** | [**list[AuthAccessAccessItemFileFilePermissionsRelevantAce]**](AuthAccessAccessItemFileFilePermissionsRelevantAce.md) | Specifies a list of the relevant Access Control Entrieswith respect to the user in the share. | [optional] **relevant_mode** | **str** | Specifies the mode bits that are related to the user. | [optional] **sticky** | **bool** | Specifies if the parent directory has the sticky bit property set indicating only the file's owner may delete the file. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigCatalogStatusExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthAccessAccessItemFileFilePermissionsRelevantAce.md similarity index 66% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigCatalogStatusExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthAccessAccessItemFileFilePermissionsRelevantAce.md index e49926a66..50892c50e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigCatalogStatusExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthAccessAccessItemFileFilePermissionsRelevantAce.md @@ -1,9 +1,9 @@ -# ConfigCatalogStatusExtended +# AuthAccessAccessItemFileFilePermissionsRelevantAce ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**enabled** | **bool** | Enable/disable config catalog package auto download | [optional] +**ace** | **str** | Specifies properties for an Access Control Entry | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthAccessAccessItemFileGroup.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthAccessAccessItemFileGroup.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthAccessAccessItemFileGroup.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthAccessAccessItemFileGroup.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthAccessAccessItemShare.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthAccessAccessItemShare.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthAccessAccessItemShare.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthAccessAccessItemShare.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthAccessAccessItemShareEffectiveUser.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthAccessAccessItemShareEffectiveUser.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthAccessAccessItemShareEffectiveUser.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthAccessAccessItemShareEffectiveUser.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthAccessAccessItemShareSharePermissions.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthAccessAccessItemShareSharePermissions.md similarity index 77% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthAccessAccessItemShareSharePermissions.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthAccessAccessItemShareSharePermissions.md index 3e9e3f6ae..83abdf46e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthAccessAccessItemShareSharePermissions.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthAccessAccessItemShareSharePermissions.md @@ -6,8 +6,8 @@ Name | Type | Description | Notes **expected_permissions** | **str** | Returns Share level permissions for the user.{ 'read' , 'write' , 'full' or 'none' will be the values} | [optional] **impersonate_guest** | **bool** | Returns whether impersonate guest setting is enabled for the user on the share. | [optional] **impersonate_user** | **bool** | Returns whether impersonate user setting is enabled on the share | [optional] -**relevant_share_aces** | **list[str]** | Specifies a list of the relevant Access Control Entries withrespect to the user in the share. | [optional] **run_as_root** | **bool** | Returns whether run as root is enabled for the user on the share | [optional] +**share_relevant_aces** | [**list[AuthAccessAccessItemFileFilePermissionsRelevantAce]**](AuthAccessAccessItemFileFilePermissionsRelevantAce.md) | Specifies a list of the relevant Access Control Entries withrespect to the user in the share. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthApi.md similarity index 60% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthApi.md index cc2981a29..fc62eca6f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthApi.md @@ -1,129 +1,96 @@ -# isilon_sdk.v9_11_0.AuthApi +# isilon_sdk.v9_4_0.AuthApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* Method | HTTP request | Description ------------- | ------------- | ------------- [**create_auth_cache_item**](AuthApi.md#create_auth_cache_item) | **POST** /platform/4/auth/cache | -[**create_auth_group**](AuthApi.md#create_auth_group) | **POST** /platform/17/auth/groups | +[**create_auth_group**](AuthApi.md#create_auth_group) | **POST** /platform/1/auth/groups | [**create_auth_refresh_item**](AuthApi.md#create_auth_refresh_item) | **POST** /platform/3/auth/refresh | -[**create_auth_role**](AuthApi.md#create_auth_role) | **POST** /platform/18/auth/roles | -[**create_auth_user**](AuthApi.md#create_auth_user) | **POST** /platform/17/auth/users | +[**create_auth_role**](AuthApi.md#create_auth_role) | **POST** /platform/14/auth/roles | +[**create_auth_user**](AuthApi.md#create_auth_user) | **POST** /platform/7/auth/users | [**create_mapping_identities**](AuthApi.md#create_mapping_identities) | **POST** /platform/1/auth/mapping/identities | [**create_mapping_identity**](AuthApi.md#create_mapping_identity) | **POST** /platform/1/auth/mapping/identities/{MappingIdentityId} | -[**create_oauth_certificate**](AuthApi.md#create_oauth_certificate) | **POST** /platform/19/auth/oauth/certificates | -[**create_oauth_oauth2_client**](AuthApi.md#create_oauth_oauth2_client) | **POST** /platform/19/auth/oauth/oauth2clients | -[**create_oauth_oauth2_token_exchange**](AuthApi.md#create_oauth_oauth2_token_exchange) | **POST** /platform/19/auth/oauth/oauth2-token-exchanges | [**create_providers_ads_item**](AuthApi.md#create_providers_ads_item) | **POST** /platform/14/auth/providers/ads | -[**create_providers_file_item**](AuthApi.md#create_providers_file_item) | **POST** /platform/16/auth/providers/file | +[**create_providers_file_item**](AuthApi.md#create_providers_file_item) | **POST** /platform/7/auth/providers/file | [**create_providers_krb5_item**](AuthApi.md#create_providers_krb5_item) | **POST** /platform/7/auth/providers/krb5 | -[**create_providers_ldap_item**](AuthApi.md#create_providers_ldap_item) | **POST** /platform/16/auth/providers/ldap | +[**create_providers_ldap_item**](AuthApi.md#create_providers_ldap_item) | **POST** /platform/11/auth/providers/ldap | [**create_providers_nis_item**](AuthApi.md#create_providers_nis_item) | **POST** /platform/7/auth/providers/nis | -[**create_providers_saml_services_cert_extract_item**](AuthApi.md#create_providers_saml_services_cert_extract_item) | **POST** /platform/16/auth/providers/saml-services/cert-extract | -[**create_providers_saml_services_idp**](AuthApi.md#create_providers_saml_services_idp) | **POST** /platform/16/auth/providers/saml-services/idps | -[**create_providers_saml_services_metadata_extract_item**](AuthApi.md#create_providers_saml_services_metadata_extract_item) | **POST** /platform/16/auth/providers/saml-services/metadata-extract | -[**create_providers_saml_services_sp_signing_key_rekey_item**](AuthApi.md#create_providers_saml_services_sp_signing_key_rekey_item) | **POST** /platform/16/auth/providers/saml-services/sp/signing-key/rekey | [**create_settings_krb5_domain**](AuthApi.md#create_settings_krb5_domain) | **POST** /platform/1/auth/settings/krb5/domains | [**create_settings_krb5_realm**](AuthApi.md#create_settings_krb5_realm) | **POST** /platform/1/auth/settings/krb5/realms | -[**delete_auth_group**](AuthApi.md#delete_auth_group) | **DELETE** /platform/17/auth/groups/{AuthGroupId} | -[**delete_auth_groups**](AuthApi.md#delete_auth_groups) | **DELETE** /platform/17/auth/groups | -[**delete_auth_role**](AuthApi.md#delete_auth_role) | **DELETE** /platform/18/auth/roles/{AuthRoleId} | -[**delete_auth_user**](AuthApi.md#delete_auth_user) | **DELETE** /platform/17/auth/users/{AuthUserId} | -[**delete_auth_users**](AuthApi.md#delete_auth_users) | **DELETE** /platform/17/auth/users | +[**delete_auth_group**](AuthApi.md#delete_auth_group) | **DELETE** /platform/1/auth/groups/{AuthGroupId} | +[**delete_auth_groups**](AuthApi.md#delete_auth_groups) | **DELETE** /platform/1/auth/groups | +[**delete_auth_role**](AuthApi.md#delete_auth_role) | **DELETE** /platform/14/auth/roles/{AuthRoleId} | +[**delete_auth_user**](AuthApi.md#delete_auth_user) | **DELETE** /platform/7/auth/users/{AuthUserId} | +[**delete_auth_users**](AuthApi.md#delete_auth_users) | **DELETE** /platform/7/auth/users | [**delete_mapping_identities**](AuthApi.md#delete_mapping_identities) | **DELETE** /platform/1/auth/mapping/identities | [**delete_mapping_identity**](AuthApi.md#delete_mapping_identity) | **DELETE** /platform/1/auth/mapping/identities/{MappingIdentityId} | -[**delete_oauth_certificate**](AuthApi.md#delete_oauth_certificate) | **DELETE** /platform/19/auth/oauth/certificates/{OauthCertificateId} | -[**delete_oauth_oauth2_client**](AuthApi.md#delete_oauth_oauth2_client) | **DELETE** /platform/19/auth/oauth/oauth2clients/{OauthOauth2ClientId} | -[**delete_oauth_oauth2_token_exchange**](AuthApi.md#delete_oauth_oauth2_token_exchange) | **DELETE** /platform/19/auth/oauth/oauth2-token-exchanges/{OauthOauth2TokenExchangeId} | [**delete_providers_ads_by_id**](AuthApi.md#delete_providers_ads_by_id) | **DELETE** /platform/14/auth/providers/ads/{ProvidersAdsId} | -[**delete_providers_file_by_id**](AuthApi.md#delete_providers_file_by_id) | **DELETE** /platform/16/auth/providers/file/{ProvidersFileId} | +[**delete_providers_file_by_id**](AuthApi.md#delete_providers_file_by_id) | **DELETE** /platform/7/auth/providers/file/{ProvidersFileId} | [**delete_providers_krb5_by_id**](AuthApi.md#delete_providers_krb5_by_id) | **DELETE** /platform/7/auth/providers/krb5/{ProvidersKrb5Id} | -[**delete_providers_ldap_by_id**](AuthApi.md#delete_providers_ldap_by_id) | **DELETE** /platform/16/auth/providers/ldap/{ProvidersLdapId} | +[**delete_providers_ldap_by_id**](AuthApi.md#delete_providers_ldap_by_id) | **DELETE** /platform/11/auth/providers/ldap/{ProvidersLdapId} | [**delete_providers_nis_by_id**](AuthApi.md#delete_providers_nis_by_id) | **DELETE** /platform/7/auth/providers/nis/{ProvidersNisId} | -[**delete_providers_saml_services_idp**](AuthApi.md#delete_providers_saml_services_idp) | **DELETE** /platform/16/auth/providers/saml-services/idps/{ProvidersSamlServicesIdpId} | [**delete_settings_krb5_domain**](AuthApi.md#delete_settings_krb5_domain) | **DELETE** /platform/1/auth/settings/krb5/domains/{SettingsKrb5DomainId} | [**delete_settings_krb5_realm**](AuthApi.md#delete_settings_krb5_realm) | **DELETE** /platform/1/auth/settings/krb5/realms/{SettingsKrb5RealmId} | [**get_auth_access_user**](AuthApi.md#get_auth_access_user) | **GET** /platform/1/auth/access/{AuthAccessUser} | [**get_auth_error_error**](AuthApi.md#get_auth_error_error) | **GET** /platform/7/auth/error/{AuthErrorError} | -[**get_auth_group**](AuthApi.md#get_auth_group) | **GET** /platform/17/auth/groups/{AuthGroupId} | -[**get_auth_id**](AuthApi.md#get_auth_id) | **GET** /platform/18/auth/id | +[**get_auth_group**](AuthApi.md#get_auth_group) | **GET** /platform/1/auth/groups/{AuthGroupId} | +[**get_auth_id**](AuthApi.md#get_auth_id) | **GET** /platform/14/auth/id | [**get_auth_ldap_template**](AuthApi.md#get_auth_ldap_template) | **GET** /platform/7/auth/ldap-templates/{AuthLdapTemplateId} | [**get_auth_ldap_templates**](AuthApi.md#get_auth_ldap_templates) | **GET** /platform/7/auth/ldap-templates | [**get_auth_log_level**](AuthApi.md#get_auth_log_level) | **GET** /platform/12/auth/log-level | [**get_auth_netgroup**](AuthApi.md#get_auth_netgroup) | **GET** /platform/1/auth/netgroups/{AuthNetgroupId} | [**get_auth_privileges**](AuthApi.md#get_auth_privileges) | **GET** /platform/14/auth/privileges | -[**get_auth_role**](AuthApi.md#get_auth_role) | **GET** /platform/18/auth/roles/{AuthRoleId} | +[**get_auth_role**](AuthApi.md#get_auth_role) | **GET** /platform/14/auth/roles/{AuthRoleId} | [**get_auth_shells**](AuthApi.md#get_auth_shells) | **GET** /platform/1/auth/shells | -[**get_auth_user**](AuthApi.md#get_auth_user) | **GET** /platform/17/auth/users/{AuthUserId} | +[**get_auth_user**](AuthApi.md#get_auth_user) | **GET** /platform/7/auth/users/{AuthUserId} | [**get_auth_wellknown**](AuthApi.md#get_auth_wellknown) | **GET** /platform/1/auth/wellknowns/{AuthWellknownId} | [**get_auth_wellknowns**](AuthApi.md#get_auth_wellknowns) | **GET** /platform/1/auth/wellknowns | [**get_mapping_dump**](AuthApi.md#get_mapping_dump) | **GET** /platform/3/auth/mapping/dump | [**get_mapping_identity**](AuthApi.md#get_mapping_identity) | **GET** /platform/1/auth/mapping/identities/{MappingIdentityId} | -[**get_mapping_users_lookup**](AuthApi.md#get_mapping_users_lookup) | **GET** /platform/20/auth/mapping/users/lookup | +[**get_mapping_users_lookup**](AuthApi.md#get_mapping_users_lookup) | **GET** /platform/1/auth/mapping/users/lookup | [**get_mapping_users_rules**](AuthApi.md#get_mapping_users_rules) | **GET** /platform/1/auth/mapping/users/rules | -[**get_oauth_certificate**](AuthApi.md#get_oauth_certificate) | **GET** /platform/19/auth/oauth/certificates/{OauthCertificateId} | -[**get_oauth_oauth2_client**](AuthApi.md#get_oauth_oauth2_client) | **GET** /platform/19/auth/oauth/oauth2clients/{OauthOauth2ClientId} | -[**get_oauth_oauth2_token_exchange**](AuthApi.md#get_oauth_oauth2_token_exchange) | **GET** /platform/19/auth/oauth/oauth2-token-exchanges/{OauthOauth2TokenExchangeId} | -[**get_oauth_settings**](AuthApi.md#get_oauth_settings) | **GET** /platform/19/auth/oauth/settings | [**get_providers_ads_by_id**](AuthApi.md#get_providers_ads_by_id) | **GET** /platform/14/auth/providers/ads/{ProvidersAdsId} | [**get_providers_duo**](AuthApi.md#get_providers_duo) | **GET** /platform/7/auth/providers/duo | -[**get_providers_file_by_id**](AuthApi.md#get_providers_file_by_id) | **GET** /platform/16/auth/providers/file/{ProvidersFileId} | +[**get_providers_file_by_id**](AuthApi.md#get_providers_file_by_id) | **GET** /platform/7/auth/providers/file/{ProvidersFileId} | [**get_providers_krb5_by_id**](AuthApi.md#get_providers_krb5_by_id) | **GET** /platform/7/auth/providers/krb5/{ProvidersKrb5Id} | -[**get_providers_ldap_by_id**](AuthApi.md#get_providers_ldap_by_id) | **GET** /platform/16/auth/providers/ldap/{ProvidersLdapId} | -[**get_providers_local**](AuthApi.md#get_providers_local) | **GET** /platform/16/auth/providers/local | -[**get_providers_local_by_id**](AuthApi.md#get_providers_local_by_id) | **GET** /platform/16/auth/providers/local/{ProvidersLocalId} | +[**get_providers_ldap_by_id**](AuthApi.md#get_providers_ldap_by_id) | **GET** /platform/11/auth/providers/ldap/{ProvidersLdapId} | +[**get_providers_local**](AuthApi.md#get_providers_local) | **GET** /platform/7/auth/providers/local | +[**get_providers_local_by_id**](AuthApi.md#get_providers_local_by_id) | **GET** /platform/7/auth/providers/local/{ProvidersLocalId} | [**get_providers_nis_by_id**](AuthApi.md#get_providers_nis_by_id) | **GET** /platform/7/auth/providers/nis/{ProvidersNisId} | -[**get_providers_saml_services_idp**](AuthApi.md#get_providers_saml_services_idp) | **GET** /platform/16/auth/providers/saml-services/idps/{ProvidersSamlServicesIdpId} | -[**get_providers_saml_services_settings**](AuthApi.md#get_providers_saml_services_settings) | **GET** /platform/16/auth/providers/saml-services/settings | -[**get_providers_saml_services_sp**](AuthApi.md#get_providers_saml_services_sp) | **GET** /platform/18/auth/providers/saml-services/sp | -[**get_providers_saml_services_sp_signing_key_settings**](AuthApi.md#get_providers_saml_services_sp_signing_key_settings) | **GET** /platform/16/auth/providers/saml-services/sp/signing-key/settings | -[**get_providers_saml_services_sp_signing_key_status**](AuthApi.md#get_providers_saml_services_sp_signing_key_status) | **GET** /platform/16/auth/providers/saml-services/sp/signing-key/status | [**get_providers_summary**](AuthApi.md#get_providers_summary) | **GET** /platform/11/auth/providers/summary | -[**get_settings_acls**](AuthApi.md#get_settings_acls) | **GET** /platform/18/auth/settings/acls | -[**get_settings_global**](AuthApi.md#get_settings_global) | **GET** /platform/16/auth/settings/global | -[**get_settings_krb5_defaults**](AuthApi.md#get_settings_krb5_defaults) | **GET** /platform/19/auth/settings/krb5/defaults | +[**get_settings_acls**](AuthApi.md#get_settings_acls) | **GET** /platform/11/auth/settings/acls | +[**get_settings_global**](AuthApi.md#get_settings_global) | **GET** /platform/1/auth/settings/global | +[**get_settings_krb5_defaults**](AuthApi.md#get_settings_krb5_defaults) | **GET** /platform/1/auth/settings/krb5/defaults | [**get_settings_krb5_domain**](AuthApi.md#get_settings_krb5_domain) | **GET** /platform/1/auth/settings/krb5/domains/{SettingsKrb5DomainId} | [**get_settings_krb5_realm**](AuthApi.md#get_settings_krb5_realm) | **GET** /platform/1/auth/settings/krb5/realms/{SettingsKrb5RealmId} | [**get_settings_mapping**](AuthApi.md#get_settings_mapping) | **GET** /platform/1/auth/settings/mapping | -[**list_auth_groups**](AuthApi.md#list_auth_groups) | **GET** /platform/17/auth/groups | -[**list_auth_roles**](AuthApi.md#list_auth_roles) | **GET** /platform/18/auth/roles | -[**list_auth_users**](AuthApi.md#list_auth_users) | **GET** /platform/17/auth/users | -[**list_oauth_certificates**](AuthApi.md#list_oauth_certificates) | **GET** /platform/19/auth/oauth/certificates | -[**list_oauth_oauth2_clients**](AuthApi.md#list_oauth_oauth2_clients) | **GET** /platform/19/auth/oauth/oauth2clients | -[**list_oauth_oauth2_token_exchanges**](AuthApi.md#list_oauth_oauth2_token_exchanges) | **GET** /platform/19/auth/oauth/oauth2-token-exchanges | +[**list_auth_groups**](AuthApi.md#list_auth_groups) | **GET** /platform/1/auth/groups | +[**list_auth_roles**](AuthApi.md#list_auth_roles) | **GET** /platform/14/auth/roles | +[**list_auth_users**](AuthApi.md#list_auth_users) | **GET** /platform/7/auth/users | [**list_providers_ads**](AuthApi.md#list_providers_ads) | **GET** /platform/14/auth/providers/ads | -[**list_providers_file**](AuthApi.md#list_providers_file) | **GET** /platform/16/auth/providers/file | +[**list_providers_file**](AuthApi.md#list_providers_file) | **GET** /platform/7/auth/providers/file | [**list_providers_krb5**](AuthApi.md#list_providers_krb5) | **GET** /platform/7/auth/providers/krb5 | -[**list_providers_ldap**](AuthApi.md#list_providers_ldap) | **GET** /platform/16/auth/providers/ldap | +[**list_providers_ldap**](AuthApi.md#list_providers_ldap) | **GET** /platform/11/auth/providers/ldap | [**list_providers_nis**](AuthApi.md#list_providers_nis) | **GET** /platform/7/auth/providers/nis | -[**list_providers_saml_services_cert_extract**](AuthApi.md#list_providers_saml_services_cert_extract) | **GET** /platform/16/auth/providers/saml-services/cert-extract | -[**list_providers_saml_services_idps**](AuthApi.md#list_providers_saml_services_idps) | **GET** /platform/16/auth/providers/saml-services/idps | [**list_settings_krb5_domains**](AuthApi.md#list_settings_krb5_domains) | **GET** /platform/1/auth/settings/krb5/domains | [**list_settings_krb5_realms**](AuthApi.md#list_settings_krb5_realms) | **GET** /platform/1/auth/settings/krb5/realms | -[**update_auth_group**](AuthApi.md#update_auth_group) | **PUT** /platform/17/auth/groups/{AuthGroupId} | +[**update_auth_group**](AuthApi.md#update_auth_group) | **PUT** /platform/1/auth/groups/{AuthGroupId} | [**update_auth_log_level**](AuthApi.md#update_auth_log_level) | **PUT** /platform/12/auth/log-level | -[**update_auth_role**](AuthApi.md#update_auth_role) | **PUT** /platform/18/auth/roles/{AuthRoleId} | -[**update_auth_user**](AuthApi.md#update_auth_user) | **PUT** /platform/17/auth/users/{AuthUserId} | +[**update_auth_role**](AuthApi.md#update_auth_role) | **PUT** /platform/14/auth/roles/{AuthRoleId} | +[**update_auth_user**](AuthApi.md#update_auth_user) | **PUT** /platform/7/auth/users/{AuthUserId} | [**update_mapping_import**](AuthApi.md#update_mapping_import) | **PUT** /platform/3/auth/mapping/import | [**update_mapping_users_rules**](AuthApi.md#update_mapping_users_rules) | **PUT** /platform/1/auth/mapping/users/rules | -[**update_oauth_certificate**](AuthApi.md#update_oauth_certificate) | **PUT** /platform/19/auth/oauth/certificates/{OauthCertificateId} | -[**update_oauth_oauth2_client**](AuthApi.md#update_oauth_oauth2_client) | **PUT** /platform/19/auth/oauth/oauth2clients/{OauthOauth2ClientId} | -[**update_oauth_oauth2_token_exchange**](AuthApi.md#update_oauth_oauth2_token_exchange) | **PUT** /platform/19/auth/oauth/oauth2-token-exchanges/{OauthOauth2TokenExchangeId} | -[**update_oauth_settings**](AuthApi.md#update_oauth_settings) | **PUT** /platform/19/auth/oauth/settings | [**update_providers_ads_by_id**](AuthApi.md#update_providers_ads_by_id) | **PUT** /platform/14/auth/providers/ads/{ProvidersAdsId} | [**update_providers_duo**](AuthApi.md#update_providers_duo) | **PUT** /platform/7/auth/providers/duo | -[**update_providers_file_by_id**](AuthApi.md#update_providers_file_by_id) | **PUT** /platform/16/auth/providers/file/{ProvidersFileId} | +[**update_providers_file_by_id**](AuthApi.md#update_providers_file_by_id) | **PUT** /platform/7/auth/providers/file/{ProvidersFileId} | [**update_providers_krb5_by_id**](AuthApi.md#update_providers_krb5_by_id) | **PUT** /platform/7/auth/providers/krb5/{ProvidersKrb5Id} | -[**update_providers_ldap_by_id**](AuthApi.md#update_providers_ldap_by_id) | **PUT** /platform/16/auth/providers/ldap/{ProvidersLdapId} | -[**update_providers_local_by_id**](AuthApi.md#update_providers_local_by_id) | **PUT** /platform/16/auth/providers/local/{ProvidersLocalId} | +[**update_providers_ldap_by_id**](AuthApi.md#update_providers_ldap_by_id) | **PUT** /platform/11/auth/providers/ldap/{ProvidersLdapId} | +[**update_providers_local_by_id**](AuthApi.md#update_providers_local_by_id) | **PUT** /platform/7/auth/providers/local/{ProvidersLocalId} | [**update_providers_nis_by_id**](AuthApi.md#update_providers_nis_by_id) | **PUT** /platform/7/auth/providers/nis/{ProvidersNisId} | -[**update_providers_saml_services_idp**](AuthApi.md#update_providers_saml_services_idp) | **PUT** /platform/16/auth/providers/saml-services/idps/{ProvidersSamlServicesIdpId} | -[**update_providers_saml_services_settings**](AuthApi.md#update_providers_saml_services_settings) | **PUT** /platform/16/auth/providers/saml-services/settings | -[**update_providers_saml_services_sp**](AuthApi.md#update_providers_saml_services_sp) | **PUT** /platform/18/auth/providers/saml-services/sp | -[**update_providers_saml_services_sp_signing_key_settings**](AuthApi.md#update_providers_saml_services_sp_signing_key_settings) | **PUT** /platform/16/auth/providers/saml-services/sp/signing-key/settings | -[**update_settings_acls**](AuthApi.md#update_settings_acls) | **PUT** /platform/18/auth/settings/acls | -[**update_settings_global**](AuthApi.md#update_settings_global) | **PUT** /platform/16/auth/settings/global | -[**update_settings_krb5_defaults**](AuthApi.md#update_settings_krb5_defaults) | **PUT** /platform/19/auth/settings/krb5/defaults | +[**update_settings_acls**](AuthApi.md#update_settings_acls) | **PUT** /platform/11/auth/settings/acls | +[**update_settings_global**](AuthApi.md#update_settings_global) | **PUT** /platform/1/auth/settings/global | +[**update_settings_krb5_defaults**](AuthApi.md#update_settings_krb5_defaults) | **PUT** /platform/1/auth/settings/krb5/defaults | [**update_settings_krb5_domain**](AuthApi.md#update_settings_krb5_domain) | **PUT** /platform/1/auth/settings/krb5/domains/{SettingsKrb5DomainId} | [**update_settings_krb5_realm**](AuthApi.md#update_settings_krb5_realm) | **PUT** /platform/1/auth/settings/krb5/realms/{SettingsKrb5RealmId} | [**update_settings_mapping**](AuthApi.md#update_settings_mapping) | **PUT** /platform/1/auth/settings/mapping | @@ -140,18 +107,18 @@ Flush the Security Objects Cache. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -auth_cache_item = isilon_sdk.v9_11_0.AuthCacheItem() # AuthCacheItem | +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +auth_cache_item = isilon_sdk.v9_4_0.AuthCacheItem() # AuthCacheItem | zone = 'zone_example' # str | Specifies access zone from which to flush objects. (optional) try: @@ -194,18 +161,18 @@ Create a new group. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -auth_group = isilon_sdk.v9_11_0.AuthGroupCreateParams() # AuthGroupCreateParams | +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +auth_group = isilon_sdk.v9_4_0.AuthGroupCreateParams() # AuthGroupCreateParams | force = true # bool | Skip validation checks when creating a group. (optional) provider = 'provider_example' # str | Optional provider type. (optional) zone = 'zone_example' # str | Optional zone. (optional) @@ -252,18 +219,18 @@ Refresh the authentication service configuration. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -auth_refresh_item = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +auth_refresh_item = isilon_sdk.v9_4_0.Empty() # Empty | try: api_response = api_instance.create_auth_refresh_item(auth_refresh_item) @@ -304,18 +271,18 @@ Create a new role. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -auth_role = isilon_sdk.v9_11_0.AuthRoleCreateParams() # AuthRoleCreateParams | +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +auth_role = isilon_sdk.v9_4_0.AuthRoleCreateParams() # AuthRoleCreateParams | zone = 'zone_example' # str | Specifies which access zone to use. (optional) try: @@ -358,18 +325,18 @@ Create a new user. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -auth_user = isilon_sdk.v9_11_0.AuthUserCreateParams() # AuthUserCreateParams | +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +auth_user = isilon_sdk.v9_4_0.AuthUserCreateParams() # AuthUserCreateParams | force = true # bool | Skip validation checks when creating user. (optional) provider = 'provider_example' # str | Optional provider type. (optional) zone = 'zone_example' # str | Optional zone. (optional) @@ -416,18 +383,18 @@ Manually set or modify a mapping between two personae. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -mapping_identities = isilon_sdk.v9_11_0.MappingIdentitiesCreateParams() # MappingIdentitiesCreateParams | +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +mapping_identities = isilon_sdk.v9_4_0.MappingIdentitiesCreateParams() # MappingIdentitiesCreateParams | _2way = true # bool | Create a bi-directional mapping from source to target and target to source. (optional) replace = true # bool | Replace existing mappings. (optional) zone = 'zone_example' # str | Optional zone. (optional) @@ -474,18 +441,18 @@ Manually set or modify a mapping between two personae. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -mapping_identity = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +mapping_identity = isilon_sdk.v9_4_0.Empty() # Empty | mapping_identity_id = 'mapping_identity_id_example' # str | Manually set or modify a mapping between two personae. type = 'type_example' # str | Desired mapping target to fetch/generate. (optional) zone = 'zone_example' # str | Optional zone. (optional) @@ -521,48 +488,46 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **create_oauth_certificate** -> CreateOauthCertificateResponse create_oauth_certificate(oauth_certificate, zone=zone) +# **create_providers_ads_item** +> CreateResponse create_providers_ads_item(providers_ads_item) -Create a new certificate. +Create a new ADS provider. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -oauth_certificate = isilon_sdk.v9_11_0.OauthCertificateCreateParams() # OauthCertificateCreateParams | -zone = 'zone_example' # str | Specifies which access zone to use. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +providers_ads_item = isilon_sdk.v9_4_0.ProvidersAdsItem() # ProvidersAdsItem | try: - api_response = api_instance.create_oauth_certificate(oauth_certificate, zone=zone) + api_response = api_instance.create_providers_ads_item(providers_ads_item) pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->create_oauth_certificate: %s\n" % e) + print("Exception when calling AuthApi->create_providers_ads_item: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **oauth_certificate** | [**OauthCertificateCreateParams**](OauthCertificateCreateParams.md)| | - **zone** | **str**| Specifies which access zone to use. | [optional] + **providers_ads_item** | [**ProvidersAdsItem**](ProvidersAdsItem.md)| | ### Return type -[**CreateOauthCertificateResponse**](CreateOauthCertificateResponse.md) +[**CreateResponse**](CreateResponse.md) ### Authorization @@ -575,48 +540,46 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **create_oauth_oauth2_client** -> CreateOauthOauth2ClientResponse create_oauth_oauth2_client(oauth_oauth2_client, zone=zone) +# **create_providers_file_item** +> CreateResponse create_providers_file_item(providers_file_item) -Create a new OAuth2 client. +Create a new file provider. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -oauth_oauth2_client = isilon_sdk.v9_11_0.OauthOauth2ClientCreateParams() # OauthOauth2ClientCreateParams | -zone = 'zone_example' # str | Specifies which access zone to use. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +providers_file_item = isilon_sdk.v9_4_0.ProvidersFileItem() # ProvidersFileItem | try: - api_response = api_instance.create_oauth_oauth2_client(oauth_oauth2_client, zone=zone) + api_response = api_instance.create_providers_file_item(providers_file_item) pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->create_oauth_oauth2_client: %s\n" % e) + print("Exception when calling AuthApi->create_providers_file_item: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **oauth_oauth2_client** | [**OauthOauth2ClientCreateParams**](OauthOauth2ClientCreateParams.md)| | - **zone** | **str**| Specifies which access zone to use. | [optional] + **providers_file_item** | [**ProvidersFileItem**](ProvidersFileItem.md)| | ### Return type -[**CreateOauthOauth2ClientResponse**](CreateOauthOauth2ClientResponse.md) +[**CreateResponse**](CreateResponse.md) ### Authorization @@ -629,48 +592,46 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **create_oauth_oauth2_token_exchange** -> CreateOauthOauth2TokenExchangeResponse create_oauth_oauth2_token_exchange(oauth_oauth2_token_exchange, zone=zone) +# **create_providers_krb5_item** +> CreateResponse create_providers_krb5_item(providers_krb5_item) -Create a new OAuth2 Token Exchanges configuration. +Create a new KRB5 provider. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -oauth_oauth2_token_exchange = isilon_sdk.v9_11_0.OauthOauth2TokenExchangeCreateParams() # OauthOauth2TokenExchangeCreateParams | -zone = 'zone_example' # str | Specifies which access zone to use. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +providers_krb5_item = isilon_sdk.v9_4_0.ProvidersKrb5Item() # ProvidersKrb5Item | try: - api_response = api_instance.create_oauth_oauth2_token_exchange(oauth_oauth2_token_exchange, zone=zone) + api_response = api_instance.create_providers_krb5_item(providers_krb5_item) pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->create_oauth_oauth2_token_exchange: %s\n" % e) + print("Exception when calling AuthApi->create_providers_krb5_item: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **oauth_oauth2_token_exchange** | [**OauthOauth2TokenExchangeCreateParams**](OauthOauth2TokenExchangeCreateParams.md)| | - **zone** | **str**| Specifies which access zone to use. | [optional] + **providers_krb5_item** | [**ProvidersKrb5Item**](ProvidersKrb5Item.md)| | ### Return type -[**CreateOauthOauth2TokenExchangeResponse**](CreateOauthOauth2TokenExchangeResponse.md) +[**CreateResponse**](CreateResponse.md) ### Authorization @@ -683,42 +644,44 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **create_providers_ads_item** -> CreateResponse create_providers_ads_item(providers_ads_item) +# **create_providers_ldap_item** +> CreateResponse create_providers_ldap_item(providers_ldap_item, force=force) -Create a new ADS provider. +Create a new LDAP provider. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_ads_item = isilon_sdk.v9_11_0.ProvidersAdsItem() # ProvidersAdsItem | +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +providers_ldap_item = isilon_sdk.v9_4_0.ProvidersLdapItem() # ProvidersLdapItem | +force = true # bool | Ignore unresolvable server URIs. (optional) try: - api_response = api_instance.create_providers_ads_item(providers_ads_item) + api_response = api_instance.create_providers_ldap_item(providers_ldap_item, force=force) pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->create_providers_ads_item: %s\n" % e) + print("Exception when calling AuthApi->create_providers_ldap_item: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **providers_ads_item** | [**ProvidersAdsItem**](ProvidersAdsItem.md)| | + **providers_ldap_item** | [**ProvidersLdapItem**](ProvidersLdapItem.md)| | + **force** | **bool**| Ignore unresolvable server URIs. | [optional] ### Return type @@ -735,42 +698,42 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **create_providers_file_item** -> CreateResponse create_providers_file_item(providers_file_item) +# **create_providers_nis_item** +> CreateResponse create_providers_nis_item(providers_nis_item) -Create a new file provider. +Create a new NIS provider. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_file_item = isilon_sdk.v9_11_0.ProvidersFileItem() # ProvidersFileItem | +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +providers_nis_item = isilon_sdk.v9_4_0.ProvidersNisItem() # ProvidersNisItem | try: - api_response = api_instance.create_providers_file_item(providers_file_item) + api_response = api_instance.create_providers_nis_item(providers_nis_item) pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->create_providers_file_item: %s\n" % e) + print("Exception when calling AuthApi->create_providers_nis_item: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **providers_file_item** | [**ProvidersFileItem**](ProvidersFileItem.md)| | + **providers_nis_item** | [**ProvidersNisItem**](ProvidersNisItem.md)| | ### Return type @@ -787,42 +750,42 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **create_providers_krb5_item** -> CreateResponse create_providers_krb5_item(providers_krb5_item) +# **create_settings_krb5_domain** +> CreateResponse create_settings_krb5_domain(settings_krb5_domain) -Create a new KRB5 provider. +Create a new krb5 domain. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_krb5_item = isilon_sdk.v9_11_0.ProvidersKrb5Item() # ProvidersKrb5Item | +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +settings_krb5_domain = isilon_sdk.v9_4_0.SettingsKrb5DomainCreateParams() # SettingsKrb5DomainCreateParams | try: - api_response = api_instance.create_providers_krb5_item(providers_krb5_item) + api_response = api_instance.create_settings_krb5_domain(settings_krb5_domain) pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->create_providers_krb5_item: %s\n" % e) + print("Exception when calling AuthApi->create_settings_krb5_domain: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **providers_krb5_item** | [**ProvidersKrb5Item**](ProvidersKrb5Item.md)| | + **settings_krb5_domain** | [**SettingsKrb5DomainCreateParams**](SettingsKrb5DomainCreateParams.md)| | ### Return type @@ -839,44 +802,42 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **create_providers_ldap_item** -> CreateResponse create_providers_ldap_item(providers_ldap_item, force=force) +# **create_settings_krb5_realm** +> CreateResponse create_settings_krb5_realm(settings_krb5_realm) -Create a new LDAP provider. +Create a new krb5 realm. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_ldap_item = isilon_sdk.v9_11_0.ProvidersLdapItem() # ProvidersLdapItem | -force = true # bool | Ignore unresolvable server URIs. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +settings_krb5_realm = isilon_sdk.v9_4_0.SettingsKrb5RealmCreateParams() # SettingsKrb5RealmCreateParams | try: - api_response = api_instance.create_providers_ldap_item(providers_ldap_item, force=force) + api_response = api_instance.create_settings_krb5_realm(settings_krb5_realm) pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->create_providers_ldap_item: %s\n" % e) + print("Exception when calling AuthApi->create_settings_krb5_realm: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **providers_ldap_item** | [**ProvidersLdapItem**](ProvidersLdapItem.md)| | - **force** | **bool**| Ignore unresolvable server URIs. | [optional] + **settings_krb5_realm** | [**SettingsKrb5RealmCreateParams**](SettingsKrb5RealmCreateParams.md)| | ### Return type @@ -893,46 +854,51 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **create_providers_nis_item** -> CreateResponse create_providers_nis_item(providers_nis_item) +# **delete_auth_group** +> delete_auth_group(auth_group_id, cached=cached, provider=provider, zone=zone) -Create a new NIS provider. +Delete the group. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_nis_item = isilon_sdk.v9_11_0.ProvidersNisItem() # ProvidersNisItem | +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +auth_group_id = 'auth_group_id_example' # str | Delete the group. +cached = true # bool | If true, flush the group from the cache. (optional) +provider = 'provider_example' # str | Filter groups by provider. (optional) +zone = 'zone_example' # str | Filter groups by zone. (optional) try: - api_response = api_instance.create_providers_nis_item(providers_nis_item) - pprint(api_response) + api_instance.delete_auth_group(auth_group_id, cached=cached, provider=provider, zone=zone) except ApiException as e: - print("Exception when calling AuthApi->create_providers_nis_item: %s\n" % e) + print("Exception when calling AuthApi->delete_auth_group: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **providers_nis_item** | [**ProvidersNisItem**](ProvidersNisItem.md)| | + **auth_group_id** | **str**| Delete the group. | + **cached** | **bool**| If true, flush the group from the cache. | [optional] + **provider** | **str**| Filter groups by provider. | [optional] + **zone** | **str**| Filter groups by zone. | [optional] ### Return type -[**CreateResponse**](CreateResponse.md) +void (empty response body) ### Authorization @@ -945,46 +911,49 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **create_providers_saml_services_cert_extract_item** -> CreateProvidersSamlServicesCertExtractItemResponse create_providers_saml_services_cert_extract_item(providers_saml_services_cert_extract_item) +# **delete_auth_groups** +> delete_auth_groups(cached=cached, provider=provider, zone=zone) -Extract certificate information. +Flush the groups cache. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_saml_services_cert_extract_item = isilon_sdk.v9_11_0.ProvidersSamlServicesCertExtractItem() # ProvidersSamlServicesCertExtractItem | +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cached = true # bool | If true, only flush cached objects. (optional) +provider = 'provider_example' # str | Filter groups by provider. (optional) +zone = 'zone_example' # str | Filter groups by zone. (optional) try: - api_response = api_instance.create_providers_saml_services_cert_extract_item(providers_saml_services_cert_extract_item) - pprint(api_response) + api_instance.delete_auth_groups(cached=cached, provider=provider, zone=zone) except ApiException as e: - print("Exception when calling AuthApi->create_providers_saml_services_cert_extract_item: %s\n" % e) + print("Exception when calling AuthApi->delete_auth_groups: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **providers_saml_services_cert_extract_item** | [**ProvidersSamlServicesCertExtractItem**](ProvidersSamlServicesCertExtractItem.md)| | + **cached** | **bool**| If true, only flush cached objects. | [optional] + **provider** | **str**| Filter groups by provider. | [optional] + **zone** | **str**| Filter groups by zone. | [optional] ### Return type -[**CreateProvidersSamlServicesCertExtractItemResponse**](CreateProvidersSamlServicesCertExtractItemResponse.md) +void (empty response body) ### Authorization @@ -997,48 +966,47 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **create_providers_saml_services_idp** -> CreateProvidersSamlServicesIdpResponse create_providers_saml_services_idp(providers_saml_services_idp, zone=zone) +# **delete_auth_role** +> delete_auth_role(auth_role_id, zone=zone) -Create a new IDP. +Delete the role. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_saml_services_idp = isilon_sdk.v9_11_0.ProvidersSamlServicesIdpCreateParams() # ProvidersSamlServicesIdpCreateParams | +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +auth_role_id = 'auth_role_id_example' # str | Delete the role. zone = 'zone_example' # str | Specifies which access zone to use. (optional) try: - api_response = api_instance.create_providers_saml_services_idp(providers_saml_services_idp, zone=zone) - pprint(api_response) + api_instance.delete_auth_role(auth_role_id, zone=zone) except ApiException as e: - print("Exception when calling AuthApi->create_providers_saml_services_idp: %s\n" % e) + print("Exception when calling AuthApi->delete_auth_role: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **providers_saml_services_idp** | [**ProvidersSamlServicesIdpCreateParams**](ProvidersSamlServicesIdpCreateParams.md)| | + **auth_role_id** | **str**| Delete the role. | **zone** | **str**| Specifies which access zone to use. | [optional] ### Return type -[**CreateProvidersSamlServicesIdpResponse**](CreateProvidersSamlServicesIdpResponse.md) +void (empty response body) ### Authorization @@ -1051,46 +1019,51 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **create_providers_saml_services_metadata_extract_item** -> CreateProvidersSamlServicesMetadataExtractItemResponse create_providers_saml_services_metadata_extract_item(providers_saml_services_metadata_extract_item) +# **delete_auth_user** +> delete_auth_user(auth_user_id, cached=cached, provider=provider, zone=zone) -Get IDP metadata information to create an IDP on OneFS. +Delete the user. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_saml_services_metadata_extract_item = isilon_sdk.v9_11_0.ProvidersSamlServicesMetadataExtractItem() # ProvidersSamlServicesMetadataExtractItem | +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +auth_user_id = 'auth_user_id_example' # str | Delete the user. +cached = true # bool | If true, flush the user from the cache. (optional) +provider = 'provider_example' # str | Filter users by provider. (optional) +zone = 'zone_example' # str | Filter users by zone. (optional) try: - api_response = api_instance.create_providers_saml_services_metadata_extract_item(providers_saml_services_metadata_extract_item) - pprint(api_response) + api_instance.delete_auth_user(auth_user_id, cached=cached, provider=provider, zone=zone) except ApiException as e: - print("Exception when calling AuthApi->create_providers_saml_services_metadata_extract_item: %s\n" % e) + print("Exception when calling AuthApi->delete_auth_user: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **providers_saml_services_metadata_extract_item** | [**ProvidersSamlServicesMetadataExtractItem**](ProvidersSamlServicesMetadataExtractItem.md)| | + **auth_user_id** | **str**| Delete the user. | + **cached** | **bool**| If true, flush the user from the cache. | [optional] + **provider** | **str**| Filter users by provider. | [optional] + **zone** | **str**| Filter users by zone. | [optional] ### Return type -[**CreateProvidersSamlServicesMetadataExtractItemResponse**](CreateProvidersSamlServicesMetadataExtractItemResponse.md) +void (empty response body) ### Authorization @@ -1103,48 +1076,49 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **create_providers_saml_services_sp_signing_key_rekey_item** -> Empty create_providers_saml_services_sp_signing_key_rekey_item(providers_saml_services_sp_signing_key_rekey_item, zone=zone) +# **delete_auth_users** +> delete_auth_users(cached=cached, provider=provider, zone=zone) -Replace the cluster's SAML signing key with a new key and certificate. +Flush the users cache. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_saml_services_sp_signing_key_rekey_item = isilon_sdk.v9_11_0.Empty() # Empty | -zone = 'zone_example' # str | Specifies which access zone to use. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cached = true # bool | If true, only flush cached objects. (optional) +provider = 'provider_example' # str | Filter users by provider. (optional) +zone = 'zone_example' # str | Filter users by zone. (optional) try: - api_response = api_instance.create_providers_saml_services_sp_signing_key_rekey_item(providers_saml_services_sp_signing_key_rekey_item, zone=zone) - pprint(api_response) + api_instance.delete_auth_users(cached=cached, provider=provider, zone=zone) except ApiException as e: - print("Exception when calling AuthApi->create_providers_saml_services_sp_signing_key_rekey_item: %s\n" % e) + print("Exception when calling AuthApi->delete_auth_users: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **providers_saml_services_sp_signing_key_rekey_item** | [**Empty**](Empty.md)| | - **zone** | **str**| Specifies which access zone to use. | [optional] + **cached** | **bool**| If true, only flush cached objects. | [optional] + **provider** | **str**| Filter users by provider. | [optional] + **zone** | **str**| Filter users by zone. | [optional] ### Return type -[**Empty**](Empty.md) +void (empty response body) ### Authorization @@ -1157,46 +1131,49 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **create_settings_krb5_domain** -> CreateResponse create_settings_krb5_domain(settings_krb5_domain) +# **delete_mapping_identities** +> delete_mapping_identities(filter=filter, remove=remove, zone=zone) -Create a new krb5 domain. +Flush the entire idmap cache. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -settings_krb5_domain = isilon_sdk.v9_11_0.SettingsKrb5DomainCreateParams() # SettingsKrb5DomainCreateParams | +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +filter = 'filter_example' # str | Filter to apply when deleting identity mappings. (optional) +remove = true # bool | Delete mapping instead of flush mapping cache. (optional) +zone = 'zone_example' # str | Optional zone. (optional) try: - api_response = api_instance.create_settings_krb5_domain(settings_krb5_domain) - pprint(api_response) + api_instance.delete_mapping_identities(filter=filter, remove=remove, zone=zone) except ApiException as e: - print("Exception when calling AuthApi->create_settings_krb5_domain: %s\n" % e) + print("Exception when calling AuthApi->delete_mapping_identities: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **settings_krb5_domain** | [**SettingsKrb5DomainCreateParams**](SettingsKrb5DomainCreateParams.md)| | + **filter** | **str**| Filter to apply when deleting identity mappings. | [optional] + **remove** | **bool**| Delete mapping instead of flush mapping cache. | [optional] + **zone** | **str**| Optional zone. | [optional] ### Return type -[**CreateResponse**](CreateResponse.md) +void (empty response body) ### Authorization @@ -1209,46 +1186,53 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **create_settings_krb5_realm** -> CreateResponse create_settings_krb5_realm(settings_krb5_realm) +# **delete_mapping_identity** +> delete_mapping_identity(mapping_identity_id, _2way=_2way, remove=remove, target=target, zone=zone) -Create a new krb5 realm. +Flush the entire idmap cache. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -settings_krb5_realm = isilon_sdk.v9_11_0.SettingsKrb5RealmCreateParams() # SettingsKrb5RealmCreateParams | +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +mapping_identity_id = 'mapping_identity_id_example' # str | Flush the entire idmap cache. +_2way = true # bool | Delete the bi-directional mapping from source to target and target to source. (optional) +remove = true # bool | Delete mapping instead of flush mapping from cache. (optional) +target = 'target_example' # str | Target identity persona. (optional) +zone = 'zone_example' # str | Optional zone. (optional) try: - api_response = api_instance.create_settings_krb5_realm(settings_krb5_realm) - pprint(api_response) + api_instance.delete_mapping_identity(mapping_identity_id, _2way=_2way, remove=remove, target=target, zone=zone) except ApiException as e: - print("Exception when calling AuthApi->create_settings_krb5_realm: %s\n" % e) + print("Exception when calling AuthApi->delete_mapping_identity: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **settings_krb5_realm** | [**SettingsKrb5RealmCreateParams**](SettingsKrb5RealmCreateParams.md)| | + **mapping_identity_id** | **str**| Flush the entire idmap cache. | + **_2way** | **bool**| Delete the bi-directional mapping from source to target and target to source. | [optional] + **remove** | **bool**| Delete mapping instead of flush mapping from cache. | [optional] + **target** | **str**| Target identity persona. | [optional] + **zone** | **str**| Optional zone. | [optional] ### Return type -[**CreateResponse**](CreateResponse.md) +void (empty response body) ### Authorization @@ -1261,47 +1245,41 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **delete_auth_group** -> delete_auth_group(auth_group_id, cached=cached, provider=provider, zone=zone) +# **delete_providers_ads_by_id** +> delete_providers_ads_by_id(providers_ads_id) -Delete the group. +Delete the ADS provider. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -auth_group_id = 'auth_group_id_example' # str | Delete the group. -cached = true # bool | If true, flush the group from the cache. (optional) -provider = 'provider_example' # str | Filter groups by provider. (optional) -zone = 'zone_example' # str | Filter groups by zone. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +providers_ads_id = 'providers_ads_id_example' # str | Delete the ADS provider. try: - api_instance.delete_auth_group(auth_group_id, cached=cached, provider=provider, zone=zone) + api_instance.delete_providers_ads_by_id(providers_ads_id) except ApiException as e: - print("Exception when calling AuthApi->delete_auth_group: %s\n" % e) + print("Exception when calling AuthApi->delete_providers_ads_by_id: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **auth_group_id** | **str**| Delete the group. | - **cached** | **bool**| If true, flush the group from the cache. | [optional] - **provider** | **str**| Filter groups by provider. | [optional] - **zone** | **str**| Filter groups by zone. | [optional] + **providers_ads_id** | **str**| Delete the ADS provider. | ### Return type @@ -1318,45 +1296,41 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **delete_auth_groups** -> delete_auth_groups(cached=cached, provider=provider, zone=zone) +# **delete_providers_file_by_id** +> delete_providers_file_by_id(providers_file_id) -Flush the groups cache. +Delete the file provider. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cached = true # bool | If true, only flush cached objects. (optional) -provider = 'provider_example' # str | Filter groups by provider. (optional) -zone = 'zone_example' # str | Filter groups by zone. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +providers_file_id = 'providers_file_id_example' # str | Delete the file provider. try: - api_instance.delete_auth_groups(cached=cached, provider=provider, zone=zone) + api_instance.delete_providers_file_by_id(providers_file_id) except ApiException as e: - print("Exception when calling AuthApi->delete_auth_groups: %s\n" % e) + print("Exception when calling AuthApi->delete_providers_file_by_id: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **cached** | **bool**| If true, only flush cached objects. | [optional] - **provider** | **str**| Filter groups by provider. | [optional] - **zone** | **str**| Filter groups by zone. | [optional] + **providers_file_id** | **str**| Delete the file provider. | ### Return type @@ -1373,43 +1347,41 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **delete_auth_role** -> delete_auth_role(auth_role_id, zone=zone) +# **delete_providers_krb5_by_id** +> delete_providers_krb5_by_id(providers_krb5_id) -Delete the role. +Delete the KRB5 provider. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -auth_role_id = 'auth_role_id_example' # str | Delete the role. -zone = 'zone_example' # str | Specifies which access zone to use. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +providers_krb5_id = 'providers_krb5_id_example' # str | Delete the KRB5 provider. try: - api_instance.delete_auth_role(auth_role_id, zone=zone) + api_instance.delete_providers_krb5_by_id(providers_krb5_id) except ApiException as e: - print("Exception when calling AuthApi->delete_auth_role: %s\n" % e) + print("Exception when calling AuthApi->delete_providers_krb5_by_id: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **auth_role_id** | **str**| Delete the role. | - **zone** | **str**| Specifies which access zone to use. | [optional] + **providers_krb5_id** | **str**| Delete the KRB5 provider. | ### Return type @@ -1426,47 +1398,41 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **delete_auth_user** -> delete_auth_user(auth_user_id, cached=cached, provider=provider, zone=zone) +# **delete_providers_ldap_by_id** +> delete_providers_ldap_by_id(providers_ldap_id) -Delete the user. +Delete the LDAP provider. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -auth_user_id = 'auth_user_id_example' # str | Delete the user. -cached = true # bool | If true, flush the user from the cache. (optional) -provider = 'provider_example' # str | Filter users by provider. (optional) -zone = 'zone_example' # str | Filter users by zone. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +providers_ldap_id = 'providers_ldap_id_example' # str | Delete the LDAP provider. try: - api_instance.delete_auth_user(auth_user_id, cached=cached, provider=provider, zone=zone) + api_instance.delete_providers_ldap_by_id(providers_ldap_id) except ApiException as e: - print("Exception when calling AuthApi->delete_auth_user: %s\n" % e) + print("Exception when calling AuthApi->delete_providers_ldap_by_id: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **auth_user_id** | **str**| Delete the user. | - **cached** | **bool**| If true, flush the user from the cache. | [optional] - **provider** | **str**| Filter users by provider. | [optional] - **zone** | **str**| Filter users by zone. | [optional] + **providers_ldap_id** | **str**| Delete the LDAP provider. | ### Return type @@ -1483,45 +1449,41 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **delete_auth_users** -> delete_auth_users(cached=cached, provider=provider, zone=zone) +# **delete_providers_nis_by_id** +> delete_providers_nis_by_id(providers_nis_id) -Flush the users cache. +Delete the NIS provider. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cached = true # bool | If true, only flush cached objects. (optional) -provider = 'provider_example' # str | Filter users by provider. (optional) -zone = 'zone_example' # str | Filter users by zone. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +providers_nis_id = 'providers_nis_id_example' # str | Delete the NIS provider. try: - api_instance.delete_auth_users(cached=cached, provider=provider, zone=zone) + api_instance.delete_providers_nis_by_id(providers_nis_id) except ApiException as e: - print("Exception when calling AuthApi->delete_auth_users: %s\n" % e) + print("Exception when calling AuthApi->delete_providers_nis_by_id: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **cached** | **bool**| If true, only flush cached objects. | [optional] - **provider** | **str**| Filter users by provider. | [optional] - **zone** | **str**| Filter users by zone. | [optional] + **providers_nis_id** | **str**| Delete the NIS provider. | ### Return type @@ -1538,45 +1500,41 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **delete_mapping_identities** -> delete_mapping_identities(filter=filter, remove=remove, zone=zone) +# **delete_settings_krb5_domain** +> delete_settings_krb5_domain(settings_krb5_domain_id) -Flush the entire idmap cache. +Remove a krb5 domain. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -filter = 'filter_example' # str | Filter to apply when deleting identity mappings. (optional) -remove = true # bool | Delete mapping instead of flush mapping cache. (optional) -zone = 'zone_example' # str | Optional zone. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +settings_krb5_domain_id = 'settings_krb5_domain_id_example' # str | Remove a krb5 domain. try: - api_instance.delete_mapping_identities(filter=filter, remove=remove, zone=zone) + api_instance.delete_settings_krb5_domain(settings_krb5_domain_id) except ApiException as e: - print("Exception when calling AuthApi->delete_mapping_identities: %s\n" % e) + print("Exception when calling AuthApi->delete_settings_krb5_domain: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **filter** | **str**| Filter to apply when deleting identity mappings. | [optional] - **remove** | **bool**| Delete mapping instead of flush mapping cache. | [optional] - **zone** | **str**| Optional zone. | [optional] + **settings_krb5_domain_id** | **str**| Remove a krb5 domain. | ### Return type @@ -1593,49 +1551,41 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **delete_mapping_identity** -> delete_mapping_identity(mapping_identity_id, _2way=_2way, remove=remove, target=target, zone=zone) +# **delete_settings_krb5_realm** +> delete_settings_krb5_realm(settings_krb5_realm_id) -Flush the entire idmap cache. +Remove a realm. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -mapping_identity_id = 'mapping_identity_id_example' # str | Flush the entire idmap cache. -_2way = true # bool | Delete the bi-directional mapping from source to target and target to source. (optional) -remove = true # bool | Delete mapping instead of flush mapping from cache. (optional) -target = 'target_example' # str | Target identity persona. (optional) -zone = 'zone_example' # str | Optional zone. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +settings_krb5_realm_id = 'settings_krb5_realm_id_example' # str | Remove a realm. try: - api_instance.delete_mapping_identity(mapping_identity_id, _2way=_2way, remove=remove, target=target, zone=zone) + api_instance.delete_settings_krb5_realm(settings_krb5_realm_id) except ApiException as e: - print("Exception when calling AuthApi->delete_mapping_identity: %s\n" % e) + print("Exception when calling AuthApi->delete_settings_krb5_realm: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **mapping_identity_id** | **str**| Flush the entire idmap cache. | - **_2way** | **bool**| Delete the bi-directional mapping from source to target and target to source. | [optional] - **remove** | **bool**| Delete mapping instead of flush mapping from cache. | [optional] - **target** | **str**| Target identity persona. | [optional] - **zone** | **str**| Optional zone. | [optional] + **settings_krb5_realm_id** | **str**| Remove a realm. | ### Return type @@ -1652,49 +1602,54 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **delete_oauth_certificate** -> delete_oauth_certificate(oauth_certificate_id, force=force, zone=zone) +# **get_auth_access_user** +> AuthAccess get_auth_access_user(auth_access_user, numeric=numeric, path=path, share=share, zone=zone) -Delete the certificate using its ID. This request is only allowed on certificates for which there is at least one other certificate of the same type, service, and scope with is_current==true, unless using force. +Determine user's access rights to a file ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -oauth_certificate_id = 'oauth_certificate_id_example' # str | Delete the certificate using its ID. This request is only allowed on certificates for which there is at least one other certificate of the same type, service, and scope with is_current==true, unless using force. -force = false # bool | Force delete the certificate. (optional) (default to false) -zone = 'zone_example' # str | Specifies which access zone to use. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +auth_access_user = 'auth_access_user_example' # str | Determine user's access rights to a file +numeric = true # bool | Show the user's numeric identifier. (optional) +path = 'path_example' # str | Path to the file. Must be within /ifs. (optional) +share = 'share_example' # str | SMB share name (optional) +zone = 'zone_example' # str | Access zone the user is in. (optional) try: - api_instance.delete_oauth_certificate(oauth_certificate_id, force=force, zone=zone) + api_response = api_instance.get_auth_access_user(auth_access_user, numeric=numeric, path=path, share=share, zone=zone) + pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->delete_oauth_certificate: %s\n" % e) + print("Exception when calling AuthApi->get_auth_access_user: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **oauth_certificate_id** | **str**| Delete the certificate using its ID. This request is only allowed on certificates for which there is at least one other certificate of the same type, service, and scope with is_current==true, unless using force. | - **force** | **bool**| Force delete the certificate. | [optional] [default to false] - **zone** | **str**| Specifies which access zone to use. | [optional] + **auth_access_user** | **str**| Determine user's access rights to a file | + **numeric** | **bool**| Show the user's numeric identifier. | [optional] + **path** | **str**| Path to the file. Must be within /ifs. | [optional] + **share** | **str**| SMB share name | [optional] + **zone** | **str**| Access zone the user is in. | [optional] ### Return type -void (empty response body) +[**AuthAccess**](AuthAccess.md) ### Authorization @@ -1707,47 +1662,46 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **delete_oauth_oauth2_client** -> delete_oauth_oauth2_client(oauth_oauth2_client_id, zone=zone) +# **get_auth_error_error** +> AuthError get_auth_error_error(auth_error_error) -Delete OAuth2 client using its ID. +Get descriptions for auth error codes ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -oauth_oauth2_client_id = 'oauth_oauth2_client_id_example' # str | Delete OAuth2 client using its ID. -zone = 'zone_example' # str | Specifies which access zone to use. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +auth_error_error = 'auth_error_error_example' # str | Get descriptions for auth error codes try: - api_instance.delete_oauth_oauth2_client(oauth_oauth2_client_id, zone=zone) + api_response = api_instance.get_auth_error_error(auth_error_error) + pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->delete_oauth_oauth2_client: %s\n" % e) + print("Exception when calling AuthApi->get_auth_error_error: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **oauth_oauth2_client_id** | **str**| Delete OAuth2 client using its ID. | - **zone** | **str**| Specifies which access zone to use. | [optional] + **auth_error_error** | **str**| Get descriptions for auth error codes | ### Return type -void (empty response body) +[**AuthError**](AuthError.md) ### Authorization @@ -1760,47 +1714,56 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **delete_oauth_oauth2_token_exchange** -> delete_oauth_oauth2_token_exchange(oauth_oauth2_token_exchange_id, zone=zone) +# **get_auth_group** +> AuthGroups get_auth_group(auth_group_id, cached=cached, provider=provider, query_member_of=query_member_of, resolve_names=resolve_names, zone=zone) -Delete OAuth2 Token Exchange configuration using its ID. +Retrieve the group information. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -oauth_oauth2_token_exchange_id = 'oauth_oauth2_token_exchange_id_example' # str | Delete OAuth2 Token Exchange configuration using its ID. -zone = 'zone_example' # str | Specifies which access zone to use. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +auth_group_id = 'auth_group_id_example' # str | Retrieve the group information. +cached = true # bool | If true, only return cached objects. (optional) +provider = 'provider_example' # str | Filter groups by provider. (optional) +query_member_of = true # bool | Enumerate all groups that a group is a member of. (optional) +resolve_names = true # bool | Resolve names of personas. (optional) +zone = 'zone_example' # str | Filter groups by zone. (optional) try: - api_instance.delete_oauth_oauth2_token_exchange(oauth_oauth2_token_exchange_id, zone=zone) + api_response = api_instance.get_auth_group(auth_group_id, cached=cached, provider=provider, query_member_of=query_member_of, resolve_names=resolve_names, zone=zone) + pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->delete_oauth_oauth2_token_exchange: %s\n" % e) + print("Exception when calling AuthApi->get_auth_group: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **oauth_oauth2_token_exchange_id** | **str**| Delete OAuth2 Token Exchange configuration using its ID. | - **zone** | **str**| Specifies which access zone to use. | [optional] + **auth_group_id** | **str**| Retrieve the group information. | + **cached** | **bool**| If true, only return cached objects. | [optional] + **provider** | **str**| Filter groups by provider. | [optional] + **query_member_of** | **bool**| Enumerate all groups that a group is a member of. | [optional] + **resolve_names** | **bool**| Resolve names of personas. | [optional] + **zone** | **str**| Filter groups by zone. | [optional] ### Return type -void (empty response body) +[**AuthGroups**](AuthGroups.md) ### Authorization @@ -1813,45 +1776,46 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **delete_providers_ads_by_id** -> delete_providers_ads_by_id(providers_ads_id) +# **get_auth_id** +> AuthId get_auth_id(listchildprivs=listchildprivs) -Delete the ADS provider. +Retrieve the current security token. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_ads_id = 'providers_ads_id_example' # str | Delete the ADS provider. +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +listchildprivs = true # bool | A list of child privileges for the current security token. (optional) try: - api_instance.delete_providers_ads_by_id(providers_ads_id) + api_response = api_instance.get_auth_id(listchildprivs=listchildprivs) + pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->delete_providers_ads_by_id: %s\n" % e) + print("Exception when calling AuthApi->get_auth_id: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **providers_ads_id** | **str**| Delete the ADS provider. | + **listchildprivs** | **bool**| A list of child privileges for the current security token. | [optional] ### Return type -void (empty response body) +[**AuthId**](AuthId.md) ### Authorization @@ -1864,45 +1828,46 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **delete_providers_file_by_id** -> delete_providers_file_by_id(providers_file_id) +# **get_auth_ldap_template** +> AuthLdapTemplates get_auth_ldap_template(auth_ldap_template_id) -Delete the file provider. +Retrieve the LDAP provider template. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_file_id = 'providers_file_id_example' # str | Delete the file provider. +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +auth_ldap_template_id = 'auth_ldap_template_id_example' # str | Retrieve the LDAP provider template. try: - api_instance.delete_providers_file_by_id(providers_file_id) + api_response = api_instance.get_auth_ldap_template(auth_ldap_template_id) + pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->delete_providers_file_by_id: %s\n" % e) + print("Exception when calling AuthApi->get_auth_ldap_template: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **providers_file_id** | **str**| Delete the file provider. | + **auth_ldap_template_id** | **str**| Retrieve the LDAP provider template. | ### Return type -void (empty response body) +[**AuthLdapTemplates**](AuthLdapTemplates.md) ### Authorization @@ -1915,45 +1880,42 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **delete_providers_krb5_by_id** -> delete_providers_krb5_by_id(providers_krb5_id) +# **get_auth_ldap_templates** +> AuthLdapTemplatesExtended get_auth_ldap_templates() -Delete the KRB5 provider. +List all LDAP provider templates. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_krb5_id = 'providers_krb5_id_example' # str | Delete the KRB5 provider. +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: - api_instance.delete_providers_krb5_by_id(providers_krb5_id) + api_response = api_instance.get_auth_ldap_templates() + pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->delete_providers_krb5_by_id: %s\n" % e) + print("Exception when calling AuthApi->get_auth_ldap_templates: %s\n" % e) ``` ### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **providers_krb5_id** | **str**| Delete the KRB5 provider. | +This endpoint does not need any parameter. ### Return type -void (empty response body) +[**AuthLdapTemplatesExtended**](AuthLdapTemplatesExtended.md) ### Authorization @@ -1966,45 +1928,42 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **delete_providers_ldap_by_id** -> delete_providers_ldap_by_id(providers_ldap_id) +# **get_auth_log_level** +> AuthLogLevel get_auth_log_level() -Delete the LDAP provider. +Get the current authentications service and netlogon logging level. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_ldap_id = 'providers_ldap_id_example' # str | Delete the LDAP provider. +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: - api_instance.delete_providers_ldap_by_id(providers_ldap_id) + api_response = api_instance.get_auth_log_level() + pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->delete_providers_ldap_by_id: %s\n" % e) + print("Exception when calling AuthApi->get_auth_log_level: %s\n" % e) ``` ### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **providers_ldap_id** | **str**| Delete the LDAP provider. | +This endpoint does not need any parameter. ### Return type -void (empty response body) +[**AuthLogLevel**](AuthLogLevel.md) ### Authorization @@ -2017,45 +1976,54 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **delete_providers_nis_by_id** -> delete_providers_nis_by_id(providers_nis_id) +# **get_auth_netgroup** +> AuthNetgroups get_auth_netgroup(auth_netgroup_id, ignore_errors=ignore_errors, provider=provider, recursive=recursive, zone=zone) -Delete the NIS provider. +Retrieve the user information. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_nis_id = 'providers_nis_id_example' # str | Delete the NIS provider. +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +auth_netgroup_id = 'auth_netgroup_id_example' # str | Retrieve the user information. +ignore_errors = true # bool | Ignore netgroup errors. (optional) +provider = 'provider_example' # str | Filter users by provider. (optional) +recursive = true # bool | Perform recursive search. (optional) +zone = 'zone_example' # str | Filter users by zone. (optional) try: - api_instance.delete_providers_nis_by_id(providers_nis_id) + api_response = api_instance.get_auth_netgroup(auth_netgroup_id, ignore_errors=ignore_errors, provider=provider, recursive=recursive, zone=zone) + pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->delete_providers_nis_by_id: %s\n" % e) + print("Exception when calling AuthApi->get_auth_netgroup: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **providers_nis_id** | **str**| Delete the NIS provider. | + **auth_netgroup_id** | **str**| Retrieve the user information. | + **ignore_errors** | **bool**| Ignore netgroup errors. | [optional] + **provider** | **str**| Filter users by provider. | [optional] + **recursive** | **bool**| Perform recursive search. | [optional] + **zone** | **str**| Filter users by zone. | [optional] ### Return type -void (empty response body) +[**AuthNetgroups**](AuthNetgroups.md) ### Authorization @@ -2068,47 +2036,46 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **delete_providers_saml_services_idp** -> delete_providers_saml_services_idp(providers_saml_services_idp_id, zone=zone) +# **get_auth_privileges** +> AuthPrivileges get_auth_privileges(zone=zone) -Delete IDP using its ID. +List all privileges. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_saml_services_idp_id = 'providers_saml_services_idp_id_example' # str | Delete IDP using its ID. +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) zone = 'zone_example' # str | Specifies which access zone to use. (optional) try: - api_instance.delete_providers_saml_services_idp(providers_saml_services_idp_id, zone=zone) + api_response = api_instance.get_auth_privileges(zone=zone) + pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->delete_providers_saml_services_idp: %s\n" % e) + print("Exception when calling AuthApi->get_auth_privileges: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **providers_saml_services_idp_id** | **str**| Delete IDP using its ID. | **zone** | **str**| Specifies which access zone to use. | [optional] ### Return type -void (empty response body) +[**AuthPrivileges**](AuthPrivileges.md) ### Authorization @@ -2121,45 +2088,50 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **delete_settings_krb5_domain** -> delete_settings_krb5_domain(settings_krb5_domain_id) +# **get_auth_role** +> AuthRoles get_auth_role(auth_role_id, resolve_names=resolve_names, zone=zone) -Remove a krb5 domain. +Retrieve the role information. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -settings_krb5_domain_id = 'settings_krb5_domain_id_example' # str | Remove a krb5 domain. +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +auth_role_id = 'auth_role_id_example' # str | Retrieve the role information. +resolve_names = true # bool | Resolve names of personas. (optional) +zone = 'zone_example' # str | Specifies which access zone to use. (optional) try: - api_instance.delete_settings_krb5_domain(settings_krb5_domain_id) + api_response = api_instance.get_auth_role(auth_role_id, resolve_names=resolve_names, zone=zone) + pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->delete_settings_krb5_domain: %s\n" % e) + print("Exception when calling AuthApi->get_auth_role: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **settings_krb5_domain_id** | **str**| Remove a krb5 domain. | + **auth_role_id** | **str**| Retrieve the role information. | + **resolve_names** | **bool**| Resolve names of personas. | [optional] + **zone** | **str**| Specifies which access zone to use. | [optional] ### Return type -void (empty response body) +[**AuthRoles**](AuthRoles.md) ### Authorization @@ -2172,157 +2144,42 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **delete_settings_krb5_realm** -> delete_settings_krb5_realm(settings_krb5_realm_id) +# **get_auth_shells** +> AuthShells get_auth_shells() -Remove a realm. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -settings_krb5_realm_id = 'settings_krb5_realm_id_example' # str | Remove a realm. - -try: - api_instance.delete_settings_krb5_realm(settings_krb5_realm_id) -except ApiException as e: - print("Exception when calling AuthApi->delete_settings_krb5_realm: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **settings_krb5_realm_id** | **str**| Remove a realm. | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_auth_access_user** -> AuthAccess get_auth_access_user(auth_access_user, numeric=numeric, path=path, share=share, zone=zone) - - - -Determine user's access rights to a file - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -auth_access_user = 'auth_access_user_example' # str | Determine user's access rights to a file -numeric = true # bool | Show the user's numeric identifier. (optional) -path = 'path_example' # str | Path to the file. Must be within /ifs. (optional) -share = 'share_example' # str | SMB share name (optional) -zone = 'zone_example' # str | Access zone the user is in. (optional) - -try: - api_response = api_instance.get_auth_access_user(auth_access_user, numeric=numeric, path=path, share=share, zone=zone) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_auth_access_user: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **auth_access_user** | **str**| Determine user's access rights to a file | - **numeric** | **bool**| Show the user's numeric identifier. | [optional] - **path** | **str**| Path to the file. Must be within /ifs. | [optional] - **share** | **str**| SMB share name | [optional] - **zone** | **str**| Access zone the user is in. | [optional] - -### Return type - -[**AuthAccess**](AuthAccess.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_auth_error_error** -> AuthError get_auth_error_error(auth_error_error) - - - -Get descriptions for auth error codes +List all shells. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -auth_error_error = 'auth_error_error_example' # str | Get descriptions for auth error codes +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: - api_response = api_instance.get_auth_error_error(auth_error_error) + api_response = api_instance.get_auth_shells() pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->get_auth_error_error: %s\n" % e) + print("Exception when calling AuthApi->get_auth_shells: %s\n" % e) ``` ### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **auth_error_error** | **str**| Get descriptions for auth error codes | +This endpoint does not need any parameter. ### Return type -[**AuthError**](AuthError.md) +[**AuthShells**](AuthShells.md) ### Authorization @@ -2335,160 +2192,56 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **get_auth_group** -> AuthGroups get_auth_group(auth_group_id, cached=cached, provider=provider, query_member_of=query_member_of, resolve_names=resolve_names, zone=zone) +# **get_auth_user** +> AuthUsers get_auth_user(auth_user_id, cached=cached, provider=provider, query_member_of=query_member_of, resolve_names=resolve_names, zone=zone) -Retrieve the group information. +Retrieve the user information. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -auth_group_id = 'auth_group_id_example' # str | Retrieve the group information. +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +auth_user_id = 'auth_user_id_example' # str | Retrieve the user information. cached = true # bool | If true, only return cached objects. (optional) -provider = 'provider_example' # str | Filter groups by provider. (optional) -query_member_of = true # bool | Enumerates the groups for which this group is a member. The query_member_of argument determines whether the member_of field of the returned group is null or filled out with the enumerated groups. As it requires additional processing, only use query_member_of if you want to look at this field. (optional) +provider = 'provider_example' # str | Filter users by provider. (optional) +query_member_of = true # bool | Enumerate all users that a group is a member of. (optional) resolve_names = true # bool | Resolve names of personas. (optional) -zone = 'zone_example' # str | Filter groups by zone. (optional) +zone = 'zone_example' # str | Filter users by zone. (optional) try: - api_response = api_instance.get_auth_group(auth_group_id, cached=cached, provider=provider, query_member_of=query_member_of, resolve_names=resolve_names, zone=zone) + api_response = api_instance.get_auth_user(auth_user_id, cached=cached, provider=provider, query_member_of=query_member_of, resolve_names=resolve_names, zone=zone) pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->get_auth_group: %s\n" % e) + print("Exception when calling AuthApi->get_auth_user: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **auth_group_id** | **str**| Retrieve the group information. | + **auth_user_id** | **str**| Retrieve the user information. | **cached** | **bool**| If true, only return cached objects. | [optional] - **provider** | **str**| Filter groups by provider. | [optional] - **query_member_of** | **bool**| Enumerates the groups for which this group is a member. The query_member_of argument determines whether the member_of field of the returned group is null or filled out with the enumerated groups. As it requires additional processing, only use query_member_of if you want to look at this field. | [optional] + **provider** | **str**| Filter users by provider. | [optional] + **query_member_of** | **bool**| Enumerate all users that a group is a member of. | [optional] **resolve_names** | **bool**| Resolve names of personas. | [optional] - **zone** | **str**| Filter groups by zone. | [optional] - -### Return type - -[**AuthGroups**](AuthGroups.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_auth_id** -> AuthId get_auth_id(listchildprivs=listchildprivs) - - - -Retrieve the current security token. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -listchildprivs = true # bool | A list of child privileges for the current security token. (optional) - -try: - api_response = api_instance.get_auth_id(listchildprivs=listchildprivs) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_auth_id: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **listchildprivs** | **bool**| A list of child privileges for the current security token. | [optional] - -### Return type - -[**AuthId**](AuthId.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_auth_ldap_template** -> AuthLdapTemplates get_auth_ldap_template(auth_ldap_template_id) - - - -Retrieve the LDAP provider template. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -auth_ldap_template_id = 'auth_ldap_template_id_example' # str | Retrieve the LDAP provider template. - -try: - api_response = api_instance.get_auth_ldap_template(auth_ldap_template_id) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_auth_ldap_template: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **auth_ldap_template_id** | **str**| Retrieve the LDAP provider template. | + **zone** | **str**| Filter users by zone. | [optional] ### Return type -[**AuthLdapTemplates**](AuthLdapTemplates.md) +[**AuthUsers**](AuthUsers.md) ### Authorization @@ -2501,1600 +2254,48 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **get_auth_ldap_templates** -> AuthLdapTemplatesExtended get_auth_ldap_templates() - - - -List all LDAP provider templates. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_auth_ldap_templates() - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_auth_ldap_templates: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**AuthLdapTemplatesExtended**](AuthLdapTemplatesExtended.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_auth_log_level** -> AuthLogLevel get_auth_log_level() - - - -Get the current authentications service and netlogon logging level. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_auth_log_level() - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_auth_log_level: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**AuthLogLevel**](AuthLogLevel.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_auth_netgroup** -> AuthNetgroups get_auth_netgroup(auth_netgroup_id, ignore_errors=ignore_errors, provider=provider, recursive=recursive, zone=zone) - - - -Retrieve the user information. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -auth_netgroup_id = 'auth_netgroup_id_example' # str | Retrieve the user information. -ignore_errors = true # bool | Ignore netgroup errors. (optional) -provider = 'provider_example' # str | Filter users by provider. (optional) -recursive = true # bool | Perform recursive search. (optional) -zone = 'zone_example' # str | Filter users by zone. (optional) - -try: - api_response = api_instance.get_auth_netgroup(auth_netgroup_id, ignore_errors=ignore_errors, provider=provider, recursive=recursive, zone=zone) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_auth_netgroup: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **auth_netgroup_id** | **str**| Retrieve the user information. | - **ignore_errors** | **bool**| Ignore netgroup errors. | [optional] - **provider** | **str**| Filter users by provider. | [optional] - **recursive** | **bool**| Perform recursive search. | [optional] - **zone** | **str**| Filter users by zone. | [optional] - -### Return type - -[**AuthNetgroups**](AuthNetgroups.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_auth_privileges** -> AuthPrivileges get_auth_privileges(zone=zone) - - - -List all privileges. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -zone = 'zone_example' # str | Specifies which access zone to use. (optional) - -try: - api_response = api_instance.get_auth_privileges(zone=zone) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_auth_privileges: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **zone** | **str**| Specifies which access zone to use. | [optional] - -### Return type - -[**AuthPrivileges**](AuthPrivileges.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_auth_role** -> AuthRoles get_auth_role(auth_role_id, resolve_names=resolve_names, zone=zone) - - - -Retrieve the role information. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -auth_role_id = 'auth_role_id_example' # str | Retrieve the role information. -resolve_names = true # bool | Resolve names of personas. (optional) -zone = 'zone_example' # str | Specifies which access zone to use. (optional) - -try: - api_response = api_instance.get_auth_role(auth_role_id, resolve_names=resolve_names, zone=zone) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_auth_role: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **auth_role_id** | **str**| Retrieve the role information. | - **resolve_names** | **bool**| Resolve names of personas. | [optional] - **zone** | **str**| Specifies which access zone to use. | [optional] - -### Return type - -[**AuthRoles**](AuthRoles.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_auth_shells** -> AuthShells get_auth_shells() - - - -List all shells. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_auth_shells() - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_auth_shells: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**AuthShells**](AuthShells.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_auth_user** -> AuthUsers get_auth_user(auth_user_id, cached=cached, provider=provider, query_member_of=query_member_of, resolve_names=resolve_names, zone=zone) - - - -Retrieve the user information. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -auth_user_id = 'auth_user_id_example' # str | Retrieve the user information. -cached = true # bool | If true, only return cached objects. (optional) -provider = 'provider_example' # str | Filter users by provider. (optional) -query_member_of = true # bool | Enumerate the groups for which the user is a member. The query_member_of argument determines whether the member_of field of the returned user is null or filled out with the enumerated groups. As it requires additional processing, only use query_member_of if you want to look at this field. (optional) -resolve_names = true # bool | Resolve names of personas. (optional) -zone = 'zone_example' # str | Filter users by zone. (optional) - -try: - api_response = api_instance.get_auth_user(auth_user_id, cached=cached, provider=provider, query_member_of=query_member_of, resolve_names=resolve_names, zone=zone) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_auth_user: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **auth_user_id** | **str**| Retrieve the user information. | - **cached** | **bool**| If true, only return cached objects. | [optional] - **provider** | **str**| Filter users by provider. | [optional] - **query_member_of** | **bool**| Enumerate the groups for which the user is a member. The query_member_of argument determines whether the member_of field of the returned user is null or filled out with the enumerated groups. As it requires additional processing, only use query_member_of if you want to look at this field. | [optional] - **resolve_names** | **bool**| Resolve names of personas. | [optional] - **zone** | **str**| Filter users by zone. | [optional] - -### Return type - -[**AuthUsers**](AuthUsers.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_auth_wellknown** -> AuthWellknowns get_auth_wellknown(auth_wellknown_id, scope=scope) - - - -Retrieve the wellknown persona. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -auth_wellknown_id = 'auth_wellknown_id_example' # str | Retrieve the wellknown persona. -scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) - -try: - api_response = api_instance.get_auth_wellknown(auth_wellknown_id, scope=scope) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_auth_wellknown: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **auth_wellknown_id** | **str**| Retrieve the wellknown persona. | - **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] - -### Return type - -[**AuthWellknowns**](AuthWellknowns.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_auth_wellknowns** -> AuthWellknowns get_auth_wellknowns() - - - -List all wellknown personas. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_auth_wellknowns() - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_auth_wellknowns: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**AuthWellknowns**](AuthWellknowns.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_mapping_dump** -> MappingDump get_mapping_dump(nocreate=nocreate, zone=zone) - - - -Retrieve all identity mappings (uid, gid, sid, and on-disk) for the supplied source persona. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -nocreate = true # bool | Idmap should attempt to create missing identity mappings. (optional) -zone = 'zone_example' # str | Optional zone. (optional) - -try: - api_response = api_instance.get_mapping_dump(nocreate=nocreate, zone=zone) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_mapping_dump: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **nocreate** | **bool**| Idmap should attempt to create missing identity mappings. | [optional] - **zone** | **str**| Optional zone. | [optional] - -### Return type - -[**MappingDump**](MappingDump.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_mapping_identity** -> MappingIdentities get_mapping_identity(mapping_identity_id, nocreate=nocreate, zone=zone) - - - -Retrieve all identity mappings (uid, gid, sid, and on-disk) for the supplied source persona. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -mapping_identity_id = 'mapping_identity_id_example' # str | Retrieve all identity mappings (uid, gid, sid, and on-disk) for the supplied source persona. -nocreate = true # bool | Idmap should attempt to create missing identity mappings. (optional) -zone = 'zone_example' # str | Optional zone. (optional) - -try: - api_response = api_instance.get_mapping_identity(mapping_identity_id, nocreate=nocreate, zone=zone) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_mapping_identity: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **mapping_identity_id** | **str**| Retrieve all identity mappings (uid, gid, sid, and on-disk) for the supplied source persona. | - **nocreate** | **bool**| Idmap should attempt to create missing identity mappings. | [optional] - **zone** | **str**| Optional zone. | [optional] - -### Return type - -[**MappingIdentities**](MappingIdentities.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_mapping_users_lookup** -> MappingUsersLookup get_mapping_users_lookup(gid=gid, kerberos_principal=kerberos_principal, primary_gid=primary_gid, timeout=timeout, uid=uid, user=user, zone=zone) - - - -Retrieve the user information. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -gid = [56] # list[int] | The IDs of the groups to which the user belongs. (optional) -kerberos_principal = 'kerberos_principal_example' # str | The Kerberos principal name, of the form user@realm. (optional) -primary_gid = 56 # int | The user's primary group ID. (optional) -timeout = 56 # int | Timeout remote commands after NUM seconds. Defaults to 90 seconds. (optional) -uid = 56 # int | The user ID. (optional) -user = 'user_example' # str | The user name. (optional) -zone = 'zone_example' # str | The access zone to which the user belongs. (optional) - -try: - api_response = api_instance.get_mapping_users_lookup(gid=gid, kerberos_principal=kerberos_principal, primary_gid=primary_gid, timeout=timeout, uid=uid, user=user, zone=zone) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_mapping_users_lookup: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **gid** | [**list[int]**](int.md)| The IDs of the groups to which the user belongs. | [optional] - **kerberos_principal** | **str**| The Kerberos principal name, of the form user@realm. | [optional] - **primary_gid** | **int**| The user's primary group ID. | [optional] - **timeout** | **int**| Timeout remote commands after NUM seconds. Defaults to 90 seconds. | [optional] - **uid** | **int**| The user ID. | [optional] - **user** | **str**| The user name. | [optional] - **zone** | **str**| The access zone to which the user belongs. | [optional] - -### Return type - -[**MappingUsersLookup**](MappingUsersLookup.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_mapping_users_rules** -> MappingUsersRules get_mapping_users_rules(zone=zone) - - - -Retrieve the user mapping rules. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -zone = 'zone_example' # str | The zone to which the user mapping applies. (optional) - -try: - api_response = api_instance.get_mapping_users_rules(zone=zone) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_mapping_users_rules: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **zone** | **str**| The zone to which the user mapping applies. | [optional] - -### Return type - -[**MappingUsersRules**](MappingUsersRules.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_oauth_certificate** -> OauthCertificates get_oauth_certificate(oauth_certificate_id, zone=zone) - - - -Get the certificate using its ID. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -oauth_certificate_id = 'oauth_certificate_id_example' # str | Get the certificate using its ID. -zone = 'zone_example' # str | Specifies which access zone to use. (optional) - -try: - api_response = api_instance.get_oauth_certificate(oauth_certificate_id, zone=zone) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_oauth_certificate: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **oauth_certificate_id** | **str**| Get the certificate using its ID. | - **zone** | **str**| Specifies which access zone to use. | [optional] - -### Return type - -[**OauthCertificates**](OauthCertificates.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_oauth_oauth2_client** -> OauthOauth2Clients get_oauth_oauth2_client(oauth_oauth2_client_id, zone=zone) - - - -Get OAuth2 client using its ID. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -oauth_oauth2_client_id = 'oauth_oauth2_client_id_example' # str | Get OAuth2 client using its ID. -zone = 'zone_example' # str | Specifies which access zone to use. (optional) - -try: - api_response = api_instance.get_oauth_oauth2_client(oauth_oauth2_client_id, zone=zone) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_oauth_oauth2_client: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **oauth_oauth2_client_id** | **str**| Get OAuth2 client using its ID. | - **zone** | **str**| Specifies which access zone to use. | [optional] - -### Return type - -[**OauthOauth2Clients**](OauthOauth2Clients.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_oauth_oauth2_token_exchange** -> OauthOauth2TokenExchanges get_oauth_oauth2_token_exchange(oauth_oauth2_token_exchange_id, zone=zone) - - - -Get OAuth2 Token Exchange configuration using its ID. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -oauth_oauth2_token_exchange_id = 'oauth_oauth2_token_exchange_id_example' # str | Get OAuth2 Token Exchange configuration using its ID. -zone = 'zone_example' # str | Specifies which access zone to use. (optional) - -try: - api_response = api_instance.get_oauth_oauth2_token_exchange(oauth_oauth2_token_exchange_id, zone=zone) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_oauth_oauth2_token_exchange: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **oauth_oauth2_token_exchange_id** | **str**| Get OAuth2 Token Exchange configuration using its ID. | - **zone** | **str**| Specifies which access zone to use. | [optional] - -### Return type - -[**OauthOauth2TokenExchanges**](OauthOauth2TokenExchanges.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_oauth_settings** -> OauthSettings get_oauth_settings(zone=zone) - - - -Retrieve the OAuth settings. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -zone = 'zone_example' # str | Specifies which access zone to use. (optional) - -try: - api_response = api_instance.get_oauth_settings(zone=zone) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_oauth_settings: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **zone** | **str**| Specifies which access zone to use. | [optional] - -### Return type - -[**OauthSettings**](OauthSettings.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_providers_ads_by_id** -> ProvidersAds get_providers_ads_by_id(providers_ads_id, check_duplicates=check_duplicates, machine_account=machine_account, scope=scope) - - - -Retrieve the ADS provider. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_ads_id = 'providers_ads_id_example' # str | Retrieve the ADS provider. -check_duplicates = true # bool | Check for duplicate SPNs registered in Active Directory. (optional) -machine_account = 'machine_account_example' # str | Machine account name to use in AD. Default is the cluster name. (optional) -scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) - -try: - api_response = api_instance.get_providers_ads_by_id(providers_ads_id, check_duplicates=check_duplicates, machine_account=machine_account, scope=scope) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_providers_ads_by_id: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **providers_ads_id** | **str**| Retrieve the ADS provider. | - **check_duplicates** | **bool**| Check for duplicate SPNs registered in Active Directory. | [optional] - **machine_account** | **str**| Machine account name to use in AD. Default is the cluster name. | [optional] - **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] - -### Return type - -[**ProvidersAds**](ProvidersAds.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_providers_duo** -> ProvidersDuo get_providers_duo() - - - -Retrieve Duo provider. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_providers_duo() - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_providers_duo: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**ProvidersDuo**](ProvidersDuo.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_providers_file_by_id** -> ProvidersFile get_providers_file_by_id(providers_file_id, scope=scope) - - - -Retrieve the file provider. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_file_id = 'providers_file_id_example' # str | Retrieve the file provider. -scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) - -try: - api_response = api_instance.get_providers_file_by_id(providers_file_id, scope=scope) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_providers_file_by_id: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **providers_file_id** | **str**| Retrieve the file provider. | - **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] - -### Return type - -[**ProvidersFile**](ProvidersFile.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_providers_krb5_by_id** -> ProvidersKrb5 get_providers_krb5_by_id(providers_krb5_id, scope=scope) - - - -Retrieve the KRB5 provider. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_krb5_id = 'providers_krb5_id_example' # str | Retrieve the KRB5 provider. -scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) - -try: - api_response = api_instance.get_providers_krb5_by_id(providers_krb5_id, scope=scope) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_providers_krb5_by_id: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **providers_krb5_id** | **str**| Retrieve the KRB5 provider. | - **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] - -### Return type - -[**ProvidersKrb5**](ProvidersKrb5.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_providers_ldap_by_id** -> ProvidersLdap get_providers_ldap_by_id(providers_ldap_id, scope=scope) - - - -Retrieve the LDAP provider. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_ldap_id = 'providers_ldap_id_example' # str | Retrieve the LDAP provider. -scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) - -try: - api_response = api_instance.get_providers_ldap_by_id(providers_ldap_id, scope=scope) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_providers_ldap_by_id: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **providers_ldap_id** | **str**| Retrieve the LDAP provider. | - **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] - -### Return type - -[**ProvidersLdap**](ProvidersLdap.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_providers_local** -> ProvidersLocal get_providers_local(scope=scope) - - - -List all local providers. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) - -try: - api_response = api_instance.get_providers_local(scope=scope) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_providers_local: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] - -### Return type - -[**ProvidersLocal**](ProvidersLocal.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_providers_local_by_id** -> ProvidersLocal get_providers_local_by_id(providers_local_id, scope=scope) - - - -Retrieve the local provider. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_local_id = 'providers_local_id_example' # str | Retrieve the local provider. -scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) - -try: - api_response = api_instance.get_providers_local_by_id(providers_local_id, scope=scope) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_providers_local_by_id: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **providers_local_id** | **str**| Retrieve the local provider. | - **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] - -### Return type - -[**ProvidersLocal**](ProvidersLocal.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_providers_nis_by_id** -> ProvidersNis get_providers_nis_by_id(providers_nis_id, scope=scope) - - - -Retrieve the NIS provider. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_nis_id = 'providers_nis_id_example' # str | Retrieve the NIS provider. -scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) - -try: - api_response = api_instance.get_providers_nis_by_id(providers_nis_id, scope=scope) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_providers_nis_by_id: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **providers_nis_id** | **str**| Retrieve the NIS provider. | - **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] - -### Return type - -[**ProvidersNis**](ProvidersNis.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_providers_saml_services_idp** -> ProvidersSamlServicesIdps get_providers_saml_services_idp(providers_saml_services_idp_id, zone=zone) - - - -Get IDP using its ID. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_saml_services_idp_id = 'providers_saml_services_idp_id_example' # str | Get IDP using its ID. -zone = 'zone_example' # str | Specifies which access zone to use. (optional) - -try: - api_response = api_instance.get_providers_saml_services_idp(providers_saml_services_idp_id, zone=zone) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_providers_saml_services_idp: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **providers_saml_services_idp_id** | **str**| Get IDP using its ID. | - **zone** | **str**| Specifies which access zone to use. | [optional] - -### Return type - -[**ProvidersSamlServicesIdps**](ProvidersSamlServicesIdps.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_providers_saml_services_settings** -> ProvidersSamlServicesSettings get_providers_saml_services_settings(zone=zone) - - - -Retrieve the SAML services settings. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -zone = 'zone_example' # str | Specifies which access zone to use. (optional) - -try: - api_response = api_instance.get_providers_saml_services_settings(zone=zone) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_providers_saml_services_settings: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **zone** | **str**| Specifies which access zone to use. | [optional] - -### Return type - -[**ProvidersSamlServicesSettings**](ProvidersSamlServicesSettings.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_providers_saml_services_sp** -> ProvidersSamlServicesSp get_providers_saml_services_sp(zone=zone) - - - -Retrieve the SAML SP settings. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -zone = 'zone_example' # str | Specifies which access zone to use. (optional) - -try: - api_response = api_instance.get_providers_saml_services_sp(zone=zone) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_providers_saml_services_sp: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **zone** | **str**| Specifies which access zone to use. | [optional] - -### Return type - -[**ProvidersSamlServicesSp**](ProvidersSamlServicesSp.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_providers_saml_services_sp_signing_key_settings** -> ProvidersSamlServicesSpSigningKeySettings get_providers_saml_services_sp_signing_key_settings(zone=zone) - - - -Retrieve the SAML SP signing key settings. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -zone = 'zone_example' # str | Specifies which access zone to use. (optional) - -try: - api_response = api_instance.get_providers_saml_services_sp_signing_key_settings(zone=zone) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthApi->get_providers_saml_services_sp_signing_key_settings: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **zone** | **str**| Specifies which access zone to use. | [optional] - -### Return type - -[**ProvidersSamlServicesSpSigningKeySettings**](ProvidersSamlServicesSpSigningKeySettings.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_providers_saml_services_sp_signing_key_status** -> ProvidersSamlServicesSpSigningKeyStatus get_providers_saml_services_sp_signing_key_status(zone=zone) +# **get_auth_wellknown** +> AuthWellknowns get_auth_wellknown(auth_wellknown_id, scope=scope) -Retrieve information about the SAML SP signing key and certificate. +Retrieve the wellknown persona. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -zone = 'zone_example' # str | Specifies which access zone to use. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +auth_wellknown_id = 'auth_wellknown_id_example' # str | Retrieve the wellknown persona. +scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) try: - api_response = api_instance.get_providers_saml_services_sp_signing_key_status(zone=zone) + api_response = api_instance.get_auth_wellknown(auth_wellknown_id, scope=scope) pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->get_providers_saml_services_sp_signing_key_status: %s\n" % e) + print("Exception when calling AuthApi->get_auth_wellknown: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **zone** | **str**| Specifies which access zone to use. | [optional] + **auth_wellknown_id** | **str**| Retrieve the wellknown persona. | + **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] ### Return type -[**ProvidersSamlServicesSpSigningKeyStatus**](ProvidersSamlServicesSpSigningKeyStatus.md) +[**AuthWellknowns**](AuthWellknowns.md) ### Authorization @@ -4107,48 +2308,42 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **get_providers_summary** -> ProvidersSummary get_providers_summary(groupnet=groupnet, zone=zone) +# **get_auth_wellknowns** +> AuthWellknowns get_auth_wellknowns() -Retrieve the summary information. +List all wellknown personas. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -groupnet = 'groupnet_example' # str | Filter providers by groupnet. (optional) -zone = 'zone_example' # str | Filter providers by zone. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: - api_response = api_instance.get_providers_summary(groupnet=groupnet, zone=zone) + api_response = api_instance.get_auth_wellknowns() pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->get_providers_summary: %s\n" % e) + print("Exception when calling AuthApi->get_auth_wellknowns: %s\n" % e) ``` ### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **groupnet** | **str**| Filter providers by groupnet. | [optional] - **zone** | **str**| Filter providers by zone. | [optional] +This endpoint does not need any parameter. ### Return type -[**ProvidersSummary**](ProvidersSummary.md) +[**AuthWellknowns**](AuthWellknowns.md) ### Authorization @@ -4161,46 +2356,48 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **get_settings_acls** -> SettingsAcls get_settings_acls(preset=preset) +# **get_mapping_dump** +> MappingDump get_mapping_dump(nocreate=nocreate, zone=zone) -Retrieve the ACL policy settings and preset configurations. +Retrieve all identity mappings (uid, gid, sid, and on-disk) for the supplied source persona. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -preset = 'preset_example' # str | If specified the preset configuration values for all applicable ACL policies are returned. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +nocreate = true # bool | Idmap should attempt to create missing identity mappings. (optional) +zone = 'zone_example' # str | Optional zone. (optional) try: - api_response = api_instance.get_settings_acls(preset=preset) + api_response = api_instance.get_mapping_dump(nocreate=nocreate, zone=zone) pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->get_settings_acls: %s\n" % e) + print("Exception when calling AuthApi->get_mapping_dump: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **preset** | **str**| If specified the preset configuration values for all applicable ACL policies are returned. | [optional] + **nocreate** | **bool**| Idmap should attempt to create missing identity mappings. | [optional] + **zone** | **str**| Optional zone. | [optional] ### Return type -[**SettingsAcls**](SettingsAcls.md) +[**MappingDump**](MappingDump.md) ### Authorization @@ -4213,48 +2410,50 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **get_settings_global** -> SettingsGlobalExtended get_settings_global(scope=scope, zone=zone) +# **get_mapping_identity** +> MappingIdentities get_mapping_identity(mapping_identity_id, nocreate=nocreate, zone=zone) -Retrieve the global settings. +Retrieve all identity mappings (uid, gid, sid, and on-disk) for the supplied source persona. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) -zone = 'zone_example' # str | Zone which contains any per-zone settings. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +mapping_identity_id = 'mapping_identity_id_example' # str | Retrieve all identity mappings (uid, gid, sid, and on-disk) for the supplied source persona. +nocreate = true # bool | Idmap should attempt to create missing identity mappings. (optional) +zone = 'zone_example' # str | Optional zone. (optional) try: - api_response = api_instance.get_settings_global(scope=scope, zone=zone) + api_response = api_instance.get_mapping_identity(mapping_identity_id, nocreate=nocreate, zone=zone) pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->get_settings_global: %s\n" % e) + print("Exception when calling AuthApi->get_mapping_identity: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] - **zone** | **str**| Zone which contains any per-zone settings. | [optional] + **mapping_identity_id** | **str**| Retrieve all identity mappings (uid, gid, sid, and on-disk) for the supplied source persona. | + **nocreate** | **bool**| Idmap should attempt to create missing identity mappings. | [optional] + **zone** | **str**| Optional zone. | [optional] ### Return type -[**SettingsGlobalExtended**](SettingsGlobalExtended.md) +[**MappingIdentities**](MappingIdentities.md) ### Authorization @@ -4267,42 +2466,56 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **get_settings_krb5_defaults** -> SettingsKrb5Defaults get_settings_krb5_defaults() +# **get_mapping_users_lookup** +> MappingUsersLookup get_mapping_users_lookup(gid=gid, kerberos_principal=kerberos_principal, primary_gid=primary_gid, uid=uid, user=user, zone=zone) -Retrieve the krb5 settings. +Retrieve the user information. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +gid = [56] # list[int] | The IDs of the groups that the user belongs to. (optional) +kerberos_principal = 'kerberos_principal_example' # str | The Kerberos principal name, of the form user@realm. (optional) +primary_gid = 56 # int | The user's primary group ID. (optional) +uid = 56 # int | The user ID. (optional) +user = 'user_example' # str | The user name. (optional) +zone = 'zone_example' # str | The zone the user belongs to. (optional) try: - api_response = api_instance.get_settings_krb5_defaults() + api_response = api_instance.get_mapping_users_lookup(gid=gid, kerberos_principal=kerberos_principal, primary_gid=primary_gid, uid=uid, user=user, zone=zone) pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->get_settings_krb5_defaults: %s\n" % e) + print("Exception when calling AuthApi->get_mapping_users_lookup: %s\n" % e) ``` ### Parameters -This endpoint does not need any parameter. + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **gid** | [**list[int]**](int.md)| The IDs of the groups that the user belongs to. | [optional] + **kerberos_principal** | **str**| The Kerberos principal name, of the form user@realm. | [optional] + **primary_gid** | **int**| The user's primary group ID. | [optional] + **uid** | **int**| The user ID. | [optional] + **user** | **str**| The user name. | [optional] + **zone** | **str**| The zone the user belongs to. | [optional] ### Return type -[**SettingsKrb5Defaults**](SettingsKrb5Defaults.md) +[**MappingUsersLookup**](MappingUsersLookup.md) ### Authorization @@ -4315,46 +2528,46 @@ This endpoint does not need any parameter. [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **get_settings_krb5_domain** -> SettingsKrb5Domains get_settings_krb5_domain(settings_krb5_domain_id) +# **get_mapping_users_rules** +> MappingUsersRules get_mapping_users_rules(zone=zone) -View the krb5 domain settings. +Retrieve the user mapping rules. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -settings_krb5_domain_id = 'settings_krb5_domain_id_example' # str | View the krb5 domain settings. +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +zone = 'zone_example' # str | The zone to which the user mapping applies. (optional) try: - api_response = api_instance.get_settings_krb5_domain(settings_krb5_domain_id) + api_response = api_instance.get_mapping_users_rules(zone=zone) pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->get_settings_krb5_domain: %s\n" % e) + print("Exception when calling AuthApi->get_mapping_users_rules: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **settings_krb5_domain_id** | **str**| View the krb5 domain settings. | + **zone** | **str**| The zone to which the user mapping applies. | [optional] ### Return type -[**SettingsKrb5Domains**](SettingsKrb5Domains.md) +[**MappingUsersRules**](MappingUsersRules.md) ### Authorization @@ -4367,46 +2580,50 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **get_settings_krb5_realm** -> SettingsKrb5Realms get_settings_krb5_realm(settings_krb5_realm_id) +# **get_providers_ads_by_id** +> ProvidersAds get_providers_ads_by_id(providers_ads_id, check_duplicates=check_duplicates, scope=scope) -Retrieve the krb5 settings for realms. +Retrieve the ADS provider. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -settings_krb5_realm_id = 'settings_krb5_realm_id_example' # str | Retrieve the krb5 settings for realms. +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +providers_ads_id = 'providers_ads_id_example' # str | Retrieve the ADS provider. +check_duplicates = true # bool | Check for duplicate SPNs registered in Active Directory. (optional) +scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) try: - api_response = api_instance.get_settings_krb5_realm(settings_krb5_realm_id) + api_response = api_instance.get_providers_ads_by_id(providers_ads_id, check_duplicates=check_duplicates, scope=scope) pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->get_settings_krb5_realm: %s\n" % e) + print("Exception when calling AuthApi->get_providers_ads_by_id: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **settings_krb5_realm_id** | **str**| Retrieve the krb5 settings for realms. | + **providers_ads_id** | **str**| Retrieve the ADS provider. | + **check_duplicates** | **bool**| Check for duplicate SPNs registered in Active Directory. | [optional] + **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] ### Return type -[**SettingsKrb5Realms**](SettingsKrb5Realms.md) +[**ProvidersAds**](ProvidersAds.md) ### Authorization @@ -4419,48 +2636,42 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **get_settings_mapping** -> SettingsMapping get_settings_mapping(scope=scope, zone=zone) +# **get_providers_duo** +> ProvidersDuo get_providers_duo() -Retrieve the mapping settings. +Retrieve Duo provider. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) -zone = 'zone_example' # str | Access zone which contains mapping settings. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: - api_response = api_instance.get_settings_mapping(scope=scope, zone=zone) + api_response = api_instance.get_providers_duo() pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->get_settings_mapping: %s\n" % e) + print("Exception when calling AuthApi->get_providers_duo: %s\n" % e) ``` ### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] - **zone** | **str**| Access zone which contains mapping settings. | [optional] +This endpoint does not need any parameter. ### Return type -[**SettingsMapping**](SettingsMapping.md) +[**ProvidersDuo**](ProvidersDuo.md) ### Authorization @@ -4473,64 +2684,48 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **list_auth_groups** -> AuthGroupsExtended list_auth_groups(cached=cached, domain=domain, filter=filter, limit=limit, provider=provider, query_member_of=query_member_of, resolve_names=resolve_names, resume=resume, timeout=timeout, zone=zone) +# **get_providers_file_by_id** +> ProvidersFile get_providers_file_by_id(providers_file_id, scope=scope) -List all groups. +Retrieve the file provider. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cached = true # bool | If true, only return cached objects. (optional) -domain = 'domain_example' # str | Filter groups by domain. (optional) -filter = 'filter_example' # str | Filter groups by name prefix. (optional) -limit = 56 # int | Return no more than this many results at once (see resume). (optional) -provider = 'provider_example' # str | Filter groups by provider. (optional) -query_member_of = true # bool | Enumerates the groups for which the groups are members. The query_member_of argument determines whether the member_of field of a returned group is null or filled out with the enumerated groups. As it requires additional processing, only use query_member_of if you want to look at this field. (optional) -resolve_names = true # bool | Resolve names of personas. (optional) -resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) -timeout = 56 # int | Timeout remote commands after NUM seconds. Defaults to 90 seconds. (optional) -zone = 'zone_example' # str | Filter groups by zone. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +providers_file_id = 'providers_file_id_example' # str | Retrieve the file provider. +scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) try: - api_response = api_instance.list_auth_groups(cached=cached, domain=domain, filter=filter, limit=limit, provider=provider, query_member_of=query_member_of, resolve_names=resolve_names, resume=resume, timeout=timeout, zone=zone) + api_response = api_instance.get_providers_file_by_id(providers_file_id, scope=scope) pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->list_auth_groups: %s\n" % e) + print("Exception when calling AuthApi->get_providers_file_by_id: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **cached** | **bool**| If true, only return cached objects. | [optional] - **domain** | **str**| Filter groups by domain. | [optional] - **filter** | **str**| Filter groups by name prefix. | [optional] - **limit** | **int**| Return no more than this many results at once (see resume). | [optional] - **provider** | **str**| Filter groups by provider. | [optional] - **query_member_of** | **bool**| Enumerates the groups for which the groups are members. The query_member_of argument determines whether the member_of field of a returned group is null or filled out with the enumerated groups. As it requires additional processing, only use query_member_of if you want to look at this field. | [optional] - **resolve_names** | **bool**| Resolve names of personas. | [optional] - **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] - **timeout** | **int**| Timeout remote commands after NUM seconds. Defaults to 90 seconds. | [optional] - **zone** | **str**| Filter groups by zone. | [optional] + **providers_file_id** | **str**| Retrieve the file provider. | + **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] ### Return type -[**AuthGroupsExtended**](AuthGroupsExtended.md) +[**ProvidersFile**](ProvidersFile.md) ### Authorization @@ -4543,56 +2738,48 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **list_auth_roles** -> AuthRolesExtended list_auth_roles(dir=dir, limit=limit, resolve_names=resolve_names, resume=resume, sort=sort, zone=zone) +# **get_providers_krb5_by_id** +> ProvidersKrb5 get_providers_krb5_by_id(providers_krb5_id, scope=scope) -List all roles. +Retrieve the KRB5 provider. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -dir = 'dir_example' # str | The direction of the sort. (optional) -limit = 56 # int | Return no more than this many results at once (see resume). (optional) -resolve_names = true # bool | Resolve names of personas. (optional) -resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) -sort = 'sort_example' # str | The field that will be used for sorting. (optional) -zone = 'zone_example' # str | Specifies which access zone to use. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +providers_krb5_id = 'providers_krb5_id_example' # str | Retrieve the KRB5 provider. +scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) try: - api_response = api_instance.list_auth_roles(dir=dir, limit=limit, resolve_names=resolve_names, resume=resume, sort=sort, zone=zone) + api_response = api_instance.get_providers_krb5_by_id(providers_krb5_id, scope=scope) pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->list_auth_roles: %s\n" % e) + print("Exception when calling AuthApi->get_providers_krb5_by_id: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **dir** | **str**| The direction of the sort. | [optional] - **limit** | **int**| Return no more than this many results at once (see resume). | [optional] - **resolve_names** | **bool**| Resolve names of personas. | [optional] - **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] - **sort** | **str**| The field that will be used for sorting. | [optional] - **zone** | **str**| Specifies which access zone to use. | [optional] + **providers_krb5_id** | **str**| Retrieve the KRB5 provider. | + **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] ### Return type -[**AuthRolesExtended**](AuthRolesExtended.md) +[**ProvidersKrb5**](ProvidersKrb5.md) ### Authorization @@ -4605,64 +2792,48 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **list_auth_users** -> AuthUsersExtended list_auth_users(cached=cached, domain=domain, filter=filter, limit=limit, provider=provider, query_member_of=query_member_of, resolve_names=resolve_names, resume=resume, timeout=timeout, zone=zone) +# **get_providers_ldap_by_id** +> ProvidersLdap get_providers_ldap_by_id(providers_ldap_id, scope=scope) -List all users. +Retrieve the LDAP provider. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cached = true # bool | If true, only return cached objects. (optional) -domain = 'domain_example' # str | Filter users by domain. (optional) -filter = 'filter_example' # str | Filter users by name prefix. (optional) -limit = 56 # int | Return no more than this many results at once (see resume). (optional) -provider = 'provider_example' # str | Filter users by provider. (optional) -query_member_of = true # bool | Enumerates the groups for which the users are members. The query_member_of argument determines whether the member_of field of a returned user is null or filled out with the enumerated groups. As it requires additional processing, only use query_member_of if you want to look at this field. (optional) -resolve_names = true # bool | Resolve names of personas. (optional) -resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) -timeout = 56 # int | Timeout remote commands after NUM seconds. Defaults to 90 seconds. (optional) -zone = 'zone_example' # str | Filter users by zone. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +providers_ldap_id = 'providers_ldap_id_example' # str | Retrieve the LDAP provider. +scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) try: - api_response = api_instance.list_auth_users(cached=cached, domain=domain, filter=filter, limit=limit, provider=provider, query_member_of=query_member_of, resolve_names=resolve_names, resume=resume, timeout=timeout, zone=zone) + api_response = api_instance.get_providers_ldap_by_id(providers_ldap_id, scope=scope) pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->list_auth_users: %s\n" % e) + print("Exception when calling AuthApi->get_providers_ldap_by_id: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **cached** | **bool**| If true, only return cached objects. | [optional] - **domain** | **str**| Filter users by domain. | [optional] - **filter** | **str**| Filter users by name prefix. | [optional] - **limit** | **int**| Return no more than this many results at once (see resume). | [optional] - **provider** | **str**| Filter users by provider. | [optional] - **query_member_of** | **bool**| Enumerates the groups for which the users are members. The query_member_of argument determines whether the member_of field of a returned user is null or filled out with the enumerated groups. As it requires additional processing, only use query_member_of if you want to look at this field. | [optional] - **resolve_names** | **bool**| Resolve names of personas. | [optional] - **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] - **timeout** | **int**| Timeout remote commands after NUM seconds. Defaults to 90 seconds. | [optional] - **zone** | **str**| Filter users by zone. | [optional] + **providers_ldap_id** | **str**| Retrieve the LDAP provider. | + **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] ### Return type -[**AuthUsersExtended**](AuthUsersExtended.md) +[**ProvidersLdap**](ProvidersLdap.md) ### Authorization @@ -4675,46 +2846,46 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **list_oauth_certificates** -> OauthCertificatesExtended list_oauth_certificates(zone=zone) +# **get_providers_local** +> ProvidersLocal get_providers_local(scope=scope) -List all certificates. +List all local providers. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -zone = 'zone_example' # str | Specifies which access zone to use. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) try: - api_response = api_instance.list_oauth_certificates(zone=zone) + api_response = api_instance.get_providers_local(scope=scope) pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->list_oauth_certificates: %s\n" % e) + print("Exception when calling AuthApi->get_providers_local: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **zone** | **str**| Specifies which access zone to use. | [optional] + **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] ### Return type -[**OauthCertificatesExtended**](OauthCertificatesExtended.md) +[**ProvidersLocal**](ProvidersLocal.md) ### Authorization @@ -4727,46 +2898,48 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **list_oauth_oauth2_clients** -> OauthOauth2ClientsExtended list_oauth_oauth2_clients(zone=zone) +# **get_providers_local_by_id** +> ProvidersLocal get_providers_local_by_id(providers_local_id, scope=scope) -List all OAuth2 clients. +Retrieve the local provider. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -zone = 'zone_example' # str | Specifies which access zone to use. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +providers_local_id = 'providers_local_id_example' # str | Retrieve the local provider. +scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) try: - api_response = api_instance.list_oauth_oauth2_clients(zone=zone) + api_response = api_instance.get_providers_local_by_id(providers_local_id, scope=scope) pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->list_oauth_oauth2_clients: %s\n" % e) + print("Exception when calling AuthApi->get_providers_local_by_id: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **zone** | **str**| Specifies which access zone to use. | [optional] + **providers_local_id** | **str**| Retrieve the local provider. | + **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] ### Return type -[**OauthOauth2ClientsExtended**](OauthOauth2ClientsExtended.md) +[**ProvidersLocal**](ProvidersLocal.md) ### Authorization @@ -4779,46 +2952,48 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **list_oauth_oauth2_token_exchanges** -> OauthOauth2TokenExchangesExtended list_oauth_oauth2_token_exchanges(zone=zone) +# **get_providers_nis_by_id** +> ProvidersNis get_providers_nis_by_id(providers_nis_id, scope=scope) -List all OAuth2 Token Exchanges configurations. +Retrieve the NIS provider. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -zone = 'zone_example' # str | Specifies which access zone to use. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +providers_nis_id = 'providers_nis_id_example' # str | Retrieve the NIS provider. +scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) try: - api_response = api_instance.list_oauth_oauth2_token_exchanges(zone=zone) + api_response = api_instance.get_providers_nis_by_id(providers_nis_id, scope=scope) pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->list_oauth_oauth2_token_exchanges: %s\n" % e) + print("Exception when calling AuthApi->get_providers_nis_by_id: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **zone** | **str**| Specifies which access zone to use. | [optional] + **providers_nis_id** | **str**| Retrieve the NIS provider. | + **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] ### Return type -[**OauthOauth2TokenExchangesExtended**](OauthOauth2TokenExchangesExtended.md) +[**ProvidersNis**](ProvidersNis.md) ### Authorization @@ -4831,46 +3006,48 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **list_providers_ads** -> ProvidersAdsExtended list_providers_ads(scope=scope) +# **get_providers_summary** +> ProvidersSummary get_providers_summary(groupnet=groupnet, zone=zone) -List all ADS providers. +Retrieve the summary information. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +groupnet = 'groupnet_example' # str | Filter providers by groupnet. (optional) +zone = 'zone_example' # str | Filter providers by zone. (optional) try: - api_response = api_instance.list_providers_ads(scope=scope) + api_response = api_instance.get_providers_summary(groupnet=groupnet, zone=zone) pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->list_providers_ads: %s\n" % e) + print("Exception when calling AuthApi->get_providers_summary: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] + **groupnet** | **str**| Filter providers by groupnet. | [optional] + **zone** | **str**| Filter providers by zone. | [optional] ### Return type -[**ProvidersAdsExtended**](ProvidersAdsExtended.md) +[**ProvidersSummary**](ProvidersSummary.md) ### Authorization @@ -4883,46 +3060,46 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **list_providers_file** -> ProvidersFile list_providers_file(scope=scope) +# **get_settings_acls** +> SettingsAcls get_settings_acls(preset=preset) -List all file providers. +Retrieve the ACL policy settings and preset configurations. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +preset = 'preset_example' # str | If specified the preset configuration values for all applicable ACL policies are returned. (optional) try: - api_response = api_instance.list_providers_file(scope=scope) + api_response = api_instance.get_settings_acls(preset=preset) pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->list_providers_file: %s\n" % e) + print("Exception when calling AuthApi->get_settings_acls: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] + **preset** | **str**| If specified the preset configuration values for all applicable ACL policies are returned. | [optional] ### Return type -[**ProvidersFile**](ProvidersFile.md) +[**SettingsAcls**](SettingsAcls.md) ### Authorization @@ -4935,35 +3112,36 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **list_providers_krb5** -> ProvidersKrb5Extended list_providers_krb5(scope=scope) +# **get_settings_global** +> SettingsGlobal get_settings_global(scope=scope, zone=zone) -List all KRB5 providers. +Retrieve the global settings. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) +zone = 'zone_example' # str | Zone which contains any per-zone settings. (optional) try: - api_response = api_instance.list_providers_krb5(scope=scope) + api_response = api_instance.get_settings_global(scope=scope, zone=zone) pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->list_providers_krb5: %s\n" % e) + print("Exception when calling AuthApi->get_settings_global: %s\n" % e) ``` ### Parameters @@ -4971,10 +3149,11 @@ except ApiException as e: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] + **zone** | **str**| Zone which contains any per-zone settings. | [optional] ### Return type -[**ProvidersKrb5Extended**](ProvidersKrb5Extended.md) +[**SettingsGlobal**](SettingsGlobal.md) ### Authorization @@ -4987,46 +3166,42 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **list_providers_ldap** -> ProvidersLdap list_providers_ldap(scope=scope) +# **get_settings_krb5_defaults** +> SettingsKrb5Defaults get_settings_krb5_defaults() -List all LDAP providers. +Retrieve the krb5 settings. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: - api_response = api_instance.list_providers_ldap(scope=scope) + api_response = api_instance.get_settings_krb5_defaults() pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->list_providers_ldap: %s\n" % e) + print("Exception when calling AuthApi->get_settings_krb5_defaults: %s\n" % e) ``` ### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] +This endpoint does not need any parameter. ### Return type -[**ProvidersLdap**](ProvidersLdap.md) +[**SettingsKrb5Defaults**](SettingsKrb5Defaults.md) ### Authorization @@ -5039,46 +3214,46 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **list_providers_nis** -> ProvidersNis list_providers_nis(scope=scope) +# **get_settings_krb5_domain** +> SettingsKrb5Domains get_settings_krb5_domain(settings_krb5_domain_id) -List all NIS providers. +View the krb5 domain settings. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +settings_krb5_domain_id = 'settings_krb5_domain_id_example' # str | View the krb5 domain settings. try: - api_response = api_instance.list_providers_nis(scope=scope) + api_response = api_instance.get_settings_krb5_domain(settings_krb5_domain_id) pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->list_providers_nis: %s\n" % e) + print("Exception when calling AuthApi->get_settings_krb5_domain: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] + **settings_krb5_domain_id** | **str**| View the krb5 domain settings. | ### Return type -[**ProvidersNis**](ProvidersNis.md) +[**SettingsKrb5Domains**](SettingsKrb5Domains.md) ### Authorization @@ -5091,46 +3266,46 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **list_providers_saml_services_cert_extract** -> CreateProvidersSamlServicesCertExtractItemResponse list_providers_saml_services_cert_extract(path=path) +# **get_settings_krb5_realm** +> SettingsKrb5Realms get_settings_krb5_realm(settings_krb5_realm_id) -Extract certificate file information. +Retrieve the krb5 settings for realms. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -path = 'path_example' # str | A path to the certificate file. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +settings_krb5_realm_id = 'settings_krb5_realm_id_example' # str | Retrieve the krb5 settings for realms. try: - api_response = api_instance.list_providers_saml_services_cert_extract(path=path) + api_response = api_instance.get_settings_krb5_realm(settings_krb5_realm_id) pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->list_providers_saml_services_cert_extract: %s\n" % e) + print("Exception when calling AuthApi->get_settings_krb5_realm: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **path** | **str**| A path to the certificate file. | [optional] + **settings_krb5_realm_id** | **str**| Retrieve the krb5 settings for realms. | ### Return type -[**CreateProvidersSamlServicesCertExtractItemResponse**](CreateProvidersSamlServicesCertExtractItemResponse.md) +[**SettingsKrb5Realms**](SettingsKrb5Realms.md) ### Authorization @@ -5143,46 +3318,48 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **list_providers_saml_services_idps** -> ProvidersSamlServicesIdpsExtended list_providers_saml_services_idps(zone=zone) +# **get_settings_mapping** +> SettingsMapping get_settings_mapping(scope=scope, zone=zone) -List all IDPs. +Retrieve the mapping settings. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -zone = 'zone_example' # str | Specifies which access zone to use. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) +zone = 'zone_example' # str | Access zone which contains mapping settings. (optional) try: - api_response = api_instance.list_providers_saml_services_idps(zone=zone) + api_response = api_instance.get_settings_mapping(scope=scope, zone=zone) pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->list_providers_saml_services_idps: %s\n" % e) + print("Exception when calling AuthApi->get_settings_mapping: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **zone** | **str**| Specifies which access zone to use. | [optional] + **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] + **zone** | **str**| Access zone which contains mapping settings. | [optional] ### Return type -[**ProvidersSamlServicesIdpsExtended**](ProvidersSamlServicesIdpsExtended.md) +[**SettingsMapping**](SettingsMapping.md) ### Authorization @@ -5195,42 +3372,62 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **list_settings_krb5_domains** -> SettingsKrb5Domains list_settings_krb5_domains() +# **list_auth_groups** +> AuthGroupsExtended list_auth_groups(cached=cached, domain=domain, filter=filter, limit=limit, provider=provider, query_member_of=query_member_of, resolve_names=resolve_names, resume=resume, zone=zone) -Retrieve the krb5 settings for domains. +List all groups. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cached = true # bool | If true, only return cached objects. (optional) +domain = 'domain_example' # str | Filter groups by domain. (optional) +filter = 'filter_example' # str | Filter groups by name prefix. (optional) +limit = 56 # int | Return no more than this many results at once (see resume). (optional) +provider = 'provider_example' # str | Filter groups by provider. (optional) +query_member_of = true # bool | Enumerate all groups that a group is a member of. (optional) +resolve_names = true # bool | Resolve names of personas. (optional) +resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) +zone = 'zone_example' # str | Filter groups by zone. (optional) try: - api_response = api_instance.list_settings_krb5_domains() + api_response = api_instance.list_auth_groups(cached=cached, domain=domain, filter=filter, limit=limit, provider=provider, query_member_of=query_member_of, resolve_names=resolve_names, resume=resume, zone=zone) pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->list_settings_krb5_domains: %s\n" % e) + print("Exception when calling AuthApi->list_auth_groups: %s\n" % e) ``` ### Parameters -This endpoint does not need any parameter. + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **cached** | **bool**| If true, only return cached objects. | [optional] + **domain** | **str**| Filter groups by domain. | [optional] + **filter** | **str**| Filter groups by name prefix. | [optional] + **limit** | **int**| Return no more than this many results at once (see resume). | [optional] + **provider** | **str**| Filter groups by provider. | [optional] + **query_member_of** | **bool**| Enumerate all groups that a group is a member of. | [optional] + **resolve_names** | **bool**| Resolve names of personas. | [optional] + **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] + **zone** | **str**| Filter groups by zone. | [optional] ### Return type -[**SettingsKrb5Domains**](SettingsKrb5Domains.md) +[**AuthGroupsExtended**](AuthGroupsExtended.md) ### Authorization @@ -5243,42 +3440,56 @@ This endpoint does not need any parameter. [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **list_settings_krb5_realms** -> SettingsKrb5Realms list_settings_krb5_realms() +# **list_auth_roles** +> AuthRolesExtended list_auth_roles(dir=dir, limit=limit, resolve_names=resolve_names, resume=resume, sort=sort, zone=zone) -Retrieve the krb5 settings for realms. +List all roles. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +dir = 'dir_example' # str | The direction of the sort. (optional) +limit = 56 # int | Return no more than this many results at once (see resume). (optional) +resolve_names = true # bool | Resolve names of personas. (optional) +resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) +sort = 'sort_example' # str | The field that will be used for sorting. (optional) +zone = 'zone_example' # str | Specifies which access zone to use. (optional) try: - api_response = api_instance.list_settings_krb5_realms() + api_response = api_instance.list_auth_roles(dir=dir, limit=limit, resolve_names=resolve_names, resume=resume, sort=sort, zone=zone) pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->list_settings_krb5_realms: %s\n" % e) + print("Exception when calling AuthApi->list_auth_roles: %s\n" % e) ``` ### Parameters -This endpoint does not need any parameter. + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **dir** | **str**| The direction of the sort. | [optional] + **limit** | **int**| Return no more than this many results at once (see resume). | [optional] + **resolve_names** | **bool**| Resolve names of personas. | [optional] + **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] + **sort** | **str**| The field that will be used for sorting. | [optional] + **zone** | **str**| Specifies which access zone to use. | [optional] ### Return type -[**SettingsKrb5Realms**](SettingsKrb5Realms.md) +[**AuthRolesExtended**](AuthRolesExtended.md) ### Authorization @@ -5291,53 +3502,62 @@ This endpoint does not need any parameter. [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_auth_group** -> update_auth_group(auth_group, auth_group_id, force=force, provider=provider, zone=zone) +# **list_auth_users** +> AuthUsersExtended list_auth_users(cached=cached, domain=domain, filter=filter, limit=limit, provider=provider, query_member_of=query_member_of, resolve_names=resolve_names, resume=resume, zone=zone) -Modify the group. +List all users. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -auth_group = isilon_sdk.v9_11_0.AuthGroup() # AuthGroup | -auth_group_id = 'auth_group_id_example' # str | Modify the group. -force = true # bool | Changes to the group ID can result in loss of access to the file system. To mitigate this risk of lost access, the force option is required for group ID changes. (optional) -provider = 'provider_example' # str | Optional provider type. (optional) -zone = 'zone_example' # str | Optional zone. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cached = true # bool | If true, only return cached objects. (optional) +domain = 'domain_example' # str | Filter users by domain. (optional) +filter = 'filter_example' # str | Filter users by name prefix. (optional) +limit = 56 # int | Return no more than this many results at once (see resume). (optional) +provider = 'provider_example' # str | Filter users by provider. (optional) +query_member_of = true # bool | Enumerate all users that a group is a member of. (optional) +resolve_names = true # bool | Resolve names of personas. (optional) +resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) +zone = 'zone_example' # str | Filter users by zone. (optional) try: - api_instance.update_auth_group(auth_group, auth_group_id, force=force, provider=provider, zone=zone) + api_response = api_instance.list_auth_users(cached=cached, domain=domain, filter=filter, limit=limit, provider=provider, query_member_of=query_member_of, resolve_names=resolve_names, resume=resume, zone=zone) + pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->update_auth_group: %s\n" % e) + print("Exception when calling AuthApi->list_auth_users: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **auth_group** | [**AuthGroup**](AuthGroup.md)| | - **auth_group_id** | **str**| Modify the group. | - **force** | **bool**| Changes to the group ID can result in loss of access to the file system. To mitigate this risk of lost access, the force option is required for group ID changes. | [optional] - **provider** | **str**| Optional provider type. | [optional] - **zone** | **str**| Optional zone. | [optional] + **cached** | **bool**| If true, only return cached objects. | [optional] + **domain** | **str**| Filter users by domain. | [optional] + **filter** | **str**| Filter users by name prefix. | [optional] + **limit** | **int**| Return no more than this many results at once (see resume). | [optional] + **provider** | **str**| Filter users by provider. | [optional] + **query_member_of** | **bool**| Enumerate all users that a group is a member of. | [optional] + **resolve_names** | **bool**| Resolve names of personas. | [optional] + **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] + **zone** | **str**| Filter users by zone. | [optional] ### Return type -void (empty response body) +[**AuthUsersExtended**](AuthUsersExtended.md) ### Authorization @@ -5350,45 +3570,46 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_auth_log_level** -> update_auth_log_level(auth_log_level) +# **list_providers_ads** +> ProvidersAdsExtended list_providers_ads(scope=scope) -Set the current authentication service and netlogon logging level. +List all ADS providers. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -auth_log_level = isilon_sdk.v9_11_0.AuthLogLevelExtended() # AuthLogLevelExtended | +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) try: - api_instance.update_auth_log_level(auth_log_level) + api_response = api_instance.list_providers_ads(scope=scope) + pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->update_auth_log_level: %s\n" % e) + print("Exception when calling AuthApi->list_providers_ads: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **auth_log_level** | [**AuthLogLevelExtended**](AuthLogLevelExtended.md)| | + **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] ### Return type -void (empty response body) +[**ProvidersAdsExtended**](ProvidersAdsExtended.md) ### Authorization @@ -5401,49 +3622,46 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_auth_role** -> update_auth_role(auth_role, auth_role_id, zone=zone) +# **list_providers_file** +> ProvidersFile list_providers_file(scope=scope) -Modify the role. +List all file providers. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -auth_role = isilon_sdk.v9_11_0.AuthRole() # AuthRole | -auth_role_id = 'auth_role_id_example' # str | Modify the role. -zone = 'zone_example' # str | Specifies which access zone to use. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) try: - api_instance.update_auth_role(auth_role, auth_role_id, zone=zone) + api_response = api_instance.list_providers_file(scope=scope) + pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->update_auth_role: %s\n" % e) + print("Exception when calling AuthApi->list_providers_file: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **auth_role** | [**AuthRole**](AuthRole.md)| | - **auth_role_id** | **str**| Modify the role. | - **zone** | **str**| Specifies which access zone to use. | [optional] + **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] ### Return type -void (empty response body) +[**ProvidersFile**](ProvidersFile.md) ### Authorization @@ -5456,53 +3674,46 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_auth_user** -> update_auth_user(auth_user, auth_user_id, force=force, provider=provider, zone=zone) +# **list_providers_krb5** +> ProvidersKrb5Extended list_providers_krb5(scope=scope) -Modify the user. +List all KRB5 providers. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -auth_user = isilon_sdk.v9_11_0.AuthUser() # AuthUser | -auth_user_id = 'auth_user_id_example' # str | Modify the user. -force = true # bool | Changes to the user ID can result in loss of access to the file system. To mitigate this risk of lost access, the force option is required for user ID changes. (optional) -provider = 'provider_example' # str | Optional provider type. (optional) -zone = 'zone_example' # str | Optional zone. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) try: - api_instance.update_auth_user(auth_user, auth_user_id, force=force, provider=provider, zone=zone) + api_response = api_instance.list_providers_krb5(scope=scope) + pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->update_auth_user: %s\n" % e) + print("Exception when calling AuthApi->list_providers_krb5: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **auth_user** | [**AuthUser**](AuthUser.md)| | - **auth_user_id** | **str**| Modify the user. | - **force** | **bool**| Changes to the user ID can result in loss of access to the file system. To mitigate this risk of lost access, the force option is required for user ID changes. | [optional] - **provider** | **str**| Optional provider type. | [optional] - **zone** | **str**| Optional zone. | [optional] + **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] ### Return type -void (empty response body) +[**ProvidersKrb5Extended**](ProvidersKrb5Extended.md) ### Authorization @@ -5515,49 +3726,46 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_mapping_import** -> update_mapping_import(mapping_import, replace=replace, zone=zone) +# **list_providers_ldap** +> ProvidersLdap list_providers_ldap(scope=scope) -Set or update a list of mappings between two personae. +List all LDAP providers. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -mapping_import = isilon_sdk.v9_11_0.MappingDump() # MappingDump | -replace = true # bool | Specify whether existing mappings should be replaced. The default behavior is to leave existing mappings intact and return an error. (optional) -zone = 'zone_example' # str | Optional zone. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) try: - api_instance.update_mapping_import(mapping_import, replace=replace, zone=zone) + api_response = api_instance.list_providers_ldap(scope=scope) + pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->update_mapping_import: %s\n" % e) + print("Exception when calling AuthApi->list_providers_ldap: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **mapping_import** | [**MappingDump**](MappingDump.md)| | - **replace** | **bool**| Specify whether existing mappings should be replaced. The default behavior is to leave existing mappings intact and return an error. | [optional] - **zone** | **str**| Optional zone. | [optional] + **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] ### Return type -void (empty response body) +[**ProvidersLdap**](ProvidersLdap.md) ### Authorization @@ -5570,47 +3778,46 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_mapping_users_rules** -> update_mapping_users_rules(mapping_users_rules, zone=zone) +# **list_providers_nis** +> ProvidersNis list_providers_nis(scope=scope) -Modify the user mapping rules. +List all NIS providers. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -mapping_users_rules = isilon_sdk.v9_11_0.MappingUsersRulesExtended() # MappingUsersRulesExtended | -zone = 'zone_example' # str | The zone to which the user mapping applies. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) try: - api_instance.update_mapping_users_rules(mapping_users_rules, zone=zone) + api_response = api_instance.list_providers_nis(scope=scope) + pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->update_mapping_users_rules: %s\n" % e) + print("Exception when calling AuthApi->list_providers_nis: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **mapping_users_rules** | [**MappingUsersRulesExtended**](MappingUsersRulesExtended.md)| | - **zone** | **str**| The zone to which the user mapping applies. | [optional] + **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] ### Return type -void (empty response body) +[**ProvidersNis**](ProvidersNis.md) ### Authorization @@ -5623,49 +3830,42 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_oauth_certificate** -> update_oauth_certificate(oauth_certificate, oauth_certificate_id, zone=zone) +# **list_settings_krb5_domains** +> SettingsKrb5Domains list_settings_krb5_domains() -Modify the certificate using its ID. +Retrieve the krb5 settings for domains. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -oauth_certificate = isilon_sdk.v9_11_0.OauthCertificate() # OauthCertificate | -oauth_certificate_id = 'oauth_certificate_id_example' # str | Modify the certificate using its ID. -zone = 'zone_example' # str | Specifies which access zone to use. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: - api_instance.update_oauth_certificate(oauth_certificate, oauth_certificate_id, zone=zone) + api_response = api_instance.list_settings_krb5_domains() + pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->update_oauth_certificate: %s\n" % e) + print("Exception when calling AuthApi->list_settings_krb5_domains: %s\n" % e) ``` ### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **oauth_certificate** | [**OauthCertificate**](OauthCertificate.md)| | - **oauth_certificate_id** | **str**| Modify the certificate using its ID. | - **zone** | **str**| Specifies which access zone to use. | [optional] +This endpoint does not need any parameter. ### Return type -void (empty response body) +[**SettingsKrb5Domains**](SettingsKrb5Domains.md) ### Authorization @@ -5678,49 +3878,42 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_oauth_oauth2_client** -> update_oauth_oauth2_client(oauth_oauth2_client, oauth_oauth2_client_id, zone=zone) +# **list_settings_krb5_realms** +> SettingsKrb5Realms list_settings_krb5_realms() -Modify OAuth2 client using its ID. +Retrieve the krb5 settings for realms. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -oauth_oauth2_client = isilon_sdk.v9_11_0.OauthOauth2Client() # OauthOauth2Client | -oauth_oauth2_client_id = 'oauth_oauth2_client_id_example' # str | Modify OAuth2 client using its ID. -zone = 'zone_example' # str | Specifies which access zone to use. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: - api_instance.update_oauth_oauth2_client(oauth_oauth2_client, oauth_oauth2_client_id, zone=zone) + api_response = api_instance.list_settings_krb5_realms() + pprint(api_response) except ApiException as e: - print("Exception when calling AuthApi->update_oauth_oauth2_client: %s\n" % e) + print("Exception when calling AuthApi->list_settings_krb5_realms: %s\n" % e) ``` ### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **oauth_oauth2_client** | [**OauthOauth2Client**](OauthOauth2Client.md)| | - **oauth_oauth2_client_id** | **str**| Modify OAuth2 client using its ID. | - **zone** | **str**| Specifies which access zone to use. | [optional] +This endpoint does not need any parameter. ### Return type -void (empty response body) +[**SettingsKrb5Realms**](SettingsKrb5Realms.md) ### Authorization @@ -5733,45 +3926,49 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_oauth_oauth2_token_exchange** -> update_oauth_oauth2_token_exchange(oauth_oauth2_token_exchange, oauth_oauth2_token_exchange_id, zone=zone) +# **update_auth_group** +> update_auth_group(auth_group, auth_group_id, force=force, provider=provider, zone=zone) -Modify OAuth2 Token Exchange configuration using its ID. +Modify the group. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -oauth_oauth2_token_exchange = isilon_sdk.v9_11_0.OauthOauth2TokenExchange() # OauthOauth2TokenExchange | -oauth_oauth2_token_exchange_id = 'oauth_oauth2_token_exchange_id_example' # str | Modify OAuth2 Token Exchange configuration using its ID. -zone = 'zone_example' # str | Specifies which access zone to use. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +auth_group = isilon_sdk.v9_4_0.AuthGroup() # AuthGroup | +auth_group_id = 'auth_group_id_example' # str | Modify the group. +force = true # bool | Changes to the group ID can result in loss of access to the file system. To mitigate this risk of lost access, the force option is required for group ID changes. (optional) +provider = 'provider_example' # str | Optional provider type. (optional) +zone = 'zone_example' # str | Optional zone. (optional) try: - api_instance.update_oauth_oauth2_token_exchange(oauth_oauth2_token_exchange, oauth_oauth2_token_exchange_id, zone=zone) + api_instance.update_auth_group(auth_group, auth_group_id, force=force, provider=provider, zone=zone) except ApiException as e: - print("Exception when calling AuthApi->update_oauth_oauth2_token_exchange: %s\n" % e) + print("Exception when calling AuthApi->update_auth_group: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **oauth_oauth2_token_exchange** | [**OauthOauth2TokenExchange**](OauthOauth2TokenExchange.md)| | - **oauth_oauth2_token_exchange_id** | **str**| Modify OAuth2 Token Exchange configuration using its ID. | - **zone** | **str**| Specifies which access zone to use. | [optional] + **auth_group** | [**AuthGroup**](AuthGroup.md)| | + **auth_group_id** | **str**| Modify the group. | + **force** | **bool**| Changes to the group ID can result in loss of access to the file system. To mitigate this risk of lost access, the force option is required for group ID changes. | [optional] + **provider** | **str**| Optional provider type. | [optional] + **zone** | **str**| Optional zone. | [optional] ### Return type @@ -5788,43 +3985,41 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_oauth_settings** -> update_oauth_settings(oauth_settings, zone=zone) +# **update_auth_log_level** +> update_auth_log_level(auth_log_level) -Modify the OAuth settings. +Set the current authentication service and netlogon logging level. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -oauth_settings = isilon_sdk.v9_11_0.OauthSettingsSettings() # OauthSettingsSettings | -zone = 'zone_example' # str | Specifies which access zone to use. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +auth_log_level = isilon_sdk.v9_4_0.AuthLogLevelExtended() # AuthLogLevelExtended | try: - api_instance.update_oauth_settings(oauth_settings, zone=zone) + api_instance.update_auth_log_level(auth_log_level) except ApiException as e: - print("Exception when calling AuthApi->update_oauth_settings: %s\n" % e) + print("Exception when calling AuthApi->update_auth_log_level: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **oauth_settings** | [**OauthSettingsSettings**](OauthSettingsSettings.md)| | - **zone** | **str**| Specifies which access zone to use. | [optional] + **auth_log_level** | [**AuthLogLevelExtended**](AuthLogLevelExtended.md)| | ### Return type @@ -5841,45 +4036,45 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_providers_ads_by_id** -> update_providers_ads_by_id(providers_ads_id_params, providers_ads_id, machine_account=machine_account) +# **update_auth_role** +> update_auth_role(auth_role, auth_role_id, zone=zone) -Modify the ADS provider. +Modify the role. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_ads_id_params = isilon_sdk.v9_11_0.ProvidersAdsIdParams() # ProvidersAdsIdParams | -providers_ads_id = 'providers_ads_id_example' # str | Modify the ADS provider. -machine_account = 'machine_account_example' # str | Machine account name to use in AD. Default is the cluster name. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +auth_role = isilon_sdk.v9_4_0.AuthRole() # AuthRole | +auth_role_id = 'auth_role_id_example' # str | Modify the role. +zone = 'zone_example' # str | Specifies which access zone to use. (optional) try: - api_instance.update_providers_ads_by_id(providers_ads_id_params, providers_ads_id, machine_account=machine_account) + api_instance.update_auth_role(auth_role, auth_role_id, zone=zone) except ApiException as e: - print("Exception when calling AuthApi->update_providers_ads_by_id: %s\n" % e) + print("Exception when calling AuthApi->update_auth_role: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **providers_ads_id_params** | [**ProvidersAdsIdParams**](ProvidersAdsIdParams.md)| | - **providers_ads_id** | **str**| Modify the ADS provider. | - **machine_account** | **str**| Machine account name to use in AD. Default is the cluster name. | [optional] + **auth_role** | [**AuthRole**](AuthRole.md)| | + **auth_role_id** | **str**| Modify the role. | + **zone** | **str**| Specifies which access zone to use. | [optional] ### Return type @@ -5896,41 +4091,49 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_providers_duo** -> update_providers_duo(providers_duo) +# **update_auth_user** +> update_auth_user(auth_user, auth_user_id, force=force, provider=provider, zone=zone) -Modify Duo provider. +Modify the user. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_duo = isilon_sdk.v9_11_0.ProvidersDuoExtended() # ProvidersDuoExtended | +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +auth_user = isilon_sdk.v9_4_0.AuthUser() # AuthUser | +auth_user_id = 'auth_user_id_example' # str | Modify the user. +force = true # bool | Changes to the user ID can result in loss of access to the file system. To mitigate this risk of lost access, the force option is required for user ID changes. (optional) +provider = 'provider_example' # str | Optional provider type. (optional) +zone = 'zone_example' # str | Optional zone. (optional) try: - api_instance.update_providers_duo(providers_duo) + api_instance.update_auth_user(auth_user, auth_user_id, force=force, provider=provider, zone=zone) except ApiException as e: - print("Exception when calling AuthApi->update_providers_duo: %s\n" % e) + print("Exception when calling AuthApi->update_auth_user: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **providers_duo** | [**ProvidersDuoExtended**](ProvidersDuoExtended.md)| | + **auth_user** | [**AuthUser**](AuthUser.md)| | + **auth_user_id** | **str**| Modify the user. | + **force** | **bool**| Changes to the user ID can result in loss of access to the file system. To mitigate this risk of lost access, the force option is required for user ID changes. | [optional] + **provider** | **str**| Optional provider type. | [optional] + **zone** | **str**| Optional zone. | [optional] ### Return type @@ -5947,43 +4150,45 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_providers_file_by_id** -> update_providers_file_by_id(providers_file_id_params, providers_file_id) +# **update_mapping_import** +> update_mapping_import(mapping_import, replace=replace, zone=zone) -Modify the file provider. +Set or update a list of mappings between two personae. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_file_id_params = isilon_sdk.v9_11_0.ProvidersFileIdParams() # ProvidersFileIdParams | -providers_file_id = 'providers_file_id_example' # str | Modify the file provider. +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +mapping_import = isilon_sdk.v9_4_0.MappingDump() # MappingDump | +replace = true # bool | Specify whether existing mappings should be replaced. The default behavior is to leave existing mappings intact and return an error. (optional) +zone = 'zone_example' # str | Optional zone. (optional) try: - api_instance.update_providers_file_by_id(providers_file_id_params, providers_file_id) + api_instance.update_mapping_import(mapping_import, replace=replace, zone=zone) except ApiException as e: - print("Exception when calling AuthApi->update_providers_file_by_id: %s\n" % e) + print("Exception when calling AuthApi->update_mapping_import: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **providers_file_id_params** | [**ProvidersFileIdParams**](ProvidersFileIdParams.md)| | - **providers_file_id** | **str**| Modify the file provider. | + **mapping_import** | [**MappingDump**](MappingDump.md)| | + **replace** | **bool**| Specify whether existing mappings should be replaced. The default behavior is to leave existing mappings intact and return an error. | [optional] + **zone** | **str**| Optional zone. | [optional] ### Return type @@ -6000,43 +4205,43 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_providers_krb5_by_id** -> update_providers_krb5_by_id(providers_krb5_id_params, providers_krb5_id) +# **update_mapping_users_rules** +> update_mapping_users_rules(mapping_users_rules, zone=zone) -Modify the KRB5 provider. +Modify the user mapping rules. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_krb5_id_params = isilon_sdk.v9_11_0.ProvidersKrb5IdParams() # ProvidersKrb5IdParams | -providers_krb5_id = 'providers_krb5_id_example' # str | Modify the KRB5 provider. +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +mapping_users_rules = isilon_sdk.v9_4_0.MappingUsersRulesExtended() # MappingUsersRulesExtended | +zone = 'zone_example' # str | The zone to which the user mapping applies. (optional) try: - api_instance.update_providers_krb5_by_id(providers_krb5_id_params, providers_krb5_id) + api_instance.update_mapping_users_rules(mapping_users_rules, zone=zone) except ApiException as e: - print("Exception when calling AuthApi->update_providers_krb5_by_id: %s\n" % e) + print("Exception when calling AuthApi->update_mapping_users_rules: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **providers_krb5_id_params** | [**ProvidersKrb5IdParams**](ProvidersKrb5IdParams.md)| | - **providers_krb5_id** | **str**| Modify the KRB5 provider. | + **mapping_users_rules** | [**MappingUsersRulesExtended**](MappingUsersRulesExtended.md)| | + **zone** | **str**| The zone to which the user mapping applies. | [optional] ### Return type @@ -6053,45 +4258,43 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_providers_ldap_by_id** -> update_providers_ldap_by_id(providers_ldap_id_params, providers_ldap_id, force=force) +# **update_providers_ads_by_id** +> update_providers_ads_by_id(providers_ads_id_params, providers_ads_id) -Modify the LDAP provider. +Modify the ADS provider. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_ldap_id_params = isilon_sdk.v9_11_0.ProvidersLdapIdParams() # ProvidersLdapIdParams | -providers_ldap_id = 'providers_ldap_id_example' # str | Modify the LDAP provider. -force = true # bool | Ignore unresolvable server URIs. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +providers_ads_id_params = isilon_sdk.v9_4_0.ProvidersAdsIdParams() # ProvidersAdsIdParams | +providers_ads_id = 'providers_ads_id_example' # str | Modify the ADS provider. try: - api_instance.update_providers_ldap_by_id(providers_ldap_id_params, providers_ldap_id, force=force) + api_instance.update_providers_ads_by_id(providers_ads_id_params, providers_ads_id) except ApiException as e: - print("Exception when calling AuthApi->update_providers_ldap_by_id: %s\n" % e) + print("Exception when calling AuthApi->update_providers_ads_by_id: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **providers_ldap_id_params** | [**ProvidersLdapIdParams**](ProvidersLdapIdParams.md)| | - **providers_ldap_id** | **str**| Modify the LDAP provider. | - **force** | **bool**| Ignore unresolvable server URIs. | [optional] + **providers_ads_id_params** | [**ProvidersAdsIdParams**](ProvidersAdsIdParams.md)| | + **providers_ads_id** | **str**| Modify the ADS provider. | ### Return type @@ -6108,43 +4311,41 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_providers_local_by_id** -> update_providers_local_by_id(providers_local_id_params, providers_local_id) +# **update_providers_duo** +> update_providers_duo(providers_duo) -Modify the local provider. +Modify Duo provider. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_local_id_params = isilon_sdk.v9_11_0.ProvidersLocalIdParams() # ProvidersLocalIdParams | -providers_local_id = 'providers_local_id_example' # str | Modify the local provider. +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +providers_duo = isilon_sdk.v9_4_0.ProvidersDuoExtended() # ProvidersDuoExtended | try: - api_instance.update_providers_local_by_id(providers_local_id_params, providers_local_id) + api_instance.update_providers_duo(providers_duo) except ApiException as e: - print("Exception when calling AuthApi->update_providers_local_by_id: %s\n" % e) + print("Exception when calling AuthApi->update_providers_duo: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **providers_local_id_params** | [**ProvidersLocalIdParams**](ProvidersLocalIdParams.md)| | - **providers_local_id** | **str**| Modify the local provider. | + **providers_duo** | [**ProvidersDuoExtended**](ProvidersDuoExtended.md)| | ### Return type @@ -6161,43 +4362,43 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_providers_nis_by_id** -> update_providers_nis_by_id(providers_nis_id_params, providers_nis_id) +# **update_providers_file_by_id** +> update_providers_file_by_id(providers_file_id_params, providers_file_id) -Modify the NIS provider. +Modify the file provider. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_nis_id_params = isilon_sdk.v9_11_0.ProvidersNisIdParams() # ProvidersNisIdParams | -providers_nis_id = 'providers_nis_id_example' # str | Modify the NIS provider. +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +providers_file_id_params = isilon_sdk.v9_4_0.ProvidersFileIdParams() # ProvidersFileIdParams | +providers_file_id = 'providers_file_id_example' # str | Modify the file provider. try: - api_instance.update_providers_nis_by_id(providers_nis_id_params, providers_nis_id) + api_instance.update_providers_file_by_id(providers_file_id_params, providers_file_id) except ApiException as e: - print("Exception when calling AuthApi->update_providers_nis_by_id: %s\n" % e) + print("Exception when calling AuthApi->update_providers_file_by_id: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **providers_nis_id_params** | [**ProvidersNisIdParams**](ProvidersNisIdParams.md)| | - **providers_nis_id** | **str**| Modify the NIS provider. | + **providers_file_id_params** | [**ProvidersFileIdParams**](ProvidersFileIdParams.md)| | + **providers_file_id** | **str**| Modify the file provider. | ### Return type @@ -6214,45 +4415,43 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_providers_saml_services_idp** -> update_providers_saml_services_idp(providers_saml_services_idp, providers_saml_services_idp_id, zone=zone) +# **update_providers_krb5_by_id** +> update_providers_krb5_by_id(providers_krb5_id_params, providers_krb5_id) -Modify IDP using its ID. +Modify the KRB5 provider. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_saml_services_idp = isilon_sdk.v9_11_0.ProvidersSamlServicesIdp() # ProvidersSamlServicesIdp | -providers_saml_services_idp_id = 'providers_saml_services_idp_id_example' # str | Modify IDP using its ID. -zone = 'zone_example' # str | Specifies which access zone to use. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +providers_krb5_id_params = isilon_sdk.v9_4_0.ProvidersKrb5IdParams() # ProvidersKrb5IdParams | +providers_krb5_id = 'providers_krb5_id_example' # str | Modify the KRB5 provider. try: - api_instance.update_providers_saml_services_idp(providers_saml_services_idp, providers_saml_services_idp_id, zone=zone) + api_instance.update_providers_krb5_by_id(providers_krb5_id_params, providers_krb5_id) except ApiException as e: - print("Exception when calling AuthApi->update_providers_saml_services_idp: %s\n" % e) + print("Exception when calling AuthApi->update_providers_krb5_by_id: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **providers_saml_services_idp** | [**ProvidersSamlServicesIdp**](ProvidersSamlServicesIdp.md)| | - **providers_saml_services_idp_id** | **str**| Modify IDP using its ID. | - **zone** | **str**| Specifies which access zone to use. | [optional] + **providers_krb5_id_params** | [**ProvidersKrb5IdParams**](ProvidersKrb5IdParams.md)| | + **providers_krb5_id** | **str**| Modify the KRB5 provider. | ### Return type @@ -6269,43 +4468,45 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_providers_saml_services_settings** -> update_providers_saml_services_settings(providers_saml_services_settings, zone=zone) +# **update_providers_ldap_by_id** +> update_providers_ldap_by_id(providers_ldap_id_params, providers_ldap_id, force=force) -Modify the SAML services settings. +Modify the LDAP provider. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_saml_services_settings = isilon_sdk.v9_11_0.ProvidersSamlServicesSettingsSettings() # ProvidersSamlServicesSettingsSettings | -zone = 'zone_example' # str | Specifies which access zone to use. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +providers_ldap_id_params = isilon_sdk.v9_4_0.ProvidersLdapIdParams() # ProvidersLdapIdParams | +providers_ldap_id = 'providers_ldap_id_example' # str | Modify the LDAP provider. +force = true # bool | Ignore unresolvable server URIs. (optional) try: - api_instance.update_providers_saml_services_settings(providers_saml_services_settings, zone=zone) + api_instance.update_providers_ldap_by_id(providers_ldap_id_params, providers_ldap_id, force=force) except ApiException as e: - print("Exception when calling AuthApi->update_providers_saml_services_settings: %s\n" % e) + print("Exception when calling AuthApi->update_providers_ldap_by_id: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **providers_saml_services_settings** | [**ProvidersSamlServicesSettingsSettings**](ProvidersSamlServicesSettingsSettings.md)| | - **zone** | **str**| Specifies which access zone to use. | [optional] + **providers_ldap_id_params** | [**ProvidersLdapIdParams**](ProvidersLdapIdParams.md)| | + **providers_ldap_id** | **str**| Modify the LDAP provider. | + **force** | **bool**| Ignore unresolvable server URIs. | [optional] ### Return type @@ -6322,43 +4523,43 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_providers_saml_services_sp** -> update_providers_saml_services_sp(providers_saml_services_sp, zone=zone) +# **update_providers_local_by_id** +> update_providers_local_by_id(providers_local_id_params, providers_local_id) -Set the SAML SP settings. +Modify the local provider. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_saml_services_sp = isilon_sdk.v9_11_0.ProvidersSamlServicesSpExtended() # ProvidersSamlServicesSpExtended | -zone = 'zone_example' # str | Specifies which access zone to use. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +providers_local_id_params = isilon_sdk.v9_4_0.ProvidersLocalIdParams() # ProvidersLocalIdParams | +providers_local_id = 'providers_local_id_example' # str | Modify the local provider. try: - api_instance.update_providers_saml_services_sp(providers_saml_services_sp, zone=zone) + api_instance.update_providers_local_by_id(providers_local_id_params, providers_local_id) except ApiException as e: - print("Exception when calling AuthApi->update_providers_saml_services_sp: %s\n" % e) + print("Exception when calling AuthApi->update_providers_local_by_id: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **providers_saml_services_sp** | [**ProvidersSamlServicesSpExtended**](ProvidersSamlServicesSpExtended.md)| | - **zone** | **str**| Specifies which access zone to use. | [optional] + **providers_local_id_params** | [**ProvidersLocalIdParams**](ProvidersLocalIdParams.md)| | + **providers_local_id** | **str**| Modify the local provider. | ### Return type @@ -6375,43 +4576,43 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_providers_saml_services_sp_signing_key_settings** -> update_providers_saml_services_sp_signing_key_settings(providers_saml_services_sp_signing_key_settings, zone=zone) +# **update_providers_nis_by_id** +> update_providers_nis_by_id(providers_nis_id_params, providers_nis_id) -Set the SAML SP signing key settings. +Modify the NIS provider. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -providers_saml_services_sp_signing_key_settings = isilon_sdk.v9_11_0.ProvidersSamlServicesSpSigningKeySettingsSettings() # ProvidersSamlServicesSpSigningKeySettingsSettings | -zone = 'zone_example' # str | Specifies which access zone to use. (optional) +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +providers_nis_id_params = isilon_sdk.v9_4_0.ProvidersNisIdParams() # ProvidersNisIdParams | +providers_nis_id = 'providers_nis_id_example' # str | Modify the NIS provider. try: - api_instance.update_providers_saml_services_sp_signing_key_settings(providers_saml_services_sp_signing_key_settings, zone=zone) + api_instance.update_providers_nis_by_id(providers_nis_id_params, providers_nis_id) except ApiException as e: - print("Exception when calling AuthApi->update_providers_saml_services_sp_signing_key_settings: %s\n" % e) + print("Exception when calling AuthApi->update_providers_nis_by_id: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **providers_saml_services_sp_signing_key_settings** | [**ProvidersSamlServicesSpSigningKeySettingsSettings**](ProvidersSamlServicesSpSigningKeySettingsSettings.md)| | - **zone** | **str**| Specifies which access zone to use. | [optional] + **providers_nis_id_params** | [**ProvidersNisIdParams**](ProvidersNisIdParams.md)| | + **providers_nis_id** | **str**| Modify the NIS provider. | ### Return type @@ -6439,18 +4640,18 @@ Modify cluster ACL policy settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -settings_acls = isilon_sdk.v9_11_0.SettingsAclsExtended() # SettingsAclsExtended | +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +settings_acls = isilon_sdk.v9_4_0.SettingsAclsExtended() # SettingsAclsExtended | try: api_instance.update_settings_acls(settings_acls) @@ -6490,18 +4691,18 @@ Modify the global settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -settings_global = isilon_sdk.v9_11_0.SettingsGlobalGlobalSettings() # SettingsGlobalGlobalSettings | +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +settings_global = isilon_sdk.v9_4_0.SettingsGlobalGlobalSettings() # SettingsGlobalGlobalSettings | zone = 'zone_example' # str | Zone which contains any per-zone settings. (optional) try: @@ -6543,18 +4744,18 @@ Modify the krb5 settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -settings_krb5_defaults = isilon_sdk.v9_11_0.SettingsKrb5DefaultsKrb5Settings() # SettingsKrb5DefaultsKrb5Settings | +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +settings_krb5_defaults = isilon_sdk.v9_4_0.SettingsKrb5DefaultsKrb5Settings() # SettingsKrb5DefaultsKrb5Settings | try: api_instance.update_settings_krb5_defaults(settings_krb5_defaults) @@ -6594,18 +4795,18 @@ Modify the krb5 domain settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -settings_krb5_domain = isilon_sdk.v9_11_0.SettingsKrb5Domain() # SettingsKrb5Domain | +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +settings_krb5_domain = isilon_sdk.v9_4_0.SettingsKrb5Domain() # SettingsKrb5Domain | settings_krb5_domain_id = 'settings_krb5_domain_id_example' # str | Modify the krb5 domain settings. try: @@ -6647,18 +4848,18 @@ Modify the krb5 realm settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -settings_krb5_realm = isilon_sdk.v9_11_0.SettingsKrb5Realm() # SettingsKrb5Realm | +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +settings_krb5_realm = isilon_sdk.v9_4_0.SettingsKrb5Realm() # SettingsKrb5Realm | settings_krb5_realm_id = 'settings_krb5_realm_id_example' # str | Modify the krb5 realm settings. try: @@ -6700,18 +4901,18 @@ Modify the mapping settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -settings_mapping = isilon_sdk.v9_11_0.SettingsMappingMappingSettings() # SettingsMappingMappingSettings | +api_instance = isilon_sdk.v9_4_0.AuthApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +settings_mapping = isilon_sdk.v9_4_0.SettingsMappingMappingSettings() # SettingsMappingMappingSettings | zone = 'zone_example' # str | Access zone which contains mapping settings. (optional) try: diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthCacheItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthCacheItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthCacheItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthCacheItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthError.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthError.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthError.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthError.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthGroup.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthGroup.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthGroup.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthGroup.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthGroupCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthGroupCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthGroupCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthGroupCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthGroupExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthGroupExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthGroupExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthGroupExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthGroupObjectHistoryItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthGroupObjectHistoryItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthGroupObjectHistoryItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthGroupObjectHistoryItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthGroups.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthGroups.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthGroups.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthGroups.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthGroupsApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthGroupsApi.md similarity index 88% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthGroupsApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthGroupsApi.md index 225f7fd63..a72724391 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthGroupsApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthGroupsApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.AuthGroupsApi +# isilon_sdk.v9_4_0.AuthGroupsApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -20,18 +20,18 @@ Add a member to the group. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthGroupsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -group_member = isilon_sdk.v9_11_0.AuthAccessAccessItemFileGroup() # AuthAccessAccessItemFileGroup | +api_instance = isilon_sdk.v9_4_0.AuthGroupsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +group_member = isilon_sdk.v9_4_0.AuthAccessAccessItemFileGroup() # AuthAccessAccessItemFileGroup | group = 'group_example' # str | provider = 'provider_example' # str | Filter group members by provider. (optional) zone = 'zone_example' # str | Filter group members by zone. (optional) @@ -78,17 +78,17 @@ Remove the member from the group. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthGroupsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AuthGroupsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) group_member_id = 'group_member_id_example' # str | Remove the member from the group. group = 'group_example' # str | provider = 'provider_example' # str | Filter group members by provider. (optional) @@ -135,17 +135,17 @@ List all the members of the group. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthGroupsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AuthGroupsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) group = 'group_example' # str | limit = 56 # int | Return no more than this many results at once (see resume). (optional) provider = 'provider_example' # str | Filter group members by provider. (optional) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthGroupsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthGroupsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthGroupsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthGroupsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthId.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthId.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthId.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthId.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthIdNtoken.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthIdNtoken.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthIdNtoken.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthIdNtoken.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthIdNtokenPrivilegeItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthIdNtokenPrivilegeItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthIdNtokenPrivilegeItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthIdNtokenPrivilegeItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthLdapTemplates.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthLdapTemplates.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthLdapTemplates.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthLdapTemplates.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthLdapTemplatesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthLdapTemplatesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthLdapTemplatesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthLdapTemplatesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthLdapTemplatesLdapConfigurationTemplate.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthLdapTemplatesLdapConfigurationTemplate.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthLdapTemplatesLdapConfigurationTemplate.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthLdapTemplatesLdapConfigurationTemplate.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthLdapTemplatesLdapConfigurationTemplateExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthLdapTemplatesLdapConfigurationTemplateExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthLdapTemplatesLdapConfigurationTemplateExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthLdapTemplatesLdapConfigurationTemplateExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthLogLevel.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthLogLevel.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthLogLevel.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthLogLevel.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthLogLevelExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthLogLevelExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthLogLevelExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthLogLevelExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthLogLevelLevel.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthLogLevelLevel.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthLogLevelLevel.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthLogLevelLevel.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthNetgroup.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthNetgroup.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthNetgroup.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthNetgroup.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthNetgroups.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthNetgroups.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthNetgroups.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthNetgroups.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthPrivilege.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthPrivilege.md similarity index 84% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthPrivilege.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthPrivilege.md index 04a2393b1..5e1b70e29 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthPrivilege.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthPrivilege.md @@ -8,7 +8,7 @@ Name | Type | Description | Notes **id** | **str** | Specifies the ID of the privilege. | **name** | **str** | Specifies the name of the privilege. | [optional] **parent_id** | **str** | Specifies the parent ID of the privilege. | [optional] -**permission** | **str** | Permissions the privilege has: r=unary (on/off only) , x=read-execute, w=read-execute-write. | [optional] +**permission** | **str** | Permissions the privilege has r=read , x=read-execute, w=read-execute-write. | [optional] **privilegelevel** | **str** | Specifies the level of the privilege. | [optional] **uri** | **str** | Specifies the associated uri for the privilege. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthPrivileges.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthPrivileges.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthPrivileges.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthPrivileges.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthProvidersApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthProvidersApi.md similarity index 86% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthProvidersApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthProvidersApi.md index 92718d92a..4f64eb8a9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthProvidersApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthProvidersApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.AuthProvidersApi +# isilon_sdk.v9_4_0.AuthProvidersApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -21,18 +21,18 @@ Retrieve search results via HTTP POST. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthProvidersApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -ads_provider_search_item = isilon_sdk.v9_11_0.AdsProviderSearchItem() # AdsProviderSearchItem | +api_instance = isilon_sdk.v9_4_0.AuthProvidersApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +ads_provider_search_item = isilon_sdk.v9_4_0.AdsProviderSearchItem() # AdsProviderSearchItem | id = 'id_example' # str | try: @@ -75,17 +75,17 @@ List all ADS controllers. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthProvidersApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AuthProvidersApi(isilon_sdk.v9_4_0.ApiClient(configuration)) id = 'id_example' # str | dc_site = 'dc_site_example' # str | Domain Controller site name (optional) groupnet = 'groupnet_example' # str | Groupnet identifier (optional) @@ -131,17 +131,17 @@ Retrieve the ADS domain information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthProvidersApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AuthProvidersApi(isilon_sdk.v9_4_0.ApiClient(configuration)) ads_provider_domain_id = 'ads_provider_domain_id_example' # str | Retrieve the ADS domain information. id = 'id_example' # str | @@ -185,17 +185,17 @@ List all ADS domains. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthProvidersApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AuthProvidersApi(isilon_sdk.v9_4_0.ApiClient(configuration)) id = 'id_example' # str | scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthRole.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthRole.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthRole.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthRole.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthRoleCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthRoleCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthRoleCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthRoleCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthRoleExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthRoleExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthRoleExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthRoleExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthRoles.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthRoles.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthRoles.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthRoles.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthRolesApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthRolesApi.md similarity index 85% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthRolesApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthRolesApi.md index bab43915a..7efdb8005 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthRolesApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthRolesApi.md @@ -1,15 +1,15 @@ -# isilon_sdk.v9_11_0.AuthRolesApi +# isilon_sdk.v9_4_0.AuthRolesApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* Method | HTTP request | Description ------------- | ------------- | ------------- [**create_role_member**](AuthRolesApi.md#create_role_member) | **POST** /platform/8/auth/roles/{Role}/members | -[**create_role_privilege**](AuthRolesApi.md#create_role_privilege) | **POST** /platform/18/auth/roles/{Role}/privileges | +[**create_role_privilege**](AuthRolesApi.md#create_role_privilege) | **POST** /platform/14/auth/roles/{Role}/privileges | [**delete_role_member**](AuthRolesApi.md#delete_role_member) | **DELETE** /platform/8/auth/roles/{Role}/members/{RoleMemberId} | -[**delete_role_privilege**](AuthRolesApi.md#delete_role_privilege) | **DELETE** /platform/18/auth/roles/{Role}/privileges/{RolePrivilegeId} | +[**delete_role_privilege**](AuthRolesApi.md#delete_role_privilege) | **DELETE** /platform/14/auth/roles/{Role}/privileges/{RolePrivilegeId} | [**list_role_members**](AuthRolesApi.md#list_role_members) | **GET** /platform/8/auth/roles/{Role}/members | -[**list_role_privileges**](AuthRolesApi.md#list_role_privileges) | **GET** /platform/18/auth/roles/{Role}/privileges | +[**list_role_privileges**](AuthRolesApi.md#list_role_privileges) | **GET** /platform/14/auth/roles/{Role}/privileges | # **create_role_member** @@ -23,18 +23,18 @@ Add a member to the role. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthRolesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -role_member = isilon_sdk.v9_11_0.AuthAccessAccessItemFileGroup() # AuthAccessAccessItemFileGroup | +api_instance = isilon_sdk.v9_4_0.AuthRolesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +role_member = isilon_sdk.v9_4_0.AuthAccessAccessItemFileGroup() # AuthAccessAccessItemFileGroup | role = 'role_example' # str | zone = 'zone_example' # str | Specifies which access zone to use. (optional) @@ -79,18 +79,18 @@ Add a privilege to the role. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthRolesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -role_privilege = isilon_sdk.v9_11_0.AuthIdNtokenPrivilegeItem() # AuthIdNtokenPrivilegeItem | +api_instance = isilon_sdk.v9_4_0.AuthRolesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +role_privilege = isilon_sdk.v9_4_0.AuthIdNtokenPrivilegeItem() # AuthIdNtokenPrivilegeItem | role = 'role_example' # str | zone = 'zone_example' # str | Specifies which access zone to use. (optional) @@ -135,17 +135,17 @@ Remove a member from the role. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthRolesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AuthRolesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) role_member_id = 'role_member_id_example' # str | Remove a member from the role. role = 'role_example' # str | zone = 'zone_example' # str | Specifies which access zone to use. (optional) @@ -190,17 +190,17 @@ Remove a privilege from a role. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthRolesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AuthRolesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) role_privilege_id = 'role_privilege_id_example' # str | Remove a privilege from a role. role = 'role_example' # str | zone = 'zone_example' # str | Specifies which access zone to use. (optional) @@ -245,17 +245,17 @@ List all the members of the role. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthRolesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AuthRolesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) role = 'role_example' # str | dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) @@ -309,17 +309,17 @@ List all privileges in the role. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthRolesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AuthRolesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) role = 'role_example' # str | zone = 'zone_example' # str | Specifies which access zone to use. (optional) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthRolesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthRolesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthRolesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthRolesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthShells.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthShells.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthShells.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthShells.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthUser.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthUser.md similarity index 92% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthUser.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthUser.md index b63d44e04..cf6f55956 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthUser.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthUser.md @@ -3,12 +3,12 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**disable_when_inactive** | **bool** | The user account will be disabled when inactive beyond a period of time. | [optional] **email** | **str** | Specifies an email address for the user. | [optional] **enabled** | **bool** | If true, the authenticated user is enabled. | [optional] **expiry** | **int** | Specifies the Unix Epoch time when the auth user will expire. | [optional] **gecos** | **str** | Specifies the GECOS value, which is usually the full name. | [optional] **home_directory** | **str** | Specifies a home directory for the user. | [optional] +**password** | **str** | Changes the password for the user. | [optional] **password_expires** | **bool** | If true, the password should expire. | [optional] **primary_group** | [**AuthAccessAccessItemFileGroup**](AuthAccessAccessItemFileGroup.md) | Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'. | [optional] **prompt_password_change** | **bool** | If true, prompts the user to change their password at the next login. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthUserCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthUserCreateParams.md similarity index 92% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthUserCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthUserCreateParams.md index 92a849d21..296556313 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthUserCreateParams.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthUserCreateParams.md @@ -3,12 +3,12 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**disable_when_inactive** | **bool** | The user account will be disabled when inactive beyond a period of time. | [optional] **email** | **str** | Specifies an email address for the user. | [optional] **enabled** | **bool** | If true, the authenticated user is enabled. | [optional] **expiry** | **int** | Specifies the Unix Epoch time when the auth user will expire. | [optional] **gecos** | **str** | Specifies the GECOS value, which is usually the full name. | [optional] **home_directory** | **str** | Specifies a home directory for the user. | [optional] +**password** | **str** | Changes the password for the user. | [optional] **password_expires** | **bool** | If true, the password should expire. | [optional] **primary_group** | [**AuthAccessAccessItemFileGroup**](AuthAccessAccessItemFileGroup.md) | Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'. | [optional] **prompt_password_change** | **bool** | If true, prompts the user to change their password at the next login. | [optional] @@ -17,7 +17,6 @@ Name | Type | Description | Notes **uid** | **int** | Specifies a numeric user identifier. | [optional] **unlock** | **bool** | If true, the user account should be unlocked. | [optional] **name** | **str** | Specifies a user name. | -**password** | **str** | Changes the password for the user. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthUserExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthUserExtended.md similarity index 95% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthUserExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthUserExtended.md index 6f7beff54..d18a185a5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthUserExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthUserExtended.md @@ -3,7 +3,6 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**disable_when_inactive** | **bool** | The user account will be disabled when inactive beyond a period of time. | [optional] **dn** | **str** | | [optional] **dns_domain** | **str** | | [optional] **domain** | **str** | | [optional] @@ -18,7 +17,6 @@ Name | Type | Description | Notes **gid** | [**AuthAccessAccessItemFileGroup**](AuthAccessAccessItemFileGroup.md) | Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'. | [optional] **home_directory** | **str** | | [optional] **id** | **str** | Specifies the user or group ID. | -**last_logon** | **int** | | [optional] **locked** | **bool** | If true, indicates that the account is locked. | **max_password_age** | **int** | Specifies the maximum time in seconds allowed before the password expires. | [optional] **member_of** | [**list[AuthAccessAccessItemFileGroup]**](AuthAccessAccessItemFileGroup.md) | | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthUsers.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthUsers.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthUsers.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthUsers.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthUsersApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthUsersApi.md similarity index 68% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthUsersApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthUsersApi.md index 736099257..570e48b3b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthUsersApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthUsersApi.md @@ -1,11 +1,10 @@ -# isilon_sdk.v9_11_0.AuthUsersApi +# isilon_sdk.v9_4_0.AuthUsersApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* Method | HTTP request | Description ------------- | ------------- | ------------- [**create_user_member_of_item**](AuthUsersApi.md#create_user_member_of_item) | **POST** /platform/3/auth/users/{User}/member-of | -[**create_user_reset_password_item**](AuthUsersApi.md#create_user_reset_password_item) | **POST** /platform/16/auth/users/{User}/reset-password | [**delete_user_member_of_member_of**](AuthUsersApi.md#delete_user_member_of_member_of) | **DELETE** /platform/3/auth/users/{User}/member-of/{UserMemberOfMemberOf} | [**list_user_member_of**](AuthUsersApi.md#list_user_member_of) | **GET** /platform/3/auth/users/{User}/member-of | [**update_user_change_password**](AuthUsersApi.md#update_user_change_password) | **PUT** /platform/3/auth/users/{User}/change-password | @@ -22,18 +21,18 @@ Add the user to a group. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthUsersApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -user_member_of_item = isilon_sdk.v9_11_0.AuthAccessAccessItemFileGroup() # AuthAccessAccessItemFileGroup | +api_instance = isilon_sdk.v9_4_0.AuthUsersApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +user_member_of_item = isilon_sdk.v9_4_0.AuthAccessAccessItemFileGroup() # AuthAccessAccessItemFileGroup | user = 'user_example' # str | provider = 'provider_example' # str | Filter groups by provider. (optional) zone = 'zone_example' # str | Filter groups by zone. (optional) @@ -69,64 +68,6 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **create_user_reset_password_item** -> CreateUserResetPasswordItemResponse create_user_reset_password_item(user_reset_password_item, user, provider=provider, zone=zone) - - - -Reset the user's password. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthUsersApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -user_reset_password_item = isilon_sdk.v9_11_0.Empty() # Empty | -user = 'user_example' # str | -provider = 'provider_example' # str | Optional provider type. (optional) -zone = 'zone_example' # str | Specifies access zone containing user. (optional) - -try: - api_response = api_instance.create_user_reset_password_item(user_reset_password_item, user, provider=provider, zone=zone) - pprint(api_response) -except ApiException as e: - print("Exception when calling AuthUsersApi->create_user_reset_password_item: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **user_reset_password_item** | [**Empty**](Empty.md)| | - **user** | **str**| | - **provider** | **str**| Optional provider type. | [optional] - **zone** | **str**| Specifies access zone containing user. | [optional] - -### Return type - -[**CreateUserResetPasswordItemResponse**](CreateUserResetPasswordItemResponse.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **delete_user_member_of_member_of** > delete_user_member_of_member_of(user_member_of_member_of, user, provider=provider, zone=zone) @@ -138,17 +79,17 @@ Remove the user from the group. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthUsersApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AuthUsersApi(isilon_sdk.v9_4_0.ApiClient(configuration)) user_member_of_member_of = 'user_member_of_member_of_example' # str | Remove the user from the group. user = 'user_example' # str | provider = 'provider_example' # str | Filter groups by provider. (optional) @@ -195,17 +136,17 @@ List all groups the user is a member of. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthUsersApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AuthUsersApi(isilon_sdk.v9_4_0.ApiClient(configuration)) user = 'user_example' # str | provider = 'provider_example' # str | Filter groups by provider. (optional) resolve_names = true # bool | Resolve names of personas. (optional) @@ -253,18 +194,18 @@ Change the user's password. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AuthUsersApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -user_change_password = isilon_sdk.v9_11_0.UserChangePassword() # UserChangePassword | +api_instance = isilon_sdk.v9_4_0.AuthUsersApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +user_change_password = isilon_sdk.v9_4_0.UserChangePassword() # UserChangePassword | user = 'user_example' # str | zone = 'zone_example' # str | Specifies access zone containing user. (optional) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthUsersExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthUsersExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthUsersExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthUsersExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AuthWellknowns.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AuthWellknowns.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AuthWellknowns.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AuthWellknowns.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanApi.md similarity index 85% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanApi.md index 95f3ae05c..b500ed853 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.AvscanApi +# isilon_sdk.v9_4_0.AvscanApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -34,18 +34,18 @@ Create new antivirus jobs. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AvscanApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -avscan_job = isilon_sdk.v9_11_0.AvscanJobCreateParams() # AvscanJobCreateParams | +api_instance = isilon_sdk.v9_4_0.AvscanApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +avscan_job = isilon_sdk.v9_4_0.AvscanJobCreateParams() # AvscanJobCreateParams | try: api_response = api_instance.create_avscan_job(avscan_job) @@ -86,18 +86,18 @@ Create new antivirus servers. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AvscanApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -avscan_server = isilon_sdk.v9_11_0.AvscanServerCreateParams() # AvscanServerCreateParams | +api_instance = isilon_sdk.v9_4_0.AvscanApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +avscan_server = isilon_sdk.v9_4_0.AvscanServerCreateParams() # AvscanServerCreateParams | try: api_response = api_instance.create_avscan_server(avscan_server) @@ -138,17 +138,17 @@ Delete an antivirus job entry. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AvscanApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AvscanApi(isilon_sdk.v9_4_0.ApiClient(configuration)) avscan_job_id = 'avscan_job_id_example' # str | Delete an antivirus job entry. try: @@ -189,17 +189,17 @@ Delete all antivirus jobs. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AvscanApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AvscanApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_instance.delete_avscan_jobs() @@ -236,17 +236,17 @@ Delete an antivirus server entry. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AvscanApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AvscanApi(isilon_sdk.v9_4_0.ApiClient(configuration)) avscan_server_id = 'avscan_server_id_example' # str | Delete an antivirus server entry. try: @@ -287,17 +287,17 @@ Delete all antivirus servers. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AvscanApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AvscanApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_instance.delete_avscan_servers() @@ -334,17 +334,17 @@ Retrieve one antivirus filter setting. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AvscanApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AvscanApi(isilon_sdk.v9_4_0.ApiClient(configuration)) avscan_filter_id = 56 # int | Retrieve one antivirus filter setting. try: @@ -386,17 +386,17 @@ List Antivirus filters for zones. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AvscanApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AvscanApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -444,17 +444,17 @@ Retrieve one antivirus job entry. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AvscanApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AvscanApi(isilon_sdk.v9_4_0.ApiClient(configuration)) avscan_job_id = 'avscan_job_id_example' # str | Retrieve one antivirus job entry. try: @@ -496,17 +496,17 @@ Retrieve one antivirus server entry. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AvscanApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AvscanApi(isilon_sdk.v9_4_0.ApiClient(configuration)) avscan_server_id = 'avscan_server_id_example' # str | Retrieve one antivirus server entry. try: @@ -548,17 +548,17 @@ View Antivirus settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AvscanApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AvscanApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_avscan_settings() @@ -596,17 +596,17 @@ List Antivirus jobs. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AvscanApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AvscanApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -654,17 +654,17 @@ List Antivirus servers. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AvscanApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AvscanApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -712,18 +712,18 @@ Modify an antivirus filter setting. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AvscanApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -avscan_filter = isilon_sdk.v9_11_0.AvscanFilter() # AvscanFilter | +api_instance = isilon_sdk.v9_4_0.AvscanApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +avscan_filter = isilon_sdk.v9_4_0.AvscanFilter() # AvscanFilter | avscan_filter_id = 56 # int | Modify an antivirus filter setting. try: @@ -765,18 +765,18 @@ Modify an antivirus job entry. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AvscanApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -avscan_job = isilon_sdk.v9_11_0.AvscanJob() # AvscanJob | +api_instance = isilon_sdk.v9_4_0.AvscanApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +avscan_job = isilon_sdk.v9_4_0.AvscanJob() # AvscanJob | avscan_job_id = 'avscan_job_id_example' # str | Modify an antivirus job entry. try: @@ -818,18 +818,18 @@ Modify an antivirus server entry. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AvscanApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -avscan_server = isilon_sdk.v9_11_0.AvscanServer() # AvscanServer | +api_instance = isilon_sdk.v9_4_0.AvscanApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +avscan_server = isilon_sdk.v9_4_0.AvscanServer() # AvscanServer | avscan_server_id = 'avscan_server_id_example' # str | Modify an antivirus server entry. try: @@ -871,18 +871,18 @@ Modify Antivirus settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AvscanApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -avscan_settings = isilon_sdk.v9_11_0.AvscanSettingsSettings() # AvscanSettingsSettings | +api_instance = isilon_sdk.v9_4_0.AvscanApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +avscan_settings = isilon_sdk.v9_4_0.AvscanSettingsSettings() # AvscanSettingsSettings | try: api_instance.update_avscan_settings(avscan_settings) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanFilter.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanFilter.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanFilter.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanFilter.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanFilterExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanFilterExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanFilterExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanFilterExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanFilterExtendedExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanFilterExtendedExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanFilterExtendedExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanFilterExtendedExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanFilters.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanFilters.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanFilters.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanFilters.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanFiltersExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanFiltersExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanFiltersExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanFiltersExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanJob.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanJob.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanJob.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanJob.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanJobCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanJobCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanJobCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanJobCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanJobExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanJobExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanJobExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanJobExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanJobs.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanJobs.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanJobs.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanJobs.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanJobsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanJobsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanJobsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanJobsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanNodesApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanNodesApi.md similarity index 84% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanNodesApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanNodesApi.md index 0dcb7e3fa..57cd77acc 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanNodesApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanNodesApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.AvscanNodesApi +# isilon_sdk.v9_4_0.AvscanNodesApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -18,17 +18,17 @@ View CAVA Antivirus status. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.AvscanNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.AvscanNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) lnn = 56 # int | try: diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanServer.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanServer.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanServer.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanServer.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanServerCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanServerCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanServerCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanServerCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanServerExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanServerExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanServerExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanServerExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanServers.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanServers.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanServers.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanServers.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanServersExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanServersExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanServersExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanServersExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanSettingsSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/AvscanSettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/AvscanSettingsSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CatalogApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CatalogApi.md similarity index 85% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CatalogApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CatalogApi.md index e62292ac2..e7b4b2c93 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CatalogApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/CatalogApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.CatalogApi +# isilon_sdk.v9_4_0.CatalogApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -25,17 +25,17 @@ List metadata for artifacts in the catalog. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CatalogApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CatalogApi(isilon_sdk.v9_4_0.ApiClient(configuration)) content_type = 'content_type_example' # str | the type of upgrade (optional) onefs_version = 56 # int | onefs version (optional) reference = 'reference_example' # str | onefs component that references this entry. (optional) @@ -81,17 +81,17 @@ README file content for artifact in the catalog. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CatalogApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CatalogApi(isilon_sdk.v9_4_0.ApiClient(configuration)) file = 'file_example' # str | Path of the signed file to import in the catalog (optional) hash = 'hash_example' # str | The sha256 hash of the file stored in catalog (optional) @@ -135,17 +135,17 @@ Verification of the signatures of any specified file, a specific artifact in the ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CatalogApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CatalogApi(isilon_sdk.v9_4_0.ApiClient(configuration)) file = 'file_example' # str | Path to unsigned file to verify (optional) hash = 'hash_example' # str | The sha256 hash of the file stored in catalog (optional) @@ -189,18 +189,18 @@ Removes any unreferenced artifacts. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CatalogApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -catalog_clean = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.CatalogApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +catalog_clean = isilon_sdk.v9_4_0.Empty() # Empty | try: api_instance.update_catalog_clean(catalog_clean) @@ -240,18 +240,18 @@ Allows a catalog artifact to be exported out of the catalog to a file that the u ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CatalogApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -catalog_export = isilon_sdk.v9_11_0.CatalogExport() # CatalogExport | +api_instance = isilon_sdk.v9_4_0.CatalogApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +catalog_export = isilon_sdk.v9_4_0.CatalogExport() # CatalogExport | try: api_instance.update_catalog_export(catalog_export) @@ -291,18 +291,18 @@ Allow a signed package to be re-imported into the catalog. A typical use case wo ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CatalogApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -catalog_import = isilon_sdk.v9_11_0.CatalogImport() # CatalogImport | +api_instance = isilon_sdk.v9_4_0.CatalogApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +catalog_import = isilon_sdk.v9_4_0.CatalogImport() # CatalogImport | try: api_instance.update_catalog_import(catalog_import) @@ -342,18 +342,18 @@ Allows a user to remove a specific sha256 artifact and all related metadata. If ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CatalogApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -catalog_remove = isilon_sdk.v9_11_0.CatalogRemove() # CatalogRemove | +api_instance = isilon_sdk.v9_4_0.CatalogApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +catalog_remove = isilon_sdk.v9_4_0.CatalogRemove() # CatalogRemove | try: api_instance.update_catalog_remove(catalog_remove) @@ -393,18 +393,18 @@ Repairs a damaged catalog. Erases catalog database, creates a new catalog databa ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CatalogApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -catalog_repair = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.CatalogApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +catalog_repair = isilon_sdk.v9_4_0.Empty() # Empty | try: api_instance.update_catalog_repair(catalog_repair) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CatalogExport.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CatalogExport.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CatalogExport.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CatalogExport.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CatalogImport.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CatalogImport.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CatalogImport.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CatalogImport.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CatalogList.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CatalogList.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CatalogList.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CatalogList.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CatalogListArtifact.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CatalogListArtifact.md similarity index 91% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CatalogListArtifact.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CatalogListArtifact.md index a550d0f1f..81e109c4c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CatalogListArtifact.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/CatalogListArtifact.md @@ -4,7 +4,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **content_type** | **str** | the type of upgrade | [optional] -**desc** | **str** | description of package | [optional] +**desc** | **str** | description of pacakge | [optional] **hash** | **str** | hash associated with artifact | [optional] **onefs_version** | **int** | onefs version | [optional] **readme** | **bool** | value describing that README file exists | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CatalogReadme.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CatalogReadme.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CatalogReadme.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CatalogReadme.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CatalogRemove.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CatalogRemove.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CatalogRemove.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CatalogRemove.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CatalogVerify.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CatalogVerify.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CatalogVerify.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CatalogVerify.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CatalogVerifyArtifact.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CatalogVerifyArtifact.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CatalogVerifyArtifact.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CatalogVerifyArtifact.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificateApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificateApi.md similarity index 82% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CertificateApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CertificateApi.md index a1bb7f92a..480b6836c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificateApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificateApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.CertificateApi +# isilon_sdk.v9_4_0.CertificateApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -29,18 +29,18 @@ Import a TLS certificate authority. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CertificateApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -certificate_authority_item = isilon_sdk.v9_11_0.CertificateAuthorityItem() # CertificateAuthorityItem | +api_instance = isilon_sdk.v9_4_0.CertificateApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +certificate_authority_item = isilon_sdk.v9_4_0.CertificateAuthorityItem() # CertificateAuthorityItem | try: api_response = api_instance.create_certificate_authority_item(certificate_authority_item) @@ -81,18 +81,18 @@ Import a TLS server certificate. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CertificateApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -certificate_server_item = isilon_sdk.v9_11_0.CertificatesSyslogItem() # CertificatesSyslogItem | +api_instance = isilon_sdk.v9_4_0.CertificateApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +certificate_server_item = isilon_sdk.v9_4_0.CertificateServerItem() # CertificateServerItem | try: api_response = api_instance.create_certificate_server_item(certificate_server_item) @@ -105,7 +105,7 @@ except ApiException as e: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **certificate_server_item** | [**CertificatesSyslogItem**](CertificatesSyslogItem.md)| | + **certificate_server_item** | [**CertificateServerItem**](CertificateServerItem.md)| | ### Return type @@ -133,17 +133,17 @@ Delete a TLS certificate authority. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CertificateApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CertificateApi(isilon_sdk.v9_4_0.ApiClient(configuration)) certificate_authority_id = 'certificate_authority_id_example' # str | Delete a TLS certificate authority. try: @@ -184,17 +184,17 @@ Delete a TLS server certificate. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CertificateApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CertificateApi(isilon_sdk.v9_4_0.ApiClient(configuration)) certificate_server_id = 'certificate_server_id_example' # str | Delete a TLS server certificate. try: @@ -225,7 +225,7 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_certificate_authority_by_id** -> CertificatesSyslog get_certificate_authority_by_id(certificate_authority_id) +> CertificatesCa get_certificate_authority_by_id(certificate_authority_id) @@ -235,17 +235,17 @@ Retrieve a single TLS certificate authority. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CertificateApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CertificateApi(isilon_sdk.v9_4_0.ApiClient(configuration)) certificate_authority_id = 'certificate_authority_id_example' # str | Retrieve a single TLS certificate authority. try: @@ -263,7 +263,7 @@ Name | Type | Description | Notes ### Return type -[**CertificatesSyslog**](CertificatesSyslog.md) +[**CertificatesCa**](CertificatesCa.md) ### Authorization @@ -287,17 +287,17 @@ Retrieve a single TLS server certificate. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CertificateApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CertificateApi(isilon_sdk.v9_4_0.ApiClient(configuration)) certificate_server_id = 'certificate_server_id_example' # str | Retrieve a single TLS server certificate. try: @@ -339,17 +339,17 @@ Retrieve system-wide TLS certificate settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CertificateApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CertificateApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_certificate_settings() @@ -377,7 +377,7 @@ This endpoint does not need any parameter. [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **list_certificate_authority** -> CertificatesSyslogExtended list_certificate_authority(dir=dir, limit=limit, resume=resume, sort=sort) +> CertificatesCaExtended list_certificate_authority(dir=dir, limit=limit, resume=resume, sort=sort) @@ -387,17 +387,17 @@ Retrieve a list of all configured TLS certificate authorities. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CertificateApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CertificateApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -421,7 +421,7 @@ Name | Type | Description | Notes ### Return type -[**CertificatesSyslogExtended**](CertificatesSyslogExtended.md) +[**CertificatesCaExtended**](CertificatesCaExtended.md) ### Authorization @@ -445,17 +445,17 @@ Retrieve a list of all configured TLS server certificates. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CertificateApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CertificateApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -503,18 +503,18 @@ Modify a TLS certificate authority. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CertificateApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -certificate_authority_id_params = isilon_sdk.v9_11_0.CertificatesSyslogIdParams() # CertificatesSyslogIdParams | +api_instance = isilon_sdk.v9_4_0.CertificateApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +certificate_authority_id_params = isilon_sdk.v9_4_0.CertificateServerIdParams() # CertificateServerIdParams | certificate_authority_id = 'certificate_authority_id_example' # str | Modify a TLS certificate authority. try: @@ -527,7 +527,7 @@ except ApiException as e: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **certificate_authority_id_params** | [**CertificatesSyslogIdParams**](CertificatesSyslogIdParams.md)| | + **certificate_authority_id_params** | [**CertificateServerIdParams**](CertificateServerIdParams.md)| | **certificate_authority_id** | **str**| Modify a TLS certificate authority. | ### Return type @@ -556,18 +556,18 @@ Modify a TLS server certificate. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CertificateApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -certificate_server_id_params = isilon_sdk.v9_11_0.CertificatesSyslogIdParams() # CertificatesSyslogIdParams | +api_instance = isilon_sdk.v9_4_0.CertificateApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +certificate_server_id_params = isilon_sdk.v9_4_0.CertificateServerIdParams() # CertificateServerIdParams | certificate_server_id = 'certificate_server_id_example' # str | Modify a TLS server certificate. try: @@ -580,7 +580,7 @@ except ApiException as e: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **certificate_server_id_params** | [**CertificatesSyslogIdParams**](CertificatesSyslogIdParams.md)| | + **certificate_server_id_params** | [**CertificateServerIdParams**](CertificateServerIdParams.md)| | **certificate_server_id** | **str**| Modify a TLS server certificate. | ### Return type @@ -609,18 +609,18 @@ Modify system-wide TLS certificate settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CertificateApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -certificate_settings = isilon_sdk.v9_11_0.CertificateSettingsExtended() # CertificateSettingsExtended | +api_instance = isilon_sdk.v9_4_0.CertificateApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +certificate_settings = isilon_sdk.v9_4_0.CertificateSettingsExtended() # CertificateSettingsExtended | try: api_instance.update_certificate_settings(certificate_settings) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificateAuthorityItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificateAuthorityItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CertificateAuthorityItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CertificateAuthorityItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesSyslogIdParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificateServerIdParams.md similarity index 94% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesSyslogIdParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CertificateServerIdParams.md index 14e5729a2..ac1fa0c6e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesSyslogIdParams.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificateServerIdParams.md @@ -1,4 +1,4 @@ -# CertificatesSyslogIdParams +# CertificateServerIdParams ## Properties Name | Type | Description | Notes diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesSyslogItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificateServerItem.md similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesSyslogItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CertificateServerItem.md index d99e2cef6..6187dbbdb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesSyslogItem.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificateServerItem.md @@ -1,4 +1,4 @@ -# CertificatesSyslogItem +# CertificateServerItem ## Properties Name | Type | Description | Notes diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificateSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificateSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CertificateSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CertificateSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificateSettingsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificateSettingsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CertificateSettingsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CertificateSettingsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificateSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificateSettingsSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CertificateSettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CertificateSettingsSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterRekeyItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesCa.md similarity index 69% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterRekeyItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesCa.md index f26986632..6c3c9908a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterRekeyItem.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesCa.md @@ -1,9 +1,9 @@ -# ClusterRekeyItem +# CertificatesCa ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**start** | **bool** | Set to true to start a rekey of the provider master passphrase. | [optional] +**certificates** | [**list[CertificatesCaCertificate]**](CertificatesCaCertificate.md) | | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesSyslogCertificate.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesCaCertificate.md similarity index 81% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesSyslogCertificate.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesCaCertificate.md index b6265cec8..4840a7bd9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesSyslogCertificate.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesCaCertificate.md @@ -1,10 +1,10 @@ -# CertificatesSyslogCertificate +# CertificatesCaCertificate ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **description** | **str** | Description field associated with a certificate provided for administrative convenience. | -**fingerprints** | [**list[CertificatesSyslogCertificateFingerprint]**](CertificatesSyslogCertificateFingerprint.md) | A list of zero or more certificate fingerprints which can be used for certificate identification. | +**fingerprints** | [**list[CertificatesCaCertificateFingerprint]**](CertificatesCaCertificateFingerprint.md) | A list of zero or more certificate fingerprints which can be used for certificate identification. | **id** | **str** | Unique server certificate identifier. | **issuer** | **str** | Certificate issuer field extracted from the certificate. | **name** | **str** | Administrator specified name identifier. | diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesSyslogCertificateFingerprint.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesCaCertificateFingerprint.md similarity index 90% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesSyslogCertificateFingerprint.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesCaCertificateFingerprint.md index 873be3357..deb654908 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesSyslogCertificateFingerprint.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesCaCertificateFingerprint.md @@ -1,4 +1,4 @@ -# CertificatesSyslogCertificateFingerprint +# CertificatesCaCertificateFingerprint ## Properties Name | Type | Description | Notes diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverJobsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesCaExtended.md similarity index 78% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverJobsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesCaExtended.md index 8f6da2dd6..29adec34e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverJobsExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesCaExtended.md @@ -1,9 +1,9 @@ -# DatamoverJobsExtended +# CertificatesCaExtended ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**jobs** | [**list[DatamoverJob]**](DatamoverJob.md) | | [optional] +**certificates** | [**list[CertificatesCaCertificate]**](CertificatesCaCertificate.md) | | [optional] **resume** | **str** | Provide this token as the 'resume' query argument to continue listing results. | [optional] **total** | **int** | Total number of items available. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesCaIdParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesCaIdParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesCaIdParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesCaIdParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesCaItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesCaItem.md similarity index 74% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesCaItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesCaItem.md index 7744b0f34..4dead9719 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesCaItem.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesCaItem.md @@ -3,8 +3,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**certificate_content** | **str** | Contents of certificate to add in non-binary format; Mutually exclusive with 'certificate_path' | [optional] -**certificate_path** | **str** | Local path to the certificate that is to be imported. | [optional] +**certificate_path** | **str** | Local path to the certificate that is to be imported. | **description** | **str** | Description field associated with a certificate provided for administrative convenience. | [optional] **name** | **str** | Administrator specified name identifier. | diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesIdentity.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesIdentity.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesIdentity.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesIdentity.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesIdentityCertificate.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesIdentityCertificate.md similarity index 85% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesIdentityCertificate.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesIdentityCertificate.md index 2a8f90864..84df002bf 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesIdentityCertificate.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesIdentityCertificate.md @@ -5,7 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **description** | **str** | Description field associated with a certificate provided for administrative convenience. | **dnsnames** | **list[str]** | A list of DNS names/patterns for which this certificate is valid. This list is extracted from the certificates CN (Common Name) and subjectAtlName extension fields. | -**fingerprints** | [**list[CertificatesSyslogCertificateFingerprint]**](CertificatesSyslogCertificateFingerprint.md) | A list of zero or more certificate fingerprints which can be used for certificate identification. | +**fingerprints** | [**list[CertificatesCaCertificateFingerprint]**](CertificatesCaCertificateFingerprint.md) | A list of zero or more certificate fingerprints which can be used for certificate identification. | **id** | **str** | Unique server certificate identifier. | **issuer** | **str** | Certificate issuer field extracted from the certificate. | **name** | **str** | Administrator specified name identifier. | diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesIdentityExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesIdentityExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesIdentityExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesIdentityExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesIdentityItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesIdentityItem.md similarity index 67% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesIdentityItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesIdentityItem.md index 1756f09d5..5f1754fc6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesIdentityItem.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesIdentityItem.md @@ -3,11 +3,9 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**certificate_content** | **str** | Contents of certificate to add in non-binary format; Mutually exclusive with 'certificate_path' | [optional] -**certificate_key_content** | **str** | Contents of certificate key to add in non-binary format; Mutually exclusive with 'certificate_key_path' | [optional] **certificate_key_password** | **str** | Optional private key password. | [optional] **certificate_key_path** | **str** | Local path to the certificate key that is to be imported. | [optional] -**certificate_path** | **str** | Local path to the certificate that is to be imported. | [optional] +**certificate_path** | **str** | Local path to the certificate that is to be imported. | **description** | **str** | Description field associated with a certificate provided for administrative convenience. | [optional] **name** | **str** | Administrator specified name identifier. | diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesPeer.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesPeer.md similarity index 81% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesPeer.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesPeer.md index e31228849..4d4735528 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesPeer.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesPeer.md @@ -3,7 +3,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**certificates** | [**list[CertificatesSyslogCertificate]**](CertificatesSyslogCertificate.md) | | [optional] +**certificates** | [**list[CertificatesCaCertificate]**](CertificatesCaCertificate.md) | | [optional] **resume** | **str** | Provide this token as the 'resume' query argument to continue listing results. | [optional] **total** | **int** | Total number of items available. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesServer.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesServer.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesServer.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CertificatesServer.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ChangelistEntries.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ChangelistEntries.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ChangelistEntries.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ChangelistEntries.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ChangelistEntriesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ChangelistEntriesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ChangelistEntriesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ChangelistEntriesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ChangelistEntry.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ChangelistEntry.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ChangelistEntry.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ChangelistEntry.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ChangelistEntryAtime.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ChangelistEntryAtime.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ChangelistEntryAtime.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ChangelistEntryAtime.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ChangelistLins.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ChangelistLins.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ChangelistLins.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ChangelistLins.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ChangelistLinsAtime.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ChangelistLinsAtime.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ChangelistLinsAtime.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ChangelistLinsAtime.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ChangelistLinsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ChangelistLinsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ChangelistLinsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ChangelistLinsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ChangelistsChangelistDiffRegions.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ChangelistsChangelistDiffRegions.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ChangelistsChangelistDiffRegions.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ChangelistsChangelistDiffRegions.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ChangelistsChangelistDiffRegionsDiffRegion.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ChangelistsChangelistDiffRegionsDiffRegion.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ChangelistsChangelistDiffRegionsDiffRegion.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ChangelistsChangelistDiffRegionsDiffRegion.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CheckReport.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CheckReport.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CheckReport.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CheckReport.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CheckReportReportItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CheckReportReportItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CheckReportReportItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CheckReportReportItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CheckSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CheckSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CheckSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CheckSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CheckSettingsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CheckSettingsExtended.md similarity index 84% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CheckSettingsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CheckSettingsExtended.md index cc104aa99..85aef6bb2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CheckSettingsExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/CheckSettingsExtended.md @@ -4,6 +4,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **action** | **str** | Action to be taken on encountering security anomalies | [optional] +**stig_path** | **str** | Security Hardening file path | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CheckSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CheckSettingsSettings.md similarity index 84% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CheckSettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CheckSettingsSettings.md index 20677df1f..e216e9eb2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CheckSettingsSettings.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/CheckSettingsSettings.md @@ -4,6 +4,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **action** | **str** | Action to be taken on encountering security anomalies | [optional] +**stig_path** | **str** | Security Hardening file path | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudAccess.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudAccess.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudAccess.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudAccess.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudAccessCluster.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudAccessCluster.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudAccessCluster.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudAccessCluster.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudAccessExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudAccessExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudAccessExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudAccessExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudAccessItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudAccessItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudAccessItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudAccessItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudAccount.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudAccount.md similarity index 89% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudAccount.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudAccount.md index 769669c7b..aa4c858d6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudAccount.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudAccount.md @@ -10,7 +10,6 @@ Name | Type | Description | Notes **enable_ocsp** | **bool** | (C2S-S3 only) Indicates whether to use OCSP to check the revocation status of the authentication certificate | [optional] **enabled** | **bool** | Whether this account is explicitly enabled or disabled by a user | [optional] **key** | **str** | A valid authentication key for connecting to the cloud | [optional] -**maximum_capacity** | **int** | The maximum capacity of this account in bytes (value is not used to limit capacity, if not user defined, it is set to 1099511627776 in case of MS Azure cloud provider and to 0 in case of other cloud providers) | [optional] **name** | **str** | A unique name for this account | [optional] **ocsp_responder_url_required** | **bool** | (C2S-S3 only) Determines whether a certificate without an OCSP responder URL is considered valid or not | [optional] **proxy** | **str** | The id or name of a proxy to be used by this account | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudAccountCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudAccountCreateParams.md similarity index 90% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudAccountCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudAccountCreateParams.md index 3a026c9d2..463b5de8f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudAccountCreateParams.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudAccountCreateParams.md @@ -10,7 +10,6 @@ Name | Type | Description | Notes **enable_ocsp** | **bool** | (C2S-S3 only) Indicates whether to use OCSP to check the revocation status of the authentication certificate | [optional] **enabled** | **bool** | Whether this account is explicitly enabled or disabled by a user | [optional] **key** | **str** | A valid authentication key for connecting to the cloud | [optional] -**maximum_capacity** | **int** | The maximum capacity of this account in bytes (value is not used to limit capacity, if not user defined, it is set to 1099511627776 in case of MS Azure cloud provider and to 0 in case of other cloud providers) | [optional] **name** | **str** | A unique name for this account | **ocsp_responder_url_required** | **bool** | (C2S-S3 only) Determines whether a certificate without an OCSP responder URL is considered valid or not | [optional] **proxy** | **str** | The id or name of a proxy to be used by this account | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudAccountCredentialProvider.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudAccountCredentialProvider.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudAccountCredentialProvider.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudAccountCredentialProvider.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudAccountExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudAccountExtended.md similarity index 92% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudAccountExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudAccountExtended.md index b2d8c6b64..ca1fc38cd 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudAccountExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudAccountExtended.md @@ -10,7 +10,6 @@ Name | Type | Description | Notes **enable_ocsp** | **bool** | (C2S-S3 only) Indicates whether to use OCSP to check the revocation status of the authentication certificate | [optional] **enabled** | **bool** | Whether this account is explicitly enabled or disabled by a user | [optional] **key** | **str** | A valid authentication key for connecting to the cloud | [optional] -**maximum_capacity** | **int** | The maximum capacity of this account in bytes (value is not used to limit capacity, if not user defined, it is set to 1099511627776 in case of MS Azure cloud provider and to 0 in case of other cloud providers) | [optional] **name** | **str** | A unique name for this account | [optional] **ocsp_responder_url_required** | **bool** | (C2S-S3 only) Determines whether a certificate without an OCSP responder URL is considered valid or not | [optional] **proxy** | **str** | The id or name of a proxy to be used by this account | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudAccounts.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudAccounts.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudAccounts.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudAccounts.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudAccountsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudAccountsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudAccountsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudAccountsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudApi.md similarity index 85% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudApi.md index fb39254a4..89fdb3dc0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.CloudApi +# isilon_sdk.v9_4_0.CloudApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -52,18 +52,18 @@ Add a cluster identifier to access list. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cloud_access_item = isilon_sdk.v9_11_0.CloudAccessItem() # CloudAccessItem | +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cloud_access_item = isilon_sdk.v9_4_0.CloudAccessItem() # CloudAccessItem | try: api_response = api_instance.create_cloud_access_item(cloud_access_item) @@ -104,18 +104,18 @@ Create a new account. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cloud_account = isilon_sdk.v9_11_0.CloudAccountCreateParams() # CloudAccountCreateParams | +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cloud_account = isilon_sdk.v9_4_0.CloudAccountCreateParams() # CloudAccountCreateParams | try: api_response = api_instance.create_cloud_account(cloud_account) @@ -156,18 +156,18 @@ Import a TLS client certificate. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cloud_certificate = isilon_sdk.v9_11_0.CertificatesSyslogItem() # CertificatesSyslogItem | +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cloud_certificate = isilon_sdk.v9_4_0.CertificateServerItem() # CertificateServerItem | try: api_response = api_instance.create_cloud_certificate(cloud_certificate) @@ -180,7 +180,7 @@ except ApiException as e: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **cloud_certificate** | [**CertificatesSyslogItem**](CertificatesSyslogItem.md)| | + **cloud_certificate** | [**CertificateServerItem**](CertificateServerItem.md)| | ### Return type @@ -208,18 +208,18 @@ Create a new job. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cloud_job = isilon_sdk.v9_11_0.CloudJobCreateParams() # CloudJobCreateParams | +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cloud_job = isilon_sdk.v9_4_0.CloudJobCreateParams() # CloudJobCreateParams | try: api_response = api_instance.create_cloud_job(cloud_job) @@ -260,18 +260,18 @@ Create a new pool. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cloud_pool = isilon_sdk.v9_11_0.CloudPoolCreateParams() # CloudPoolCreateParams | +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cloud_pool = isilon_sdk.v9_4_0.CloudPoolCreateParams() # CloudPoolCreateParams | try: api_response = api_instance.create_cloud_pool(cloud_pool) @@ -312,18 +312,18 @@ Create a new proxy. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cloud_proxy = isilon_sdk.v9_11_0.CloudProxyCreateParams() # CloudProxyCreateParams | +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cloud_proxy = isilon_sdk.v9_4_0.CloudProxyCreateParams() # CloudProxyCreateParams | try: api_response = api_instance.create_cloud_proxy(cloud_proxy) @@ -364,18 +364,18 @@ Regenerate master encryption key. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -settings_encryption_key_item = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +settings_encryption_key_item = isilon_sdk.v9_4_0.Empty() # Empty | try: api_response = api_instance.create_settings_encryption_key_item(settings_encryption_key_item) @@ -416,18 +416,18 @@ Accept telemetry collection EULA. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -settings_reporting_eula_item = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +settings_reporting_eula_item = isilon_sdk.v9_4_0.Empty() # Empty | try: api_response = api_instance.create_settings_reporting_eula_item(settings_reporting_eula_item) @@ -468,17 +468,17 @@ Delete cloud access. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) cloud_access_guid = 'cloud_access_guid_example' # str | Delete cloud access. try: @@ -519,17 +519,17 @@ Delete cloud account. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) cloud_account_id = 'cloud_account_id_example' # str | Delete cloud account. acknowledge_force_delete = 'acknowledge_force_delete_example' # str | A value of 1 acknowledges that the user is deleting data. (optional) @@ -572,17 +572,17 @@ Delete a CloudPools TLS client certificate. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) cloud_certificate_id = 'cloud_certificate_id_example' # str | Delete a CloudPools TLS client certificate. try: @@ -623,17 +623,17 @@ Delete a cloud pool. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) cloud_pool_id = 'cloud_pool_id_example' # str | Delete a cloud pool. acknowledge_force_delete = 'acknowledge_force_delete_example' # str | A value of 1 acknowledges that the user is deleting data. (optional) @@ -676,17 +676,17 @@ Delete cloud account. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) cloud_proxy_id = 'cloud_proxy_id_example' # str | Delete cloud account. try: @@ -727,17 +727,17 @@ Revoke acceptance of telemetry collection EULA. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_instance.delete_settings_reporting_eula() @@ -774,17 +774,17 @@ Retrieve cloud access information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) cloud_access_guid = 'cloud_access_guid_example' # str | Retrieve cloud access information. try: @@ -826,17 +826,17 @@ Retrieve cloud account information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) cloud_account_id = 'cloud_account_id_example' # str | Retrieve cloud account information. try: @@ -868,7 +868,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_cloud_certificate** -> CertificatesSyslog get_cloud_certificate(cloud_certificate_id) +> CertificatesCa get_cloud_certificate(cloud_certificate_id) @@ -878,17 +878,17 @@ Retrieve a CloudPools TLS client certificate. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) cloud_certificate_id = 'cloud_certificate_id_example' # str | Retrieve a CloudPools TLS client certificate. try: @@ -906,7 +906,7 @@ Name | Type | Description | Notes ### Return type -[**CertificatesSyslog**](CertificatesSyslog.md) +[**CertificatesCa**](CertificatesCa.md) ### Authorization @@ -930,17 +930,17 @@ Retrieve cloudpool job information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) cloud_job_id = 'cloud_job_id_example' # str | Retrieve cloudpool job information. try: @@ -982,17 +982,17 @@ Retrieve files associated with a cloudpool job. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) cloud_jobs_file_id = 'cloud_jobs_file_id_example' # str | Retrieve files associated with a cloudpool job. dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Number of files to display; range from 1 to 100000. (optional) @@ -1046,17 +1046,17 @@ Retrieve cloud pool information ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) cloud_pool_id = 'cloud_pool_id_example' # str | Retrieve cloud pool information try: @@ -1098,17 +1098,17 @@ Retrieve cloud account information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) cloud_proxy_id = 'cloud_proxy_id_example' # str | Retrieve cloud account information. try: @@ -1150,17 +1150,17 @@ List all cloud settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_cloud_settings() @@ -1198,17 +1198,17 @@ List all accessible cluster identifiers. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -1256,17 +1256,17 @@ List all accounts. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -1314,17 +1314,17 @@ Retrieve a list of all CloudPools client certificates. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -1372,17 +1372,17 @@ List all cloudpools jobs. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -1430,17 +1430,17 @@ List all pools. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -1488,17 +1488,17 @@ List all proxies. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -1546,17 +1546,17 @@ View telemetry collection EULA acceptance and content URI. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.list_settings_reporting_eula() @@ -1594,18 +1594,18 @@ Modify cloud account. All fields are optional, but one or more must be supplied ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cloud_account = isilon_sdk.v9_11_0.CloudAccount() # CloudAccount | +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cloud_account = isilon_sdk.v9_4_0.CloudAccount() # CloudAccount | cloud_account_id = 'cloud_account_id_example' # str | Modify cloud account. All fields are optional, but one or more must be supplied. try: @@ -1647,18 +1647,18 @@ Modify a CloudPools TLS client certificate. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cloud_certificate = isilon_sdk.v9_11_0.CertificatesSyslogIdParams() # CertificatesSyslogIdParams | +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cloud_certificate = isilon_sdk.v9_4_0.CertificateServerIdParams() # CertificateServerIdParams | cloud_certificate_id = 'cloud_certificate_id_example' # str | Modify a CloudPools TLS client certificate. try: @@ -1671,7 +1671,7 @@ except ApiException as e: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **cloud_certificate** | [**CertificatesSyslogIdParams**](CertificatesSyslogIdParams.md)| | + **cloud_certificate** | [**CertificateServerIdParams**](CertificateServerIdParams.md)| | **cloud_certificate_id** | **str**| Modify a CloudPools TLS client certificate. | ### Return type @@ -1700,18 +1700,18 @@ Modify a cloud job or operation. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cloud_job = isilon_sdk.v9_11_0.CloudJob() # CloudJob | +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cloud_job = isilon_sdk.v9_4_0.CloudJob() # CloudJob | cloud_job_id = 'cloud_job_id_example' # str | Modify a cloud job or operation. try: @@ -1753,18 +1753,18 @@ Modify a cloud pool. All fields are optional, but one or more must be supplied. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cloud_pool = isilon_sdk.v9_11_0.CloudPool() # CloudPool | +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cloud_pool = isilon_sdk.v9_4_0.CloudPool() # CloudPool | cloud_pool_id = 'cloud_pool_id_example' # str | Modify a cloud pool. All fields are optional, but one or more must be supplied. try: @@ -1806,18 +1806,18 @@ Modify cloud account. All fields are optional, but one or more must be supplied ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cloud_proxy = isilon_sdk.v9_11_0.CloudProxy() # CloudProxy | +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cloud_proxy = isilon_sdk.v9_4_0.CloudProxy() # CloudProxy | cloud_proxy_id = 'cloud_proxy_id_example' # str | Modify cloud account. All fields are optional, but one or more must be supplied. try: @@ -1859,18 +1859,18 @@ Modify one or more settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.CloudApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cloud_settings = isilon_sdk.v9_11_0.CloudSettingsSettings() # CloudSettingsSettings | +api_instance = isilon_sdk.v9_4_0.CloudApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cloud_settings = isilon_sdk.v9_4_0.CloudSettingsSettings() # CloudSettingsSettings | try: api_instance.update_cloud_settings(cloud_settings) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudCertificates.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudCertificates.md similarity index 81% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudCertificates.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudCertificates.md index a7caeca58..88c903c1d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudCertificates.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudCertificates.md @@ -3,7 +3,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**certificates** | [**list[CertificatesSyslogCertificate]**](CertificatesSyslogCertificate.md) | | [optional] +**certificates** | [**list[CertificatesCaCertificate]**](CertificatesCaCertificate.md) | | [optional] **resume** | **str** | Provide this token as the 'resume' query argument to continue listing results. | [optional] **total** | **int** | Total number of items available. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudJob.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudJob.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudJob.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudJob.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudJobCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudJobCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudJobCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudJobCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudJobExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudJobExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudJobExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudJobExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudJobFiles.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudJobFiles.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudJobFiles.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudJobFiles.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudJobFilesName.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudJobFilesName.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudJobFilesName.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudJobFilesName.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudJobJobEngineJob.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudJobJobEngineJob.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudJobJobEngineJob.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudJobJobEngineJob.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudJobs.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudJobs.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudJobs.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudJobs.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudJobsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudJobsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudJobsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudJobsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudJobsFiles.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudJobsFiles.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudJobsFiles.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudJobsFiles.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudJobsFilesFile.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudJobsFilesFile.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudJobsFilesFile.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudJobsFilesFile.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudPool.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudPool.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudPool.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudPool.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudPoolCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudPoolCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudPoolCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudPoolCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudPoolExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudPoolExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudPoolExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudPoolExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudPools.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudPools.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudPools.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudPools.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudPoolsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudPoolsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudPoolsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudPoolsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudProxies.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudProxies.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudProxies.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudProxies.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudProxiesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudProxiesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudProxiesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudProxiesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudProxy.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudProxy.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudProxy.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudProxy.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudProxyCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudProxyCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudProxyCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudProxyCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudProxyExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudProxyExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudProxyExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudProxyExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudSettingsSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudSettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudSettingsSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudSettingsSettingsCloudPolicyDefaults.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudSettingsSettingsCloudPolicyDefaults.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudSettingsSettingsCloudPolicyDefaults.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudSettingsSettingsCloudPolicyDefaults.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudSettingsSettingsCloudPolicyDefaultsCache.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudSettingsSettingsCloudPolicyDefaultsCache.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudSettingsSettingsCloudPolicyDefaultsCache.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudSettingsSettingsCloudPolicyDefaultsCache.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CloudSettingsSettingsSleepTimeoutArchive.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CloudSettingsSettingsSleepTimeoutArchive.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CloudSettingsSettingsSleepTimeoutArchive.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CloudSettingsSettingsSleepTimeoutArchive.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterAc.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterAc.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterAc.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterAc.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterAcs.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterAcs.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterAcs.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterAcs.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterAddNodeItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterAddNodeItem.md similarity index 86% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterAddNodeItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterAddNodeItem.md index a030e3304..238488714 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterAddNodeItem.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterAddNodeItem.md @@ -4,7 +4,6 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **allow_down** | **bool** | Allow down nodes (Default false). | [optional] -**_async** | **bool** | Add node in asynchronous way. | [optional] [default to False] **serial_number** | **str** | Serial number of this node. | **skip_hardware_version_check** | **bool** | Bypass hardware version checks (Default false). | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterApi.md similarity index 72% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterApi.md index a78189673..86462df8b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterApi.md @@ -1,22 +1,22 @@ -# isilon_sdk.v9_11_0.ClusterApi +# isilon_sdk.v9_4_0.ClusterApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* Method | HTTP request | Description ------------- | ------------- | ------------- [**create_cluster_ac**](ClusterApi.md#create_cluster_ac) | **POST** /platform/14/cluster/acs | -[**create_cluster_add_node_item**](ClusterApi.md#create_cluster_add_node_item) | **POST** /platform/16/cluster/add-node | -[**create_diagnostics_gather_start_item**](ClusterApi.md#create_diagnostics_gather_start_item) | **POST** /platform/21/cluster/diagnostics/gather/start | +[**create_cluster_add_node_item**](ClusterApi.md#create_cluster_add_node_item) | **POST** /platform/3/cluster/add-node | +[**create_diagnostics_gather_start_item**](ClusterApi.md#create_diagnostics_gather_start_item) | **POST** /platform/3/cluster/diagnostics/gather/start | [**create_diagnostics_gather_stop_item**](ClusterApi.md#create_diagnostics_gather_stop_item) | **POST** /platform/3/cluster/diagnostics/gather/stop | -[**create_diagnostics_netlogger_start_item**](ClusterApi.md#create_diagnostics_netlogger_start_item) | **POST** /platform/21/cluster/diagnostics/netlogger/start | +[**create_diagnostics_netlogger_start_item**](ClusterApi.md#create_diagnostics_netlogger_start_item) | **POST** /platform/3/cluster/diagnostics/netlogger/start | [**create_diagnostics_netlogger_stop_item**](ClusterApi.md#create_diagnostics_netlogger_stop_item) | **POST** /platform/3/cluster/diagnostics/netlogger/stop | -[**get_cluster_config**](ClusterApi.md#get_cluster_config) | **GET** /platform/17/cluster/config | -[**get_cluster_email**](ClusterApi.md#get_cluster_email) | **GET** /platform/21/cluster/email | +[**get_cluster_config**](ClusterApi.md#get_cluster_config) | **GET** /platform/3/cluster/config | +[**get_cluster_email**](ClusterApi.md#get_cluster_email) | **GET** /platform/1/cluster/email | [**get_cluster_external_ips**](ClusterApi.md#get_cluster_external_ips) | **GET** /platform/2/cluster/external-ips | [**get_cluster_identity**](ClusterApi.md#get_cluster_identity) | **GET** /platform/5/cluster/identity | [**get_cluster_internal_networks**](ClusterApi.md#get_cluster_internal_networks) | **GET** /platform/7/cluster/internal-networks | -[**get_cluster_node**](ClusterApi.md#get_cluster_node) | **GET** /platform/16/cluster/nodes/{ClusterNodeId} | -[**get_cluster_nodes**](ClusterApi.md#get_cluster_nodes) | **GET** /platform/16/cluster/nodes | +[**get_cluster_node**](ClusterApi.md#get_cluster_node) | **GET** /platform/15/cluster/nodes/{ClusterNodeId} | +[**get_cluster_nodes**](ClusterApi.md#get_cluster_nodes) | **GET** /platform/15/cluster/nodes | [**get_cluster_nodes_available**](ClusterApi.md#get_cluster_nodes_available) | **GET** /platform/3/cluster/nodes-available | [**get_cluster_owner**](ClusterApi.md#get_cluster_owner) | **GET** /platform/1/cluster/owner | [**get_cluster_services**](ClusterApi.md#get_cluster_services) | **GET** /platform/15/cluster/services | @@ -25,31 +25,26 @@ Method | HTTP request | Description [**get_cluster_timezone**](ClusterApi.md#get_cluster_timezone) | **GET** /platform/3/cluster/timezone | [**get_cluster_version**](ClusterApi.md#get_cluster_version) | **GET** /platform/3/cluster/version | [**get_diagnostics_gather**](ClusterApi.md#get_diagnostics_gather) | **GET** /platform/3/cluster/diagnostics/gather | -[**get_diagnostics_gather_groups**](ClusterApi.md#get_diagnostics_gather_groups) | **GET** /platform/19/cluster/diagnostics/gather/groups | -[**get_diagnostics_gather_settings**](ClusterApi.md#get_diagnostics_gather_settings) | **GET** /platform/21/cluster/diagnostics/gather/settings | -[**get_diagnostics_gather_status**](ClusterApi.md#get_diagnostics_gather_status) | **GET** /platform/21/cluster/diagnostics/gather/status | +[**get_diagnostics_gather_settings**](ClusterApi.md#get_diagnostics_gather_settings) | **GET** /platform/3/cluster/diagnostics/gather/settings | +[**get_diagnostics_gather_status**](ClusterApi.md#get_diagnostics_gather_status) | **GET** /platform/3/cluster/diagnostics/gather/status | [**get_diagnostics_netlogger**](ClusterApi.md#get_diagnostics_netlogger) | **GET** /platform/3/cluster/diagnostics/netlogger | -[**get_diagnostics_netlogger_settings**](ClusterApi.md#get_diagnostics_netlogger_settings) | **GET** /platform/20/cluster/diagnostics/netlogger/settings | +[**get_diagnostics_netlogger_settings**](ClusterApi.md#get_diagnostics_netlogger_settings) | **GET** /platform/3/cluster/diagnostics/netlogger/settings | [**get_diagnostics_netlogger_status**](ClusterApi.md#get_diagnostics_netlogger_status) | **GET** /platform/3/cluster/diagnostics/netlogger/status | -[**get_iceage_settings**](ClusterApi.md#get_iceage_settings) | **GET** /platform/16/cluster/iceage/settings | [**get_internal_networks_settings**](ClusterApi.md#get_internal_networks_settings) | **GET** /platform/14/cluster/internal-networks/settings | -[**get_maintenance_settings**](ClusterApi.md#get_maintenance_settings) | **GET** /platform/20/cluster/maintenance/settings | [**get_timezone_region**](ClusterApi.md#get_timezone_region) | **GET** /platform/3/cluster/timezone/regions/{TimezoneRegionId} | [**get_timezone_settings**](ClusterApi.md#get_timezone_settings) | **GET** /platform/3/cluster/timezone/settings | [**list_cluster_acs**](ClusterApi.md#list_cluster_acs) | **GET** /platform/14/cluster/acs | -[**update_cluster_email**](ClusterApi.md#update_cluster_email) | **PUT** /platform/21/cluster/email | +[**update_cluster_email**](ClusterApi.md#update_cluster_email) | **PUT** /platform/1/cluster/email | [**update_cluster_identity**](ClusterApi.md#update_cluster_identity) | **PUT** /platform/5/cluster/identity | [**update_cluster_internal_networks**](ClusterApi.md#update_cluster_internal_networks) | **PUT** /platform/7/cluster/internal-networks | [**update_cluster_owner**](ClusterApi.md#update_cluster_owner) | **PUT** /platform/1/cluster/owner | [**update_cluster_time**](ClusterApi.md#update_cluster_time) | **PUT** /platform/3/cluster/time | [**update_cluster_timezone**](ClusterApi.md#update_cluster_timezone) | **PUT** /platform/3/cluster/timezone | [**update_cluster_update_lnns**](ClusterApi.md#update_cluster_update_lnns) | **PUT** /platform/7/cluster/update-lnns | -[**update_diagnostics_gather_settings**](ClusterApi.md#update_diagnostics_gather_settings) | **PUT** /platform/21/cluster/diagnostics/gather/settings | -[**update_diagnostics_netlogger_settings**](ClusterApi.md#update_diagnostics_netlogger_settings) | **PUT** /platform/20/cluster/diagnostics/netlogger/settings | -[**update_iceage_settings**](ClusterApi.md#update_iceage_settings) | **PUT** /platform/16/cluster/iceage/settings | +[**update_diagnostics_gather_settings**](ClusterApi.md#update_diagnostics_gather_settings) | **PUT** /platform/3/cluster/diagnostics/gather/settings | +[**update_diagnostics_netlogger_settings**](ClusterApi.md#update_diagnostics_netlogger_settings) | **PUT** /platform/3/cluster/diagnostics/netlogger/settings | [**update_internal_networks_preferred_network**](ClusterApi.md#update_internal_networks_preferred_network) | **PUT** /platform/14/cluster/internal-networks/preferred-network | [**update_internal_networks_settings**](ClusterApi.md#update_internal_networks_settings) | **PUT** /platform/14/cluster/internal-networks/settings | -[**update_maintenance_settings**](ClusterApi.md#update_maintenance_settings) | **PUT** /platform/20/cluster/maintenance/settings | [**update_timezone_settings**](ClusterApi.md#update_timezone_settings) | **PUT** /platform/3/cluster/timezone/settings | @@ -64,18 +59,18 @@ resume cluster acs status ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_ac = isilon_sdk.v9_11_0.ClusterAc() # ClusterAc | +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cluster_ac = isilon_sdk.v9_4_0.ClusterAc() # ClusterAc | try: api_response = api_instance.create_cluster_ac(cluster_ac) @@ -116,18 +111,18 @@ Serial number and arguments of node to add. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_add_node_item = isilon_sdk.v9_11_0.ClusterAddNodeItem() # ClusterAddNodeItem | +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cluster_add_node_item = isilon_sdk.v9_4_0.ClusterAddNodeItem() # ClusterAddNodeItem | try: api_response = api_instance.create_cluster_add_node_item(cluster_add_node_item) @@ -168,18 +163,18 @@ Start a new gather ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -diagnostics_gather_start_item = isilon_sdk.v9_11_0.DiagnosticsGatherStartItem() # DiagnosticsGatherStartItem | +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +diagnostics_gather_start_item = isilon_sdk.v9_4_0.DiagnosticsGatherSettingsExtended() # DiagnosticsGatherSettingsExtended | try: api_response = api_instance.create_diagnostics_gather_start_item(diagnostics_gather_start_item) @@ -192,7 +187,7 @@ except ApiException as e: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **diagnostics_gather_start_item** | [**DiagnosticsGatherStartItem**](DiagnosticsGatherStartItem.md)| | + **diagnostics_gather_start_item** | [**DiagnosticsGatherSettingsExtended**](DiagnosticsGatherSettingsExtended.md)| | ### Return type @@ -220,18 +215,18 @@ Stop a running gather ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -diagnostics_gather_stop_item = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +diagnostics_gather_stop_item = isilon_sdk.v9_4_0.Empty() # Empty | try: api_response = api_instance.create_diagnostics_gather_stop_item(diagnostics_gather_stop_item) @@ -272,18 +267,18 @@ Start a new packet capture ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -diagnostics_netlogger_start_item = isilon_sdk.v9_11_0.DiagnosticsNetloggerSettingsSettings() # DiagnosticsNetloggerSettingsSettings | +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +diagnostics_netlogger_start_item = isilon_sdk.v9_4_0.DiagnosticsNetloggerSettingsSettings() # DiagnosticsNetloggerSettingsSettings | try: api_response = api_instance.create_diagnostics_netlogger_start_item(diagnostics_netlogger_start_item) @@ -324,18 +319,18 @@ Stop a running packet capture ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -diagnostics_netlogger_stop_item = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +diagnostics_netlogger_stop_item = isilon_sdk.v9_4_0.Empty() # Empty | try: api_response = api_instance.create_diagnostics_netlogger_stop_item(diagnostics_netlogger_stop_item) @@ -376,17 +371,17 @@ Retrieve the cluster information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_cluster_config() @@ -424,17 +419,17 @@ Get the cluster email notification settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_cluster_email() @@ -472,17 +467,17 @@ Retrieve the cluster IP addresses including IPV4 and IPV6. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_cluster_external_ips() @@ -520,17 +515,17 @@ Retrieve the login information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_cluster_identity() @@ -568,17 +563,17 @@ View internal networks settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_cluster_internal_networks() @@ -616,17 +611,17 @@ Retrieve node information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) cluster_node_id = 56 # int | Retrieve node information. timeout = 8.14 # float | Request timeout (optional) @@ -670,17 +665,17 @@ List the nodes on this cluster. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) timeout = 8.14 # float | Request timeout (optional) try: @@ -722,17 +717,17 @@ List all nodes that are available to add to this cluster. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_cluster_nodes_available() @@ -770,17 +765,17 @@ Get the cluster contact info settings ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_cluster_owner() @@ -818,17 +813,17 @@ List the services on this cluster. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_cluster_services() @@ -866,17 +861,17 @@ Retrieve the filesystem statistics. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_cluster_statfs() @@ -914,17 +909,17 @@ Retrieve the current time as reported by each node. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_cluster_time() @@ -962,17 +957,17 @@ Get the cluster timezone. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_cluster_timezone() @@ -1010,17 +1005,17 @@ Retrieve the OneFS version as reported by each node. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_cluster_version() @@ -1048,7 +1043,7 @@ This endpoint does not need any parameter. [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_diagnostics_gather** -> DiagnosticsGather get_diagnostics_gather() +> DiagnosticsGatherStatus get_diagnostics_gather() @@ -1058,17 +1053,17 @@ Get the status of isi_gather_info. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_diagnostics_gather() @@ -1082,55 +1077,7 @@ This endpoint does not need any parameter. ### Return type -[**DiagnosticsGather**](DiagnosticsGather.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_diagnostics_gather_groups** -> DiagnosticsGatherGroups get_diagnostics_gather_groups() - - - -Get the list of valid component group arguments. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_diagnostics_gather_groups() - pprint(api_response) -except ApiException as e: - print("Exception when calling ClusterApi->get_diagnostics_gather_groups: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**DiagnosticsGatherGroups**](DiagnosticsGatherGroups.md) +[**DiagnosticsGatherStatus**](DiagnosticsGatherStatus.md) ### Authorization @@ -1148,23 +1095,23 @@ This endpoint does not need any parameter. -Get the default options for diagnostics gathers. +Get the default options for isi_gather_info. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_diagnostics_gather_settings() @@ -1192,41 +1139,37 @@ This endpoint does not need any parameter. [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_diagnostics_gather_status** -> DiagnosticsGatherStatus get_diagnostics_gather_status(reference=reference) +> DiagnosticsGatherStatus get_diagnostics_gather_status() -Get the list of diagnostic gathers for reference ID(s). +Get the status of isi_gather_info. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -reference = 'reference_example' # str | Comma separated list of reference ID(s) (optional) +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: - api_response = api_instance.get_diagnostics_gather_status(reference=reference) + api_response = api_instance.get_diagnostics_gather_status() pprint(api_response) except ApiException as e: print("Exception when calling ClusterApi->get_diagnostics_gather_status: %s\n" % e) ``` ### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **reference** | **str**| Comma separated list of reference ID(s) | [optional] +This endpoint does not need any parameter. ### Return type @@ -1254,17 +1197,17 @@ Get the status of isi_netlogger. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_diagnostics_netlogger() @@ -1302,17 +1245,17 @@ Get the default options for isi_netlogger. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_diagnostics_netlogger_settings() @@ -1350,17 +1293,17 @@ Get the status of isi_netlogger. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_diagnostics_netlogger_status() @@ -1387,54 +1330,6 @@ This endpoint does not need any parameter. [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **get_iceage_settings** -> IceageSettings get_iceage_settings() - - - -Get the default options for IceAge. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_iceage_settings() - pprint(api_response) -except ApiException as e: - print("Exception when calling ClusterApi->get_iceage_settings: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**IceageSettings**](IceageSettings.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **get_internal_networks_settings** > InternalNetworksSettings get_internal_networks_settings() @@ -1446,17 +1341,17 @@ View backend fabric settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_internal_networks_settings() @@ -1483,54 +1378,6 @@ This endpoint does not need any parameter. [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **get_maintenance_settings** -> MaintenanceSettings get_maintenance_settings() - - - -Get the options for auto maintenance mode. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_maintenance_settings() - pprint(api_response) -except ApiException as e: - print("Exception when calling ClusterApi->get_maintenance_settings: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**MaintenanceSettings**](MaintenanceSettings.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **get_timezone_region** > TimezoneRegions get_timezone_region(timezone_region_id, dir=dir, dst_reset=dst_reset, limit=limit, resume=resume, show_all=show_all, sort=sort) @@ -1542,17 +1389,17 @@ List timezone regions. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) timezone_region_id = 'timezone_region_id_example' # str | List timezone regions. dir = 'dir_example' # str | The direction of the sort. (optional) dst_reset = true # bool | This query arg is not needed in normal use cases. (optional) @@ -1606,17 +1453,17 @@ Retrieve the cluster timezone. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_timezone_settings() @@ -1654,17 +1501,17 @@ Get the cluster acs status ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.list_cluster_acs() @@ -1702,18 +1549,18 @@ Modify the cluster email notification settings. All input fields are optional, ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_email = isilon_sdk.v9_11_0.ClusterEmailExtended() # ClusterEmailExtended | +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cluster_email = isilon_sdk.v9_4_0.ClusterEmailExtended() # ClusterEmailExtended | try: api_instance.update_cluster_email(cluster_email) @@ -1753,18 +1600,18 @@ Modify the login information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_identity = isilon_sdk.v9_11_0.ClusterIdentityExtended() # ClusterIdentityExtended | +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cluster_identity = isilon_sdk.v9_4_0.ClusterIdentityExtended() # ClusterIdentityExtended | try: api_instance.update_cluster_identity(cluster_identity) @@ -1804,18 +1651,18 @@ Modify IP address ranges to be used for internal network configuration. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_internal_networks = isilon_sdk.v9_11_0.ClusterInternalNetworksExtended() # ClusterInternalNetworksExtended | +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cluster_internal_networks = isilon_sdk.v9_4_0.ClusterInternalNetworksExtended() # ClusterInternalNetworksExtended | reboot_confirmation_token = 'reboot_confirmation_token_example' # str | Token returned by earlier PUT call with the same configuration. (optional) try: @@ -1857,18 +1704,18 @@ Modify the cluster contact info settings. All input fields are optional, but on ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_owner = isilon_sdk.v9_11_0.ClusterOwner() # ClusterOwner | +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cluster_owner = isilon_sdk.v9_4_0.ClusterOwner() # ClusterOwner | try: api_instance.update_cluster_owner(cluster_owner) @@ -1908,18 +1755,18 @@ Set cluster time. Time will mostly be synchronized across nodes, but there may ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_time = isilon_sdk.v9_11_0.ClusterTimeExtended() # ClusterTimeExtended | +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cluster_time = isilon_sdk.v9_4_0.ClusterTimeExtended() # ClusterTimeExtended | try: api_instance.update_cluster_time(cluster_time) @@ -1959,18 +1806,18 @@ Set a new timezone for the cluster. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_timezone = isilon_sdk.v9_11_0.ClusterTimezoneExtended() # ClusterTimezoneExtended | +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cluster_timezone = isilon_sdk.v9_4_0.ClusterTimezoneExtended() # ClusterTimezoneExtended | try: api_instance.update_cluster_timezone(cluster_timezone) @@ -2010,18 +1857,18 @@ Modify the list of current lnn(s) with respective new lnn(s) to be used for conf ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_update_lnns = isilon_sdk.v9_11_0.ClusterUpdateLnns() # ClusterUpdateLnns | +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cluster_update_lnns = isilon_sdk.v9_4_0.ClusterUpdateLnns() # ClusterUpdateLnns | try: api_instance.update_cluster_update_lnns(cluster_update_lnns) @@ -2055,24 +1902,24 @@ void (empty response body) -Set the default options for diagnostics gathers. +Set the default options for isi_gather_info. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -diagnostics_gather_settings = isilon_sdk.v9_11_0.DiagnosticsGatherSettingsExtended() # DiagnosticsGatherSettingsExtended | +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +diagnostics_gather_settings = isilon_sdk.v9_4_0.DiagnosticsGatherSettingsExtended() # DiagnosticsGatherSettingsExtended | try: api_instance.update_diagnostics_gather_settings(diagnostics_gather_settings) @@ -2112,18 +1959,18 @@ Set the default options for isi_netlogger. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -diagnostics_netlogger_settings = isilon_sdk.v9_11_0.DiagnosticsNetloggerSettingsSettings() # DiagnosticsNetloggerSettingsSettings | +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +diagnostics_netlogger_settings = isilon_sdk.v9_4_0.DiagnosticsNetloggerSettingsSettings() # DiagnosticsNetloggerSettingsSettings | try: api_instance.update_diagnostics_netlogger_settings(diagnostics_netlogger_settings) @@ -2152,57 +1999,6 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_iceage_settings** -> update_iceage_settings(iceage_settings) - - - -Set the default options for IceAge. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -iceage_settings = isilon_sdk.v9_11_0.IceageSettingsSettings() # IceageSettingsSettings | - -try: - api_instance.update_iceage_settings(iceage_settings) -except ApiException as e: - print("Exception when calling ClusterApi->update_iceage_settings: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **iceage_settings** | [**IceageSettingsSettings**](IceageSettingsSettings.md)| | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **update_internal_networks_preferred_network** > update_internal_networks_preferred_network(internal_networks_preferred_network) @@ -2214,18 +2010,18 @@ Modify the preferred backend network. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -internal_networks_preferred_network = isilon_sdk.v9_11_0.InternalNetworksPreferredNetwork() # InternalNetworksPreferredNetwork | +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +internal_networks_preferred_network = isilon_sdk.v9_4_0.InternalNetworksPreferredNetwork() # InternalNetworksPreferredNetwork | try: api_instance.update_internal_networks_preferred_network(internal_networks_preferred_network) @@ -2265,18 +2061,18 @@ Modify backend fabric settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -internal_networks_settings = isilon_sdk.v9_11_0.InternalNetworksSettingsExtended() # InternalNetworksSettingsExtended | +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +internal_networks_settings = isilon_sdk.v9_4_0.InternalNetworksSettingsExtended() # InternalNetworksSettingsExtended | try: api_instance.update_internal_networks_settings(internal_networks_settings) @@ -2305,57 +2101,6 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_maintenance_settings** -> update_maintenance_settings(maintenance_settings) - - - -Set the options for auto maintenance mode. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -maintenance_settings = isilon_sdk.v9_11_0.MaintenanceSettingsExtended() # MaintenanceSettingsExtended | - -try: - api_instance.update_maintenance_settings(maintenance_settings) -except ApiException as e: - print("Exception when calling ClusterApi->update_maintenance_settings: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **maintenance_settings** | [**MaintenanceSettingsExtended**](MaintenanceSettingsExtended.md)| | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **update_timezone_settings** > update_timezone_settings(timezone_settings) @@ -2367,18 +2112,18 @@ Modify the cluster timezone. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -timezone_settings = isilon_sdk.v9_11_0.TimezoneRegionTimezone() # TimezoneRegionTimezone | +api_instance = isilon_sdk.v9_4_0.ClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +timezone_settings = isilon_sdk.v9_4_0.TimezoneRegionTimezone() # TimezoneRegionTimezone | try: api_instance.update_timezone_settings(timezone_settings) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterArchiveItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterArchiveItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterArchiveItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterArchiveItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterAssessItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterAssessItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterAssessItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterAssessItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterConfig.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterConfig.md similarity index 76% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterConfig.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterConfig.md index cfa8442ee..19abb6400 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterConfig.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterConfig.md @@ -3,14 +3,12 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**availability_zone** | **str** | Availability zone of the queried node | **description** | **str** | Customer configurable description. | **devices** | [**list[ClusterConfigDevice]**](ClusterConfigDevice.md) | | **encoding** | **str** | Default encoding. | **guid** | **str** | Cluster GUID. | **has_quorum** | **bool** | If true, the local node is in a group with quorum: It is communicating, storing, and protecting data normally with other nodes in its group. Under normal circumstances, every node in the cluster is part of one group. | -**is_compliance** | **bool** | If true, the cluster is in compliance mode. Compliance mode clusters do not allow root access and have stricter WORM (Write Once Read Many) features for retaining data in compliance with U.S. Securities and Exchange Commission rule 17a-4. | -**is_powerscale_ve** | **bool** | true if this is a OneFS Powerscale VE cluster | +**is_compliance** | **bool** | If true, the cluster is in compliance mode. Compliance mode clusters do not allow root access and have stricter WORM (Write Once Read Many) features for retaining data in compliance with U.S. Securities and Exchange Commission rule 17a-4. | **is_virtual** | **bool** | true if the cluster is deployed on a desktop VMWorkstation | **is_vonefs** | **bool** | true if this is a vOneFS cluster on an ESXi | **join_mode** | **str** | Node join mode: 'manual' or 'secure'. | @@ -18,9 +16,7 @@ Name | Type | Description | Notes **local_lnn** | **int** | Device logical node number of the queried node. | **local_serial** | **str** | Device serial number of the queried node. | **name** | **str** | Cluster name. | -**node_id** | **str** | Node id of the queried node | **onefs_version** | [**ClusterConfigOnefsVersion**](ClusterConfigOnefsVersion.md) | | [optional] -**region** | **str** | Region of the queried node | **timezone** | [**ClusterConfigTimezone**](ClusterConfigTimezone.md) | The cluster timezone settings. | [optional] **upgrade_type** | **str** | | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterConfigDevice.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterConfigDevice.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterConfigDevice.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterConfigDevice.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterConfigOnefsVersion.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterConfigOnefsVersion.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterConfigOnefsVersion.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterConfigOnefsVersion.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterConfigTimezone.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterConfigTimezone.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterConfigTimezone.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterConfigTimezone.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterDrain.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterDrain.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterDrain.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterDrain.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterDrainList.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterDrainList.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterDrainList.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterDrainList.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterDrainTimeout.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterDrainTimeout.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterDrainTimeout.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterDrainTimeout.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterDrainTimeoutExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterDrainTimeoutExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterDrainTimeoutExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterDrainTimeoutExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterEmail.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterEmail.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterEmail.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterEmail.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterEmailExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterEmailExtended.md similarity index 63% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterEmailExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterEmailExtended.md index 9f19abdba..b6aea50cd 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterEmailExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterEmailExtended.md @@ -3,15 +3,15 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**batch_mode** | **str** | This setting determines how notifications will be batched together to be sent by email. 'none' means each notification will be sent separately. 'severity' means notifications of the same severity will be sent together. 'category' means notifications of the same category will be sent together. 'all' means all notifications will be batched together and sent in a single email. | [optional] +**batch_mode** | **str** | This setting determines how notifications will be batched together to be sent by email. 'none' means each notification will be sent separately. 'severity' means notifications of the same severity will be sent together. 'category' means notifications of the same category will be sent together. 'all' means all notifications will be batched together and sent in a single email. | [optional] **mail_relay** | **str** | The address of the SMTP server to be used for relaying the notification messages. An SMTP server is required in order to send notifications. If this string is empty, no emails will be sent. | [optional] **mail_sender** | **str** | The full email address that will appear as the sender of notification messages. | [optional] **mail_subject** | **str** | The subject line for notification messages from this cluster. | [optional] **smtp_auth_passwd** | **str** | Password to authenticate with if SMTP authentication is being used. | [optional] -**smtp_auth_security** | **str** | The type of secure communication protocol to use if SMTP is being used. If 'none', cleartext will be used for the full SMTP transaction. If 'starttls', Secure SMTP will be used, a connection is begun in cleartext and then upgraded to encryption. If 'smtps', Implicit TLS will be used, TLS encryption is negotiated immediately at connection start. | [optional] +**smtp_auth_security** | **str** | The type of secure communication protocol to use if SMTP is being used. If 'none', plain text will be used, if 'starttls', the encrypted STARTTLS protocol will be used. | [optional] **smtp_auth_username** | **str** | Username to authenticate with if SMTP authentication is being used. | [optional] **smtp_port** | **int** | The port on the SMTP server to be used for relaying the notification messages. | [optional] -**use_smtp_auth** | **bool** | If true, this cluster will send SMTP authentication credentials to the SMTP relay server in order to send its notification emails. If false, the cluster will attempt to send its notification emails without authentication. | [optional] +**use_smtp_auth** | **bool** | If true, this cluster will send SMTP authentication credentials to the SMTP relay server in order to send its notification emails. If false, the cluster will attempt to send its notification emails without authentication. | [optional] **user_template** | **str** | Location of a custom template file that can be used to specify the layout of the notification emails. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterEmailSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterEmailSettings.md similarity index 62% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterEmailSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterEmailSettings.md index 3d34e18e1..b379a9ba6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterEmailSettings.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterEmailSettings.md @@ -3,15 +3,15 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**batch_mode** | **str** | This setting determines how notifications will be batched together to be sent by email. 'none' means each notification will be sent separately. 'severity' means notifications of the same severity will be sent together. 'category' means notifications of the same category will be sent together. 'all' means all notifications will be batched together and sent in a single email. | +**batch_mode** | **str** | This setting determines how notifications will be batched together to be sent by email. 'none' means each notification will be sent separately. 'severity' means notifications of the same severity will be sent together. 'category' means notifications of the same category will be sent together. 'all' means all notifications will be batched together and sent in a single email. | **mail_relay** | **str** | The address of the SMTP server to be used for relaying the notification messages. An SMTP server is required in order to send notifications. If this string is empty, no emails will be sent. | **mail_sender** | **str** | The full email address that will appear as the sender of notification messages. | **mail_subject** | **str** | The subject line for notification messages from this cluster. | **smtp_auth_passwd_set** | **bool** | Indicates if an SMTP authentication password is set. | -**smtp_auth_security** | **str** | The type of secure communication protocol to use if SMTP is being used. If 'none', cleartext will be used for the full SMTP transaction. If 'starttls', Secure SMTP will be used, a connection is begun in cleartext and then upgraded to encryption. If 'smtps', Implicit TLS will be used, TLS encryption is negotiated immediately at connection start. | +**smtp_auth_security** | **str** | The type of secure communication protocol to use if SMTP is being used. If 'none', plain text will be used, if 'starttls', the encrypted STARTTLS protocol will be used. | **smtp_auth_username** | **str** | Username to authenticate with if SMTP authentication is being used. | **smtp_port** | **int** | The port on the SMTP server to be used for relaying the notification messages. | -**use_smtp_auth** | **bool** | If true, this cluster will send SMTP authentication credentials to the SMTP relay server in order to send its notification emails. If false, the cluster will attempt to send its notification emails without authentication. | +**use_smtp_auth** | **bool** | If true, this cluster will send SMTP authentication credentials to the SMTP relay server in order to send its notification emails. If false, the cluster will attempt to send its notification emails without authentication. | **user_template** | **str** | Location of a custom template file that can be used to specify the layout of the notification emails. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterFirmwareAssessItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterFirmwareAssessItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterFirmwareAssessItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterFirmwareAssessItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterFirmwareDevice.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterFirmwareDevice.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterFirmwareDevice.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterFirmwareDevice.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterFirmwareDeviceNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterFirmwareDeviceNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterFirmwareDeviceNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterFirmwareDeviceNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterFirmwareProgress.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterFirmwareProgress.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterFirmwareProgress.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterFirmwareProgress.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterFirmwareStatus.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterFirmwareStatus.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterFirmwareStatus.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterFirmwareStatus.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterFirmwareStatusNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterFirmwareStatusNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterFirmwareStatusNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterFirmwareStatusNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterFirmwareUpgradeItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterFirmwareUpgradeItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterFirmwareUpgradeItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterFirmwareUpgradeItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterIdentity.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterIdentity.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterIdentity.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterIdentity.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterIdentityExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterIdentityExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterIdentityExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterIdentityExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterIdentityLogon.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterIdentityLogon.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterIdentityLogon.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterIdentityLogon.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterIdentityLogonExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterIdentityLogonExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterIdentityLogonExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterIdentityLogonExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterInternalNetworks.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterInternalNetworks.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterInternalNetworks.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterInternalNetworks.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterInternalNetworksExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterInternalNetworksExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterInternalNetworksExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterInternalNetworksExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterInternalNetworksFailoverIpAddresse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterInternalNetworksFailoverIpAddresse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterInternalNetworksFailoverIpAddresse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterInternalNetworksFailoverIpAddresse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterInternalNetworksFailoverIpAddresseExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterInternalNetworksFailoverIpAddresseExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterInternalNetworksFailoverIpAddresseExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterInternalNetworksFailoverIpAddresseExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterInternalNetworksIntAIpAddresse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterInternalNetworksIntAIpAddresse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterInternalNetworksIntAIpAddresse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterInternalNetworksIntAIpAddresse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterInternalNetworksIntAIpAddresseExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterInternalNetworksIntAIpAddresseExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterInternalNetworksIntAIpAddresseExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterInternalNetworksIntAIpAddresseExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterInternalNetworksIntBIpAddresse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterInternalNetworksIntBIpAddresse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterInternalNetworksIntBIpAddresse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterInternalNetworksIntBIpAddresse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterInternalNetworksIntBIpAddresseExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterInternalNetworksIntBIpAddresseExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterInternalNetworksIntBIpAddresseExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterInternalNetworksIntBIpAddresseExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterModeApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterModeApi.md similarity index 82% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterModeApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterModeApi.md index 01b280ee8..1a4572027 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterModeApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterModeApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.ClusterModeApi +# isilon_sdk.v9_4_0.ClusterModeApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -19,17 +19,17 @@ Get cluster mode services settings ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterModeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterModeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_cluster_mode_settings() @@ -67,18 +67,18 @@ Modify cluster mode services settings ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterModeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_mode_settings = isilon_sdk.v9_11_0.ClusterModeSettingsExtended() # ClusterModeSettingsExtended | +api_instance = isilon_sdk.v9_4_0.ClusterModeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cluster_mode_settings = isilon_sdk.v9_4_0.ClusterModeSettingsExtended() # ClusterModeSettingsExtended | try: api_instance.update_cluster_mode_settings(cluster_mode_settings) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterModeSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterModeSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterModeSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterModeSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterModeSettingsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterModeSettingsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterModeSettingsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterModeSettingsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodeDriveDConfig.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodeDriveDConfig.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodeDriveDConfig.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodeDriveDConfig.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodeExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodeExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodeExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodeExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodeHardware.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodeHardware.md similarity index 93% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodeHardware.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodeHardware.md index 1db649521..fc95e2055 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodeHardware.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodeHardware.md @@ -17,8 +17,8 @@ Name | Type | Description | Notes **hwgen** | **str** | PowerScale hardware generation name. | [optional] **infiniband** | **str** | Infiniband card type. | [optional] **lcd_version** | **str** | Version of the LCD panel. | [optional] -**model** | **str** | PowerScale node model identifier string (X410, Infinity-H500, etc.). | [optional] -**model_code** | **str** | PowerScale node model code string (X410, H500, etc.). | [optional] +**model** | **str** | PowerScale node model identifier string (S200, X410, Infinity-H500, etc.). | [optional] +**model_code** | **str** | PowerScale node model code string (S200, X410, H500, etc.). | [optional] **motherboard** | **str** | Manufacturer and model of this node's motherboard. | [optional] **net_interfaces** | **str** | Description of all this node's network interfaces. | [optional] **node_slot_id** | **int** | Position of node within chassis. -1 for error or not supported. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodePartition.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodePartition.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodePartition.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodePartition.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodePartitionStatfs.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodePartitionStatfs.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodePartitionStatfs.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodePartitionStatfs.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodePartitions.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodePartitions.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodePartitions.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodePartitions.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodeSensor.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodeSensor.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodeSensor.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodeSensor.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodeSensorValue.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodeSensorValue.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodeSensorValue.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodeSensorValue.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodeSensors.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodeSensors.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodeSensors.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodeSensors.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodeSled.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodeSled.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodeSled.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodeSled.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodeState.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodeState.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodeState.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodeState.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodeStateExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodeStateExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodeStateExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodeStateExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodeStateServicelight.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodeStateServicelight.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodeStateServicelight.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodeStateServicelight.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodeStateServicelightExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodeStateServicelightExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodeStateServicelightExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodeStateServicelightExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodeStatus.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodeStatus.md similarity index 86% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodeStatus.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodeStatus.md index 3d75067d6..311d43100 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodeStatus.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodeStatus.md @@ -6,7 +6,6 @@ Name | Type | Description | Notes **batterystatus** | [**NodeStatusNodeBatterystatus**](NodeStatusNodeBatterystatus.md) | Battery status information. | [optional] **capacity** | [**list[NodeStatusNodeCapacityItem]**](NodeStatusNodeCapacityItem.md) | Storage capacity of this node. | [optional] **cpu** | [**NodeStatusNodeCpu**](NodeStatusNodeCpu.md) | CPU status information for this node. | [optional] -**drive_security_level** | [**NodeStatusNodeDriveSecurityLevel**](NodeStatusNodeDriveSecurityLevel.md) | Information about this node's drive security level. | [optional] **nvram** | [**NodeStatusNodeNvram**](NodeStatusNodeNvram.md) | Node NVRAM information. | [optional] **powersupplies** | [**NodeStatusNodePowersupplies**](NodeStatusNodePowersupplies.md) | Information about this node's power supplies. | [optional] **release** | **str** | OneFS release. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodes.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodes.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodes.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodes.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodesApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodesApi.md similarity index 82% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodesApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodesApi.md index 79c89008e..a96ed896b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodesApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodesApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.ClusterNodesApi +# isilon_sdk.v9_4_0.ClusterNodesApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -14,11 +14,11 @@ Method | HTTP request | Description [**create_node_reboot_item**](ClusterNodesApi.md#create_node_reboot_item) | **POST** /platform/5/cluster/nodes/{Lnn}/reboot | [**create_node_shutdown_item**](ClusterNodesApi.md#create_node_shutdown_item) | **POST** /platform/5/cluster/nodes/{Lnn}/shutdown | [**get_drives_drive_firmware**](ClusterNodesApi.md#get_drives_drive_firmware) | **GET** /platform/7/cluster/nodes/{Lnn}/drives/{Driveid}/firmware | -[**get_node_drive**](ClusterNodesApi.md#get_node_drive) | **GET** /platform/16/cluster/nodes/{Lnn}/drives/{NodeDriveId} | +[**get_node_drive**](ClusterNodesApi.md#get_node_drive) | **GET** /platform/15/cluster/nodes/{Lnn}/drives/{NodeDriveId} | [**get_node_driveconfig**](ClusterNodesApi.md#get_node_driveconfig) | **GET** /platform/14/cluster/nodes/{Lnn}/driveconfig | -[**get_node_drives**](ClusterNodesApi.md#get_node_drives) | **GET** /platform/16/cluster/nodes/{Lnn}/drives | +[**get_node_drives**](ClusterNodesApi.md#get_node_drives) | **GET** /platform/15/cluster/nodes/{Lnn}/drives | [**get_node_drives_purposelist**](ClusterNodesApi.md#get_node_drives_purposelist) | **GET** /platform/3/cluster/nodes/{Lnn}/drives-purposelist | -[**get_node_hardware**](ClusterNodesApi.md#get_node_hardware) | **GET** /platform/19/cluster/nodes/{Lnn}/hardware | +[**get_node_hardware**](ClusterNodesApi.md#get_node_hardware) | **GET** /platform/12/cluster/nodes/{Lnn}/hardware | [**get_node_hardware_fast**](ClusterNodesApi.md#get_node_hardware_fast) | **GET** /platform/3/cluster/nodes/{Lnn}/hardware-fast | [**get_node_internal_ip_address**](ClusterNodesApi.md#get_node_internal_ip_address) | **GET** /platform/7/cluster/nodes/{Lnn}/internal-ip-address | [**get_node_partitions**](ClusterNodesApi.md#get_node_partitions) | **GET** /platform/3/cluster/nodes/{Lnn}/partitions | @@ -29,10 +29,9 @@ Method | HTTP request | Description [**get_node_state_readonly**](ClusterNodesApi.md#get_node_state_readonly) | **GET** /platform/3/cluster/nodes/{Lnn}/state/readonly | [**get_node_state_servicelight**](ClusterNodesApi.md#get_node_state_servicelight) | **GET** /platform/12/cluster/nodes/{Lnn}/state/servicelight | [**get_node_state_smartfail**](ClusterNodesApi.md#get_node_state_smartfail) | **GET** /platform/3/cluster/nodes/{Lnn}/state/smartfail | -[**get_node_status**](ClusterNodesApi.md#get_node_status) | **GET** /platform/16/cluster/nodes/{Lnn}/status | +[**get_node_status**](ClusterNodesApi.md#get_node_status) | **GET** /platform/12/cluster/nodes/{Lnn}/status | [**get_node_status_batterystatus**](ClusterNodesApi.md#get_node_status_batterystatus) | **GET** /platform/3/cluster/nodes/{Lnn}/status/batterystatus | [**get_node_status_cpu**](ClusterNodesApi.md#get_node_status_cpu) | **GET** /platform/10/cluster/nodes/{Lnn}/status/cpu | -[**get_node_status_drive_security_level**](ClusterNodesApi.md#get_node_status_drive_security_level) | **GET** /platform/16/cluster/nodes/{Lnn}/status/drive_security_level | [**get_node_status_nvram**](ClusterNodesApi.md#get_node_status_nvram) | **GET** /platform/12/cluster/nodes/{Lnn}/status/nvram | [**get_node_status_powersupplies**](ClusterNodesApi.md#get_node_status_powersupplies) | **GET** /platform/12/cluster/nodes/{Lnn}/status/powersupplies | [**list_drives_drive_firmware_update**](ClusterNodesApi.md#list_drives_drive_firmware_update) | **GET** /platform/3/cluster/nodes/{Lnn}/drives/{Driveid}/firmware/update | @@ -53,18 +52,18 @@ Add a drive to a node. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -drives_drive_add_item = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +drives_drive_add_item = isilon_sdk.v9_4_0.Empty() # Empty | lnn = 56 # int | driveid = 'driveid_example' # str | @@ -109,18 +108,18 @@ Start a drive firmware update. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -drives_drive_firmware_update_item = isilon_sdk.v9_11_0.DrivesDriveFirmwareUpdateItem() # DrivesDriveFirmwareUpdateItem | +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +drives_drive_firmware_update_item = isilon_sdk.v9_4_0.DrivesDriveFirmwareUpdateItem() # DrivesDriveFirmwareUpdateItem | lnn = 56 # int | driveid = 'driveid_example' # str | @@ -165,18 +164,18 @@ Format a drive for use by OneFS. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -drives_drive_format_item = isilon_sdk.v9_11_0.DrivesDriveFormatItem() # DrivesDriveFormatItem | +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +drives_drive_format_item = isilon_sdk.v9_4_0.DrivesDriveFormatItem() # DrivesDriveFormatItem | lnn = 56 # int | driveid = 'driveid_example' # str | @@ -221,18 +220,18 @@ Assign a drive to a specific use case. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -drives_drive_purpose_item = isilon_sdk.v9_11_0.DrivesDrivePurposeItem() # DrivesDrivePurposeItem | +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +drives_drive_purpose_item = isilon_sdk.v9_4_0.DrivesDrivePurposeItem() # DrivesDrivePurposeItem | lnn = 56 # int | driveid = 'driveid_example' # str | @@ -277,18 +276,18 @@ Remove a drive from use by OneFS. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -drives_drive_smartfail_item = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +drives_drive_smartfail_item = isilon_sdk.v9_4_0.Empty() # Empty | lnn = 56 # int | driveid = 'driveid_example' # str | @@ -333,18 +332,18 @@ Stop restriping from a smartfailing drive. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -drives_drive_stopfail_item = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +drives_drive_stopfail_item = isilon_sdk.v9_4_0.Empty() # Empty | lnn = 56 # int | driveid = 'driveid_example' # str | @@ -389,18 +388,18 @@ Temporarily remove a drive from use by OneFS. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -drives_drive_suspend_item = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +drives_drive_suspend_item = isilon_sdk.v9_4_0.Empty() # Empty | lnn = 56 # int | driveid = 'driveid_example' # str | @@ -445,18 +444,18 @@ Reboot the node specified by . ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -node_reboot_item = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +node_reboot_item = isilon_sdk.v9_4_0.Empty() # Empty | lnn = 56 # int | force = true # bool | Force reboot on Infinity platform even if a drive sled is not present. (optional) @@ -501,18 +500,18 @@ Shutdown the node specified by . ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -node_shutdown_item = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +node_shutdown_item = isilon_sdk.v9_4_0.Empty() # Empty | lnn = 56 # int | force = true # bool | Force shutdown on Infinity platform even if a drive sled is not present. (optional) @@ -557,17 +556,17 @@ Retrieve drive firmware information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) lnn = 56 # int | driveid = 'driveid_example' # str | @@ -611,17 +610,17 @@ Retrieve drive information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) node_drive_id = 'node_drive_id_example' # str | Retrieve drive information. lnn = 56 # int | timeout = 8.14 # float | Request timeout (optional) @@ -667,17 +666,17 @@ View a node's drive subsystem XML configuration file. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) lnn = 56 # int | timeout = 8.14 # float | Request timeout (optional) @@ -721,17 +720,17 @@ List the drives on this node. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) lnn = 56 # int | timeout = 8.14 # float | Request timeout (optional) @@ -775,17 +774,17 @@ Lists the available purposes for drives in this node. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) lnn = 56 # int | try: @@ -827,17 +826,17 @@ Retrieve node hardware identity information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) lnn = 56 # int | timeout = 8.14 # float | Request timeout (optional) @@ -881,17 +880,17 @@ Quickly retrieve a subset of node hardware identity information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) lnn = 56 # int | try: @@ -933,17 +932,17 @@ View internal ip address with respect to node. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) lnn = 56 # int | try: @@ -985,17 +984,17 @@ Retrieve node partition information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) lnn = 56 # int | try: @@ -1037,17 +1036,17 @@ Retrieve node sensor information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) lnn = 56 # int | try: @@ -1089,17 +1088,17 @@ Get detailed information for the sled specified by , or all sleds in the ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) node_sled_id = 'node_sled_id_example' # str | Get detailed information for the sled specified by , or all sleds in the case where is 'all', in the node specified by . Accepts in either 'sled' or 'all' formats. lnn = 56 # int | timeout = 8.14 # float | Request timeout (optional) @@ -1145,17 +1144,17 @@ Get detailed information for all sleds in this node. Equivalent to /5/cluster/no ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) lnn = 56 # int | timeout = 8.14 # float | Request timeout (optional) @@ -1199,17 +1198,17 @@ Retrieve node state information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) lnn = 56 # int | try: @@ -1251,17 +1250,17 @@ Retrieve node readonly state information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) lnn = 56 # int | try: @@ -1303,17 +1302,17 @@ Retrieve node service light state information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) lnn = 56 # int | try: @@ -1355,17 +1354,17 @@ Retrieve node smartfail state information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) lnn = 56 # int | try: @@ -1407,17 +1406,17 @@ Retrieve node status information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) lnn = 56 # int | try: @@ -1459,17 +1458,17 @@ Retrieve node battery status information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) lnn = 56 # int | try: @@ -1511,17 +1510,17 @@ Retrieve node CPU status information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) lnn = 56 # int | try: @@ -1552,58 +1551,6 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **get_node_status_drive_security_level** -> NodeStatusDriveSecurityLevel get_node_status_drive_security_level(lnn) - - - -Retrieve node's drive security level information. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -lnn = 56 # int | - -try: - api_response = api_instance.get_node_status_drive_security_level(lnn) - pprint(api_response) -except ApiException as e: - print("Exception when calling ClusterNodesApi->get_node_status_drive_security_level: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **lnn** | **int**| | - -### Return type - -[**NodeStatusDriveSecurityLevel**](NodeStatusDriveSecurityLevel.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **get_node_status_nvram** > NodeStatusNvram get_node_status_nvram(lnn) @@ -1615,17 +1562,17 @@ Retrieve node NVRAM status information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) lnn = 56 # int | try: @@ -1667,17 +1614,17 @@ Retrieve node power supplies status information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) lnn = 56 # int | try: @@ -1719,17 +1666,17 @@ Retrieve firmware update information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) lnn = 56 # int | driveid = 'driveid_example' # str | @@ -1773,18 +1720,18 @@ Modify a node's drive subsystem XML configuration file. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -node_driveconfig = isilon_sdk.v9_11_0.NodeDriveconfigExtended() # NodeDriveconfigExtended | +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +node_driveconfig = isilon_sdk.v9_4_0.NodeDriveconfigExtended() # NodeDriveconfigExtended | lnn = 56 # int | try: @@ -1826,18 +1773,18 @@ Modify one or more node readonly state settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -node_state_readonly = isilon_sdk.v9_11_0.NodeStateNodeReadonly() # NodeStateNodeReadonly | +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +node_state_readonly = isilon_sdk.v9_4_0.NodeStateNodeReadonly() # NodeStateNodeReadonly | lnn = 56 # int | try: @@ -1879,18 +1826,18 @@ Modify one or more node service light state settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -node_state_servicelight = isilon_sdk.v9_11_0.NodeStateServicelightExtended() # NodeStateServicelightExtended | +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +node_state_servicelight = isilon_sdk.v9_4_0.NodeStateServicelightExtended() # NodeStateServicelightExtended | lnn = 56 # int | try: @@ -1932,18 +1879,18 @@ Modify smartfail state of the node. Only the 'smartfailed' body member has any ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ClusterNodesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -node_state_smartfail = isilon_sdk.v9_11_0.NodeStateNodeSmartfail() # NodeStateNodeSmartfail | +api_instance = isilon_sdk.v9_4_0.ClusterNodesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +node_state_smartfail = isilon_sdk.v9_4_0.NodeStateNodeSmartfail() # NodeStateNodeSmartfail | lnn = 56 # int | try: diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodesAvailable.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodesAvailable.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodesAvailable.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodesAvailable.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodesAvailableNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodesAvailableNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodesAvailableNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodesAvailableNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodesError.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodesError.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodesError.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodesError.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodesExtendedExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodesExtendedExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodesExtendedExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodesExtendedExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodesExtendedExtendedExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodesExtendedExtendedExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodesExtendedExtendedExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodesExtendedExtendedExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodesOnefsVersion.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodesOnefsVersion.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterNodesOnefsVersion.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterNodesOnefsVersion.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterOwner.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterOwner.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterOwner.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterOwner.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterPatchPatch.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterPatchPatch.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterPatchPatch.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterPatchPatch.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterPatchPatches.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterPatchPatches.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterPatchPatches.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterPatchPatches.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterPatchPatchesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterPatchPatchesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterPatchPatchesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterPatchPatchesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterPatchPatchesPatch.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterPatchPatchesPatch.md similarity index 77% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterPatchPatchesPatch.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterPatchPatchesPatch.md index ca23dda76..0cfc5df40 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterPatchPatchesPatch.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterPatchPatchesPatch.md @@ -7,12 +7,12 @@ Name | Type | Description | Notes **conflicts** | **list[str]** | Other patches that this patch conflicts with. | [optional] **dependencies** | **list[str]** | Other patches that this patch depends on. | [optional] **description** | **str** | A short description of the patch. | [optional] -**files** | [**list[HealthcheckDefinitionFile]**](HealthcheckDefinitionFile.md) | The files contained in this patch. | [optional] +**files** | [**list[ClusterPatchPatchesPatchFile]**](ClusterPatchPatchesPatchFile.md) | The files contained in this patch. | [optional] **id** | **str** | A unique identifier for the patch. | [optional] **name** | **str** | The name of the patch. | [optional] **nodes** | **list[int]** | The nodes that this patch is installed on. | [optional] **reboot** | **str** | Describes the reboot requirements | [optional] -**services** | [**list[HealthcheckDefinitionService]**](HealthcheckDefinitionService.md) | The services affected during the patch deployment | [optional] +**services** | [**list[ClusterPatchPatchesPatchService]**](ClusterPatchPatchesPatchService.md) | The services affected during the patch deployment | [optional] **status** | **str** | The installation status of this patch on the cluster. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckDefinitionFile.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterPatchPatchesPatchFile.md similarity index 92% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckDefinitionFile.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterPatchPatchesPatchFile.md index daad6f765..3b180a002 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckDefinitionFile.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterPatchPatchesPatchFile.md @@ -1,4 +1,4 @@ -# HealthcheckDefinitionFile +# ClusterPatchPatchesPatchFile ## Properties Name | Type | Description | Notes diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckDefinitionService.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterPatchPatchesPatchService.md similarity index 92% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckDefinitionService.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterPatchPatchesPatchService.md index ef7cf0be6..3d346a2be 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckDefinitionService.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterPatchPatchesPatchService.md @@ -1,4 +1,4 @@ -# HealthcheckDefinitionService +# ClusterPatchPatchesPatchService ## Properties Name | Type | Description | Notes diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterRetryLastActionItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterRetryLastActionItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterRetryLastActionItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterRetryLastActionItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterServices.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterServices.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterServices.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterServices.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterServicesNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterServicesNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterServicesNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterServicesNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterServicesNodeService.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterServicesNodeService.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterServicesNodeService.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterServicesNodeService.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterStatfs.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterStatfs.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterStatfs.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterStatfs.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterTime.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterTime.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterTime.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterTime.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterTimeExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterTimeExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterTimeExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterTimeExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterTimeExtendedExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterTimeExtendedExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterTimeExtendedExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterTimeExtendedExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterTimeNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterTimeNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterTimeNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterTimeNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterTimezone.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterTimezone.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterTimezone.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterTimezone.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterTimezoneExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterTimezoneExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterTimezoneExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterTimezoneExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterTimezoneSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterTimezoneSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterTimezoneSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterTimezoneSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterTimezoneSettingsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterTimezoneSettingsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterTimezoneSettingsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterTimezoneSettingsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterUnblock.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterUnblock.md similarity index 87% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterUnblock.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterUnblock.md index 0657b6ecb..e0bcdd20c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterUnblock.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterUnblock.md @@ -3,7 +3,6 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**network_pools** | **bool** | | [optional] **unblock** | **bool** | | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterUpdateLnns.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterUpdateLnns.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterUpdateLnns.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterUpdateLnns.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterUpdateLnnsLnn.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterUpdateLnnsLnn.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterUpdateLnnsLnn.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterUpdateLnnsLnn.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterUpgrade.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterUpgrade.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterUpgrade.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterUpgrade.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterUpgradeItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterUpgradeItem.md similarity index 95% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterUpgradeItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterUpgradeItem.md index 2fbb649c4..0a410f532 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterUpgradeItem.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterUpgradeItem.md @@ -16,7 +16,7 @@ Name | Type | Description | Notes **no_burn** | **bool** | Do not burn the firmware. | [optional] **nodes_to_rolling_upgrade** | **list[int]** | The nodes (to be) scheduled for upgrade ordered by queue position number. Null if the cluster_state is 'partially upgraded' or upgrade_type is 'simultaneous'. One of the following values: [<lnn-1>, <lnn-2>, ... ], 'all', null | [optional] **patch_paths** | **list[str]** | List of additional patches to install during the upgrade. | [optional] -**skip_optional** | **bool** | Used to indicate that the optional pre-upgrade checks should notbe skipped. | [optional] +**skip_optional** | **bool** | Used to indicate that the pre-upgrade check should be skipped. | [optional] **upgrade_type** | **str** | The type of upgrade to perform. One of the following values: 'rolling', 'simultaneous, parallel' | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterVersion.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterVersion.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterVersion.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterVersion.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterVersionNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterVersionNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterVersionNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ClusterVersionNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigApi.md similarity index 55% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigApi.md index 5e38413be..c6b69b540 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigApi.md @@ -1,17 +1,15 @@ -# isilon_sdk.v9_11_0.ConfigApi +# isilon_sdk.v9_4_0.ConfigApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* Method | HTTP request | Description ------------- | ------------- | ------------- -[**create_config_export**](ConfigApi.md#create_config_export) | **POST** /platform/20/config/exports | -[**create_config_import**](ConfigApi.md#create_config_import) | **POST** /platform/20/config/imports | -[**get_config_config_lock**](ConfigApi.md#get_config_config_lock) | **GET** /platform/18/config/config-lock | -[**get_config_export**](ConfigApi.md#get_config_export) | **GET** /platform/20/config/exports/{ConfigExportId} | -[**get_config_import**](ConfigApi.md#get_config_import) | **GET** /platform/20/config/imports/{ConfigImportId} | -[**list_config_exports**](ConfigApi.md#list_config_exports) | **GET** /platform/20/config/exports | -[**list_config_imports**](ConfigApi.md#list_config_imports) | **GET** /platform/20/config/imports | -[**update_config_config_lock**](ConfigApi.md#update_config_config_lock) | **PUT** /platform/18/config/config-lock | +[**create_config_export**](ConfigApi.md#create_config_export) | **POST** /platform/12/config/exports | +[**create_config_import**](ConfigApi.md#create_config_import) | **POST** /platform/12/config/imports | +[**get_config_export**](ConfigApi.md#get_config_export) | **GET** /platform/12/config/exports/{ConfigExportId} | +[**get_config_import**](ConfigApi.md#get_config_import) | **GET** /platform/12/config/imports/{ConfigImportId} | +[**list_config_exports**](ConfigApi.md#list_config_exports) | **GET** /platform/12/config/exports | +[**list_config_imports**](ConfigApi.md#list_config_imports) | **GET** /platform/12/config/imports | # **create_config_export** @@ -25,18 +23,18 @@ Create a new config export task. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ConfigApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -config_export = isilon_sdk.v9_11_0.ConfigExportCreateParams() # ConfigExportCreateParams | +api_instance = isilon_sdk.v9_4_0.ConfigApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +config_export = isilon_sdk.v9_4_0.ConfigExportCreateParams() # ConfigExportCreateParams | try: api_response = api_instance.create_config_export(config_export) @@ -77,18 +75,18 @@ Create a new config import task. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ConfigApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -config_import = isilon_sdk.v9_11_0.ConfigImportCreateParams() # ConfigImportCreateParams | +api_instance = isilon_sdk.v9_4_0.ConfigApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +config_import = isilon_sdk.v9_4_0.ConfigImportCreateParams() # ConfigImportCreateParams | try: api_response = api_instance.create_config_import(config_import) @@ -118,54 +116,6 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **get_config_config_lock** -> ConfigConfigLock get_config_config_lock() - - - -Get configuration lock status. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ConfigApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_config_config_lock() - pprint(api_response) -except ApiException as e: - print("Exception when calling ConfigApi->get_config_config_lock: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**ConfigConfigLock**](ConfigConfigLock.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **get_config_export** > ConfigExports get_config_export(config_export_id) @@ -177,17 +127,17 @@ Retrieve export task information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ConfigApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ConfigApi(isilon_sdk.v9_4_0.ApiClient(configuration)) config_export_id = 'config_export_id_example' # str | Retrieve export task information. try: @@ -229,17 +179,17 @@ Retrieve import task information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ConfigApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ConfigApi(isilon_sdk.v9_4_0.ApiClient(configuration)) config_import_id = 'config_import_id_example' # str | Retrieve import task information. try: @@ -271,7 +221,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **list_config_exports** -> ConfigExports list_config_exports(dir=dir, sort=sort) +> ConfigExports list_config_exports() @@ -281,33 +231,27 @@ List all config export tasks. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ConfigApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -dir = 'dir_example' # str | The direction of the sort. (optional) -sort = 'sort_example' # str | The field that will be used for sorting. (optional) +api_instance = isilon_sdk.v9_4_0.ConfigApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: - api_response = api_instance.list_config_exports(dir=dir, sort=sort) + api_response = api_instance.list_config_exports() pprint(api_response) except ApiException as e: print("Exception when calling ConfigApi->list_config_exports: %s\n" % e) ``` ### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **dir** | **str**| The direction of the sort. | [optional] - **sort** | **str**| The field that will be used for sorting. | [optional] +This endpoint does not need any parameter. ### Return type @@ -325,7 +269,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **list_config_imports** -> ConfigImports list_config_imports(dir=dir, sort=sort) +> ConfigImports list_config_imports() @@ -335,33 +279,27 @@ List all config import tasks. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ConfigApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -dir = 'dir_example' # str | The direction of the sort. (optional) -sort = 'sort_example' # str | The field that will be used for sorting. (optional) +api_instance = isilon_sdk.v9_4_0.ConfigApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: - api_response = api_instance.list_config_imports(dir=dir, sort=sort) + api_response = api_instance.list_config_imports() pprint(api_response) except ApiException as e: print("Exception when calling ConfigApi->list_config_imports: %s\n" % e) ``` ### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **dir** | **str**| The direction of the sort. | [optional] - **sort** | **str**| The field that will be used for sorting. | [optional] +This endpoint does not need any parameter. ### Return type @@ -378,56 +316,3 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_config_config_lock** -> update_config_config_lock(action, config_config_lock) - - - -Enable/Disable configuration lock. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ConfigApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -action = 'action_example' # str | Enable/disable configuration lock -config_config_lock = isilon_sdk.v9_11_0.Empty() # Empty | - -try: - api_instance.update_config_config_lock(action, config_config_lock) -except ApiException as e: - print("Exception when calling ConfigApi->update_config_config_lock: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **action** | **str**| Enable/disable configuration lock | - **config_config_lock** | [**Empty**](Empty.md)| | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigExport.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigExport.md similarity index 88% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigExport.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigExport.md index 878dfb51e..ae17d1a36 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigExport.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigExport.md @@ -6,7 +6,6 @@ Name | Type | Description | Notes **done** | **str** | All finished components. | [optional] **failed** | **str** | All failed components. | [optional] **id** | **str** | The export ID given to the task. | [optional] -**initiator** | **str** | initiator of the job, combination of devid and process id. | [optional] **message** | **str** | Message of job. | [optional] **path** | **str** | The path where export job's result is stored. | [optional] **pending** | **str** | All components to be exported. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigExportCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigExportCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigExportCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigExportCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigExports.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigExports.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigExports.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigExports.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigFeature.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigFeature.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigFeature.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigFeature.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigFeatureExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigFeatureExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigFeatureExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigFeatureExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigFeatures.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigFeatures.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigFeatures.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigFeatures.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigFeaturesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigFeaturesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigFeaturesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigFeaturesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigImport.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigImport.md similarity index 83% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigImport.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigImport.md index 9072aa02a..1c7f32dce 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigImport.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigImport.md @@ -7,11 +7,9 @@ Name | Type | Description | Notes **export_id** | **str** | The export ID given to the task. | [optional] **failed** | **str** | All failed components. | [optional] **id** | **str** | The import ID given to the task. | [optional] -**initiator** | **str** | Initiator of the job, combination of devid and process id. | [optional] **message** | **str** | Message of job. | [optional] **path** | **str** | The path where import job's result is stored. | [optional] **pending** | **str** | All components to be imported. | [optional] -**skipped** | **str** | Skipped components. | [optional] **status** | **str** | The status of the job. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigImportCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigImportCreateParams.md similarity index 85% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigImportCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigImportCreateParams.md index 84d68278f..42fe0898a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigImportCreateParams.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigImportCreateParams.md @@ -5,7 +5,6 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **components** | **str** | Specifies the components which will be imported. | [optional] **export_id** | **str** | The export ID given to the task. | -**rules** | [**ConfigImportRules**](ConfigImportRules.md) | | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigImports.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigImports.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigImports.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigImports.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigNetwork.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigNetwork.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigNetwork.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigNetwork.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigNetworkNetwork.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigNetworkNetwork.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigNetworkNetwork.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigNetworkNetwork.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigNetworkNetworkRange.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigNetworkNetworkRange.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigNetworkNetworkRange.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigNetworkNetworkRange.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigNodes.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigNodes.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigNodes.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigNodes.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigNodesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigNodesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigNodesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigNodesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigSettingsSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigSettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigSettingsSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigUser.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigUser.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigUser.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigUser.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigUserUser.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigUserUser.md similarity index 76% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigUserUser.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigUserUser.md index fef92c24b..5d7867459 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigUserUser.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ConfigUserUser.md @@ -4,7 +4,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **id** | **int** | The numeric User ID associated with the username. | [optional] -**privilege** | **int** | Specifies the privileges granted to the currently authenticated user. | [optional] +**password** | **str** | Represents the password that customers will use with the IPMI username when authenticating remote IPMI requests. | [optional] **username** | **str** | Represents the username that customers will use when authenticating remote IPMI requests. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CopyErrors.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CopyErrors.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CopyErrors.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CopyErrors.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CopyErrorsCopyErrors.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CopyErrorsCopyErrors.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CopyErrorsCopyErrors.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CopyErrorsCopyErrors.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateAdsProviderSearchItemResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateAdsProviderSearchItemResponse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateAdsProviderSearchItemResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateAdsProviderSearchItemResponse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateAdsProviderSearchItemResponseObject.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateAdsProviderSearchItemResponseObject.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateAdsProviderSearchItemResponseObject.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateAdsProviderSearchItemResponseObject.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateAntivirusScanItemResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateAntivirusScanItemResponse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateAntivirusScanItemResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateAntivirusScanItemResponse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateCloudAccountResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateCloudAccountResponse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateCloudAccountResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateCloudAccountResponse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateCloudJobResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateCloudJobResponse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateCloudJobResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateCloudJobResponse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateCloudPoolResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateCloudPoolResponse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateCloudPoolResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateCloudPoolResponse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateCloudProxyResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateCloudProxyResponse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateCloudProxyResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateCloudProxyResponse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateConfigExportResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateConfigExportResponse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateConfigExportResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateConfigExportResponse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateConfigImportResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateConfigImportResponse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateConfigImportResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateConfigImportResponse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateDatamoverAccountResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateDatamoverAccountResponse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateDatamoverAccountResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateDatamoverAccountResponse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateDatamoverBasePolicyResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateDatamoverBasePolicyResponse.md similarity index 84% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateDatamoverBasePolicyResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateDatamoverBasePolicyResponse.md index 1dcb894cf..e59439821 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateDatamoverBasePolicyResponse.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateDatamoverBasePolicyResponse.md @@ -3,7 +3,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**id** | **int** | The unique base policy identifier. | +**id** | **int** | The unique policy identifier. | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateDatasetFilterResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateDatasetFilterResponse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateDatasetFilterResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateDatasetFilterResponse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateDatasetWorkloadResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateDatasetWorkloadResponse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateDatasetWorkloadResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateDatasetWorkloadResponse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateFilepoolPolicyResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateFilepoolPolicyResponse.md similarity index 85% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateFilepoolPolicyResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateFilepoolPolicyResponse.md index 788f61598..5454fd381 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateFilepoolPolicyResponse.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateFilepoolPolicyResponse.md @@ -3,7 +3,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**id** | **str** | The name of the new policy. | +**id** | **str** | The name of the new policy | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateHardeningApplyItemResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateHardeningApplyItemResponse.md similarity index 70% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateHardeningApplyItemResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateHardeningApplyItemResponse.md index c9b6fe5de..4f3042ae8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateHardeningApplyItemResponse.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateHardeningApplyItemResponse.md @@ -3,7 +3,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**message** | **str** | Message text containing the result of the hardening action. | [optional] +**message** | **str** | Message text indicating if hardening apply operation started successfully or failed to start. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkPing.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateHardeningResolveItemResponse.md similarity index 63% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkPing.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateHardeningResolveItemResponse.md index df8534f98..47555cb7a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkPing.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateHardeningResolveItemResponse.md @@ -1,9 +1,9 @@ -# NetworkPing +# CreateHardeningResolveItemResponse ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**ping** | [**NetworkPingPing**](NetworkPingPing.md) | | [optional] +**message** | **str** | Message text indicating if operation to resolve issues started successfully or failed to start. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateHardeningRevertItemResponse.md similarity index 61% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateHardeningRevertItemResponse.md index e8f9f0738..5913d51d7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesSettings.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateHardeningRevertItemResponse.md @@ -1,9 +1,9 @@ -# CertificatesSettings +# CreateHardeningRevertItemResponse ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**settings** | [**CertificatesSettingsSettings**](CertificatesSettingsSettings.md) | Manage Datamover TLS settings | [optional] +**message** | **str** | Message text indicating if hardening revert operation started successfully or failed or start. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateHardwareTapeNameResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateHardwareTapeNameResponse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateHardwareTapeNameResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateHardwareTapeNameResponse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateHardwareTapeNameResponseNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateHardwareTapeNameResponseNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateHardwareTapeNameResponseNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateHardwareTapeNameResponseNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateHardwareTapeNameResponseNodeRescanReportItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateHardwareTapeNameResponseNodeRescanReportItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateHardwareTapeNameResponseNodeRescanReportItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateHardwareTapeNameResponseNodeRescanReportItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateJobJobResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateJobJobResponse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateJobJobResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateJobJobResponse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateKmipServerVerifyItemResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateKmipServerVerifyItemResponse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateKmipServerVerifyItemResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateKmipServerVerifyItemResponse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateKmipServerVerifyItemResponseNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateKmipServerVerifyItemResponseNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateKmipServerVerifyItemResponseNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateKmipServerVerifyItemResponseNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateNfsAliasResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateNfsAliasResponse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateNfsAliasResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateNfsAliasResponse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateNfsNlmSessionsCheckItemResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateNfsNlmSessionsCheckItemResponse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateNfsNlmSessionsCheckItemResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateNfsNlmSessionsCheckItemResponse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreatePerformanceDatasetResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreatePerformanceDatasetResponse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreatePerformanceDatasetResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreatePerformanceDatasetResponse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateQuotaReportResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateQuotaReportResponse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateQuotaReportResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateQuotaReportResponse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateResponse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateResponse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateS3KeyResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateS3KeyResponse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateS3KeyResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateS3KeyResponse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateS3KeyResponseKeys.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateS3KeyResponseKeys.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateS3KeyResponseKeys.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateS3KeyResponseKeys.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterRekeyExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateSedMigrateItemResponse.md similarity index 65% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterRekeyExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateSedMigrateItemResponse.md index 15f5af477..607ec29cf 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterRekeyExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateSedMigrateItemResponse.md @@ -1,9 +1,9 @@ -# ClusterRekeyExtended +# CreateSedMigrateItemResponse ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**key_rotation** | **int** | The amount of time in seconds between changing the provider master passphrase. | [optional] +**settings** | [**CreateSedMigrateItemResponseSettings**](CreateSedMigrateItemResponseSettings.md) | | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateSedMigrateItemResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateSedMigrateItemResponseSettings.md similarity index 90% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateSedMigrateItemResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateSedMigrateItemResponseSettings.md index 3c02cd50d..a6ff8a5d0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateSedMigrateItemResponse.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateSedMigrateItemResponseSettings.md @@ -1,4 +1,4 @@ -# CreateSedMigrateItemResponse +# CreateSedMigrateItemResponseSettings ## Properties Name | Type | Description | Notes diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateSmbLogLevelFilterResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateSmbLogLevelFilterResponse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateSmbLogLevelFilterResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateSmbLogLevelFilterResponse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateSmbShareResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateSmbShareResponse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateSmbShareResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateSmbShareResponse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateSnapshotAliasResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateSnapshotAliasResponse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateSnapshotAliasResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateSnapshotAliasResponse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateSnapshotLockResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateSnapshotLockResponse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateSnapshotLockResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateSnapshotLockResponse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateSnapshotScheduleResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateSnapshotScheduleResponse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateSnapshotScheduleResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateSnapshotScheduleResponse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateStoragepoolTierResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateStoragepoolTierResponse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateStoragepoolTierResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateStoragepoolTierResponse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateSyncReportsRotateItemResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateSyncReportsRotateItemResponse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateSyncReportsRotateItemResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateSyncReportsRotateItemResponse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateThrottlingBwRuleResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/CreateThrottlingBwRuleResponse.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateThrottlingBwRuleResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/CreateThrottlingBwRuleResponse.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccount.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccount.md similarity index 84% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccount.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccount.md index e44c5cfaa..0bf5040e5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccount.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccount.md @@ -7,10 +7,8 @@ Name | Type | Description | Notes **briefcase** | **str** | An opaque container for storing additional data in this object, e.g. key-value pairs | [optional] **credentials** | [**DatamoverAccountCredentials**](DatamoverAccountCredentials.md) | | [optional] **local_network_pool** | **str** | Local platform-specific network restriction | [optional] -**max_sparks** | **int** | The limit of concurrent running tasks for this account per node | [optional] **name** | **str** | Name for this Data Mover account | [optional] **remote_network_pool** | **str** | Remote platform-specific network restriction | [optional] -**storage_class** | **str** | The storage class of different cloud accounts. | [optional] **uri** | **str** | A valid URI pointing to the data storage | [optional] **version** | **int** | Version number of the config store when this object was edited. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccountCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccountCreateParams.md similarity index 61% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccountCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccountCreateParams.md index aa53d81fa..2814dc1c8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccountCreateParams.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccountCreateParams.md @@ -6,12 +6,9 @@ Name | Type | Description | Notes **account_type** | **str** | Type of the data storage account | **briefcase** | **str** | An opaque container for storing additional data in this object, e.g. key-value pairs | [optional] **credentials** | [**DatamoverAccountCredentials**](DatamoverAccountCredentials.md) | | [optional] -**enforce_sse** | **bool** | Enforce Server-Side Encryption to make sure that data-at-rest is encrypted in the bucket. Only supported for DM AWS-S3 cloud accounts. SSE-S3, SSE-KMS and DSSE-KMS encryption algorithm types are supported on bucket. Warning: The Data Mover Copy Job will fail unless the target bucket exists and has supported encryption enabled. | [optional] **local_network_pool** | **str** | Local platform-specific network restriction | [optional] -**max_sparks** | **int** | The limit of concurrent running tasks for this account per node | [optional] **name** | **str** | Name for this Data Mover account | **remote_network_pool** | **str** | Remote platform-specific network restriction | [optional] -**storage_class** | **str** | The storage class of different cloud accounts. | [optional] **uri** | **str** | A valid URI pointing to the data storage | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccountCredentials.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccountCredentials.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccountCredentials.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccountCredentials.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccountCredentialsCertificate.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccountCredentialsCertificate.md similarity index 81% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccountCredentialsCertificate.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccountCredentialsCertificate.md index 45fd7dd7c..312d0a3c1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccountCredentialsCertificate.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccountCredentialsCertificate.md @@ -5,6 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **ca_certificate_id** | **str** | Unique CA certificate identifier. | [optional] **client_certificate_id** | **str** | Unique client certificate identifier. | [optional] +**enable_encryption** | **bool** | Whether to enable encryption over the communication channel | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccountCredentialsCertificateExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccountCredentialsCertificateExtended.md similarity index 81% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccountCredentialsCertificateExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccountCredentialsCertificateExtended.md index c55a27a3f..25a9f51a8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccountCredentialsCertificateExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccountCredentialsCertificateExtended.md @@ -5,6 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **ca_certificate_id** | **str** | Unique CA certificate identifier. | [optional] **client_certificate_id** | **str** | Unique client certificate identifier. | [optional] +**enable_encryption** | **bool** | Whether to enable encryption over the communication channel | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccountCredentialsCloud.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccountCredentialsCloud.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccountCredentialsCloud.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccountCredentialsCloud.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccountCredentialsCloudExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccountCredentialsCloudExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccountCredentialsCloudExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccountCredentialsCloudExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccountCredentialsCloudProxy.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccountCredentialsCloudProxy.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccountCredentialsCloudProxy.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccountCredentialsCloudProxy.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccountCredentialsCloudProxyExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccountCredentialsCloudProxyExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccountCredentialsCloudProxyExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccountCredentialsCloudProxyExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccountCredentialsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccountCredentialsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccountCredentialsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccountCredentialsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccountExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccountExtended.md similarity index 65% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccountExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccountExtended.md index 2224feab4..e190626ab 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccountExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccountExtended.md @@ -6,13 +6,10 @@ Name | Type | Description | Notes **account_type** | **str** | Type of the data storage account | [optional] **briefcase** | **str** | An opaque container for storing additional data in this object, e.g. key-value pairs | [optional] **credentials** | [**DatamoverAccountCredentialsExtended**](DatamoverAccountCredentialsExtended.md) | | [optional] -**enforce_sse** | **bool** | Enforce Server-Side Encryption to make sure that data-at-rest is encrypted in the bucket. Only supported for DM AWS-S3 cloud accounts. SSE-S3, SSE-KMS and DSSE-KMS encryption algorithm types are supported on bucket. Warning: The Data Mover Copy Job will fail unless the target bucket exists and has supported encryption enabled. | [optional] **id** | **str** | Unique account ID | [optional] **local_network_pool** | **str** | Local platform-specific network restriction | [optional] -**max_sparks** | **int** | The limit of concurrent running tasks for this account per node | [optional] **name** | **str** | Name for this Data Mover account | **remote_network_pool** | **str** | Remote platform-specific network restriction | [optional] -**storage_class** | **str** | The storage class of different cloud accounts. | [optional] **uri** | **str** | A valid URI pointing to the data storage | [optional] **version** | **int** | Version number of the config store when this object was edited. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccounts.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccounts.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccounts.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccounts.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccountsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccountsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverAccountsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverAccountsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverApi.md similarity index 61% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverApi.md index 5b6fb1c30..e2a2a1471 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverApi.md @@ -1,59 +1,46 @@ -# isilon_sdk.v9_11_0.DatamoverApi +# isilon_sdk.v9_4_0.DatamoverApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* Method | HTTP request | Description ------------- | ------------- | ------------- -[**create_certificates_ca_item**](DatamoverApi.md#create_certificates_ca_item) | **POST** /platform/18/datamover/certificates/ca | -[**create_certificates_identity_item**](DatamoverApi.md#create_certificates_identity_item) | **POST** /platform/18/datamover/certificates/identity | -[**create_datamover_account**](DatamoverApi.md#create_datamover_account) | **POST** /platform/22/datamover/accounts | +[**create_certificates_ca_item**](DatamoverApi.md#create_certificates_ca_item) | **POST** /platform/15/datamover/certificates/ca | +[**create_certificates_identity_item**](DatamoverApi.md#create_certificates_identity_item) | **POST** /platform/15/datamover/certificates/identity | +[**create_datamover_account**](DatamoverApi.md#create_datamover_account) | **POST** /platform/15/datamover/accounts | [**create_datamover_base_policy**](DatamoverApi.md#create_datamover_base_policy) | **POST** /platform/15/datamover/base-policies | -[**create_datamover_policy**](DatamoverApi.md#create_datamover_policy) | **POST** /platform/22/datamover/policies | +[**create_datamover_policy**](DatamoverApi.md#create_datamover_policy) | **POST** /platform/15/datamover/policies | [**create_throttling_bw_rule**](DatamoverApi.md#create_throttling_bw_rule) | **POST** /platform/15/datamover/throttling/bw-rules | -[**delete_certificates_ca_by_id**](DatamoverApi.md#delete_certificates_ca_by_id) | **DELETE** /platform/18/datamover/certificates/ca/{CertificatesCaId} | -[**delete_certificates_identity_by_id**](DatamoverApi.md#delete_certificates_identity_by_id) | **DELETE** /platform/18/datamover/certificates/identity/{CertificatesIdentityId} | -[**delete_datamover_account**](DatamoverApi.md#delete_datamover_account) | **DELETE** /platform/22/datamover/accounts/{DatamoverAccountId} | +[**delete_certificates_ca_by_id**](DatamoverApi.md#delete_certificates_ca_by_id) | **DELETE** /platform/15/datamover/certificates/ca/{CertificatesCaId} | +[**delete_certificates_identity_by_id**](DatamoverApi.md#delete_certificates_identity_by_id) | **DELETE** /platform/15/datamover/certificates/identity/{CertificatesIdentityId} | +[**delete_datamover_account**](DatamoverApi.md#delete_datamover_account) | **DELETE** /platform/15/datamover/accounts/{DatamoverAccountId} | [**delete_datamover_base_policy**](DatamoverApi.md#delete_datamover_base_policy) | **DELETE** /platform/15/datamover/base-policies/{DatamoverBasePolicyId} | -[**delete_datamover_historical_jobs**](DatamoverApi.md#delete_datamover_historical_jobs) | **DELETE** /platform/18/datamover/historical-jobs | -[**delete_datamover_policy**](DatamoverApi.md#delete_datamover_policy) | **DELETE** /platform/22/datamover/policies/{DatamoverPolicyId} | -[**delete_datamover_reports**](DatamoverApi.md#delete_datamover_reports) | **DELETE** /platform/21/datamover/reports | +[**delete_datamover_historical_jobs**](DatamoverApi.md#delete_datamover_historical_jobs) | **DELETE** /platform/15/datamover/historical-jobs | +[**delete_datamover_policy**](DatamoverApi.md#delete_datamover_policy) | **DELETE** /platform/15/datamover/policies/{DatamoverPolicyId} | [**delete_throttling_bw_rule**](DatamoverApi.md#delete_throttling_bw_rule) | **DELETE** /platform/15/datamover/throttling/bw-rules/{ThrottlingBwRuleId} | -[**get_certificates_ca_by_id**](DatamoverApi.md#get_certificates_ca_by_id) | **GET** /platform/18/datamover/certificates/ca/{CertificatesCaId} | -[**get_certificates_identity_by_id**](DatamoverApi.md#get_certificates_identity_by_id) | **GET** /platform/18/datamover/certificates/identity/{CertificatesIdentityId} | -[**get_certificates_settings**](DatamoverApi.md#get_certificates_settings) | **GET** /platform/16/datamover/certificates/settings | -[**get_config_namespace_by_id**](DatamoverApi.md#get_config_namespace_by_id) | **GET** /platform/21/datamover/config/{Namespace}/{ConfigNamespaceId} | -[**get_datamover_account**](DatamoverApi.md#get_datamover_account) | **GET** /platform/22/datamover/accounts/{DatamoverAccountId} | +[**get_certificates_ca_by_id**](DatamoverApi.md#get_certificates_ca_by_id) | **GET** /platform/15/datamover/certificates/ca/{CertificatesCaId} | +[**get_certificates_identity_by_id**](DatamoverApi.md#get_certificates_identity_by_id) | **GET** /platform/15/datamover/certificates/identity/{CertificatesIdentityId} | +[**get_datamover_account**](DatamoverApi.md#get_datamover_account) | **GET** /platform/15/datamover/accounts/{DatamoverAccountId} | [**get_datamover_base_policy**](DatamoverApi.md#get_datamover_base_policy) | **GET** /platform/15/datamover/base-policies/{DatamoverBasePolicyId} | -[**get_datamover_config**](DatamoverApi.md#get_datamover_config) | **GET** /platform/21/datamover/config | -[**get_datamover_config_namespace**](DatamoverApi.md#get_datamover_config_namespace) | **GET** /platform/21/datamover/config/{DatamoverConfigNamespace} | -[**get_datamover_dataset**](DatamoverApi.md#get_datamover_dataset) | **GET** /platform/19/datamover/datasets/{DatamoverDatasetId} | -[**get_datamover_datasets**](DatamoverApi.md#get_datamover_datasets) | **GET** /platform/19/datamover/datasets | -[**get_datamover_historical_jobs**](DatamoverApi.md#get_datamover_historical_jobs) | **GET** /platform/18/datamover/historical-jobs | -[**get_datamover_job**](DatamoverApi.md#get_datamover_job) | **GET** /platform/21/datamover/jobs/{DatamoverJobId} | -[**get_datamover_jobs**](DatamoverApi.md#get_datamover_jobs) | **GET** /platform/21/datamover/jobs | -[**get_datamover_policy**](DatamoverApi.md#get_datamover_policy) | **GET** /platform/22/datamover/policies/{DatamoverPolicyId} | -[**get_datamover_report**](DatamoverApi.md#get_datamover_report) | **GET** /platform/21/datamover/reports/{DatamoverReportId} | -[**get_datamover_reports**](DatamoverApi.md#get_datamover_reports) | **GET** /platform/21/datamover/reports | -[**get_network_discover_accid**](DatamoverApi.md#get_network_discover_accid) | **GET** /platform/17/datamover/network/discover/{NetworkDiscoverAccid} | -[**get_network_ping_accid**](DatamoverApi.md#get_network_ping_accid) | **GET** /platform/17/datamover/network/ping/{NetworkPingAccid} | -[**get_settings_reports**](DatamoverApi.md#get_settings_reports) | **GET** /platform/21/datamover/settings/reports | +[**get_datamover_dataset**](DatamoverApi.md#get_datamover_dataset) | **GET** /platform/15/datamover/datasets/{DatamoverDatasetId} | +[**get_datamover_datasets**](DatamoverApi.md#get_datamover_datasets) | **GET** /platform/15/datamover/datasets | +[**get_datamover_historical_jobs**](DatamoverApi.md#get_datamover_historical_jobs) | **GET** /platform/15/datamover/historical-jobs | +[**get_datamover_job**](DatamoverApi.md#get_datamover_job) | **GET** /platform/15/datamover/jobs/{DatamoverJobId} | +[**get_datamover_jobs**](DatamoverApi.md#get_datamover_jobs) | **GET** /platform/15/datamover/jobs | +[**get_datamover_policy**](DatamoverApi.md#get_datamover_policy) | **GET** /platform/15/datamover/policies/{DatamoverPolicyId} | [**get_throttling_bw_rule**](DatamoverApi.md#get_throttling_bw_rule) | **GET** /platform/15/datamover/throttling/bw-rules/{ThrottlingBwRuleId} | [**get_throttling_settings**](DatamoverApi.md#get_throttling_settings) | **GET** /platform/15/datamover/throttling/settings | -[**list_certificates_ca**](DatamoverApi.md#list_certificates_ca) | **GET** /platform/18/datamover/certificates/ca | -[**list_certificates_identity**](DatamoverApi.md#list_certificates_identity) | **GET** /platform/18/datamover/certificates/identity | -[**list_datamover_accounts**](DatamoverApi.md#list_datamover_accounts) | **GET** /platform/22/datamover/accounts | +[**list_certificates_ca**](DatamoverApi.md#list_certificates_ca) | **GET** /platform/15/datamover/certificates/ca | +[**list_certificates_identity**](DatamoverApi.md#list_certificates_identity) | **GET** /platform/15/datamover/certificates/identity | +[**list_datamover_accounts**](DatamoverApi.md#list_datamover_accounts) | **GET** /platform/15/datamover/accounts | [**list_datamover_base_policies**](DatamoverApi.md#list_datamover_base_policies) | **GET** /platform/15/datamover/base-policies | -[**list_datamover_policies**](DatamoverApi.md#list_datamover_policies) | **GET** /platform/22/datamover/policies | +[**list_datamover_policies**](DatamoverApi.md#list_datamover_policies) | **GET** /platform/15/datamover/policies | [**list_throttling_bw_rules**](DatamoverApi.md#list_throttling_bw_rules) | **GET** /platform/15/datamover/throttling/bw-rules | -[**update_certificates_ca_by_id**](DatamoverApi.md#update_certificates_ca_by_id) | **PUT** /platform/18/datamover/certificates/ca/{CertificatesCaId} | -[**update_certificates_identity_by_id**](DatamoverApi.md#update_certificates_identity_by_id) | **PUT** /platform/18/datamover/certificates/identity/{CertificatesIdentityId} | -[**update_certificates_settings**](DatamoverApi.md#update_certificates_settings) | **PUT** /platform/16/datamover/certificates/settings | -[**update_config_namespace_by_id**](DatamoverApi.md#update_config_namespace_by_id) | **PUT** /platform/21/datamover/config/{Namespace}/{ConfigNamespaceId} | -[**update_datamover_account**](DatamoverApi.md#update_datamover_account) | **PUT** /platform/22/datamover/accounts/{DatamoverAccountId} | +[**update_certificates_ca_by_id**](DatamoverApi.md#update_certificates_ca_by_id) | **PUT** /platform/15/datamover/certificates/ca/{CertificatesCaId} | +[**update_certificates_identity_by_id**](DatamoverApi.md#update_certificates_identity_by_id) | **PUT** /platform/15/datamover/certificates/identity/{CertificatesIdentityId} | +[**update_datamover_account**](DatamoverApi.md#update_datamover_account) | **PUT** /platform/15/datamover/accounts/{DatamoverAccountId} | [**update_datamover_base_policy**](DatamoverApi.md#update_datamover_base_policy) | **PUT** /platform/15/datamover/base-policies/{DatamoverBasePolicyId} | -[**update_datamover_job**](DatamoverApi.md#update_datamover_job) | **PUT** /platform/21/datamover/jobs/{DatamoverJobId} | -[**update_datamover_policy**](DatamoverApi.md#update_datamover_policy) | **PUT** /platform/22/datamover/policies/{DatamoverPolicyId} | -[**update_settings_reports**](DatamoverApi.md#update_settings_reports) | **PUT** /platform/21/datamover/settings/reports | +[**update_datamover_job**](DatamoverApi.md#update_datamover_job) | **PUT** /platform/15/datamover/jobs/{DatamoverJobId} | +[**update_datamover_policy**](DatamoverApi.md#update_datamover_policy) | **PUT** /platform/15/datamover/policies/{DatamoverPolicyId} | [**update_throttling_bw_rule**](DatamoverApi.md#update_throttling_bw_rule) | **PUT** /platform/15/datamover/throttling/bw-rules/{ThrottlingBwRuleId} | [**update_throttling_settings**](DatamoverApi.md#update_throttling_settings) | **PUT** /platform/15/datamover/throttling/settings | @@ -69,18 +56,18 @@ Import a trusted Datamover TLS CA certificate. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -certificates_ca_item = isilon_sdk.v9_11_0.CertificatesCaItem() # CertificatesCaItem | +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +certificates_ca_item = isilon_sdk.v9_4_0.CertificatesCaItem() # CertificatesCaItem | try: api_response = api_instance.create_certificates_ca_item(certificates_ca_item) @@ -121,18 +108,18 @@ Import a trusted Datamover TLS Identity certificate. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -certificates_identity_item = isilon_sdk.v9_11_0.CertificatesIdentityItem() # CertificatesIdentityItem | +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +certificates_identity_item = isilon_sdk.v9_4_0.CertificatesIdentityItem() # CertificatesIdentityItem | try: api_response = api_instance.create_certificates_identity_item(certificates_identity_item) @@ -173,18 +160,18 @@ Create a new account. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -datamover_account = isilon_sdk.v9_11_0.DatamoverAccountCreateParams() # DatamoverAccountCreateParams | +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +datamover_account = isilon_sdk.v9_4_0.DatamoverAccountCreateParams() # DatamoverAccountCreateParams | try: api_response = api_instance.create_datamover_account(datamover_account) @@ -225,18 +212,18 @@ Create a new Data Mover base policy. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -datamover_base_policy = isilon_sdk.v9_11_0.DatamoverBasePolicyCreateParams() # DatamoverBasePolicyCreateParams | +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +datamover_base_policy = isilon_sdk.v9_4_0.DatamoverBasePolicyCreateParams() # DatamoverBasePolicyCreateParams | try: api_response = api_instance.create_datamover_base_policy(datamover_base_policy) @@ -267,7 +254,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **create_datamover_policy** -> CreateDatamoverPolicyResponse create_datamover_policy(datamover_policy) +> CreateDatamoverBasePolicyResponse create_datamover_policy(datamover_policy) @@ -277,18 +264,18 @@ Create a new datamover policy. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -datamover_policy = isilon_sdk.v9_11_0.DatamoverPolicyCreateParams() # DatamoverPolicyCreateParams | +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +datamover_policy = isilon_sdk.v9_4_0.DatamoverPolicyCreateParams() # DatamoverPolicyCreateParams | try: api_response = api_instance.create_datamover_policy(datamover_policy) @@ -305,7 +292,7 @@ Name | Type | Description | Notes ### Return type -[**CreateDatamoverPolicyResponse**](CreateDatamoverPolicyResponse.md) +[**CreateDatamoverBasePolicyResponse**](CreateDatamoverBasePolicyResponse.md) ### Authorization @@ -329,18 +316,18 @@ Create a new bandwidth throttling rule. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -throttling_bw_rule = isilon_sdk.v9_11_0.ThrottlingBwRuleCreateParams() # ThrottlingBwRuleCreateParams | +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +throttling_bw_rule = isilon_sdk.v9_4_0.ThrottlingBwRuleCreateParams() # ThrottlingBwRuleCreateParams | try: api_response = api_instance.create_throttling_bw_rule(throttling_bw_rule) @@ -381,17 +368,17 @@ Delete a trusted Datamover TLS CA certificate. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) certificates_ca_id = 'certificates_ca_id_example' # str | Delete a trusted Datamover TLS CA certificate. try: @@ -432,17 +419,17 @@ Delete a trusted Datamover TLS Identity certificate. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) certificates_identity_id = 'certificates_identity_id_example' # str | Delete a trusted Datamover TLS Identity certificate. try: @@ -483,17 +470,17 @@ Delete the account. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) datamover_account_id = 'datamover_account_id_example' # str | Delete the account. try: @@ -534,17 +521,17 @@ Delete the base policy. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) datamover_base_policy_id = 'datamover_base_policy_id_example' # str | Delete the base policy. try: @@ -585,17 +572,17 @@ List/Delete finished jobs based on their end time. Capped at 1000. If 'after-tim ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) after_time = 'after_time_example' # str | The time in '%Y-%m-%d %H:%M:%S' format. The year range is 2001-2099. (optional) try: @@ -636,17 +623,17 @@ Delete the policy. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) datamover_policy_id = 'datamover_policy_id_example' # str | Delete the policy. try: @@ -676,57 +663,6 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **delete_datamover_reports** -> delete_datamover_reports(after_time=after_time) - - - -Delete finished jobs based on their end time. Capped at 1000. If 'after-time' is specified, latest 1000 jobs ended after this time will be listed/deleted. If 'after-time' is not specified, latest 1000 jobs finished in last 24 hours will be listed/deleted. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -after_time = 'after_time_example' # str | The time in '%Y-%m-%d %H:%M:%S' format. The year range is 2001-2099. (optional) - -try: - api_instance.delete_datamover_reports(after_time=after_time) -except ApiException as e: - print("Exception when calling DatamoverApi->delete_datamover_reports: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **after_time** | **str**| The time in '%Y-%m-%d %H:%M:%S' format. The year range is 2001-2099. | [optional] - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **delete_throttling_bw_rule** > delete_throttling_bw_rule(throttling_bw_rule_id) @@ -738,17 +674,17 @@ Delete a bandwidth throttling rule. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) throttling_bw_rule_id = 'throttling_bw_rule_id_example' # str | Delete a bandwidth throttling rule. try: @@ -779,7 +715,7 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_certificates_ca_by_id** -> CertificatesSyslog get_certificates_ca_by_id(certificates_ca_id) +> CertificatesCa get_certificates_ca_by_id(certificates_ca_id) @@ -789,515 +725,35 @@ Retrieve a single trusted Datamover TLS CA certificate. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -certificates_ca_id = 'certificates_ca_id_example' # str | Retrieve a single trusted Datamover TLS CA certificate. - -try: - api_response = api_instance.get_certificates_ca_by_id(certificates_ca_id) - pprint(api_response) -except ApiException as e: - print("Exception when calling DatamoverApi->get_certificates_ca_by_id: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **certificates_ca_id** | **str**| Retrieve a single trusted Datamover TLS CA certificate. | - -### Return type - -[**CertificatesSyslog**](CertificatesSyslog.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_certificates_identity_by_id** -> CertificatesIdentity get_certificates_identity_by_id(certificates_identity_id) - - - -Retrieve a single trusted Datamover TLS Identity certificate. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -certificates_identity_id = 'certificates_identity_id_example' # str | Retrieve a single trusted Datamover TLS Identity certificate. - -try: - api_response = api_instance.get_certificates_identity_by_id(certificates_identity_id) - pprint(api_response) -except ApiException as e: - print("Exception when calling DatamoverApi->get_certificates_identity_by_id: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **certificates_identity_id** | **str**| Retrieve a single trusted Datamover TLS Identity certificate. | - -### Return type - -[**CertificatesIdentity**](CertificatesIdentity.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_certificates_settings** -> CertificatesSettings get_certificates_settings() - - - -Retrieve Datamover TLS settings. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_certificates_settings() - pprint(api_response) -except ApiException as e: - print("Exception when calling DatamoverApi->get_certificates_settings: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**CertificatesSettings**](CertificatesSettings.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_config_namespace_by_id** -> ConfigNamespace get_config_namespace_by_id(config_namespace_id, namespace) - - - -Retrieve the manual configuration for a single namespace entry for Datamover. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -config_namespace_id = 'config_namespace_id_example' # str | Retrieve the manual configuration for a single namespace entry for Datamover. -namespace = 'namespace_example' # str | - -try: - api_response = api_instance.get_config_namespace_by_id(config_namespace_id, namespace) - pprint(api_response) -except ApiException as e: - print("Exception when calling DatamoverApi->get_config_namespace_by_id: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **config_namespace_id** | **str**| Retrieve the manual configuration for a single namespace entry for Datamover. | - **namespace** | **str**| | - -### Return type - -[**ConfigNamespace**](ConfigNamespace.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_datamover_account** -> DatamoverAccounts get_datamover_account(datamover_account_id) - - - -Retrieve account information. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -datamover_account_id = 'datamover_account_id_example' # str | Retrieve account information. - -try: - api_response = api_instance.get_datamover_account(datamover_account_id) - pprint(api_response) -except ApiException as e: - print("Exception when calling DatamoverApi->get_datamover_account: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **datamover_account_id** | **str**| Retrieve account information. | - -### Return type - -[**DatamoverAccounts**](DatamoverAccounts.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_datamover_base_policy** -> DatamoverBasePolicies get_datamover_base_policy(datamover_base_policy_id) - - - -Retrieve base policy information. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -datamover_base_policy_id = 'datamover_base_policy_id_example' # str | Retrieve base policy information. - -try: - api_response = api_instance.get_datamover_base_policy(datamover_base_policy_id) - pprint(api_response) -except ApiException as e: - print("Exception when calling DatamoverApi->get_datamover_base_policy: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **datamover_base_policy_id** | **str**| Retrieve base policy information. | - -### Return type - -[**DatamoverBasePolicies**](DatamoverBasePolicies.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_datamover_config** -> DatamoverConfigExtended get_datamover_config(limit=limit, resume=resume) - - - -Retrieve the global manual configuration for Datamover. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -limit = 56 # int | Return no more than this many results at once (see resume). (optional) -resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) - -try: - api_response = api_instance.get_datamover_config(limit=limit, resume=resume) - pprint(api_response) -except ApiException as e: - print("Exception when calling DatamoverApi->get_datamover_config: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **limit** | **int**| Return no more than this many results at once (see resume). | [optional] - **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] - -### Return type - -[**DatamoverConfigExtended**](DatamoverConfigExtended.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_datamover_config_namespace** -> DatamoverConfig get_datamover_config_namespace(datamover_config_namespace, limit=limit, resume=resume) - - - -Retrieve the manual configuration for a single namespace for Datamover. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -datamover_config_namespace = 'datamover_config_namespace_example' # str | Retrieve the manual configuration for a single namespace for Datamover. -limit = 56 # int | Return no more than this many results at once (see resume). (optional) -resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) - -try: - api_response = api_instance.get_datamover_config_namespace(datamover_config_namespace, limit=limit, resume=resume) - pprint(api_response) -except ApiException as e: - print("Exception when calling DatamoverApi->get_datamover_config_namespace: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **datamover_config_namespace** | **str**| Retrieve the manual configuration for a single namespace for Datamover. | - **limit** | **int**| Return no more than this many results at once (see resume). | [optional] - **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] - -### Return type - -[**DatamoverConfig**](DatamoverConfig.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_datamover_dataset** -> DatamoverDatasets get_datamover_dataset(datamover_dataset_id, account_id=account_id) - - - -Retrieve dataset information. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -datamover_dataset_id = 'datamover_dataset_id_example' # str | Retrieve dataset information. -account_id = 'account_id_example' # str | Unique account ID (optional) - -try: - api_response = api_instance.get_datamover_dataset(datamover_dataset_id, account_id=account_id) - pprint(api_response) -except ApiException as e: - print("Exception when calling DatamoverApi->get_datamover_dataset: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **datamover_dataset_id** | **str**| Retrieve dataset information. | - **account_id** | **str**| Unique account ID | [optional] - -### Return type - -[**DatamoverDatasets**](DatamoverDatasets.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_datamover_datasets** -> DatamoverDatasetsExtended get_datamover_datasets(account_id=account_id, base_path=base_path, limit=limit, resume=resume) - - - -List all datasets or retrieve datasets of the specified type. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -account_id = 'account_id_example' # str | Unique account ID (optional) -base_path = 'base_path_example' # str | (optional) -limit = 56 # int | Return no more than this many results at once (see resume). (optional) -resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +certificates_ca_id = 'certificates_ca_id_example' # str | Retrieve a single trusted Datamover TLS CA certificate. try: - api_response = api_instance.get_datamover_datasets(account_id=account_id, base_path=base_path, limit=limit, resume=resume) + api_response = api_instance.get_certificates_ca_by_id(certificates_ca_id) pprint(api_response) except ApiException as e: - print("Exception when calling DatamoverApi->get_datamover_datasets: %s\n" % e) + print("Exception when calling DatamoverApi->get_certificates_ca_by_id: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **account_id** | **str**| Unique account ID | [optional] - **base_path** | **str**| | [optional] - **limit** | **int**| Return no more than this many results at once (see resume). | [optional] - **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] + **certificates_ca_id** | **str**| Retrieve a single trusted Datamover TLS CA certificate. | ### Return type -[**DatamoverDatasetsExtended**](DatamoverDatasetsExtended.md) +[**CertificatesCa**](CertificatesCa.md) ### Authorization @@ -1310,46 +766,46 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **get_datamover_historical_jobs** -> DatamoverHistoricalJobs get_datamover_historical_jobs(after_time=after_time) +# **get_certificates_identity_by_id** +> CertificatesIdentity get_certificates_identity_by_id(certificates_identity_id) -List/Delete finished jobs based on their end time. Capped at 1000. If 'after-time' is specified, latest 1000 jobs ended after this time will be listed/deleted. If 'after-time' is not specified, latest 1000 jobs finished in last 24 hours will be listed/deleted. +Retrieve a single trusted Datamover TLS Identity certificate. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -after_time = 'after_time_example' # str | The time in '%Y-%m-%d %H:%M:%S' format. The year range is 2001-2099. (optional) +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +certificates_identity_id = 'certificates_identity_id_example' # str | Retrieve a single trusted Datamover TLS Identity certificate. try: - api_response = api_instance.get_datamover_historical_jobs(after_time=after_time) + api_response = api_instance.get_certificates_identity_by_id(certificates_identity_id) pprint(api_response) except ApiException as e: - print("Exception when calling DatamoverApi->get_datamover_historical_jobs: %s\n" % e) + print("Exception when calling DatamoverApi->get_certificates_identity_by_id: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **after_time** | **str**| The time in '%Y-%m-%d %H:%M:%S' format. The year range is 2001-2099. | [optional] + **certificates_identity_id** | **str**| Retrieve a single trusted Datamover TLS Identity certificate. | ### Return type -[**DatamoverHistoricalJobs**](DatamoverHistoricalJobs.md) +[**CertificatesIdentity**](CertificatesIdentity.md) ### Authorization @@ -1362,46 +818,46 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **get_datamover_job** -> DatamoverJobs get_datamover_job(datamover_job_id) +# **get_datamover_account** +> DatamoverAccounts get_datamover_account(datamover_account_id) -Retrieve job information. +Retrieve account information. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -datamover_job_id = 'datamover_job_id_example' # str | Retrieve job information. +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +datamover_account_id = 'datamover_account_id_example' # str | Retrieve account information. try: - api_response = api_instance.get_datamover_job(datamover_job_id) + api_response = api_instance.get_datamover_account(datamover_account_id) pprint(api_response) except ApiException as e: - print("Exception when calling DatamoverApi->get_datamover_job: %s\n" % e) + print("Exception when calling DatamoverApi->get_datamover_account: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **datamover_job_id** | **str**| Retrieve job information. | + **datamover_account_id** | **str**| Retrieve account information. | ### Return type -[**DatamoverJobs**](DatamoverJobs.md) +[**DatamoverAccounts**](DatamoverAccounts.md) ### Authorization @@ -1414,48 +870,46 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **get_datamover_jobs** -> DatamoverJobsExtended get_datamover_jobs(limit=limit, resume=resume) +# **get_datamover_base_policy** +> DatamoverBasePolicies get_datamover_base_policy(datamover_base_policy_id) -List all jobs. +Retrieve base policy information. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -limit = 56 # int | Return no more than this many results at once (see resume). (optional) -resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +datamover_base_policy_id = 'datamover_base_policy_id_example' # str | Retrieve base policy information. try: - api_response = api_instance.get_datamover_jobs(limit=limit, resume=resume) + api_response = api_instance.get_datamover_base_policy(datamover_base_policy_id) pprint(api_response) except ApiException as e: - print("Exception when calling DatamoverApi->get_datamover_jobs: %s\n" % e) + print("Exception when calling DatamoverApi->get_datamover_base_policy: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **limit** | **int**| Return no more than this many results at once (see resume). | [optional] - **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] + **datamover_base_policy_id** | **str**| Retrieve base policy information. | ### Return type -[**DatamoverJobsExtended**](DatamoverJobsExtended.md) +[**DatamoverBasePolicies**](DatamoverBasePolicies.md) ### Authorization @@ -1468,46 +922,48 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **get_datamover_policy** -> DatamoverPolicies get_datamover_policy(datamover_policy_id) +# **get_datamover_dataset** +> DatamoverDatasets get_datamover_dataset(datamover_dataset_id, account_id=account_id) -Retrieve policy information. +Retrieve dataset information. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -datamover_policy_id = 'datamover_policy_id_example' # str | Retrieve policy information. +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +datamover_dataset_id = 'datamover_dataset_id_example' # str | Retrieve dataset information. +account_id = 'account_id_example' # str | Unique account ID (optional) try: - api_response = api_instance.get_datamover_policy(datamover_policy_id) + api_response = api_instance.get_datamover_dataset(datamover_dataset_id, account_id=account_id) pprint(api_response) except ApiException as e: - print("Exception when calling DatamoverApi->get_datamover_policy: %s\n" % e) + print("Exception when calling DatamoverApi->get_datamover_dataset: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **datamover_policy_id** | **str**| Retrieve policy information. | + **datamover_dataset_id** | **str**| Retrieve dataset information. | + **account_id** | **str**| Unique account ID | [optional] ### Return type -[**DatamoverPolicies**](DatamoverPolicies.md) +[**DatamoverDatasets**](DatamoverDatasets.md) ### Authorization @@ -1520,46 +976,52 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **get_datamover_report** -> DatamoverJobs get_datamover_report(datamover_report_id) +# **get_datamover_datasets** +> DatamoverDatasetsExtended get_datamover_datasets(account_id=account_id, base_path=base_path, limit=limit, resume=resume) -Retrieve job information. +List all datasets or retrieve datasets of the specified type. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -datamover_report_id = 'datamover_report_id_example' # str | Retrieve job information. +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +account_id = 'account_id_example' # str | Unique account ID (optional) +base_path = 'base_path_example' # str | (optional) +limit = 56 # int | Return no more than this many results at once (see resume). (optional) +resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) try: - api_response = api_instance.get_datamover_report(datamover_report_id) + api_response = api_instance.get_datamover_datasets(account_id=account_id, base_path=base_path, limit=limit, resume=resume) pprint(api_response) except ApiException as e: - print("Exception when calling DatamoverApi->get_datamover_report: %s\n" % e) + print("Exception when calling DatamoverApi->get_datamover_datasets: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **datamover_report_id** | **str**| Retrieve job information. | + **account_id** | **str**| Unique account ID | [optional] + **base_path** | **str**| | [optional] + **limit** | **int**| Return no more than this many results at once (see resume). | [optional] + **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] ### Return type -[**DatamoverJobs**](DatamoverJobs.md) +[**DatamoverDatasetsExtended**](DatamoverDatasetsExtended.md) ### Authorization @@ -1572,37 +1034,35 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **get_datamover_reports** -> DatamoverJobsExtended get_datamover_reports(after_time=after_time, limit=limit, resume=resume) +# **get_datamover_historical_jobs** +> DatamoverHistoricalJobs get_datamover_historical_jobs(after_time=after_time) -List finished jobs based on their end time. Capped at 1000. If 'after-time' is specified, latest 1000 jobs ended after this time will be listed/deleted. If 'after-time' is not specified, latest 1000 jobs finished in last 24 hours will be listed/deleted. +List/Delete finished jobs based on their end time. Capped at 1000. If 'after-time' is specified, latest 1000 jobs ended after this time will be listed/deleted. If 'after-time' is not specified, latest 1000 jobs finished in last 24 hours will be listed/deleted. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) after_time = 'after_time_example' # str | The time in '%Y-%m-%d %H:%M:%S' format. The year range is 2001-2099. (optional) -limit = 56 # int | Return no more than this many results at once (see resume). (optional) -resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) try: - api_response = api_instance.get_datamover_reports(after_time=after_time, limit=limit, resume=resume) + api_response = api_instance.get_datamover_historical_jobs(after_time=after_time) pprint(api_response) except ApiException as e: - print("Exception when calling DatamoverApi->get_datamover_reports: %s\n" % e) + print("Exception when calling DatamoverApi->get_datamover_historical_jobs: %s\n" % e) ``` ### Parameters @@ -1610,12 +1070,10 @@ except ApiException as e: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **after_time** | **str**| The time in '%Y-%m-%d %H:%M:%S' format. The year range is 2001-2099. | [optional] - **limit** | **int**| Return no more than this many results at once (see resume). | [optional] - **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] ### Return type -[**DatamoverJobsExtended**](DatamoverJobsExtended.md) +[**DatamoverHistoricalJobs**](DatamoverHistoricalJobs.md) ### Authorization @@ -1628,48 +1086,46 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **get_network_discover_accid** -> NetworkDiscover get_network_discover_accid(network_discover_accid, dm_timeout=dm_timeout) +# **get_datamover_job** +> DatamoverJobs get_datamover_job(datamover_job_id) -Discover hosts for a Datamover account. +Retrieve job information. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -network_discover_accid = 'network_discover_accid_example' # str | Discover hosts for a Datamover account. -dm_timeout = 56 # int | Timeout for Datamover ping/discover actions. (optional) +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +datamover_job_id = 'datamover_job_id_example' # str | Retrieve job information. try: - api_response = api_instance.get_network_discover_accid(network_discover_accid, dm_timeout=dm_timeout) + api_response = api_instance.get_datamover_job(datamover_job_id) pprint(api_response) except ApiException as e: - print("Exception when calling DatamoverApi->get_network_discover_accid: %s\n" % e) + print("Exception when calling DatamoverApi->get_datamover_job: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **network_discover_accid** | **str**| Discover hosts for a Datamover account. | - **dm_timeout** | **int**| Timeout for Datamover ping/discover actions. | [optional] + **datamover_job_id** | **str**| Retrieve job information. | ### Return type -[**NetworkDiscover**](NetworkDiscover.md) +[**DatamoverJobs**](DatamoverJobs.md) ### Authorization @@ -1682,52 +1138,48 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **get_network_ping_accid** -> NetworkPing get_network_ping_accid(network_ping_accid, dm_timeout=dm_timeout, pings=pings, retry=retry) +# **get_datamover_jobs** +> DatamoverHistoricalJobs get_datamover_jobs(limit=limit, resume=resume) -Ping a Datamover account. +List all jobs. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -network_ping_accid = 'network_ping_accid_example' # str | Ping a Datamover account. -dm_timeout = 56 # int | Timeout for Datamover ping/discover actions. (optional) -pings = 56 # int | Number of the pings. (optional) -retry = true # bool | Retry if the ping action failed. (optional) +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +limit = 56 # int | Return no more than this many results at once (see resume). (optional) +resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) try: - api_response = api_instance.get_network_ping_accid(network_ping_accid, dm_timeout=dm_timeout, pings=pings, retry=retry) + api_response = api_instance.get_datamover_jobs(limit=limit, resume=resume) pprint(api_response) except ApiException as e: - print("Exception when calling DatamoverApi->get_network_ping_accid: %s\n" % e) + print("Exception when calling DatamoverApi->get_datamover_jobs: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **network_ping_accid** | **str**| Ping a Datamover account. | - **dm_timeout** | **int**| Timeout for Datamover ping/discover actions. | [optional] - **pings** | **int**| Number of the pings. | [optional] - **retry** | **bool**| Retry if the ping action failed. | [optional] + **limit** | **int**| Return no more than this many results at once (see resume). | [optional] + **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] ### Return type -[**NetworkPing**](NetworkPing.md) +[**DatamoverHistoricalJobs**](DatamoverHistoricalJobs.md) ### Authorization @@ -1740,42 +1192,46 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **get_settings_reports** -> SettingsReportsExtendedExtended get_settings_reports() +# **get_datamover_policy** +> DatamoverPolicies get_datamover_policy(datamover_policy_id) -View Datamover report settings. +Retrieve policy information. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +datamover_policy_id = 'datamover_policy_id_example' # str | Retrieve policy information. try: - api_response = api_instance.get_settings_reports() + api_response = api_instance.get_datamover_policy(datamover_policy_id) pprint(api_response) except ApiException as e: - print("Exception when calling DatamoverApi->get_settings_reports: %s\n" % e) + print("Exception when calling DatamoverApi->get_datamover_policy: %s\n" % e) ``` ### Parameters -This endpoint does not need any parameter. + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **datamover_policy_id** | **str**| Retrieve policy information. | ### Return type -[**SettingsReportsExtendedExtended**](SettingsReportsExtendedExtended.md) +[**DatamoverPolicies**](DatamoverPolicies.md) ### Authorization @@ -1799,17 +1255,17 @@ Retrieve a bandwidth throttling rule. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) throttling_bw_rule_id = 'throttling_bw_rule_id_example' # str | Retrieve a bandwidth throttling rule. try: @@ -1851,17 +1307,17 @@ View Datamover throttling settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_throttling_settings() @@ -1889,7 +1345,7 @@ This endpoint does not need any parameter. [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **list_certificates_ca** -> CertificatesSyslogExtended list_certificates_ca(dir=dir, limit=limit, resume=resume, sort=sort) +> CertificatesCaExtended list_certificates_ca(dir=dir, limit=limit, resume=resume, sort=sort) @@ -1899,17 +1355,17 @@ Retrieve a list of all trusted Datamover TLS CA certificates. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -1933,7 +1389,7 @@ Name | Type | Description | Notes ### Return type -[**CertificatesSyslogExtended**](CertificatesSyslogExtended.md) +[**CertificatesCaExtended**](CertificatesCaExtended.md) ### Authorization @@ -1957,17 +1413,17 @@ Retrieve a list of all trusted Datamover TLS Identity certificates. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -2015,17 +1471,17 @@ List all accounts. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -2069,17 +1525,17 @@ List all base policies. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -2123,17 +1579,17 @@ List all policies. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -2177,17 +1633,17 @@ List all bandwidth throttling rules. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.list_throttling_bw_rules() @@ -2225,18 +1681,18 @@ Modify a trusted Datamover TLS CA certificate. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -certificates_ca_id_params = isilon_sdk.v9_11_0.CertificatesCaIdParams() # CertificatesCaIdParams | +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +certificates_ca_id_params = isilon_sdk.v9_4_0.CertificatesCaIdParams() # CertificatesCaIdParams | certificates_ca_id = 'certificates_ca_id_example' # str | Modify a trusted Datamover TLS CA certificate. try: @@ -2278,18 +1734,18 @@ Modify a trusted Datamover TLS Identity certificate. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -certificates_identity_id_params = isilon_sdk.v9_11_0.CertificatesCaIdParams() # CertificatesCaIdParams | +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +certificates_identity_id_params = isilon_sdk.v9_4_0.CertificatesCaIdParams() # CertificatesCaIdParams | certificates_identity_id = 'certificates_identity_id_example' # str | Modify a trusted Datamover TLS Identity certificate. try: @@ -2320,112 +1776,6 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_certificates_settings** -> update_certificates_settings(certificates_settings) - - - -Modify Datamover TLS settings. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -certificates_settings = isilon_sdk.v9_11_0.CertificatesSettingsSettings() # CertificatesSettingsSettings | - -try: - api_instance.update_certificates_settings(certificates_settings) -except ApiException as e: - print("Exception when calling DatamoverApi->update_certificates_settings: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **certificates_settings** | [**CertificatesSettingsSettings**](CertificatesSettingsSettings.md)| | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **update_config_namespace_by_id** -> update_config_namespace_by_id(config_namespace_id_params, config_namespace_id, namespace) - - - -Modify the configuration for a single namespace entry for Datamover. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -config_namespace_id_params = isilon_sdk.v9_11_0.ConfigNamespaceIdParams() # ConfigNamespaceIdParams | -config_namespace_id = 'config_namespace_id_example' # str | Modify the configuration for a single namespace entry for Datamover. -namespace = 'namespace_example' # str | - -try: - api_instance.update_config_namespace_by_id(config_namespace_id_params, config_namespace_id, namespace) -except ApiException as e: - print("Exception when calling DatamoverApi->update_config_namespace_by_id: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **config_namespace_id_params** | [**ConfigNamespaceIdParams**](ConfigNamespaceIdParams.md)| | - **config_namespace_id** | **str**| Modify the configuration for a single namespace entry for Datamover. | - **namespace** | **str**| | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **update_datamover_account** > update_datamover_account(datamover_account, datamover_account_id) @@ -2437,18 +1787,18 @@ Modify account information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -datamover_account = isilon_sdk.v9_11_0.DatamoverAccount() # DatamoverAccount | +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +datamover_account = isilon_sdk.v9_4_0.DatamoverAccount() # DatamoverAccount | datamover_account_id = 'datamover_account_id_example' # str | Modify account information. try: @@ -2490,18 +1840,18 @@ Modify base policy information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -datamover_base_policy = isilon_sdk.v9_11_0.DatamoverBasePolicy() # DatamoverBasePolicy | +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +datamover_base_policy = isilon_sdk.v9_4_0.DatamoverBasePolicy() # DatamoverBasePolicy | datamover_base_policy_id = 'datamover_base_policy_id_example' # str | Modify base policy information. try: @@ -2543,19 +1893,19 @@ Modify job state. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) action = 'action_example' # str | Job control request. -datamover_job = isilon_sdk.v9_11_0.Empty() # Empty | +datamover_job = isilon_sdk.v9_4_0.Empty() # Empty | datamover_job_id = 'datamover_job_id_example' # str | Modify job state. try: @@ -2598,18 +1948,18 @@ Modify policy information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -datamover_policy = isilon_sdk.v9_11_0.DatamoverPolicy() # DatamoverPolicy | +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +datamover_policy = isilon_sdk.v9_4_0.DatamoverPolicy() # DatamoverPolicy | datamover_policy_id = 'datamover_policy_id_example' # str | Modify policy information. try: @@ -2640,57 +1990,6 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_settings_reports** -> update_settings_reports(settings_reports) - - - -Modify Datamover report settings. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -settings_reports = isilon_sdk.v9_11_0.SettingsReportsSettingsExtended() # SettingsReportsSettingsExtended | - -try: - api_instance.update_settings_reports(settings_reports) -except ApiException as e: - print("Exception when calling DatamoverApi->update_settings_reports: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **settings_reports** | [**SettingsReportsSettingsExtended**](SettingsReportsSettingsExtended.md)| | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **update_throttling_bw_rule** > update_throttling_bw_rule(throttling_bw_rule, throttling_bw_rule_id) @@ -2702,18 +2001,18 @@ Modify a bandwidth throttling rule. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -throttling_bw_rule = isilon_sdk.v9_11_0.ThrottlingBwRule() # ThrottlingBwRule | +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +throttling_bw_rule = isilon_sdk.v9_4_0.ThrottlingBwRule() # ThrottlingBwRule | throttling_bw_rule_id = 'throttling_bw_rule_id_example' # str | Modify a bandwidth throttling rule. try: @@ -2755,18 +2054,18 @@ Modify Datamover throttling settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DatamoverApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -throttling_settings = isilon_sdk.v9_11_0.ThrottlingSettingsSettings() # ThrottlingSettingsSettings | +api_instance = isilon_sdk.v9_4_0.DatamoverApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +throttling_settings = isilon_sdk.v9_4_0.ThrottlingSettingsSettings() # ThrottlingSettingsSettings | try: api_instance.update_throttling_settings(throttling_settings) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverBasePolicies.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverBasePolicies.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverBasePolicies.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverBasePolicies.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverBasePoliciesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverBasePoliciesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverBasePoliciesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverBasePoliciesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverBasePoliciesPolicy.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverBasePoliciesPolicy.md similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverBasePoliciesPolicy.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverBasePoliciesPolicy.md index c3a9edbcc..a202ab113 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverBasePoliciesPolicy.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverBasePoliciesPolicy.md @@ -6,7 +6,7 @@ Name | Type | Description | Notes **base_account_id** | **str** | Account ID (local or remote DM system) where the policy should be created. | [optional] **briefcase** | **str** | An opaque container for storing additional data in this object, e.g. key-value pairs | [optional] **enabled** | **bool** | True: policy is enabled, False: otherwise. | -**id** | **int** | The unique base policy identifier. | [optional] +**id** | **int** | The unique policy identifier. | [optional] **name** | **str** | A user provided base policy name. | **new_tasks_account** | **str** | Account of the system to create tasks on. This overrides the default task affinity. | [optional] **override_list** | **list[str]** | The list of fields which will override a concrete policy. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverBasePoliciesPolicySchedule.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverBasePoliciesPolicySchedule.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverBasePoliciesPolicySchedule.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverBasePoliciesPolicySchedule.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverBasePolicy.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverBasePolicy.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverBasePolicy.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverBasePolicy.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverBasePolicyCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverBasePolicyCreateParams.md similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverBasePolicyCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverBasePolicyCreateParams.md index 9c176e491..e12df98df 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverBasePolicyCreateParams.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverBasePolicyCreateParams.md @@ -19,7 +19,7 @@ Name | Type | Description | Notes **target_base_path** | **str** | Filesystem base path on target DM syestem which has the directories/files for which dataset has to be created. | [optional] **tgt_dataset_retention** | [**DatamoverBasePolicySrcDatasetRetention**](DatamoverBasePolicySrcDatasetRetention.md) | | [optional] **version** | **int** | Version number of the config store when this object was edited. | [optional] -**id** | **int** | The unique base policy identifier. | [optional] +**id** | **int** | The unique policy identifier. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverBasePolicySchedule.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverBasePolicySchedule.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverBasePolicySchedule.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverBasePolicySchedule.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverBasePolicySrcDatasetRetention.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverBasePolicySrcDatasetRetention.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverBasePolicySrcDatasetRetention.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverBasePolicySrcDatasetRetention.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverDataset.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverDataset.md similarity index 95% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverDataset.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverDataset.md index 0c1e349cf..78bd14d61 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverDataset.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverDataset.md @@ -11,7 +11,6 @@ Name | Type | Description | Notes **dataset_state** | **str** | The state of dataset. | [optional] **dataset_subpaths** | **list[str]** | Set of filesystem paths relative to base path. | [optional] **dataset_type** | **str** | Dataset type from one of these: A file system on object store in a copy format, a file system on object store in a backup format or file on file dataset. | [optional] -**dataset_version** | **str** | The version of dataset. | [optional] **id** | **int** | The locally unique dataset identifier. | [optional] **snapshot_path** | **str** | | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverDatasetDatasetGlobalId.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverDatasetDatasetGlobalId.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverDatasetDatasetGlobalId.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverDatasetDatasetGlobalId.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverDatasetDatasetGlobalIdDatasetRevision.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverDatasetDatasetGlobalIdDatasetRevision.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverDatasetDatasetGlobalIdDatasetRevision.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverDatasetDatasetGlobalIdDatasetRevision.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverDatasetExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverDatasetExtended.md similarity index 95% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverDatasetExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverDatasetExtended.md index e05c41701..881b3e0c3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverDatasetExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverDatasetExtended.md @@ -11,7 +11,6 @@ Name | Type | Description | Notes **dataset_state** | **str** | The state of dataset. | [optional] **dataset_subpaths** | **list[str]** | Set of filesystem paths relative to base path. | [optional] **dataset_type** | **str** | Dataset type from one of these: A file system on object store in a copy format, a file system on object store in a backup format or file on file dataset. | [optional] -**dataset_version** | **str** | The version of dataset. | [optional] **id** | **int** | The locally unique dataset identifier. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverDatasets.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverDatasets.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverDatasets.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverDatasets.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverDatasetsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverDatasetsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverDatasetsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverDatasetsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobs.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverHistoricalJobs.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobs.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverHistoricalJobs.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJob.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverHistoricalJobsJob.md similarity index 88% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJob.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverHistoricalJobsJob.md index 98acf670b..d5b97cb16 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJob.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverHistoricalJobsJob.md @@ -6,7 +6,6 @@ Name | Type | Description | Notes **id** | **int** | Unique Job ID. | [optional] **job_control_request** | **str** | Job control request. | [optional] **job_end_time** | **int** | The time in seconds past the epoch | [optional] -**job_failed_tasks** | [**list[DatamoverHistoricalJobsJobJobFailedTask]**](DatamoverHistoricalJobsJobJobFailedTask.md) | Job Failed Tasks | [optional] **job_policy_id** | **int** | Policy ID associated with this job. | [optional] **job_priority** | **str** | The relative priority of the job. | [optional] **job_start_time** | **int** | The time in seconds past the epoch | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrs.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrs.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrs.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrs.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJob.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJob.md similarity index 84% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJob.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJob.md index 992dd0c73..c76954c7f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJob.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJob.md @@ -10,7 +10,6 @@ Name | Type | Description | Notes **source_account_id** | **str** | Account ID of the source storage system. | [optional] **source_base_path** | **str** | Filesystem source base path. | [optional] **source_subpaths** | **list[str]** | Set of filesystem paths relative to base path. | [optional] -**statistics** | [**DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics**](DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics.md) | Baseline copy job statistics. | [optional] **target_account_id** | **str** | Account ID of the target storage system. | [optional] **target_base_path** | **str** | Target base path. | [optional] **target_dataset_type** | **str** | Dataset type on target. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJob.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJob.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJob.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJob.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJobStatistics.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJobStatistics.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJobStatistics.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJobStatistics.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJob.md similarity index 71% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJob.md index a8fe0105c..e9c0c8bc7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJob.md @@ -1,10 +1,9 @@ -# DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics +# DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJob ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**datasets_deleted** | **int** | Datasets Deleted. | [optional] -**expiry_time** | **int** | Expiry Time. | [optional] +**account_id** | **str** | The account where this dataset expiration job is to be run. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJob.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJob.md similarity index 69% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJob.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJob.md index a09d4d07d..d97b48fc5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJob.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJob.md @@ -3,11 +3,10 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**new_tasks_account** | **str** | Account ID of the system on which to create tasks. This overrides the default task affinity. | [optional] +**new_tasks_account** | **str** | Account of the system to create tasks on. This overrides the default task affinity. | [optional] **retention** | [**DatamoverBasePolicySrcDatasetRetention**](DatamoverBasePolicySrcDatasetRetention.md) | | [optional] **source_account_id** | **str** | Account ID of the source storage system. | [optional] **source_base_path** | **str** | Filesystem source base path. | [optional] -**statistics** | [**DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics**](DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics.md) | Incremental copy job statistics. | [optional] **target_account_id** | **str** | Account ID of the target storage system. | [optional] **target_base_path** | **str** | Target base path. | [optional] **target_dataset_type** | **str** | Dataset type on target. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverJob.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverJob.md similarity index 88% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverJob.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverJob.md index 6c7174bce..6fad6427a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverJob.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverJob.md @@ -6,7 +6,6 @@ Name | Type | Description | Notes **id** | **int** | Unique Job ID. | [optional] **job_control_request** | **str** | Job control request. | [optional] **job_end_time** | **int** | The time in seconds past the epoch | [optional] -**job_failed_tasks** | [**list[DatamoverHistoricalJobsJobJobFailedTask]**](DatamoverHistoricalJobsJobJobFailedTask.md) | Job Failed Tasks | [optional] **job_policy_id** | **int** | Policy ID associated with this job. | [optional] **job_priority** | **str** | The relative priority of the job. | [optional] **job_start_time** | **int** | The time in seconds past the epoch | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverJobJobTypeSpecificAttrs.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverJobJobTypeSpecificAttrs.md similarity index 64% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverJobJobTypeSpecificAttrs.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverJobJobTypeSpecificAttrs.md index 7d394152c..219319909 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverJobJobTypeSpecificAttrs.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverJobJobTypeSpecificAttrs.md @@ -4,8 +4,8 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **dataset_baseline_copy_job** | [**DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob**](DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob.md) | Fields specific to dataset baseline copy job. | [optional] -**dataset_creation_job** | [**DatamoverJobJobTypeSpecificAttrsDatasetCreationJob**](DatamoverJobJobTypeSpecificAttrsDatasetCreationJob.md) | Fields specific to dataset creation job. | [optional] -**dataset_expiration_job** | [**DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob**](DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob.md) | Fields specific to dataset retention job. | [optional] +**dataset_creation_job** | [**DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJob**](DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJob.md) | Fields specific to dataset creation job. | [optional] +**dataset_expiration_job** | [**DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJob**](DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJob.md) | Fields specific to dataset retention job. | [optional] **dataset_incremental_copy_job** | [**DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob**](DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob.md) | Fields specific to dataset incremental copy job. | [optional] **job_type** | **str** | Type of the Data Mover job. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob.md similarity index 70% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob.md index d44c082d0..53a8a5f0e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob.md @@ -6,15 +6,12 @@ Name | Type | Description | Notes **create_dataset_on_target** | **bool** | Target dataset creation flag. True if dataset should be created on target, false otherwise. | [optional] **dataset_id** | **int** | The unique dataset identifier. | [optional] **new_tasks_account** | **str** | Account where to create task. | [optional] -**new_tasks_account_name** | **str** | Account name of the system on which to create tasks. | [optional] **retention** | [**DatamoverBasePolicySrcDatasetRetention**](DatamoverBasePolicySrcDatasetRetention.md) | | [optional] **source_account_id** | **str** | Account ID of the source storage system. | [optional] -**source_account_name** | **str** | Account name of the source storage system. | [optional] **source_base_path** | **str** | Filesystem source base path. | [optional] **source_subpaths** | **list[str]** | Set of filesystem paths relative to base path. | [optional] -**statistics** | [**DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics**](DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics.md) | Baseline copy job statistics. | [optional] +**statistics** | [**DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics**](DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics.md) | Baseline copy job statistics. | [optional] **target_account_id** | **str** | Account ID of the target storage system. | [optional] -**target_account_name** | **str** | Account name of the target storage system. | [optional] **target_base_path** | **str** | Target base path. | [optional] **target_dataset_type** | **str** | Dataset type on target. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics.md similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics.md index f579a8f35..d10b1f997 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics.md @@ -1,4 +1,4 @@ -# DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics +# DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics ## Properties Name | Type | Description | Notes diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob.md similarity index 55% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob.md index cda7409e1..9c02caf95 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob.md @@ -3,15 +3,12 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**new_tasks_account** | **str** | Account ID of the system on which to create tasks. This overrides the default task affinity. | [optional] -**new_tasks_account_name** | **str** | Account name of the system on which to create tasks. | [optional] +**new_tasks_account** | **str** | Account of the system to create tasks on. This overrides the default task affinity. | [optional] **retention** | [**DatamoverBasePolicySrcDatasetRetention**](DatamoverBasePolicySrcDatasetRetention.md) | | [optional] **source_account_id** | **str** | Account ID of the source storage system. | [optional] -**source_account_name** | **str** | Account name of the source storage system. | [optional] **source_base_path** | **str** | Filesystem source base path. | [optional] -**statistics** | [**DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics**](DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics.md) | Incremental copy job statistics. | [optional] +**statistics** | [**DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics**](DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics.md) | Incremental copy job statistics. | [optional] **target_account_id** | **str** | Account ID of the target storage system. | [optional] -**target_account_name** | **str** | Account name of the target storage system. | [optional] **target_base_path** | **str** | Target base path. | [optional] **target_dataset_type** | **str** | Dataset type on target. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics.md similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics.md index 763531bf4..d55a1749b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics.md @@ -1,4 +1,4 @@ -# DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics +# DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics ## Properties Name | Type | Description | Notes diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverJobs.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverJobs.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverJobs.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverJobs.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicies.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicies.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicies.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicies.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPoliciesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPoliciesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPoliciesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPoliciesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicy.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicy.md similarity index 94% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicy.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicy.md index bf9a52a75..01339d564 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicy.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicy.md @@ -3,7 +3,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**base_policy_id** | **int** | The unique policy identifier. | [optional] +**base_policy_id** | **int** | Policy ID associated with this job. | [optional] **briefcase** | **str** | An opaque container for storing additional data in this object, e.g. key-value pairs | [optional] **enabled** | **bool** | True: policy is enabled, False: otherwise. | [optional] **name** | **str** | A user provided policy name. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicyCreateParams.md similarity index 92% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicyCreateParams.md index 6afe57548..5f41d8429 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyCreateParams.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicyCreateParams.md @@ -3,9 +3,9 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**base_policy_id** | **int** | The unique policy identifier. | [optional] +**base_policy_id** | **int** | Policy ID associated with this job. | [optional] **briefcase** | **str** | An opaque container for storing additional data in this object, e.g. key-value pairs | [optional] -**enabled** | **bool** | True: policy is enabled, False: otherwise. | [optional] +**enabled** | **bool** | True: policy is enabled, False: otherwise. | **name** | **str** | A user provided policy name. | **parent_exec_policy_id** | **int** | If a valid policy ID, then a job for this policy will be scheduled immediately after the parent policy job completes. This is optional field | [optional] **policy_specific_attr** | [**DatamoverPolicyPolicySpecificAttrCreateParams**](DatamoverPolicyPolicySpecificAttrCreateParams.md) | | diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicyExtended.md similarity index 85% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicyExtended.md index e31c297ad..869a34b60 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicyExtended.md @@ -3,7 +3,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**base_policy_id** | **int** | The unique policy identifier. | [optional] +**base_policy_id** | **int** | Policy ID associated with this job. | [optional] **briefcase** | **str** | An opaque container for storing additional data in this object, e.g. key-value pairs | [optional] **disabled_by_dm** | **bool** | This flag indicates if policy has been disabled by the datamover system. This flag is set to true when a job for the given policy is cancelled | [optional] **enabled** | **bool** | True: policy is enabled, False: otherwise. | @@ -13,7 +13,7 @@ Name | Type | Description | Notes **policy_specific_attr** | [**DatamoverPolicyPolicySpecificAttrExtended**](DatamoverPolicyPolicySpecificAttrExtended.md) | | [optional] **priority** | **str** | The relative priority of the policy. | **run_now** | **bool** | Execute the policy immediately instead of waiting for it to run as scheduled. | [optional] -**schedule** | [**DatamoverPolicySchedule**](DatamoverPolicySchedule.md) | The schedule of the policy- start time, recurrence, specific date-times. | [optional] +**schedule** | [**DatamoverBasePolicySchedule**](DatamoverBasePolicySchedule.md) | The schedule of the policy- start time, recurrence, specific date-times. | [optional] **validity** | **bool** | Whether the policy is valid. | [optional] **version** | **int** | Version number of the config store when this object was edited. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttr.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicyPolicySpecificAttr.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttr.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicyPolicySpecificAttr.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrCopyPolicy.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicyPolicySpecificAttrCopyPolicy.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrCopyPolicy.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicyPolicySpecificAttrCopyPolicy.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBase.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBase.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBase.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBase.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrCopyPolicyExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicyPolicySpecificAttrCopyPolicyExtended.md similarity index 84% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrCopyPolicyExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicyPolicySpecificAttrCopyPolicyExtended.md index 7825caa5e..4da4b764f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrCopyPolicyExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicyPolicySpecificAttrCopyPolicyExtended.md @@ -4,7 +4,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **create_dataset_on_target** | **bool** | Whether or not to create dataset on the target storage system. | [optional] -**dataset_copy_policy_base** | [**DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended**](DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended.md) | | [optional] +**dataset_copy_policy_base** | [**DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBase**](DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBase.md) | | [optional] **dataset_id** | **int** | The unique dataset identifier. | [optional] **source_base_path** | **str** | Base path of the dataset on the source storage system. | [optional] **source_subpaths** | **list[str]** | Set of filesystem paths relative to base path. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicyPolicySpecificAttrCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicyPolicySpecificAttrCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrCreationPolicy.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicyPolicySpecificAttrCreationPolicy.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrCreationPolicy.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicyPolicySpecificAttrCreationPolicy.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrExpirationPolicy.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicyPolicySpecificAttrExpirationPolicy.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrExpirationPolicy.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicyPolicySpecificAttrExpirationPolicy.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicyPolicySpecificAttrExtended.md similarity index 66% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicyPolicySpecificAttrExtended.md index 016cebf01..1831476ba 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicyPolicySpecificAttrExtended.md @@ -4,10 +4,10 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **copy_policy** | [**DatamoverPolicyPolicySpecificAttrCopyPolicyExtended**](DatamoverPolicyPolicySpecificAttrCopyPolicyExtended.md) | | [optional] -**creation_policy** | [**DatamoverPolicyPolicySpecificAttrCreationPolicyExtended**](DatamoverPolicyPolicySpecificAttrCreationPolicyExtended.md) | Fields specific to dataset creation. | [optional] -**expiration_policy** | [**DatamoverPolicyPolicySpecificAttrExpirationPolicyExtended**](DatamoverPolicyPolicySpecificAttrExpirationPolicyExtended.md) | Fields specific to dataset retention policy. | [optional] +**creation_policy** | [**DatamoverPolicyPolicySpecificAttrCreationPolicy**](DatamoverPolicyPolicySpecificAttrCreationPolicy.md) | Fields specific to dataset creation. | [optional] +**expiration_policy** | [**DatamoverPolicyPolicySpecificAttrExpirationPolicy**](DatamoverPolicyPolicySpecificAttrExpirationPolicy.md) | Fields specific to dataset retention policy. | [optional] **policy_type** | **str** | The type of policy - Creation, Expiration, Copy, Repeat-Copy. | [optional] -**repeat_copy_policy** | [**DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended**](DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended.md) | | [optional] +**repeat_copy_policy** | [**DatamoverPolicyPolicySpecificAttrRepeatCopyPolicy**](DatamoverPolicyPolicySpecificAttrRepeatCopyPolicy.md) | | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrRepeatCopyPolicy.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicyPolicySpecificAttrRepeatCopyPolicy.md similarity index 91% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrRepeatCopyPolicy.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicyPolicySpecificAttrRepeatCopyPolicy.md index 3caad648d..531341495 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatamoverPolicyPolicySpecificAttrRepeatCopyPolicy.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatamoverPolicyPolicySpecificAttrRepeatCopyPolicy.md @@ -5,7 +5,6 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **dataset_copy_policy_base** | [**DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBase**](DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBase.md) | | [optional] **reconnect** | **bool** | This boolean allows starting with incremental syncs and skipping the initial baseline sync if the target base path contains a leaf dataset which is an ancestor of a source base path dataset. | [optional] -**rpo_alert** | **int** | RPO alert duration in seconds | [optional] **source_base_path** | **str** | | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetFilter.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatasetFilter.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetFilter.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatasetFilter.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetFilterCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatasetFilterCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetFilterCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatasetFilterCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetFilterExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatasetFilterExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetFilterExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatasetFilterExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetFilterMetricValues.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatasetFilterMetricValues.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetFilterMetricValues.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatasetFilterMetricValues.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetFilterMetricValuesCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatasetFilterMetricValuesCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetFilterMetricValuesCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatasetFilterMetricValuesCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetFilters.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatasetFilters.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetFilters.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatasetFilters.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetFiltersExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatasetFiltersExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetFiltersExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatasetFiltersExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallDscp.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatasetWorkload.md similarity index 74% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallDscp.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatasetWorkload.md index fa9ca1cc5..9fb2ed622 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallDscp.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatasetWorkload.md @@ -1,9 +1,9 @@ -# FirewallDscp +# DatasetWorkload ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**rules** | [**list[FirewallDscpRule]**](FirewallDscpRule.md) | | [optional] +**name** | **str** | The name of the workload. User specified. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningReportsReport.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatasetWorkloadCreateParams.md similarity index 55% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningReportsReport.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatasetWorkloadCreateParams.md index 6c0f08c7d..81b60d087 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningReportsReport.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatasetWorkloadCreateParams.md @@ -1,10 +1,10 @@ -# HardeningReportsReport +# DatasetWorkloadCreateParams ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**profiles** | [**list[HardeningReportsReportProfile]**](HardeningReportsReportProfile.md) | List of reports for each profile. | [optional] -**status** | **str** | | [optional] +**name** | **str** | The name of the workload. User specified. | [optional] +**metric_values** | [**DatasetFilterMetricValuesCreateParams**](DatasetFilterMetricValuesCreateParams.md) | Configurable metrics. | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetWorkloadExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatasetWorkloadExtended.md similarity index 61% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetWorkloadExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatasetWorkloadExtended.md index 68d538e41..970fc119a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetWorkloadExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatasetWorkloadExtended.md @@ -3,12 +3,6 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**client_impact** | **int** | The desired workload's impact on the system. Specified by the Job Engine. | [optional] -**cluster_resource_impact** | **int** | The desired workload's impact on the system. Specified by the Job Engine. | [optional] -**limits** | [**DatasetWorkloadLimits**](DatasetWorkloadLimits.md) | Performance limits for a workload | [optional] -**max_cpu_us** | **int** | The CPU usage limit for a workload in microseconds. | [optional] -**max_disk_reads** | **int** | The disk read operation limit for a workload. | [optional] -**max_disk_writes** | **int** | The disk write operation limit for a workload. | [optional] **name** | **str** | The name of the workload. User specified. | [optional] **creation_time** | **int** | Timestamp of when the workload was pinned. | [optional] **dataset_id** | **int** | Unique identifier of the associated dataset. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetWorkloads.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatasetWorkloads.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetWorkloads.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatasetWorkloads.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetWorkloadsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DatasetWorkloadsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DatasetWorkloadsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DatasetWorkloadsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DebugApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DebugApi.md similarity index 83% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DebugApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DebugApi.md index 543c2ad87..6787f16bd 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DebugApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DebugApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.DebugApi +# isilon_sdk.v9_4_0.DebugApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -19,17 +19,17 @@ Clear per-resource statistics counters. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DebugApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.DebugApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_instance.delete_debug_stats() @@ -66,17 +66,17 @@ List cumulative call statistics for each resource. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DebugApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.DebugApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_debug_stats() diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DebugStats.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DebugStats.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DebugStats.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DebugStats.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DebugStatsDescribe.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DebugStatsDescribe.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DebugStatsDescribe.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DebugStatsDescribe.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DebugStatsHandler.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DebugStatsHandler.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DebugStatsHandler.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DebugStatsHandler.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DedupeApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DedupeApi.md similarity index 86% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DedupeApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DedupeApi.md index 609b5d07e..cae027afa 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DedupeApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DedupeApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.DedupeApi +# isilon_sdk.v9_4_0.DedupeApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -24,17 +24,17 @@ Return summary information about dedupe. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DedupeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.DedupeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_dedupe_dedupe_summary() @@ -72,17 +72,17 @@ Retrieve a report for a single dedupe job. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DedupeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.DedupeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dedupe_report_id = 'dedupe_report_id_example' # str | Retrieve a report for a single dedupe job. scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) @@ -126,17 +126,17 @@ List dedupe reports. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DedupeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.DedupeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) begin = 56 # int | Restrict the query to reports at or after the given time, in seconds since the Epoch. (optional) dir = 'dir_example' # str | The direction of the sort. (optional) end = 56 # int | Restrict the query to reports at or before the given time, in seconds since the Epoch. (optional) @@ -192,17 +192,17 @@ Retrieve the dedupe settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DedupeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.DedupeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_dedupe_settings() @@ -240,17 +240,17 @@ Retrieve the inline dedupe settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DedupeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.DedupeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_inline_settings() @@ -288,18 +288,18 @@ Modify the dedupe settings. All input fields are optional, but one or more must ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DedupeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -dedupe_settings = isilon_sdk.v9_11_0.DedupeSettingsExtended() # DedupeSettingsExtended | +api_instance = isilon_sdk.v9_4_0.DedupeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +dedupe_settings = isilon_sdk.v9_4_0.DedupeSettingsExtended() # DedupeSettingsExtended | try: api_instance.update_dedupe_settings(dedupe_settings) @@ -339,18 +339,18 @@ Modify the inline dedupe settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.DedupeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -inline_settings = isilon_sdk.v9_11_0.InlineSettingsSettings() # InlineSettingsSettings | +api_instance = isilon_sdk.v9_4_0.DedupeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +inline_settings = isilon_sdk.v9_4_0.InlineSettingsSettings() # InlineSettingsSettings | try: api_instance.update_inline_settings(inline_settings) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DedupeDedupeSummary.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DedupeDedupeSummary.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DedupeDedupeSummary.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DedupeDedupeSummary.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DedupeDedupeSummarySummary.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DedupeDedupeSummarySummary.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DedupeDedupeSummarySummary.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DedupeDedupeSummarySummary.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DedupeReport.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DedupeReport.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DedupeReport.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DedupeReport.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DedupeReportExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DedupeReportExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DedupeReportExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DedupeReportExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DedupeReports.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DedupeReports.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DedupeReports.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DedupeReports.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DedupeReportsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DedupeReportsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DedupeReportsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DedupeReportsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DedupeSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DedupeSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DedupeSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DedupeSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DedupeSettingsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DedupeSettingsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DedupeSettingsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DedupeSettingsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DedupeSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DedupeSettingsSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DedupeSettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DedupeSettingsSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGatherSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DiagnosticsGatherSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGatherSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DiagnosticsGatherSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGatherSettingsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DiagnosticsGatherSettingsExtended.md similarity index 50% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGatherSettingsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DiagnosticsGatherSettingsExtended.md index a5d6392b4..cc87649f0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGatherSettingsExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DiagnosticsGatherSettingsExtended.md @@ -3,25 +3,17 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**connectivity** | **bool** | Use Dell Technologies connectivity services for upload of gather. | [optional] **esrs** | **bool** | Use ESRS for upload of gather. | [optional] **ftp_upload** | **bool** | Use FTP to upload logs from the isi gather command | [optional] **ftp_upload_host** | **str** | Alternate FTP host to use for FTP upload. | [optional] -**ftp_upload_insecure** | **bool** | Whether to attempt a plain text FTP upload. | [optional] **ftp_upload_mode** | **str** | FTP upload mode. | [optional] **ftp_upload_pass** | **str** | FTP password to use for FTP upload. | [optional] **ftp_upload_path** | **str** | Alternate FTP path to use for FTP upload. | [optional] **ftp_upload_proxy** | **str** | Proxy server to use for FTP upload. | [optional] **ftp_upload_proxy_port** | **int** | Proxy server port to use for FTP upload. | [optional] -**ftp_upload_ssl_cert** | **str** | Path to certificate. Leave it blank to use root signed-CA | [optional] **ftp_upload_user** | **str** | FTP user to use for FTP upload. | [optional] -**ftp_upload_webui_default** | **bool** | Hidden key to save default checkbox in WebUI | [optional] -**gather_begin** | **str** | Sets the starting time of files to be gathered using datetime format. The accepted datetime format should be in the form 'YYYY-MM-DD HH:MM' where time is optional. This will gather all files modified past that date. | [optional] -**gather_mode** | **str** | Set gather to full, incremental, or partial. | [optional] -**gather_past** | **str** | Gather logs modified within this time frame. Enter a number followed by a letter for the starting range of files to be gathered, eg. 1h for files last modified in the past hour. Other supported times include d and w for days and weeks respectively. | [optional] -**group** | **str** | Only gathers component groups specified by the group field. | [optional] -**http_insecure_upload** | **bool** | Use insecure HTTP to upload logs from the isi gather command | [optional] -**http_upload** | **bool** | This option is deprecated. Use the option http_insecure_upload to upload logs via insecure HTTP from the isi gather command | [optional] +**gather_mode** | **str** | Set gather to full or incremental. | [optional] +**http_upload** | **bool** | Use HTTP to upload logs from the isi gather command | [optional] **http_upload_host** | **str** | Address of an alternate HTTP host used to upload logs | [optional] **http_upload_path** | **str** | Alternate path on HTTP server to use for HTTP upload. | [optional] **http_upload_proxy** | **str** | Proxy server to use for HTTP upload. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_4_0/docs/DiagnosticsGatherSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DiagnosticsGatherSettingsSettings.md new file mode 100644 index 000000000..42f8c740e --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DiagnosticsGatherSettingsSettings.md @@ -0,0 +1,24 @@ +# DiagnosticsGatherSettingsSettings + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**esrs** | **bool** | Use ESRS for upload of gather. | [optional] +**ftp_upload** | **bool** | Use FTP to upload logs from the isi gather command | [optional] +**ftp_upload_host** | **str** | Alternate FTP host to use for FTP upload. | [optional] +**ftp_upload_mode** | **str** | FTP upload mode. | [optional] +**ftp_upload_path** | **str** | Alternate FTP path to use for FTP upload. | [optional] +**ftp_upload_proxy** | **str** | Proxy server to use for FTP upload. | [optional] +**ftp_upload_proxy_port** | **int** | Proxy server port to use for FTP upload. | [optional] +**ftp_upload_user** | **str** | FTP user to use for FTP upload. | [optional] +**gather_mode** | **str** | Set gather to full or incremental. | [optional] +**http_upload** | **bool** | Use HTTP to upload logs from the isi gather command | [optional] +**http_upload_host** | **str** | Address of an alternate HTTP host used to upload logs | [optional] +**http_upload_path** | **str** | Alternate path on HTTP server to use for HTTP upload. | [optional] +**http_upload_proxy** | **str** | Proxy server to use for HTTP upload. | [optional] +**http_upload_proxy_port** | **int** | Proxy server port to use for HTTP upload. | [optional] +**upload** | **bool** | Upload gather to Dell EMC. | [optional] + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGatherStatus.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DiagnosticsGatherStatus.md similarity index 72% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGatherStatus.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DiagnosticsGatherStatus.md index 56a9b1551..b7b22ba0f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGatherStatus.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DiagnosticsGatherStatus.md @@ -3,7 +3,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**gather** | [**DiagnosticsGatherStatusGatherExtended**](DiagnosticsGatherStatusGatherExtended.md) | | [optional] +**gather** | [**DiagnosticsGatherStatusGather**](DiagnosticsGatherStatusGather.md) | | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGatherGather.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DiagnosticsGatherStatusGather.md similarity index 92% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGatherGather.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DiagnosticsGatherStatusGather.md index 6dbeb1d31..df96a572a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGatherGather.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DiagnosticsGatherStatusGather.md @@ -1,4 +1,4 @@ -# DiagnosticsGatherGather +# DiagnosticsGatherStatusGather ## Properties Name | Type | Description | Notes diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGatherStatusGatherStatus.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DiagnosticsGatherStatusGatherStatus.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsGatherStatusGatherStatus.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DiagnosticsGatherStatusGatherStatus.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsNetloggerSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DiagnosticsNetloggerSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsNetloggerSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DiagnosticsNetloggerSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsNetloggerSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DiagnosticsNetloggerSettingsSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsNetloggerSettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DiagnosticsNetloggerSettingsSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsNetloggerStatus.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DiagnosticsNetloggerStatus.md similarity index 74% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsNetloggerStatus.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DiagnosticsNetloggerStatus.md index e05c92713..7838f6754 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DiagnosticsNetloggerStatus.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DiagnosticsNetloggerStatus.md @@ -3,7 +3,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**netlogger** | [**DiagnosticsGatherGather**](DiagnosticsGatherGather.md) | | [optional] +**netlogger** | [**DiagnosticsGatherStatusGather**](DiagnosticsGatherStatusGather.md) | | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DirectoryQuery.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DirectoryQuery.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DirectoryQuery.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DirectoryQuery.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DirectoryQueryScope.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DirectoryQueryScope.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DirectoryQueryScope.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DirectoryQueryScope.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DirectoryQueryScopeConditions.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DirectoryQueryScopeConditions.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DirectoryQueryScopeConditions.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DirectoryQueryScopeConditions.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DrivesDriveFirmware.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DrivesDriveFirmware.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DrivesDriveFirmware.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DrivesDriveFirmware.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DrivesDriveFirmwareNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DrivesDriveFirmwareNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DrivesDriveFirmwareNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DrivesDriveFirmwareNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DrivesDriveFirmwareNodeDrive.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DrivesDriveFirmwareNodeDrive.md similarity index 92% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DrivesDriveFirmwareNodeDrive.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DrivesDriveFirmwareNodeDrive.md index 3a78ca400..25e9c460f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/DrivesDriveFirmwareNodeDrive.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/DrivesDriveFirmwareNodeDrive.md @@ -3,7 +3,6 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**bay_group** | **str** | This drive's sled letter in node. | [optional] **baynum** | **int** | Numerical representation of this drive's bay. | [optional] **current_firmware** | **str** | This drive's current firmware revision | [optional] **desired_firmware** | **str** | This drive's desired firmware revision. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DrivesDriveFirmwareUpdate.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DrivesDriveFirmwareUpdate.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DrivesDriveFirmwareUpdate.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DrivesDriveFirmwareUpdate.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DrivesDriveFirmwareUpdateItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DrivesDriveFirmwareUpdateItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DrivesDriveFirmwareUpdateItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DrivesDriveFirmwareUpdateItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DrivesDriveFirmwareUpdateNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DrivesDriveFirmwareUpdateNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DrivesDriveFirmwareUpdateNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DrivesDriveFirmwareUpdateNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DrivesDriveFirmwareUpdateNodeStatus.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DrivesDriveFirmwareUpdateNodeStatus.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DrivesDriveFirmwareUpdateNodeStatus.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DrivesDriveFirmwareUpdateNodeStatus.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DrivesDriveFormatItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DrivesDriveFormatItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DrivesDriveFormatItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DrivesDriveFormatItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/DrivesDrivePurposeItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/DrivesDrivePurposeItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/DrivesDrivePurposeItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/DrivesDrivePurposeItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/Empty.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/Empty.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/Empty.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/Empty.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/Error.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/Error.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/Error.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/Error.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventAlertCondition.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventAlertCondition.md similarity index 94% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventAlertCondition.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventAlertCondition.md index b5727a0b0..ba6c302c9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventAlertCondition.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventAlertCondition.md @@ -3,7 +3,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**categories** | **list[str]** | Event Group categories to be alerted: all, 100000000 (SYS_DISK_EVENTS), 200000000 (NODE_STATUS_EVENTS), 300000000 (REBOOT_EVENTS), 400000000 (SW_EVENTS), 500000000 (QUOTA_EVENTS), 600000000 (SNAP_EVENTS), 700000000 (WINNET_EVENTS), 800000000 (FILESYS_EVENTS), 900000000 (HW_EVENTS), 1100000000 (CPOOL_EVENTS), 9800000000 (SYSTEM_ADMIN), 9900000000 (DELL_SUPPORT). | [optional] +**categories** | **list[str]** | Event Group categories to be alerted: all, 100000000 (SYS_DISK_EVENTS), 200000000 (NODE_STATUS_EVENTS), 300000000 (REBOOT_EVENTS), 400000000 (SW_EVENTS), 500000000 (QUOTA_EVENTS), 600000000 (SNAP_EVENTS), 700000000 (WINNET_EVENTS), 800000000 (FILESYS_EVENTS), 900000000 (HW_EVENTS), 1100000000 (CPOOL_EVENTS). | [optional] **channels** | **list[str]** | Channels for alert. | [optional] **condition** | **str** | Trigger condition for alert. | [optional] **eventgroup_ids** | **list[str]** | Event Group IDs to be alerted. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventAlertConditionCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventAlertConditionCreateParams.md similarity index 94% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventAlertConditionCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventAlertConditionCreateParams.md index cbd212340..a7fdce6ea 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventAlertConditionCreateParams.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventAlertConditionCreateParams.md @@ -3,7 +3,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**categories** | **list[str]** | Event Group categories to be alerted: all, 100000000 (SYS_DISK_EVENTS), 200000000 (NODE_STATUS_EVENTS), 300000000 (REBOOT_EVENTS), 400000000 (SW_EVENTS), 500000000 (QUOTA_EVENTS), 600000000 (SNAP_EVENTS), 700000000 (WINNET_EVENTS), 800000000 (FILESYS_EVENTS), 900000000 (HW_EVENTS), 1100000000 (CPOOL_EVENTS), 9800000000 (SYSTEM_ADMIN), 9900000000 (DELL_SUPPORT). | [optional] +**categories** | **list[str]** | Event Group categories to be alerted: all, 100000000 (SYS_DISK_EVENTS), 200000000 (NODE_STATUS_EVENTS), 300000000 (REBOOT_EVENTS), 400000000 (SW_EVENTS), 500000000 (QUOTA_EVENTS), 600000000 (SNAP_EVENTS), 700000000 (WINNET_EVENTS), 800000000 (FILESYS_EVENTS), 900000000 (HW_EVENTS), 1100000000 (CPOOL_EVENTS). | [optional] **channels** | **list[str]** | Channels for alert. | **condition** | **str** | Trigger condition for alert. | **eventgroup_ids** | **list[str]** | Event Group IDs to be alerted. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventAlertConditions.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventAlertConditions.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventAlertConditions.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventAlertConditions.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventAlertConditionsAlertCondition.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventAlertConditionsAlertCondition.md similarity index 94% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventAlertConditionsAlertCondition.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventAlertConditionsAlertCondition.md index 3c2a55322..d8b827ce4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventAlertConditionsAlertCondition.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventAlertConditionsAlertCondition.md @@ -3,7 +3,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**categories** | **list[str]** | Event Group categories to be alerted: all, 100000000 (SYS_DISK_EVENTS), 200000000 (NODE_STATUS_EVENTS), 300000000 (REBOOT_EVENTS), 400000000 (SW_EVENTS), 500000000 (QUOTA_EVENTS), 600000000 (SNAP_EVENTS), 700000000 (WINNET_EVENTS), 800000000 (FILESYS_EVENTS), 900000000 (HW_EVENTS), 1100000000 (CPOOL_EVENTS), 9800000000 (SYSTEM_ADMIN), 9900000000 (DELL_SUPPORT). | [optional] +**categories** | **list[str]** | Event Group categories to be alerted: all, 100000000 (SYS_DISK_EVENTS), 200000000 (NODE_STATUS_EVENTS), 300000000 (REBOOT_EVENTS), 400000000 (SW_EVENTS), 500000000 (QUOTA_EVENTS), 600000000 (SNAP_EVENTS), 700000000 (WINNET_EVENTS), 800000000 (FILESYS_EVENTS), 900000000 (HW_EVENTS), 1100000000 (CPOOL_EVENTS). | [optional] **channels** | **list[str]** | Channels for alert. | [optional] **condition** | **str** | Trigger condition for alert. | [optional] **eventgroup_ids** | **list[str]** | Event Group IDs to be alerted. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventAlertConditionsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventAlertConditionsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventAlertConditionsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventAlertConditionsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventApi.md similarity index 84% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventApi.md index cb9a991b1..fcee8f361 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventApi.md @@ -1,24 +1,24 @@ -# isilon_sdk.v9_11_0.EventApi +# isilon_sdk.v9_4_0.EventApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* Method | HTTP request | Description ------------- | ------------- | ------------- -[**create_event_alert_condition**](EventApi.md#create_event_alert_condition) | **POST** /platform/22/event/alert-conditions | -[**create_event_channel**](EventApi.md#create_event_channel) | **POST** /platform/21/event/channels | -[**create_event_channel_0**](EventApi.md#create_event_channel_0) | **POST** /platform/21/event/channels/{EventChannelId} | +[**create_event_alert_condition**](EventApi.md#create_event_alert_condition) | **POST** /platform/15/event/alert-conditions | +[**create_event_channel**](EventApi.md#create_event_channel) | **POST** /platform/12/event/channels | +[**create_event_channel_0**](EventApi.md#create_event_channel_0) | **POST** /platform/12/event/channels/{EventChannelId} | [**create_event_event**](EventApi.md#create_event_event) | **POST** /platform/3/event/events | -[**delete_event_alert_condition**](EventApi.md#delete_event_alert_condition) | **DELETE** /platform/22/event/alert-conditions/{EventAlertConditionId} | -[**delete_event_alert_conditions**](EventApi.md#delete_event_alert_conditions) | **DELETE** /platform/22/event/alert-conditions | -[**delete_event_channel**](EventApi.md#delete_event_channel) | **DELETE** /platform/21/event/channels/{EventChannelId} | -[**get_event_alert_condition**](EventApi.md#get_event_alert_condition) | **GET** /platform/22/event/alert-conditions/{EventAlertConditionId} | +[**delete_event_alert_condition**](EventApi.md#delete_event_alert_condition) | **DELETE** /platform/15/event/alert-conditions/{EventAlertConditionId} | +[**delete_event_alert_conditions**](EventApi.md#delete_event_alert_conditions) | **DELETE** /platform/15/event/alert-conditions | +[**delete_event_channel**](EventApi.md#delete_event_channel) | **DELETE** /platform/12/event/channels/{EventChannelId} | +[**get_event_alert_condition**](EventApi.md#get_event_alert_condition) | **GET** /platform/15/event/alert-conditions/{EventAlertConditionId} | [**get_event_categories**](EventApi.md#get_event_categories) | **GET** /platform/3/event/categories | [**get_event_category**](EventApi.md#get_event_category) | **GET** /platform/3/event/categories/{EventCategoryId} | -[**get_event_channel**](EventApi.md#get_event_channel) | **GET** /platform/21/event/channels/{EventChannelId} | -[**get_event_eventgroup_definition**](EventApi.md#get_event_eventgroup_definition) | **GET** /platform/17/event/eventgroup-definitions/{EventEventgroupDefinitionId} | -[**get_event_eventgroup_definitions**](EventApi.md#get_event_eventgroup_definitions) | **GET** /platform/17/event/eventgroup-definitions | -[**get_event_eventgroup_occurrence**](EventApi.md#get_event_eventgroup_occurrence) | **GET** /platform/19/event/eventgroup-occurrences/{EventEventgroupOccurrenceId} | -[**get_event_eventgroup_occurrences**](EventApi.md#get_event_eventgroup_occurrences) | **GET** /platform/19/event/eventgroup-occurrences | +[**get_event_channel**](EventApi.md#get_event_channel) | **GET** /platform/12/event/channels/{EventChannelId} | +[**get_event_eventgroup_definition**](EventApi.md#get_event_eventgroup_definition) | **GET** /platform/12/event/eventgroup-definitions/{EventEventgroupDefinitionId} | +[**get_event_eventgroup_definitions**](EventApi.md#get_event_eventgroup_definitions) | **GET** /platform/12/event/eventgroup-definitions | +[**get_event_eventgroup_occurrence**](EventApi.md#get_event_eventgroup_occurrence) | **GET** /platform/12/event/eventgroup-occurrences/{EventEventgroupOccurrenceId} | +[**get_event_eventgroup_occurrences**](EventApi.md#get_event_eventgroup_occurrences) | **GET** /platform/12/event/eventgroup-occurrences | [**get_event_eventlist**](EventApi.md#get_event_eventlist) | **GET** /platform/7/event/eventlists/{EventEventlistId} | [**get_event_eventlists**](EventApi.md#get_event_eventlists) | **GET** /platform/7/event/eventlists | [**get_event_maintenance**](EventApi.md#get_event_maintenance) | **GET** /platform/12/event/maintenance | @@ -27,12 +27,12 @@ Method | HTTP request | Description [**get_event_suppress_by_id**](EventApi.md#get_event_suppress_by_id) | **GET** /platform/12/event/suppress/{EventSuppressId} | [**get_event_threshold**](EventApi.md#get_event_threshold) | **GET** /platform/11/event/thresholds/{EventThresholdId} | [**get_event_thresholds**](EventApi.md#get_event_thresholds) | **GET** /platform/11/event/thresholds | -[**list_event_alert_conditions**](EventApi.md#list_event_alert_conditions) | **GET** /platform/22/event/alert-conditions | -[**list_event_channels**](EventApi.md#list_event_channels) | **GET** /platform/21/event/channels | -[**update_event_alert_condition**](EventApi.md#update_event_alert_condition) | **PUT** /platform/22/event/alert-conditions/{EventAlertConditionId} | -[**update_event_channel**](EventApi.md#update_event_channel) | **PUT** /platform/21/event/channels/{EventChannelId} | -[**update_event_eventgroup_occurrence**](EventApi.md#update_event_eventgroup_occurrence) | **PUT** /platform/19/event/eventgroup-occurrences/{EventEventgroupOccurrenceId} | -[**update_event_eventgroup_occurrences**](EventApi.md#update_event_eventgroup_occurrences) | **PUT** /platform/19/event/eventgroup-occurrences | +[**list_event_alert_conditions**](EventApi.md#list_event_alert_conditions) | **GET** /platform/15/event/alert-conditions | +[**list_event_channels**](EventApi.md#list_event_channels) | **GET** /platform/12/event/channels | +[**update_event_alert_condition**](EventApi.md#update_event_alert_condition) | **PUT** /platform/15/event/alert-conditions/{EventAlertConditionId} | +[**update_event_channel**](EventApi.md#update_event_channel) | **PUT** /platform/12/event/channels/{EventChannelId} | +[**update_event_eventgroup_occurrence**](EventApi.md#update_event_eventgroup_occurrence) | **PUT** /platform/12/event/eventgroup-occurrences/{EventEventgroupOccurrenceId} | +[**update_event_eventgroup_occurrences**](EventApi.md#update_event_eventgroup_occurrences) | **PUT** /platform/12/event/eventgroup-occurrences | [**update_event_maintenance**](EventApi.md#update_event_maintenance) | **PUT** /platform/12/event/maintenance | [**update_event_settings**](EventApi.md#update_event_settings) | **PUT** /platform/14/event/settings | [**update_event_suppress_by_id**](EventApi.md#update_event_suppress_by_id) | **PUT** /platform/12/event/suppress/{EventSuppressId} | @@ -50,18 +50,18 @@ Create a new alert condition. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -event_alert_condition = isilon_sdk.v9_11_0.EventAlertConditionCreateParams() # EventAlertConditionCreateParams | +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +event_alert_condition = isilon_sdk.v9_4_0.EventAlertConditionCreateParams() # EventAlertConditionCreateParams | try: api_response = api_instance.create_event_alert_condition(event_alert_condition) @@ -102,18 +102,18 @@ Create a new channel. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -event_channel = isilon_sdk.v9_11_0.EventChannelCreateParams() # EventChannelCreateParams | +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +event_channel = isilon_sdk.v9_4_0.EventChannelCreateParams() # EventChannelCreateParams | try: api_response = api_instance.create_event_channel(event_channel) @@ -154,18 +154,18 @@ Send a test message to the channel. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -event_channel = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +event_channel = isilon_sdk.v9_4_0.Empty() # Empty | event_channel_id = 'event_channel_id_example' # str | Send a test message to the channel. try: @@ -207,18 +207,18 @@ Create a test event. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -event_event = isilon_sdk.v9_11_0.EventEvent() # EventEvent | +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +event_event = isilon_sdk.v9_4_0.EventEvent() # EventEvent | try: api_response = api_instance.create_event_event(event_event) @@ -259,17 +259,17 @@ Delete the alert-condition. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) event_alert_condition_id = 'event_alert_condition_id_example' # str | Delete the alert-condition. try: @@ -310,17 +310,17 @@ Bulk delete of alert conditions. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) channel = 'channel_example' # str | Delete only conditions for this channel (optional) try: @@ -361,17 +361,17 @@ Delete the channel. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) event_channel_id = 'event_channel_id_example' # str | Delete the channel. try: @@ -412,17 +412,17 @@ Retrieve the alert-condition. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) event_alert_condition_id = 'event_alert_condition_id_example' # str | Retrieve the alert-condition. try: @@ -464,17 +464,17 @@ List all eventgroup categories. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -518,17 +518,17 @@ Retrieve the eventgroup category. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) event_category_id = 'event_category_id_example' # str | Retrieve the eventgroup category. try: @@ -570,17 +570,17 @@ Retrieve the channel. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) event_channel_id = 'event_channel_id_example' # str | Retrieve the channel. try: @@ -622,17 +622,17 @@ Retrieve the eventgroup definition. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) event_eventgroup_definition_id = 'event_eventgroup_definition_id_example' # str | Retrieve the eventgroup definition. alert_info = true # bool | Include alert rules and channels in output. (optional) @@ -676,17 +676,17 @@ List all eventgroup definitions. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) alert_info = true # bool | Include alert rules and channels in output. (optional) category = 56 # int | Return eventgroups in the specified category. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) @@ -734,17 +734,17 @@ Retrieve individual eventgroup occurrence. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) event_eventgroup_occurrence_id = 'event_eventgroup_occurrence_id_example' # str | Retrieve individual eventgroup occurrence. try: @@ -786,17 +786,17 @@ List all eventgroup occurrences. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) begin = 56 # int | Events that are in progress after this time. (optional) cause = 'cause_example' # str | Filter by cause. (optional) devid = [56] # list[int] | Filter by devid. (optional) @@ -809,7 +809,7 @@ last_event_end = 56 # int | Filter eventgroups by those that have last_event bef limit = 56 # int | Return no more than this many results at once (see resume). (optional) maintenance = true # bool | Filter by eventgroups created during maintenance mode. (optional) partial_cause_long = 'partial_cause_long_example' # str | Filter by partial long-cause description. (optional) -partial_event_type = 'partial_event_type_example' # str | Filter eventgroups by their associated event's event-type number. (optional) +partial_event_type = 'partial_event_type_example' # str | Filter eventgroups by there associated event's event-type number. (optional) partial_eventgroup_id = 'partial_eventgroup_id_example' # str | Filter by partial eventgroup id. (optional) resolved = true # bool | Filter by resolved eventgroups. (optional) resolver = 'resolver_example' # str | Filter by eventgroup resolver. (optional) @@ -840,7 +840,7 @@ Name | Type | Description | Notes **limit** | **int**| Return no more than this many results at once (see resume). | [optional] **maintenance** | **bool**| Filter by eventgroups created during maintenance mode. | [optional] **partial_cause_long** | **str**| Filter by partial long-cause description. | [optional] - **partial_event_type** | **str**| Filter eventgroups by their associated event's event-type number. | [optional] + **partial_event_type** | **str**| Filter eventgroups by there associated event's event-type number. | [optional] **partial_eventgroup_id** | **str**| Filter by partial eventgroup id. | [optional] **resolved** | **bool**| Filter by resolved eventgroups. | [optional] **resolver** | **str**| Filter by eventgroup resolver. | [optional] @@ -874,17 +874,17 @@ Retrieve the list of events for an eventgroup occurrence. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) event_eventlist_id = 'event_eventlist_id_example' # str | Retrieve the list of events for an eventgroup occurrence. try: @@ -926,17 +926,17 @@ List all event occurrences grouped by eventgroup occurrence. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) event_instance = 'event_instance_example' # str | Return only this event occurrence (optional) eventgroup_id = [56] # list[int] | Filter by eventgroup id. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) @@ -984,17 +984,17 @@ List maintenance mode history. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) history = true # bool | True to list history. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -1040,17 +1040,17 @@ Retrieve the settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_event_settings() @@ -1078,7 +1078,7 @@ This endpoint does not need any parameter. [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_event_suppress** -> EventSuppress get_event_suppress(limit=limit, resume=resume) +> EventSuppress get_event_suppress() @@ -1088,33 +1088,27 @@ List all event type IDs which are suppressed. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -limit = 56 # int | Return no more than this many results at once (see resume). (optional) -resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: - api_response = api_instance.get_event_suppress(limit=limit, resume=resume) + api_response = api_instance.get_event_suppress() pprint(api_response) except ApiException as e: print("Exception when calling EventApi->get_event_suppress: %s\n" % e) ``` ### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **limit** | **int**| Return no more than this many results at once (see resume). | [optional] - **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] +This endpoint does not need any parameter. ### Return type @@ -1142,17 +1136,17 @@ Indicate whether this event type ID is suppressed. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) event_suppress_id = 'event_suppress_id_example' # str | Indicate whether this event type ID is suppressed. try: @@ -1194,17 +1188,17 @@ List all configurable event thresholds ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) event_threshold_id = 'event_threshold_id_example' # str | List all configurable event thresholds event_id = 56 # int | Return thresholds for the specified event id (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) @@ -1252,17 +1246,17 @@ List all configurable event thresholds ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) event_id = 56 # int | Return thresholds for the specified event id (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -1298,7 +1292,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **list_event_alert_conditions** -> EventAlertConditionsExtended list_event_alert_conditions(channel=channel, dir=dir, limit=limit, resume=resume, sort=sort) +> EventAlertConditionsExtended list_event_alert_conditions(channels=channels, dir=dir, limit=limit, resume=resume, sort=sort) @@ -1308,25 +1302,25 @@ List all alert conditions. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -channel = 'channel_example' # str | Return only conditions for the specified channel: (optional) +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +channels = 'channels_example' # str | Return only conditions for the specified channel: (optional) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) sort = 'sort_example' # str | The field that will be used for sorting. (optional) try: - api_response = api_instance.list_event_alert_conditions(channel=channel, dir=dir, limit=limit, resume=resume, sort=sort) + api_response = api_instance.list_event_alert_conditions(channels=channels, dir=dir, limit=limit, resume=resume, sort=sort) pprint(api_response) except ApiException as e: print("Exception when calling EventApi->list_event_alert_conditions: %s\n" % e) @@ -1336,7 +1330,7 @@ except ApiException as e: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **channel** | **str**| Return only conditions for the specified channel: | [optional] + **channels** | **str**| Return only conditions for the specified channel: | [optional] **dir** | **str**| The direction of the sort. | [optional] **limit** | **int**| Return no more than this many results at once (see resume). | [optional] **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] @@ -1368,17 +1362,17 @@ List all channels. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -1426,18 +1420,18 @@ Modify the alert-condition ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -event_alert_condition = isilon_sdk.v9_11_0.EventAlertCondition() # EventAlertCondition | +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +event_alert_condition = isilon_sdk.v9_4_0.EventAlertCondition() # EventAlertCondition | event_alert_condition_id = 'event_alert_condition_id_example' # str | Modify the alert-condition try: @@ -1479,18 +1473,18 @@ Modify the channel. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -event_channel = isilon_sdk.v9_11_0.EventChannel() # EventChannel | +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +event_channel = isilon_sdk.v9_4_0.EventChannel() # EventChannel | event_channel_id = 'event_channel_id_example' # str | Modify the channel. try: @@ -1532,18 +1526,18 @@ Modify eventgroup occurrence. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -event_eventgroup_occurrence = isilon_sdk.v9_11_0.EventEventgroupOccurrence() # EventEventgroupOccurrence | +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +event_eventgroup_occurrence = isilon_sdk.v9_4_0.EventEventgroupOccurrence() # EventEventgroupOccurrence | event_eventgroup_occurrence_id = 'event_eventgroup_occurrence_id_example' # str | Modify eventgroup occurrence. try: @@ -1585,18 +1579,18 @@ Modify all eventgroup occurrences, resolve or ignore all. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -event_eventgroup_occurrences = isilon_sdk.v9_11_0.EventEventgroupOccurrence() # EventEventgroupOccurrence | +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +event_eventgroup_occurrences = isilon_sdk.v9_4_0.EventEventgroupOccurrence() # EventEventgroupOccurrence | try: api_instance.update_event_eventgroup_occurrences(event_eventgroup_occurrences) @@ -1636,18 +1630,18 @@ Perform an action, enable/disable maintenance mode. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -event_maintenance = isilon_sdk.v9_11_0.EventMaintenanceExtended() # EventMaintenanceExtended | +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +event_maintenance = isilon_sdk.v9_4_0.EventMaintenanceExtended() # EventMaintenanceExtended | try: api_instance.update_event_maintenance(event_maintenance) @@ -1687,18 +1681,18 @@ Modify settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -event_settings = isilon_sdk.v9_11_0.EventSettingsSettings() # EventSettingsSettings | +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +event_settings = isilon_sdk.v9_4_0.EventSettingsSettings() # EventSettingsSettings | try: api_instance.update_event_settings(event_settings) @@ -1738,18 +1732,18 @@ Suppress or un-suppress this event type ID. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -event_suppress_id_params = isilon_sdk.v9_11_0.EventSuppressIdParams() # EventSuppressIdParams | +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +event_suppress_id_params = isilon_sdk.v9_4_0.EventSuppressIdParams() # EventSuppressIdParams | event_suppress_id = 'event_suppress_id_example' # str | Suppress or un-suppress this event type ID. try: @@ -1791,18 +1785,18 @@ Modify event thresholds. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.EventApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -event_threshold = isilon_sdk.v9_11_0.EventThreshold() # EventThreshold | +api_instance = isilon_sdk.v9_4_0.EventApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +event_threshold = isilon_sdk.v9_4_0.EventThreshold() # EventThreshold | event_threshold_id = 'event_threshold_id_example' # str | Modify event thresholds. try: diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventCategories.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventCategories.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventCategories.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventCategories.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventCategoriesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventCategoriesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventCategoriesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventCategoriesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventCategory.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventCategory.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventCategory.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventCategory.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventChannel.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventChannel.md similarity index 90% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventChannel.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventChannel.md index 71ff56042..e4683c262 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventChannel.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventChannel.md @@ -7,7 +7,6 @@ Name | Type | Description | Notes **enabled** | **bool** | Channel is to be used or not. | [optional] **excluded_nodes** | **list[int]** | Nodes (LNNs) that can NOT be the masters for this channel. | [optional] **parameters** | [**EventChannelParameters**](EventChannelParameters.md) | Parameters to be used for an smtp channel. | [optional] -**rules** | **list[str]** | Alert rules involving this eventgroup type. | [optional] **system** | **bool** | Channel is a pre-defined system channel. | [optional] **type** | **str** | The mechanism used by the channel. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventChannelCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventChannelCreateParams.md similarity index 91% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventChannelCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventChannelCreateParams.md index d47029e4f..68516c5ca 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventChannelCreateParams.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventChannelCreateParams.md @@ -7,7 +7,6 @@ Name | Type | Description | Notes **enabled** | **bool** | Channel is to be used or not. | [optional] **excluded_nodes** | **list[int]** | Nodes (LNNs) that can NOT be the masters for this channel. | [optional] **parameters** | [**EventChannelParameters**](EventChannelParameters.md) | Parameters to be used for an smtp channel. | [optional] -**rules** | **list[str]** | Alert rules involving this eventgroup type. | [optional] **system** | **bool** | Channel is a pre-defined system channel. | [optional] **type** | **str** | The mechanism used by the channel. | **id** | **int** | Unique identifier. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventChannelExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventChannelExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventChannelExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventChannelExtended.md index 50ef8ed2e..e1c104521 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventChannelExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventChannelExtended.md @@ -7,11 +7,11 @@ Name | Type | Description | Notes **enabled** | **bool** | Channel is to be used or not. | [optional] **excluded_nodes** | **list[int]** | Nodes (LNNs) that can NOT be the masters for this channel. | [optional] **parameters** | [**EventChannelParameters**](EventChannelParameters.md) | Parameters to be used for an smtp channel. | [optional] -**rules** | **list[str]** | Alert rules involving this eventgroup type. | [optional] **system** | **bool** | Channel is a pre-defined system channel. | [optional] **type** | **str** | The mechanism used by the channel. | [optional] **id** | **int** | Unique identifier. | [optional] **name** | **str** | Channel name, may not contain /. | [optional] +**rules** | **list[str]** | Alert rules involving this eventgroup type. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventChannelParameters.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventChannelParameters.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventChannelParameters.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventChannelParameters.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventChannels.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventChannels.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventChannels.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventChannels.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventChannelsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventChannelsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventChannelsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventChannelsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventEvent.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventEvent.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventEvent.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventEvent.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventEventgroupDefinitions.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventEventgroupDefinitions.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventEventgroupDefinitions.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventEventgroupDefinitions.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventEventgroupDefinitionsEventgroupDefinition.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventEventgroupDefinitionsEventgroupDefinition.md similarity index 90% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventEventgroupDefinitionsEventgroupDefinition.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventEventgroupDefinitionsEventgroupDefinition.md index b280db384..2629e86d1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventEventgroupDefinitionsEventgroupDefinition.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventEventgroupDefinitionsEventgroupDefinition.md @@ -3,7 +3,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**category** | **str** | ID of eventgroup category: all, 100000000 (SYS_DISK_EVENTS), 200000000 (NODE_STATUS_EVENTS), 300000000 (REBOOT_EVENTS), 400000000 (SW_EVENTS), 500000000 (QUOTA_EVENTS), 600000000 (SNAP_EVENTS), 700000000 (WINNET_EVENTS), 800000000 (FILESYS_EVENTS), 900000000 (HW_EVENTS), 1100000000 (CPOOL_EVENTS), 9800000000 (SYSTEM_ADMIN), 9900000000 (DELL_SUPPORT). | [optional] +**category** | **str** | ID of eventgroup category: all, 100000000 (SYS_DISK_EVENTS), 200000000 (NODE_STATUS_EVENTS), 300000000 (REBOOT_EVENTS), 400000000 (SW_EVENTS), 500000000 (QUOTA_EVENTS), 600000000 (SNAP_EVENTS), 700000000 (WINNET_EVENTS), 800000000 (FILESYS_EVENTS), 900000000 (HW_EVENTS), 1100000000 (CPOOL_EVENTS). | [optional] **channels** | **list[int]** | Channels by which this eventgroup type can be alerted. | [optional] **description** | **str** | Human readable description - may contain value placeholders. | [optional] **id** | **str** | Unique Identifier. | [optional] @@ -12,7 +12,6 @@ Name | Type | Description | Notes **node** | **bool** | True if this eventgroup type is node specific, false cluster wide. | [optional] **rules** | **list[str]** | Alert rules involving this eventgroup type. | [optional] **suppressed** | **bool** | True if alerting is suppressed for this eventgroup type. | [optional] -**ui_name** | **str** | UI Description for event group | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventEventgroupDefinitionsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventEventgroupDefinitionsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventEventgroupDefinitionsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventEventgroupDefinitionsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventEventgroupOccurrence.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventEventgroupOccurrence.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventEventgroupOccurrence.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventEventgroupOccurrence.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventEventgroupOccurrences.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventEventgroupOccurrences.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventEventgroupOccurrences.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventEventgroupOccurrences.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventEventgroupOccurrencesEventgroup.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventEventgroupOccurrencesEventgroup.md similarity index 91% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventEventgroupOccurrencesEventgroup.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventEventgroupOccurrencesEventgroup.md index 580d44b50..a39616b3b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventEventgroupOccurrencesEventgroup.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventEventgroupOccurrencesEventgroup.md @@ -11,7 +11,6 @@ Name | Type | Description | Notes **ignore** | **bool** | True if eventgroup is marked as 'ignore'. | [optional] **ignore_time** | **int** | Time eventgroup was marked as 'ignore'. | [optional] **last_event** | **int** | Time the most recent event was added to this eventgroup. | [optional] -**ref_groups** | **str** | Comma separated list of relevant log gather groups. This object will be absent in the case where no relevant logs exist. | [optional] **resolve_time** | **int** | When the eventgroup became resolved. | [optional] **resolved** | **bool** | True if eventgroup is resolved. | [optional] **resolver** | **str** | 'USER' if the eventgroup was marked resolved by the user. '<event_instance>' if eventgroup was marked resolved as a result of an event. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventEventgroupOccurrencesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventEventgroupOccurrencesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventEventgroupOccurrencesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventEventgroupOccurrencesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventEventlist.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventEventlist.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventEventlist.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventEventlist.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventEventlistEvent.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventEventlistEvent.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventEventlistEvent.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventEventlistEvent.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventEventlists.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventEventlists.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventEventlists.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventEventlists.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventEventlistsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventEventlistsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventEventlistsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventEventlistsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventMaintenance.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventMaintenance.md similarity index 71% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventMaintenance.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventMaintenance.md index 3ab39a48a..060316edf 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventMaintenance.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventMaintenance.md @@ -3,7 +3,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**history** | [**list[EventMaintenanceHistoryItem]**](EventMaintenanceHistoryItem.md) | History list of CELOG maintenance mode windows. | [optional] +**history** | **list[int]** | Start and stop times of maintenance mode, 'end' equals 0 indicates that maintenance mode is enabled. | [optional] **maintenance** | **bool** | Indicates if maintenance mode is enabled. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventMaintenanceExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventMaintenanceExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventMaintenanceExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventMaintenanceExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventSettingsSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventSettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventSettingsSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventSuppress.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventSuppress.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventSuppress.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventSuppress.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventSuppressIdParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventSuppressIdParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventSuppressIdParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventSuppressIdParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateDatamoverPolicyResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventSuppressSuppression.md similarity index 76% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateDatamoverPolicyResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventSuppressSuppression.md index ce6894397..2ec367cd4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateDatamoverPolicyResponse.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventSuppressSuppression.md @@ -1,9 +1,9 @@ -# CreateDatamoverPolicyResponse +# EventSuppressSuppression ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**id** | **int** | The unique policy identifier. | +**id** | **str** | Unique event identifier. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventThreshold.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventThreshold.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventThreshold.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventThreshold.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventThresholdDefaults.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventThresholdDefaults.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventThresholdDefaults.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventThresholdDefaults.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventThresholdDefaultsCrit.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventThresholdDefaultsCrit.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventThresholdDefaultsCrit.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventThresholdDefaultsCrit.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventThresholdExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventThresholdExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventThresholdExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventThresholdExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/EventThresholds.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/EventThresholds.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/EventThresholds.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/EventThresholds.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FileFilterApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FileFilterApi.md similarity index 84% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FileFilterApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FileFilterApi.md index 50e5767bd..f6583e9c2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FileFilterApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/FileFilterApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.FileFilterApi +# isilon_sdk.v9_4_0.FileFilterApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -19,17 +19,17 @@ View File Filtering settings of an access zone ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FileFilterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FileFilterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) zone = 'zone_example' # str | Specifies the access zones in which these settings apply. (optional) try: @@ -71,18 +71,18 @@ Modify one or more File Filtering settings for an access zone ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FileFilterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -file_filter_settings = isilon_sdk.v9_11_0.FileFilterSettingsExtended() # FileFilterSettingsExtended | +api_instance = isilon_sdk.v9_4_0.FileFilterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +file_filter_settings = isilon_sdk.v9_4_0.FileFilterSettingsExtended() # FileFilterSettingsExtended | zone = 'zone_example' # str | Specifies the access zones in which these settings apply. (optional) try: diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FileFilterSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FileFilterSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FileFilterSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FileFilterSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FileFilterSettingsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FileFilterSettingsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FileFilterSettingsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FileFilterSettingsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FileFilterSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FileFilterSettingsSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FileFilterSettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FileFilterSettingsSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolApi.md similarity index 80% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolApi.md index a1da9f09e..b9da83a92 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.FilepoolApi +# isilon_sdk.v9_4_0.FilepoolApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -20,24 +20,24 @@ Method | HTTP request | Description -Create a new file pool policy. +Create a new policy. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FilepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -filepool_policy = isilon_sdk.v9_11_0.FilepoolPolicyCreateParams() # FilepoolPolicyCreateParams | +api_instance = isilon_sdk.v9_4_0.FilepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +filepool_policy = isilon_sdk.v9_4_0.FilepoolPolicyCreateParams() # FilepoolPolicyCreateParams | try: api_response = api_instance.create_filepool_policy(filepool_policy) @@ -78,17 +78,17 @@ Delete file pool policy. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FilepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FilepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) filepool_policy_id = 'filepool_policy_id_example' # str | Delete file pool policy. try: @@ -129,17 +129,17 @@ List default file pool policy. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FilepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FilepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_filepool_default_policy() @@ -177,17 +177,17 @@ Retrieve file pool policy information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FilepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FilepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) filepool_policy_id = 'filepool_policy_id_example' # str | Retrieve file pool policy information. try: @@ -229,17 +229,17 @@ List all templates. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FilepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FilepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) filepool_template_id = 'filepool_template_id_example' # str | List all templates. try: @@ -281,17 +281,17 @@ List all templates. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FilepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FilepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_filepool_templates() @@ -323,23 +323,23 @@ This endpoint does not need any parameter. -List all file pool policies. +List all policies. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FilepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FilepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.list_filepool_policies() @@ -377,18 +377,18 @@ Set default file pool policy. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FilepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -filepool_default_policy = isilon_sdk.v9_11_0.FilepoolDefaultPolicyExtended() # FilepoolDefaultPolicyExtended | +api_instance = isilon_sdk.v9_4_0.FilepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +filepool_default_policy = isilon_sdk.v9_4_0.FilepoolDefaultPolicyExtended() # FilepoolDefaultPolicyExtended | try: api_instance.update_filepool_default_policy(filepool_default_policy) @@ -422,25 +422,25 @@ void (empty response body) - Modify file pool policy. All input fields are optional, but one or more must be supplied. +Modify file pool policy. All input fields are optional, but one or more must be supplied. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FilepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -filepool_policy = isilon_sdk.v9_11_0.FilepoolPolicy() # FilepoolPolicy | -filepool_policy_id = 'filepool_policy_id_example' # str | Modify file pool policy. All input fields are optional, but one or more must be supplied. +api_instance = isilon_sdk.v9_4_0.FilepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +filepool_policy = isilon_sdk.v9_4_0.FilepoolPolicy() # FilepoolPolicy | +filepool_policy_id = 'filepool_policy_id_example' # str | Modify file pool policy. All input fields are optional, but one or more must be supplied. try: api_instance.update_filepool_policy(filepool_policy, filepool_policy_id) @@ -453,7 +453,7 @@ except ApiException as e: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **filepool_policy** | [**FilepoolPolicy**](FilepoolPolicy.md)| | - **filepool_policy_id** | **str**| Modify file pool policy. All input fields are optional, but one or more must be supplied. | + **filepool_policy_id** | **str**| Modify file pool policy. All input fields are optional, but one or more must be supplied. | ### Return type diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolDefaultPolicy.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolDefaultPolicy.md similarity index 94% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolDefaultPolicy.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolDefaultPolicy.md index 26f67dba8..0d3583c5d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolDefaultPolicy.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolDefaultPolicy.md @@ -3,7 +3,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**default_policy** | [**FilepoolDefaultPolicyDefaultPolicy**](FilepoolDefaultPolicyDefaultPolicy.md) | A default filepool policy object. | [optional] +**default_policy** | [**FilepoolDefaultPolicyDefaultPolicy**](FilepoolDefaultPolicyDefaultPolicy.md) | A default filepool policy object | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolDefaultPolicyDefaultPolicy.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolDefaultPolicyDefaultPolicy.md similarity index 89% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolDefaultPolicyDefaultPolicy.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolDefaultPolicyDefaultPolicy.md index f9a430513..ec19485b2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolDefaultPolicyDefaultPolicy.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolDefaultPolicyDefaultPolicy.md @@ -3,7 +3,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**actions** | [**list[FilepoolDefaultPolicyDefaultPolicyAction]**](FilepoolDefaultPolicyDefaultPolicyAction.md) | A list of actions to be taken for matching files. | [optional] +**actions** | [**list[FilepoolDefaultPolicyDefaultPolicyAction]**](FilepoolDefaultPolicyDefaultPolicyAction.md) | A list of actions to be taken for matching files | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/OsSecurity.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolDefaultPolicyDefaultPolicyAction.md similarity index 66% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/OsSecurity.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolDefaultPolicyDefaultPolicyAction.md index e146605ee..1650a9573 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/OsSecurity.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolDefaultPolicyDefaultPolicyAction.md @@ -1,10 +1,10 @@ -# OsSecurity +# FilepoolDefaultPolicyDefaultPolicyAction ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**nodes** | [**list[OsSecurityNode]**](OsSecurityNode.md) | | [optional] -**total** | **int** | Total number of items available. | [optional] +**action_param** | **str** | Varies according to action_type | [optional] +**action_type** | **str** | | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolDefaultPolicyExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolDefaultPolicyExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolDefaultPolicyExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolDefaultPolicyExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicies.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicies.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicies.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicies.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPoliciesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPoliciesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPoliciesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPoliciesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicy.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicy.md similarity index 65% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicy.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicy.md index c0bc66e04..f79a3588f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicy.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicy.md @@ -3,11 +3,11 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**actions** | [**list[FilepoolPolicyAction]**](FilepoolPolicyAction.md) | A list of actions to be taken for matching files. | [optional] -**apply_order** | **int** | The order in which this policy should be applied (relative to other policies). | [optional] -**description** | **str** | A description for this policy. | [optional] -**file_matching_pattern** | [**FilepoolPolicyFileMatchingPattern**](FilepoolPolicyFileMatchingPattern.md) | The file matching rules for this policy. | [optional] -**name** | **str** | A unique name for this policy. | [optional] +**actions** | [**list[FilepoolPolicyAction]**](FilepoolPolicyAction.md) | A list of actions to be taken for matching files | [optional] +**apply_order** | **int** | The order in which this policy should be applied (relative to other policies) | [optional] +**description** | **str** | A description for this policy | [optional] +**file_matching_pattern** | [**FilepoolPolicyFileMatchingPattern**](FilepoolPolicyFileMatchingPattern.md) | The file matching rules for this policy | [optional] +**name** | **str** | A unique name for this policy | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigImportRules.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicyAction.md similarity index 69% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigImportRules.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicyAction.md index db9134127..686c5ff5d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigImportRules.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicyAction.md @@ -1,9 +1,10 @@ -# ConfigImportRules +# FilepoolPolicyAction ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**network** | [**ConfigImportRulesNetwork**](ConfigImportRulesNetwork.md) | | [optional] +**action_param** | **str** | Varies according to action_type | +**action_type** | **str** | | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicyActionExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicyActionExtended.md new file mode 100644 index 000000000..e18b1ccc0 --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicyActionExtended.md @@ -0,0 +1,11 @@ +# FilepoolPolicyActionExtended + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**action_param** | **str** | Varies according to action_type | [optional] +**action_type** | **str** | | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkDiscoverDiscover.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicyActionExtendedExtended.md similarity index 65% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkDiscoverDiscover.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicyActionExtendedExtended.md index eba011b3b..6304b14ce 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkDiscoverDiscover.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicyActionExtendedExtended.md @@ -1,10 +1,10 @@ -# NetworkDiscoverDiscover +# FilepoolPolicyActionExtendedExtended ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**id** | **int** | Discover result identifier | [optional] -**uri** | **str** | A valid URI pointing to the data storage | [optional] +**action_param** | **str** | Varies according to action_type | [optional] +**action_type** | **str** | | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicyCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicyCreateParams.md similarity index 67% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicyCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicyCreateParams.md index a62939efc..ff0950377 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicyCreateParams.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicyCreateParams.md @@ -3,11 +3,11 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**actions** | [**list[FilepoolPolicyAction]**](FilepoolPolicyAction.md) | A list of actions to be taken for matching files. | [optional] -**apply_order** | **int** | The order in which this policy should be applied (relative to other policies). | [optional] -**description** | **str** | A description for this policy. | [optional] -**file_matching_pattern** | [**FilepoolPolicyFileMatchingPattern**](FilepoolPolicyFileMatchingPattern.md) | The file matching rules for this policy. | -**name** | **str** | A unique name for this policy. | +**actions** | [**list[FilepoolPolicyAction]**](FilepoolPolicyAction.md) | A list of actions to be taken for matching files | [optional] +**apply_order** | **int** | The order in which this policy should be applied (relative to other policies) | [optional] +**description** | **str** | A description for this policy | [optional] +**file_matching_pattern** | [**FilepoolPolicyFileMatchingPattern**](FilepoolPolicyFileMatchingPattern.md) | The file matching rules for this policy | +**name** | **str** | A unique name for this policy | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicyExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicyExtended.md similarity index 62% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicyExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicyExtended.md index 58abb1e4a..8e8e52b9f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicyExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicyExtended.md @@ -3,15 +3,15 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**actions** | [**list[FilepoolPolicyActionExtended]**](FilepoolPolicyActionExtended.md) | A list of actions to be taken for matching files. | [optional] -**apply_order** | **int** | The order in which this policy should be applied (relative to other policies). | [optional] -**birth_cluster_id** | **str** | The guid assigned to the cluster on which the policy was created. | [optional] -**description** | **str** | A description for this policy. | [optional] -**file_matching_pattern** | [**FilepoolPolicyFileMatchingPattern**](FilepoolPolicyFileMatchingPattern.md) | The file matching rules for this policy. | [optional] -**id** | **str** | A unique name for this policy. | [optional] -**name** | **str** | A unique name for this policy. | [optional] -**state** | **str** | Indicates whether this policy is in a good state (\"OK\") or disabled (\"disabled\"). | [optional] -**state_details** | **str** | Gives further information to describe the state of this policy. | [optional] +**actions** | [**list[FilepoolPolicyActionExtended]**](FilepoolPolicyActionExtended.md) | A list of actions to be taken for matching files | [optional] +**apply_order** | **int** | The order in which this policy should be applied (relative to other policies) | [optional] +**birth_cluster_id** | **str** | The guid assigned to the cluster on which the policy was created | [optional] +**description** | **str** | A description for this policy | [optional] +**file_matching_pattern** | [**FilepoolPolicyFileMatchingPattern**](FilepoolPolicyFileMatchingPattern.md) | The file matching rules for this policy | [optional] +**id** | **str** | A unique name for this policy | [optional] +**name** | **str** | A unique name for this policy | [optional] +**state** | **str** | Indicates whether this policy is in a good state (\"OK\") or disabled (\"disabled\") | [optional] +**state_details** | **str** | Gives further information to describe the state of this policy | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicyExtendedExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicyExtendedExtended.md similarity index 61% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicyExtendedExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicyExtendedExtended.md index b8d720ced..cec646dd0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicyExtendedExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicyExtendedExtended.md @@ -3,15 +3,15 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**actions** | [**list[FilepoolPolicyActionExtendedExtended]**](FilepoolPolicyActionExtendedExtended.md) | A list of actions to be taken for matching files. | [optional] -**apply_order** | **int** | The order in which this policy should be applied (relative to other policies). | [optional] -**birth_cluster_id** | **str** | The guid assigned to the cluster on which the policy was created. | [optional] -**description** | **str** | A description for this policy. | [optional] -**file_matching_pattern** | [**FilepoolPolicyFileMatchingPattern**](FilepoolPolicyFileMatchingPattern.md) | The file matching rules for this policy. | [optional] -**id** | **str** | A unique name for this policy. | [optional] -**name** | **str** | A unique name for this policy. | [optional] -**state** | **str** | Indicates whether this policy is in a good state (\"OK\") or disabled (\"disabled\"). | [optional] -**state_details** | **str** | Gives further information to describe the state of this policy. | [optional] +**actions** | [**list[FilepoolPolicyActionExtendedExtended]**](FilepoolPolicyActionExtendedExtended.md) | A list of actions to be taken for matching files | [optional] +**apply_order** | **int** | The order in which this policy should be applied (relative to other policies) | [optional] +**birth_cluster_id** | **str** | The guid assigned to the cluster on which the policy was created | [optional] +**description** | **str** | A description for this policy | [optional] +**file_matching_pattern** | [**FilepoolPolicyFileMatchingPattern**](FilepoolPolicyFileMatchingPattern.md) | The file matching rules for this policy | [optional] +**id** | **str** | A unique name for this policy | [optional] +**name** | **str** | A unique name for this policy | [optional] +**state** | **str** | Indicates whether this policy is in a good state (\"OK\") or disabled (\"disabled\") | [optional] +**state_details** | **str** | Gives further information to describe the state of this policy | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicyFileMatchingPattern.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicyFileMatchingPattern.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicyFileMatchingPattern.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicyFileMatchingPattern.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicyFileMatchingPatternOrCriteriaItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicyFileMatchingPatternOrCriteriaItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicyFileMatchingPatternOrCriteriaItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicyFileMatchingPatternOrCriteriaItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem.md similarity index 76% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem.md index 10c07b060..1c9269e8d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem.md @@ -3,15 +3,15 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**attribute_exists** | **bool** | Indicates whether the existence of an attribute indicates a match (valid only with 'type' = 'custom_attribute'). | [optional] -**begins_with** | **bool** | True to match the path exactly, False to match any subtree. (valid only with 'type' = 'path'). | [optional] -**case_sensitive** | **bool** | True to indicate case sensitivity when comparing file attributes (valid only with 'type' = 'name' or 'type' = 'path'). | [optional] -**field** | **str** | File attribute field name to be compared in a custom comparison (valid only with 'type' = 'custom_attribute'). | [optional] -**operator** | **str** | The comparison operator to use while comparing an attribute with its value. | [optional] -**type** | **str** | The file attribute to be compared to a given value. | -**units** | **str** | Size unit value. One of 'B','KB','MB','GB','TB','PB','EB' (valid only with 'type' = 'size'). | [optional] -**use_relative_time** | **bool** | Whether time units refer to a calendar date and time (e.g., Jun 3, 2009) or a relative duration (e.g., 2 weeks) (valid only with 'type' in {accessed_time, birth_time, changed_time, or metadata_changed_time}). | [optional] -**value** | **str** | The value to be compared against a file attribute. | [optional] +**attribute_exists** | **bool** | Indicates whether the existence of an attribute indicates a match (valid only with 'type' = 'custom_attribute') | [optional] +**begins_with** | **bool** | True to match the path exactly, False to match any subtree. (valid only with 'type' = 'path') | [optional] +**case_sensitive** | **bool** | True to indicate case sensitivity when comparing file attributes (valid only with 'type' = 'name' or 'type' = 'path') | [optional] +**field** | **str** | File attribute field name to be compared in a custom comparison (valid only with 'type' = 'custom_attribute') | [optional] +**operator** | **str** | The comparison operator to use while comparing an attribute with its value | [optional] +**type** | **str** | The file attribute to be compared to a given value | +**units** | **str** | Size unit value. One of 'B','KB','MB','GB','TB','PB','EB' (valid only with 'type' = 'size') | [optional] +**use_relative_time** | **bool** | Whether time units refer to a calendar date and time (e.g., Jun 3, 2009) or a relative duration (e.g., 2 weeks) (valid only with 'type' in {accessed_time, birth_time, changed_time or metadata_changed_time} | [optional] +**value** | **str** | The value to be compared against a file attribute | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolTemplate.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolTemplate.md similarity index 57% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolTemplate.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolTemplate.md index 5bd1eba4c..7aef01d66 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolTemplate.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolTemplate.md @@ -3,15 +3,15 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**actions** | [**list[FilepoolTemplateAction]**](FilepoolTemplateAction.md) | A list of actions to be taken for matching files. | [optional] -**apply_order** | **int** | The order in which this policy should be applied (relative to other policies). | [optional] -**birth_cluster_id** | **str** | The guid assigned to the cluster on which the account was created. | [optional] -**description** | **str** | A description for this policy. | [optional] -**file_matching_pattern** | [**FilepoolPolicyFileMatchingPattern**](FilepoolPolicyFileMatchingPattern.md) | The file matching rules for this policy. | [optional] -**id** | **int** | A unique identifier for this policy. | [optional] -**name** | **str** | A unique name for this policy. | [optional] -**state** | **str** | Indicates whether this policy is in a good state (\"OK\") or disabled (\"disabled\"). | [optional] -**state_details** | **str** | Gives further information to describe the state of this policy. | [optional] +**actions** | [**list[FilepoolTemplateAction]**](FilepoolTemplateAction.md) | A list of actions to be taken for matching files | [optional] +**apply_order** | **int** | The order in which this policy should be applied (relative to other policies) | [optional] +**birth_cluster_id** | **str** | The guid assigned to the cluster on which the account was created | [optional] +**description** | **str** | A description for this policy | [optional] +**file_matching_pattern** | [**FilepoolPolicyFileMatchingPattern**](FilepoolPolicyFileMatchingPattern.md) | The file matching rules for this policy | [optional] +**id** | **int** | A unique identifier for this policy | [optional] +**name** | **str** | A unique name for this policy | [optional] +**state** | **str** | Indicates whether this policy is in a good state (\"OK\") or disabled (\"disabled\") | [optional] +**state_details** | **str** | Gives further information to describe the state of this policy | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigConfigLock.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolTemplateAction.md similarity index 67% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigConfigLock.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolTemplateAction.md index 32c5d41c8..c21db7f78 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigConfigLock.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolTemplateAction.md @@ -1,9 +1,10 @@ -# ConfigConfigLock +# FilepoolTemplateAction ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**config_lock_status** | **bool** | Status of configuration lock: false - disabled, true - enabled | [optional] +**action_param** | **str** | Varies according to action_type | [optional] +**action_type** | **str** | | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolTemplateActionExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolTemplateActionExtended.md new file mode 100644 index 000000000..d85e4b922 --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolTemplateActionExtended.md @@ -0,0 +1,11 @@ +# FilepoolTemplateActionExtended + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**action_param** | **str** | Varies according to action_type | [optional] +**action_type** | **str** | | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolTemplateExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolTemplateExtended.md similarity index 61% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolTemplateExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolTemplateExtended.md index 04321f7b8..4e2e280d4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolTemplateExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolTemplateExtended.md @@ -3,15 +3,15 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**actions** | [**list[FilepoolTemplateActionExtended]**](FilepoolTemplateActionExtended.md) | A list of actions to be taken for matching files. | [optional] -**apply_order** | **int** | The order in which this policy should be applied (relative to other policies). | [optional] -**birth_cluster_id** | **str** | The guid assigned to the cluster on which the account was created. | [optional] -**description** | **str** | A description for this policy. | [optional] -**file_matching_pattern** | [**FilepoolPolicyFileMatchingPattern**](FilepoolPolicyFileMatchingPattern.md) | The file matching rules for this policy. | [optional] -**id** | **int** | A unique identifier for this policy. | [optional] -**name** | **str** | A unique name for this policy. | [optional] -**state** | **str** | Indicates whether this policy is in a good state (\"OK\") or disabled (\"disabled\"). | [optional] -**state_details** | **str** | Gives further information to describe the state of this policy. | [optional] +**actions** | [**list[FilepoolTemplateActionExtended]**](FilepoolTemplateActionExtended.md) | A list of actions to be taken for matching files | [optional] +**apply_order** | **int** | The order in which this policy should be applied (relative to other policies) | [optional] +**birth_cluster_id** | **str** | The guid assigned to the cluster on which the account was created | [optional] +**description** | **str** | A description for this policy | [optional] +**file_matching_pattern** | [**FilepoolPolicyFileMatchingPattern**](FilepoolPolicyFileMatchingPattern.md) | The file matching rules for this policy | [optional] +**id** | **int** | A unique identifier for this policy | [optional] +**name** | **str** | A unique name for this policy | [optional] +**state** | **str** | Indicates whether this policy is in a good state (\"OK\") or disabled (\"disabled\") | [optional] +**state_details** | **str** | Gives further information to describe the state of this policy | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolTemplates.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolTemplates.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolTemplates.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolTemplates.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolTemplatesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolTemplatesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FilepoolTemplatesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FilepoolTemplatesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilesystemApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilesystemApi.md similarity index 82% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FilesystemApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FilesystemApi.md index 65878a2bd..e574afedb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FilesystemApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/FilesystemApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.FilesystemApi +# isilon_sdk.v9_4_0.FilesystemApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -23,17 +23,17 @@ Retrieve settings for access time. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FilesystemApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FilesystemApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_settings_access_time() @@ -71,17 +71,17 @@ Retrieve current cluster character encoding settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FilesystemApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FilesystemApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_settings_character_encodings() @@ -119,17 +119,17 @@ Retrieve settings for filesystem compression. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FilesystemApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FilesystemApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_settings_compression() @@ -167,18 +167,18 @@ Set settings for access time. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FilesystemApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -settings_access_time = isilon_sdk.v9_11_0.SettingsAccessTimeExtended() # SettingsAccessTimeExtended | +api_instance = isilon_sdk.v9_4_0.FilesystemApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +settings_access_time = isilon_sdk.v9_4_0.SettingsAccessTimeExtended() # SettingsAccessTimeExtended | try: api_instance.update_settings_access_time(settings_access_time) @@ -218,18 +218,18 @@ Set current character encoding. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FilesystemApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -settings_character_encodings = isilon_sdk.v9_11_0.SettingsCharacterEncodingsExtended() # SettingsCharacterEncodingsExtended | +api_instance = isilon_sdk.v9_4_0.FilesystemApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +settings_character_encodings = isilon_sdk.v9_4_0.SettingsCharacterEncodingsExtended() # SettingsCharacterEncodingsExtended | try: api_instance.update_settings_character_encodings(settings_character_encodings) @@ -269,18 +269,18 @@ Set settings for filesystem compression. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FilesystemApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -settings_compression = isilon_sdk.v9_11_0.SettingsCompressionExtended() # SettingsCompressionExtended | +api_instance = isilon_sdk.v9_4_0.FilesystemApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +settings_compression = isilon_sdk.v9_4_0.SettingsCompressionExtended() # SettingsCompressionExtended | try: api_instance.update_settings_compression(settings_compression) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FsaApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FsaApi.md similarity index 84% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FsaApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FsaApi.md index 3a2d285d9..00829a0c4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FsaApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/FsaApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.FsaApi +# isilon_sdk.v9_4_0.FsaApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -25,17 +25,17 @@ Delete the result set. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FsaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FsaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) fsa_result_id = 'fsa_result_id_example' # str | Delete the result set. try: @@ -76,17 +76,17 @@ Revert all settings to their defaults. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FsaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FsaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_instance.delete_fsa_settings() @@ -123,17 +123,17 @@ Retrieve all the FSA index table names available on an PowerScale cluster. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FsaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FsaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_fsa_index() @@ -171,17 +171,17 @@ Retrieve result set information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FsaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FsaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) fsa_result_id = 'fsa_result_id_example' # str | Retrieve result set information. try: @@ -223,17 +223,17 @@ List all results. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FsaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FsaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_fsa_results() @@ -271,17 +271,17 @@ List all settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FsaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FsaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) scope = 'scope_example' # str | If specified as effective or not specified, all fields are returned. If specified as user, only fields with non-default values are shown. If specified as default, the original values are returned. (optional) try: @@ -323,18 +323,18 @@ Modify result set. Only the pinned property can be changed at this time. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FsaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -fsa_result = isilon_sdk.v9_11_0.FsaResult() # FsaResult | +api_instance = isilon_sdk.v9_4_0.FsaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +fsa_result = isilon_sdk.v9_4_0.FsaResult() # FsaResult | fsa_result_id = 'fsa_result_id_example' # str | Modify result set. Only the pinned property can be changed at this time. try: @@ -376,18 +376,18 @@ Modify one or more settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FsaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -fsa_settings = isilon_sdk.v9_11_0.FsaSettingsSettings() # FsaSettingsSettings | +api_instance = isilon_sdk.v9_4_0.FsaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +fsa_settings = isilon_sdk.v9_4_0.FsaSettingsSettings() # FsaSettingsSettings | try: api_instance.update_fsa_settings(fsa_settings) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FsaIndex.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FsaIndex.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FsaIndex.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FsaIndex.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FsaIndexApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FsaIndexApi.md similarity index 90% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FsaIndexApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FsaIndexApi.md index 553af47e7..bccda5e34 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FsaIndexApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/FsaIndexApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.FsaIndexApi +# isilon_sdk.v9_4_0.FsaIndexApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -19,17 +19,17 @@ Get a single index entry from the index table. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FsaIndexApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FsaIndexApi(isilon_sdk.v9_4_0.ApiClient(configuration)) name_lin_id = 56 # int | Get a single index entry from the index table. name = 'name_example' # str | path = true # bool | Resolve the path for an index entry. This query argument is invalid if an initial index job is in progress or incomplete or if an incremental index job is in progress or incomplete. (optional) @@ -75,17 +75,17 @@ Get index entries from the given index table. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FsaIndexApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FsaIndexApi(isilon_sdk.v9_4_0.ApiClient(configuration)) name = 'name_example' # str | limit = 56 # int | Return no more than this many results at once (see resume). (optional) lin = [56] # list[int] | LIN of file or directory to lookup. Accepts multiple query arguments. (optional) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FsaResult.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FsaResult.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FsaResult.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FsaResult.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FsaResultExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FsaResultExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FsaResultExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FsaResultExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FsaResults.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FsaResults.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FsaResults.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FsaResults.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FsaResultsApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FsaResultsApi.md similarity index 93% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FsaResultsApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FsaResultsApi.md index f0345e6ef..9c3b8679b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FsaResultsApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/FsaResultsApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.FsaResultsApi +# isilon_sdk.v9_4_0.FsaResultsApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -29,17 +29,17 @@ This resource retrieves a histogram breakout for an individual FSA result set. I ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FsaResultsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FsaResultsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) id = 'id_example' # str | stat = 'stat_example' # str | @@ -83,17 +83,17 @@ This resource retrieves a histogram breakout for an individual FSA result set. I ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FsaResultsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FsaResultsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) histogram_stat_by_breakout = 'histogram_stat_by_breakout_example' # str | This resource retrieves a histogram breakout for an individual FSA result set. ID in the resource path is the result set ID. id = 'id_example' # str | stat = 'stat_example' # str | @@ -163,17 +163,17 @@ Name | Type | Description | Notes ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FsaResultsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FsaResultsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) id = 'id_example' # str | comp_report = 56 # int | Result set identifier for comparison of database results. (optional) path = 'path_example' # str | Directory absolute path to report usage information. Path should be UTF8 percent encoded, should be within \"/ifs\". Defaults to \"/ifs\". (optional) @@ -221,17 +221,17 @@ Name | Type | Description | Notes ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FsaResultsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FsaResultsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) result_dir_pools_usage_lin = 56 # int | View pool usage information of a directory, classified by storage pools in response \"usage_data\". The storage pool type can be specified by query parameter \"storage_pool_type\". The directory is LIN token of URI. The response \"dir_usage\" is total disk usage of directory, over all pools at a given storage pool level. When LIN cannot be found within result, status code 404 and error message will be returned. id = 'id_example' # str | comp_report = 56 # int | Result set identifier for comparison of database results. (optional) @@ -279,17 +279,17 @@ This resource retrieves directory information. ID in the resource path is the re ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FsaResultsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FsaResultsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) id = 'id_example' # str | comp_report = 56 # int | Result set identifier for comparison of database results. (optional) dir = 'dir_example' # str | The direction of the sort. (optional) @@ -341,17 +341,17 @@ This resource retrieves directory information. ID in the resource path is the re ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FsaResultsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FsaResultsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) result_directory_id = 56 # int | This resource retrieves directory information. ID in the resource path is the result set ID. id = 'id_example' # str | comp_report = 56 # int | Result set identifier for comparison of database results. (optional) @@ -403,17 +403,17 @@ This resource retrieves a histogram of file counts for an individual FSA result ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FsaResultsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FsaResultsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) id = 'id_example' # str | try: @@ -455,17 +455,17 @@ This resource retrieves a histogram of file counts for an individual FSA result ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FsaResultsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FsaResultsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) result_histogram_stat = 'result_histogram_stat_example' # str | This resource retrieves a histogram of file counts for an individual FSA result set. ID in the resource path is the result set ID. id = 'id_example' # str | atime_filter = 56 # int | Filter according to file accessed time, where the filter value specifies a negative number of seconds representing a time before the begin time of the report. The list of valid atime filter values may be found by performing a histogram breakout by atime and viewing the resulting key values. (optional) @@ -531,17 +531,17 @@ This resource retrieves the top directories. ID in the resource path is the resu ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FsaResultsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FsaResultsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) result_top_dir_id = 'result_top_dir_id_example' # str | This resource retrieves the top directories. ID in the resource path is the result set ID. id = 'id_example' # str | comp_report = 56 # int | Result set identifier for comparison of database results. (optional) @@ -595,17 +595,17 @@ This resource retrieves the top directories. ID in the resource path is the resu ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FsaResultsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FsaResultsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) id = 'id_example' # str | try: @@ -647,17 +647,17 @@ This resource retrieves the top files. ID in the resource path is the result set ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FsaResultsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FsaResultsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) result_top_file_id = 'result_top_file_id_example' # str | This resource retrieves the top files. ID in the resource path is the result set ID. id = 'id_example' # str | comp_report = 56 # int | Result set identifier for comparison of database results. (optional) @@ -711,17 +711,17 @@ This resource retrieves the top files. ID in the resource path is the result set ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.FsaResultsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.FsaResultsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) id = 'id_example' # str | try: diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FsaResultsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FsaResultsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FsaResultsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FsaResultsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FsaSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FsaSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FsaSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FsaSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FsaSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FsaSettingsSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FsaSettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FsaSettingsSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FtpSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FtpSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FtpSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FtpSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FtpSettingsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FtpSettingsExtended.md similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FtpSettingsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FtpSettingsExtended.md index 9a9b1885c..418429f4b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FtpSettingsExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/FtpSettingsExtended.md @@ -4,7 +4,6 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **accept_timeout** | **int** | The timeout, in seconds, for a remote client to establish a PASV style data connection. | [optional] -**active_mode** | **bool** | If enabled, connection is established via active mode. | [optional] **allow_anon_access** | **bool** | Controls whether anonymous logins are permitted or not. | [optional] **allow_anon_upload** | **bool** | Controls whether anonymous users will be permitted to upload files. | [optional] **allow_dirlists** | **bool** | If set to false, all directory list commands will return a permission denied error. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FtpSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/FtpSettingsSettings.md similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FtpSettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/FtpSettingsSettings.md index 03fa2424b..90283d832 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FtpSettingsSettings.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/FtpSettingsSettings.md @@ -4,7 +4,6 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **accept_timeout** | **int** | The timeout, in seconds, for a remote client to establish a PASV style data connection. | [optional] -**active_mode** | **bool** | If enabled, connection is established via active mode. | [optional] **allow_anon_access** | **bool** | Controls whether anonymous logins are permitted or not. | [optional] **allow_anon_upload** | **bool** | Controls whether anonymous users will be permitted to upload files. | [optional] **allow_dirlists** | **bool** | If set to false, all directory list commands will return a permission denied error. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/GroupMembers.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/GroupMembers.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/GroupMembers.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/GroupMembers.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/GroupnetSubnet.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/GroupnetSubnet.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/GroupnetSubnet.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/GroupnetSubnet.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/GroupnetSubnetCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/GroupnetSubnetCreateParams.md similarity index 92% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/GroupnetSubnetCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/GroupnetSubnetCreateParams.md index 3da99bfc6..7081c588d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/GroupnetSubnetCreateParams.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/GroupnetSubnetCreateParams.md @@ -15,7 +15,6 @@ Name | Type | Description | Notes **vlan_enabled** | **bool** | VLAN tagging enabled or disabled. | [optional] **vlan_id** | **int** | VLAN ID for all interfaces in the subnet. | [optional] **addr_family** | **str** | IP address format. | -**linklayer** | **str** | Specifies the type of network linklayer this Network Subnet uses. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/GroupnetSubnetExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/GroupnetSubnetExtended.md similarity index 87% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/GroupnetSubnetExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/GroupnetSubnetExtended.md index f38e4af2a..ee1135d16 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/GroupnetSubnetExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/GroupnetSubnetExtended.md @@ -16,10 +16,8 @@ Name | Type | Description | Notes **vlan_id** | **int** | VLAN ID for all interfaces in the subnet. | [optional] **addr_family** | **str** | IP address format. | [optional] **base_addr** | **str** | The base IP address. | [optional] -**firewall_policy** | **str** | Name of the Firewall Policy associated with this Network Subnet. | [optional] **groupnet** | **str** | Name of the groupnet this subnet belongs to. | [optional] **id** | **str** | Unique Subnet ID. | [optional] -**linklayer** | **str** | Specifies the type of network linklayer this Network Subnet uses. | [optional] **pools** | **list[str]** | Name of the pools in the subnet. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/GroupnetSubnets.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/GroupnetSubnets.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/GroupnetSubnets.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/GroupnetSubnets.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/GroupnetSubnetsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/GroupnetSubnetsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/GroupnetSubnetsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/GroupnetSubnetsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/GroupnetsSummary.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/GroupnetsSummary.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/GroupnetsSummary.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/GroupnetsSummary.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/GroupnetsSummaryApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/GroupnetsSummaryApi.md similarity index 83% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/GroupnetsSummaryApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/GroupnetsSummaryApi.md index de350e5a8..c333cb67b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/GroupnetsSummaryApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/GroupnetsSummaryApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.GroupnetsSummaryApi +# isilon_sdk.v9_4_0.GroupnetsSummaryApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -18,17 +18,17 @@ Retrieve groupnet summary information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.GroupnetsSummaryApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.GroupnetsSummaryApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_groupnets_summary() diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/GroupnetsSummarySummary.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/GroupnetsSummarySummary.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/GroupnetsSummarySummary.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/GroupnetsSummarySummary.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/GroupnetsSummarySummaryListItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/GroupnetsSummarySummaryListItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/GroupnetsSummarySummaryListItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/GroupnetsSummarySummaryListItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HardeningApi.md similarity index 53% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HardeningApi.md index c134537ae..879f50cc9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/HardeningApi.md @@ -1,15 +1,14 @@ -# isilon_sdk.v9_11_0.HardeningApi +# isilon_sdk.v9_4_0.HardeningApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* Method | HTTP request | Description ------------- | ------------- | ------------- -[**create_hardening_apply_item**](HardeningApi.md#create_hardening_apply_item) | **POST** /platform/16/hardening/apply | -[**create_hardening_disable_item**](HardeningApi.md#create_hardening_disable_item) | **POST** /platform/16/hardening/disable | -[**create_hardening_report**](HardeningApi.md#create_hardening_report) | **POST** /platform/16/hardening/reports | -[**get_hardening_list**](HardeningApi.md#get_hardening_list) | **GET** /platform/16/hardening/list | -[**get_hardening_state**](HardeningApi.md#get_hardening_state) | **GET** /platform/16/hardening/state | -[**list_hardening_reports**](HardeningApi.md#list_hardening_reports) | **GET** /platform/16/hardening/reports | +[**create_hardening_apply_item**](HardeningApi.md#create_hardening_apply_item) | **POST** /platform/3/hardening/apply | +[**create_hardening_resolve_item**](HardeningApi.md#create_hardening_resolve_item) | **POST** /platform/3/hardening/resolve | +[**create_hardening_revert_item**](HardeningApi.md#create_hardening_revert_item) | **POST** /platform/3/hardening/revert | +[**get_hardening_state**](HardeningApi.md#get_hardening_state) | **GET** /platform/3/hardening/state | +[**get_hardening_status**](HardeningApi.md#get_hardening_status) | **GET** /platform/3/hardening/status | # **create_hardening_apply_item** @@ -17,24 +16,24 @@ Method | HTTP request | Description -Applies the rules in a hardening profile. +Apply hardening on the cluster. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HardeningApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -hardening_apply_item = isilon_sdk.v9_11_0.HardeningApplyItem() # HardeningApplyItem | +api_instance = isilon_sdk.v9_4_0.HardeningApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +hardening_apply_item = isilon_sdk.v9_4_0.HardeningApplyItem() # HardeningApplyItem | try: api_response = api_instance.create_hardening_apply_item(hardening_apply_item) @@ -64,46 +63,48 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **create_hardening_disable_item** -> CreateHardeningApplyItemResponse create_hardening_disable_item(hardening_disable_item) +# **create_hardening_resolve_item** +> CreateHardeningResolveItemResponse create_hardening_resolve_item(hardening_resolve_item, accept=accept) -Reset a hardening profile to its default configuration. +Resolve issues related to hardening, found in current cluster configuration. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HardeningApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -hardening_disable_item = isilon_sdk.v9_11_0.HardeningApplyItem() # HardeningApplyItem | +api_instance = isilon_sdk.v9_4_0.HardeningApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +hardening_resolve_item = isilon_sdk.v9_4_0.HardeningResolveItem() # HardeningResolveItem | +accept = true # bool | If true, execution proceeds to resolve all issues. If false, execution aborts. This is a required argument. (optional) try: - api_response = api_instance.create_hardening_disable_item(hardening_disable_item) + api_response = api_instance.create_hardening_resolve_item(hardening_resolve_item, accept=accept) pprint(api_response) except ApiException as e: - print("Exception when calling HardeningApi->create_hardening_disable_item: %s\n" % e) + print("Exception when calling HardeningApi->create_hardening_resolve_item: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **hardening_disable_item** | [**HardeningApplyItem**](HardeningApplyItem.md)| | + **hardening_resolve_item** | [**HardeningResolveItem**](HardeningResolveItem.md)| | + **accept** | **bool**| If true, execution proceeds to resolve all issues. If false, execution aborts. This is a required argument. | [optional] ### Return type -[**CreateHardeningApplyItemResponse**](CreateHardeningApplyItemResponse.md) +[**CreateHardeningResolveItemResponse**](CreateHardeningResolveItemResponse.md) ### Authorization @@ -116,94 +117,48 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **create_hardening_report** -> CreateHardeningApplyItemResponse create_hardening_report(hardening_report) +# **create_hardening_revert_item** +> CreateHardeningRevertItemResponse create_hardening_revert_item(hardening_revert_item, force=force) -Creates a report for all the hardening rules. +Revert hardening on the cluster. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HardeningApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -hardening_report = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.HardeningApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +hardening_revert_item = isilon_sdk.v9_4_0.Empty() # Empty | +force = true # bool | If specified, revert operation continues even in case of a failure. Default is false in which case revert stops at the first failure. (optional) try: - api_response = api_instance.create_hardening_report(hardening_report) + api_response = api_instance.create_hardening_revert_item(hardening_revert_item, force=force) pprint(api_response) except ApiException as e: - print("Exception when calling HardeningApi->create_hardening_report: %s\n" % e) + print("Exception when calling HardeningApi->create_hardening_revert_item: %s\n" % e) ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **hardening_report** | [**Empty**](Empty.md)| | - -### Return type - -[**CreateHardeningApplyItemResponse**](CreateHardeningApplyItemResponse.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - -# **get_hardening_list** -> HardeningList get_hardening_list() - - - -Get the list of available hardening profile names, descriptions, and applied status. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HardeningApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_hardening_list() - pprint(api_response) -except ApiException as e: - print("Exception when calling HardeningApi->get_hardening_list: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. + **hardening_revert_item** | [**Empty**](Empty.md)| | + **force** | **bool**| If specified, revert operation continues even in case of a failure. Default is false in which case revert stops at the first failure. | [optional] ### Return type -[**HardeningList**](HardeningList.md) +[**CreateHardeningRevertItemResponse**](CreateHardeningRevertItemResponse.md) ### Authorization @@ -221,23 +176,23 @@ This endpoint does not need any parameter. -Get the state of the hardening service, Running or Available. Note that this is different from the status resource, which returns the status of hardening profiles. +Get the state of the current hardening operation, if one is happening. Note that this is different from the /status resource, which returns the overall hardening status of the cluster. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HardeningApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.HardeningApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_hardening_state() @@ -264,34 +219,34 @@ This endpoint does not need any parameter. [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **list_hardening_reports** -> HardeningReports list_hardening_reports() +# **get_hardening_status** +> HardeningStatus get_hardening_status() -View the report for all the hardening rules. +Get a message indicating whether or not the cluster is hardened. Note that this is different from the /state resource, which returns the state of a specific hardening operation (apply or revert). ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HardeningApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.HardeningApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: - api_response = api_instance.list_hardening_reports() + api_response = api_instance.get_hardening_status() pprint(api_response) except ApiException as e: - print("Exception when calling HardeningApi->list_hardening_reports: %s\n" % e) + print("Exception when calling HardeningApi->get_hardening_status: %s\n" % e) ``` ### Parameters @@ -299,7 +254,7 @@ This endpoint does not need any parameter. ### Return type -[**HardeningReports**](HardeningReports.md) +[**HardeningStatus**](HardeningStatus.md) ### Authorization diff --git a/isilon_sdk/isilon_sdk/v9_4_0/docs/HardeningApplyItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HardeningApplyItem.md new file mode 100644 index 000000000..f91829adc --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/HardeningApplyItem.md @@ -0,0 +1,11 @@ +# HardeningApplyItem + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**profile** | **str** | Hardening profile. | [optional] +**report** | **bool** | Option to only generate and display a report on current cluster configuration with respect to the expected configuration required to apply hardening. If this option is set to true, hardening is not applied after the report is displayed. By default, this option is false. | [optional] + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningApplyItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HardeningResolveItem.md similarity index 93% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningApplyItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HardeningResolveItem.md index 76bcad200..0551a8662 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningApplyItem.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/HardeningResolveItem.md @@ -1,4 +1,4 @@ -# HardeningApplyItem +# HardeningResolveItem ## Properties Name | Type | Description | Notes diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningState.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HardeningState.md similarity index 84% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningState.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HardeningState.md index 768d0f3e4..dc40b7953 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardeningState.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/HardeningState.md @@ -3,7 +3,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**state** | [**HardeningStateState**](HardeningStateState.md) | The state of hardening service. | [optional] +**state** | [**HardeningStateState**](HardeningStateState.md) | The state of hardening operation on the cluster. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_4_0/docs/HardeningStateState.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HardeningStateState.md new file mode 100644 index 000000000..a0063dc84 --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/HardeningStateState.md @@ -0,0 +1,12 @@ +# HardeningStateState + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**issues_file** | **str** | Full contents name of issues file, or null if no issues file is configured. This file contains all issues found when the cluster configuration is checked against expected configuration. | [optional] +**message** | **str** | This contains more information and details about the operation state. | [optional] +**state** | **str** | The state of the hardening operation. In case there is no operation currently going on, this will display the last state of operation. | [optional] + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesSyslog.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HardeningStatus.md similarity index 67% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesSyslog.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HardeningStatus.md index 1a70978a1..a4ff33590 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesSyslog.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/HardeningStatus.md @@ -1,9 +1,9 @@ -# CertificatesSyslog +# HardeningStatus ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**certificates** | [**list[CertificatesSyslogCertificate]**](CertificatesSyslogCertificate.md) | | [optional] +**status** | [**HardeningStatusStatus**](HardeningStatusStatus.md) | Hardening Status of the cluster. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_4_0/docs/HardeningStatusStatus.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HardeningStatusStatus.md new file mode 100644 index 000000000..edd8e13cc --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/HardeningStatusStatus.md @@ -0,0 +1,10 @@ +# HardeningStatusStatus + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**message** | **str** | Status text containing cluster-level and nodewise hardening status. Also includes hardening profile if hardening is enabled on at least one node. | [optional] + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardwareApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HardwareApi.md similarity index 87% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HardwareApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HardwareApi.md index 6b9e08e9d..32f21574c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardwareApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/HardwareApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.HardwareApi +# isilon_sdk.v9_4_0.HardwareApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -24,18 +24,18 @@ Tape/Changer devices rescan ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HardwareApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -hardware_tape_name = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.HardwareApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +hardware_tape_name = isilon_sdk.v9_4_0.Empty() # Empty | hardware_tape_name2 = 'hardware_tape_name_example' # str | Tape/Changer devices rescan lnn = 'lnn_example' # str | Logical node number. (optional) port = 56 # int | Scan only specified port. (optional) @@ -86,17 +86,17 @@ Tape/Changer devices remove ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HardwareApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.HardwareApi(isilon_sdk.v9_4_0.ApiClient(configuration)) hardware_tape_name = 'hardware_tape_name_example' # str | Tape/Changer devices remove try: @@ -137,17 +137,17 @@ Get one fibre-channel port ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HardwareApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.HardwareApi(isilon_sdk.v9_4_0.ApiClient(configuration)) hardware_fcport_id = 56 # int | Get one fibre-channel port lnn = 'lnn_example' # str | Logical node number. (optional) @@ -191,17 +191,17 @@ Get list of fibre-channel ports ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HardwareApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.HardwareApi(isilon_sdk.v9_4_0.ApiClient(configuration)) limit = 56 # int | Return no more than this many results at once (see resume). (optional) lnn = 'lnn_example' # str | Logical node number. (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -247,17 +247,17 @@ Get list Tape and Changer devices ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HardwareApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.HardwareApi(isilon_sdk.v9_4_0.ApiClient(configuration)) activepath = 'activepath_example' # str | List devices with only active paths. (optional) devname = 'devname_example' # str | List only the named device. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) @@ -309,18 +309,18 @@ Change wwnn, wwpn, state, topology, or rate of a FC port ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HardwareApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -hardware_fcport = isilon_sdk.v9_11_0.HardwareFcport() # HardwareFcport | +api_instance = isilon_sdk.v9_4_0.HardwareApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +hardware_fcport = isilon_sdk.v9_4_0.HardwareFcport() # HardwareFcport | hardware_fcport_id = 56 # int | Change wwnn, wwpn, state, topology, or rate of a FC port lnn = 'lnn_example' # str | Logical node number. (optional) @@ -364,18 +364,18 @@ Tape/Changer device modify ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HardwareApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -hardware_tape_name_params = isilon_sdk.v9_11_0.HardwareTapeNameParams() # HardwareTapeNameParams | +api_instance = isilon_sdk.v9_4_0.HardwareApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +hardware_tape_name_params = isilon_sdk.v9_4_0.HardwareTapeNameParams() # HardwareTapeNameParams | hardware_tape_name = 'hardware_tape_name_example' # str | Tape/Changer device modify try: diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardwareFcport.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HardwareFcport.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HardwareFcport.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HardwareFcport.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardwareFcports.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HardwareFcports.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HardwareFcports.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HardwareFcports.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardwareFcportsNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HardwareFcportsNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HardwareFcportsNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HardwareFcportsNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardwareFcportsNodeFcport.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HardwareFcportsNodeFcport.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HardwareFcportsNodeFcport.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HardwareFcportsNodeFcport.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardwareTapeNameParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HardwareTapeNameParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HardwareTapeNameParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HardwareTapeNameParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardwareTapes.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HardwareTapes.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HardwareTapes.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HardwareTapes.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardwareTapesDevices.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HardwareTapesDevices.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HardwareTapesDevices.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HardwareTapesDevices.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardwareTapesDevicesMediaChanger.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HardwareTapesDevicesMediaChanger.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HardwareTapesDevicesMediaChanger.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HardwareTapesDevicesMediaChanger.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HardwareTapesDevicesMediaChangerPath.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HardwareTapesDevicesMediaChangerPath.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HardwareTapesDevicesMediaChangerPath.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HardwareTapesDevicesMediaChangerPath.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsCryptoEncryptionZone.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsCryptoEncryptionZone.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsCryptoEncryptionZone.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsCryptoEncryptionZone.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsCryptoEncryptionZones.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsCryptoEncryptionZones.md similarity index 69% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsCryptoEncryptionZones.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsCryptoEncryptionZones.md index 26212d900..937d3bf1b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsCryptoEncryptionZones.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsCryptoEncryptionZones.md @@ -4,8 +4,6 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **encryption_zones** | [**list[HdfsCryptoEncryptionZonesEncryptionZone]**](HdfsCryptoEncryptionZonesEncryptionZone.md) | | [optional] -**resume** | **str** | Provide this token as the 'resume' query argument to continue listing results. | [optional] -**total** | **int** | Total number of items available. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsCryptoEncryptionZonesEncryptionZone.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsCryptoEncryptionZonesEncryptionZone.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsCryptoEncryptionZonesEncryptionZone.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsCryptoEncryptionZonesEncryptionZone.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsCryptoSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsCryptoSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsCryptoSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsCryptoSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsCryptoSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsCryptoSettingsSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsCryptoSettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsCryptoSettingsSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsFsimageJob.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsFsimageJob.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsFsimageJob.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsFsimageJob.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsFsimageJobJob.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsFsimageJobJob.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsFsimageJobJob.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsFsimageJobJob.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsFsimageJobSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsFsimageJobSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsFsimageJobSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsFsimageJobSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsFsimageJobSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsFsimageJobSettingsSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsFsimageJobSettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsFsimageJobSettingsSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsFsimageLatest.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsFsimageLatest.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsFsimageLatest.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsFsimageLatest.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsFsimageLatestLatest.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsFsimageLatestLatest.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsFsimageLatestLatest.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsFsimageLatestLatest.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsFsimageSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsFsimageSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsFsimageSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsFsimageSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsFsimageSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsFsimageSettingsSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsFsimageSettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsFsimageSettingsSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsInotifySettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsInotifySettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsInotifySettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsInotifySettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsInotifySettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsInotifySettingsSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsInotifySettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsInotifySettingsSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsInotifyStream.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsInotifyStream.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsInotifyStream.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsInotifyStream.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsInotifyStreamStream.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsInotifyStreamStream.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsInotifyStreamStream.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsInotifyStreamStream.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsLogLevel.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsLogLevel.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsLogLevel.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsLogLevel.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsProxyuser.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsProxyuser.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsProxyuser.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsProxyuser.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsProxyuserCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsProxyuserCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsProxyuserCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsProxyuserCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsProxyusers.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsProxyusers.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsProxyusers.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsProxyusers.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsProxyusersExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsProxyusersExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsProxyusersExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsProxyusersExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsRack.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsRack.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsRack.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsRack.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsRackCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsRackCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsRackCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsRackCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsRackExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsRackExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsRackExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsRackExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsRacks.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsRacks.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsRacks.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsRacks.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsRacksExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsRacksExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsRacksExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsRacksExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsRangerPluginSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsRangerPluginSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsRangerPluginSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsRangerPluginSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsRangerPluginSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsRangerPluginSettingsSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsRangerPluginSettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsRangerPluginSettingsSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsSettingsGlobal.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsSettingsGlobal.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsSettingsGlobal.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsSettingsGlobal.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsSettingsGlobalGlobalSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsSettingsGlobalGlobalSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsSettingsGlobalGlobalSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsSettingsGlobalGlobalSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsSettingsSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HdfsSettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HdfsSettingsSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckApi.md similarity index 63% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckApi.md index 15754a274..7b40596ef 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckApi.md @@ -1,97 +1,33 @@ -# isilon_sdk.v9_11_0.HealthcheckApi +# isilon_sdk.v9_4_0.HealthcheckApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* Method | HTTP request | Description ------------- | ------------- | ------------- -[**create_healthcheck_definition**](HealthcheckApi.md#create_healthcheck_definition) | **POST** /platform/16/healthcheck/definitions | -[**create_healthcheck_evaluation**](HealthcheckApi.md#create_healthcheck_evaluation) | **POST** /platform/22/healthcheck/evaluations | +[**create_healthcheck_evaluation**](HealthcheckApi.md#create_healthcheck_evaluation) | **POST** /platform/10/healthcheck/evaluations | [**create_healthcheck_parameter**](HealthcheckApi.md#create_healthcheck_parameter) | **POST** /platform/3/healthcheck/parameters | -[**create_healthcheck_schedule**](HealthcheckApi.md#create_healthcheck_schedule) | **POST** /platform/16/healthcheck/schedules | -[**delete_healthcheck_definition**](HealthcheckApi.md#delete_healthcheck_definition) | **DELETE** /platform/16/healthcheck/definitions/{HealthcheckDefinitionId} | -[**delete_healthcheck_evaluation**](HealthcheckApi.md#delete_healthcheck_evaluation) | **DELETE** /platform/22/healthcheck/evaluations/{HealthcheckEvaluationId} | +[**create_healthcheck_schedule**](HealthcheckApi.md#create_healthcheck_schedule) | **POST** /platform/10/healthcheck/schedules | +[**delete_healthcheck_evaluation**](HealthcheckApi.md#delete_healthcheck_evaluation) | **DELETE** /platform/10/healthcheck/evaluations/{HealthcheckEvaluationId} | [**delete_healthcheck_parameter**](HealthcheckApi.md#delete_healthcheck_parameter) | **DELETE** /platform/3/healthcheck/parameters/{HealthcheckParameterId} | -[**delete_healthcheck_schedule**](HealthcheckApi.md#delete_healthcheck_schedule) | **DELETE** /platform/16/healthcheck/schedules/{HealthcheckScheduleId} | +[**delete_healthcheck_schedule**](HealthcheckApi.md#delete_healthcheck_schedule) | **DELETE** /platform/10/healthcheck/schedules/{HealthcheckScheduleId} | [**get_healthcheck_autoupdate**](HealthcheckApi.md#get_healthcheck_autoupdate) | **GET** /platform/15/healthcheck/autoupdate | -[**get_healthcheck_checklist**](HealthcheckApi.md#get_healthcheck_checklist) | **GET** /platform/20/healthcheck/checklists/{HealthcheckChecklistId} | -[**get_healthcheck_checklists**](HealthcheckApi.md#get_healthcheck_checklists) | **GET** /platform/20/healthcheck/checklists | -[**get_healthcheck_definition**](HealthcheckApi.md#get_healthcheck_definition) | **GET** /platform/16/healthcheck/definitions/{HealthcheckDefinitionId} | -[**get_healthcheck_evaluation**](HealthcheckApi.md#get_healthcheck_evaluation) | **GET** /platform/22/healthcheck/evaluations/{HealthcheckEvaluationId} | -[**get_healthcheck_item**](HealthcheckApi.md#get_healthcheck_item) | **GET** /platform/19/healthcheck/items/{HealthcheckItemId} | -[**get_healthcheck_items**](HealthcheckApi.md#get_healthcheck_items) | **GET** /platform/19/healthcheck/items | +[**get_healthcheck_checklist**](HealthcheckApi.md#get_healthcheck_checklist) | **GET** /platform/10/healthcheck/checklists/{HealthcheckChecklistId} | +[**get_healthcheck_checklists**](HealthcheckApi.md#get_healthcheck_checklists) | **GET** /platform/10/healthcheck/checklists | +[**get_healthcheck_evaluation**](HealthcheckApi.md#get_healthcheck_evaluation) | **GET** /platform/10/healthcheck/evaluations/{HealthcheckEvaluationId} | +[**get_healthcheck_item**](HealthcheckApi.md#get_healthcheck_item) | **GET** /platform/3/healthcheck/items/{HealthcheckItemId} | +[**get_healthcheck_items**](HealthcheckApi.md#get_healthcheck_items) | **GET** /platform/3/healthcheck/items | [**get_healthcheck_parameter**](HealthcheckApi.md#get_healthcheck_parameter) | **GET** /platform/3/healthcheck/parameters/{HealthcheckParameterId} | -[**get_healthcheck_schedule**](HealthcheckApi.md#get_healthcheck_schedule) | **GET** /platform/16/healthcheck/schedules/{HealthcheckScheduleId} | +[**get_healthcheck_schedule**](HealthcheckApi.md#get_healthcheck_schedule) | **GET** /platform/10/healthcheck/schedules/{HealthcheckScheduleId} | [**get_healthcheck_version**](HealthcheckApi.md#get_healthcheck_version) | **GET** /platform/15/healthcheck/version | -[**list_healthcheck_definitions**](HealthcheckApi.md#list_healthcheck_definitions) | **GET** /platform/16/healthcheck/definitions | -[**list_healthcheck_evaluations**](HealthcheckApi.md#list_healthcheck_evaluations) | **GET** /platform/22/healthcheck/evaluations | +[**list_healthcheck_evaluations**](HealthcheckApi.md#list_healthcheck_evaluations) | **GET** /platform/10/healthcheck/evaluations | [**list_healthcheck_parameters**](HealthcheckApi.md#list_healthcheck_parameters) | **GET** /platform/3/healthcheck/parameters | -[**list_healthcheck_schedules**](HealthcheckApi.md#list_healthcheck_schedules) | **GET** /platform/16/healthcheck/schedules | -[**update_healthcheck_checklist**](HealthcheckApi.md#update_healthcheck_checklist) | **PUT** /platform/20/healthcheck/checklists/{HealthcheckChecklistId} | -[**update_healthcheck_evaluation**](HealthcheckApi.md#update_healthcheck_evaluation) | **PUT** /platform/22/healthcheck/evaluations/{HealthcheckEvaluationId} | +[**list_healthcheck_schedules**](HealthcheckApi.md#list_healthcheck_schedules) | **GET** /platform/10/healthcheck/schedules | +[**update_healthcheck_checklist**](HealthcheckApi.md#update_healthcheck_checklist) | **PUT** /platform/10/healthcheck/checklists/{HealthcheckChecklistId} | +[**update_healthcheck_evaluation**](HealthcheckApi.md#update_healthcheck_evaluation) | **PUT** /platform/10/healthcheck/evaluations/{HealthcheckEvaluationId} | [**update_healthcheck_parameter**](HealthcheckApi.md#update_healthcheck_parameter) | **PUT** /platform/3/healthcheck/parameters/{HealthcheckParameterId} | -[**update_healthcheck_schedule**](HealthcheckApi.md#update_healthcheck_schedule) | **PUT** /platform/16/healthcheck/schedules/{HealthcheckScheduleId} | +[**update_healthcheck_schedule**](HealthcheckApi.md#update_healthcheck_schedule) | **PUT** /platform/10/healthcheck/schedules/{HealthcheckScheduleId} | -# **create_healthcheck_definition** -> CreateResponse create_healthcheck_definition(healthcheck_definition, skip_conflict_check=skip_conflict_check, skip_dependency_check=skip_dependency_check, skip_restricted_check=skip_restricted_check, skip_version_check=skip_version_check) - - - -Install a healthcheck definition. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HealthcheckApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -healthcheck_definition = isilon_sdk.v9_11_0.HealthcheckDefinitionCreateParams() # HealthcheckDefinitionCreateParams | -skip_conflict_check = true # bool | Bypass conflict checks. Defaults to false. (optional) -skip_dependency_check = true # bool | Bypass dependency checks. Defaults to false. (optional) -skip_restricted_check = true # bool | Bypass restricted checks. Defaults to false. (optional) -skip_version_check = true # bool | Bypass version checks. Defaults to false. (optional) - -try: - api_response = api_instance.create_healthcheck_definition(healthcheck_definition, skip_conflict_check=skip_conflict_check, skip_dependency_check=skip_dependency_check, skip_restricted_check=skip_restricted_check, skip_version_check=skip_version_check) - pprint(api_response) -except ApiException as e: - print("Exception when calling HealthcheckApi->create_healthcheck_definition: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **healthcheck_definition** | [**HealthcheckDefinitionCreateParams**](HealthcheckDefinitionCreateParams.md)| | - **skip_conflict_check** | **bool**| Bypass conflict checks. Defaults to false. | [optional] - **skip_dependency_check** | **bool**| Bypass dependency checks. Defaults to false. | [optional] - **skip_restricted_check** | **bool**| Bypass restricted checks. Defaults to false. | [optional] - **skip_version_check** | **bool**| Bypass version checks. Defaults to false. | [optional] - -### Return type - -[**CreateResponse**](CreateResponse.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **create_healthcheck_evaluation** > CreateResponse create_healthcheck_evaluation(healthcheck_evaluation) @@ -103,18 +39,18 @@ Request an evaluation. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HealthcheckApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -healthcheck_evaluation = isilon_sdk.v9_11_0.HealthcheckEvaluationCreateParams() # HealthcheckEvaluationCreateParams | +api_instance = isilon_sdk.v9_4_0.HealthcheckApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +healthcheck_evaluation = isilon_sdk.v9_4_0.HealthcheckEvaluationCreateParams() # HealthcheckEvaluationCreateParams | try: api_response = api_instance.create_healthcheck_evaluation(healthcheck_evaluation) @@ -155,18 +91,18 @@ Create a parameter. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HealthcheckApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -healthcheck_parameter = isilon_sdk.v9_11_0.HealthcheckParameterCreateParams() # HealthcheckParameterCreateParams | +api_instance = isilon_sdk.v9_4_0.HealthcheckApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +healthcheck_parameter = isilon_sdk.v9_4_0.HealthcheckParameterCreateParams() # HealthcheckParameterCreateParams | try: api_response = api_instance.create_healthcheck_parameter(healthcheck_parameter) @@ -207,18 +143,18 @@ Create a schedule. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HealthcheckApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -healthcheck_schedule = isilon_sdk.v9_11_0.HealthcheckScheduleCreateParams() # HealthcheckScheduleCreateParams | +api_instance = isilon_sdk.v9_4_0.HealthcheckApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +healthcheck_schedule = isilon_sdk.v9_4_0.HealthcheckScheduleCreateParams() # HealthcheckScheduleCreateParams | try: api_response = api_instance.create_healthcheck_schedule(healthcheck_schedule) @@ -248,67 +184,6 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **delete_healthcheck_definition** -> delete_healthcheck_definition(healthcheck_definition_id, process_type=process_type, skip_conflict_check=skip_conflict_check, skip_dependency_check=skip_dependency_check, skip_restricted_check=skip_restricted_check, skip_version_check=skip_version_check) - - - -Uninstall a definition. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HealthcheckApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -healthcheck_definition_id = 'healthcheck_definition_id_example' # str | Uninstall a definition. -process_type = 'process_type_example' # str | Process type can be 'simultaneous', 'rolling', or 'parallel' (optional) -skip_conflict_check = true # bool | Bypass conflict checks. Defaults to false. (optional) -skip_dependency_check = true # bool | Bypass dependency checks. Defaults to false. (optional) -skip_restricted_check = true # bool | Bypass restricted checks. Defaults to false. (optional) -skip_version_check = true # bool | Bypass version checks. Defaults to false. (optional) - -try: - api_instance.delete_healthcheck_definition(healthcheck_definition_id, process_type=process_type, skip_conflict_check=skip_conflict_check, skip_dependency_check=skip_dependency_check, skip_restricted_check=skip_restricted_check, skip_version_check=skip_version_check) -except ApiException as e: - print("Exception when calling HealthcheckApi->delete_healthcheck_definition: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **healthcheck_definition_id** | **str**| Uninstall a definition. | - **process_type** | **str**| Process type can be 'simultaneous', 'rolling', or 'parallel' | [optional] - **skip_conflict_check** | **bool**| Bypass conflict checks. Defaults to false. | [optional] - **skip_dependency_check** | **bool**| Bypass dependency checks. Defaults to false. | [optional] - **skip_restricted_check** | **bool**| Bypass restricted checks. Defaults to false. | [optional] - **skip_version_check** | **bool**| Bypass version checks. Defaults to false. | [optional] - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **delete_healthcheck_evaluation** > delete_healthcheck_evaluation(healthcheck_evaluation_id) @@ -320,17 +195,17 @@ Cancel an evaluation. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HealthcheckApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.HealthcheckApi(isilon_sdk.v9_4_0.ApiClient(configuration)) healthcheck_evaluation_id = 'healthcheck_evaluation_id_example' # str | Cancel an evaluation. try: @@ -371,17 +246,17 @@ Delete a parameter. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HealthcheckApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.HealthcheckApi(isilon_sdk.v9_4_0.ApiClient(configuration)) healthcheck_parameter_id = 'healthcheck_parameter_id_example' # str | Delete a parameter. try: @@ -422,17 +297,17 @@ Delete a schedule. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HealthcheckApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.HealthcheckApi(isilon_sdk.v9_4_0.ApiClient(configuration)) healthcheck_schedule_id = 'healthcheck_schedule_id_example' # str | Delete a schedule. try: @@ -473,17 +348,17 @@ The healthcheck autoupdate. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HealthcheckApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.HealthcheckApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_healthcheck_autoupdate() @@ -521,17 +396,17 @@ Retrieve a checklist definition. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HealthcheckApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.HealthcheckApi(isilon_sdk.v9_4_0.ApiClient(configuration)) healthcheck_checklist_id = 'healthcheck_checklist_id_example' # str | Retrieve a checklist definition. try: @@ -573,17 +448,17 @@ List checklists. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HealthcheckApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.HealthcheckApi(isilon_sdk.v9_4_0.ApiClient(configuration)) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -616,64 +491,8 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **get_healthcheck_definition** -> HealthcheckDefinitions get_healthcheck_definition(healthcheck_definition_id, local=local, location=location) - - - -View a single definition. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HealthcheckApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -healthcheck_definition_id = 'healthcheck_definition_id_example' # str | View a single definition. -local = true # bool | View definition information on local node only. (optional) -location = 'location_example' # str | Path location of definition file. (optional) - -try: - api_response = api_instance.get_healthcheck_definition(healthcheck_definition_id, local=local, location=location) - pprint(api_response) -except ApiException as e: - print("Exception when calling HealthcheckApi->get_healthcheck_definition: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **healthcheck_definition_id** | **str**| View a single definition. | - **local** | **bool**| View definition information on local node only. | [optional] - **location** | **str**| Path location of definition file. | [optional] - -### Return type - -[**HealthcheckDefinitions**](HealthcheckDefinitions.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **get_healthcheck_evaluation** -> HealthcheckEvaluations get_healthcheck_evaluation(healthcheck_evaluation_id, detailed=detailed, format_for_csv_download=format_for_csv_download) +> HealthcheckEvaluations get_healthcheck_evaluation(healthcheck_evaluation_id, detailed=detailed) @@ -683,23 +502,22 @@ Retrieve individual evaluation. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HealthcheckApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.HealthcheckApi(isilon_sdk.v9_4_0.ApiClient(configuration)) healthcheck_evaluation_id = 'healthcheck_evaluation_id_example' # str | Retrieve individual evaluation. -detailed = true # bool | Default is false; return evaluation details for failing items. If true, return evaluation details for all passing and failing items. (optional) -format_for_csv_download = true # bool | Allow download of CSV formatted HC results. (optional) +detailed = true # bool | Also return details for items that pass (optional) try: - api_response = api_instance.get_healthcheck_evaluation(healthcheck_evaluation_id, detailed=detailed, format_for_csv_download=format_for_csv_download) + api_response = api_instance.get_healthcheck_evaluation(healthcheck_evaluation_id, detailed=detailed) pprint(api_response) except ApiException as e: print("Exception when calling HealthcheckApi->get_healthcheck_evaluation: %s\n" % e) @@ -710,8 +528,7 @@ except ApiException as e: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **healthcheck_evaluation_id** | **str**| Retrieve individual evaluation. | - **detailed** | **bool**| Default is false; return evaluation details for failing items. If true, return evaluation details for all passing and failing items. | [optional] - **format_for_csv_download** | **bool**| Allow download of CSV formatted HC results. | [optional] + **detailed** | **bool**| Also return details for items that pass | [optional] ### Return type @@ -739,17 +556,17 @@ Retrieve an item definition. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HealthcheckApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.HealthcheckApi(isilon_sdk.v9_4_0.ApiClient(configuration)) healthcheck_item_id = 'healthcheck_item_id_example' # str | Retrieve an item definition. try: @@ -791,17 +608,17 @@ List items. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HealthcheckApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.HealthcheckApi(isilon_sdk.v9_4_0.ApiClient(configuration)) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -845,17 +662,17 @@ Retrieve individual parameter. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HealthcheckApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.HealthcheckApi(isilon_sdk.v9_4_0.ApiClient(configuration)) healthcheck_parameter_id = 'healthcheck_parameter_id_example' # str | Retrieve individual parameter. try: @@ -897,17 +714,17 @@ Retrieve individual schedule. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HealthcheckApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.HealthcheckApi(isilon_sdk.v9_4_0.ApiClient(configuration)) healthcheck_schedule_id = 'healthcheck_schedule_id_example' # str | Retrieve individual schedule. try: @@ -949,17 +766,17 @@ The version number. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HealthcheckApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.HealthcheckApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_healthcheck_version() @@ -986,68 +803,8 @@ This endpoint does not need any parameter. [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **list_healthcheck_definitions** -> HealthcheckDefinitions list_healthcheck_definitions(dir=dir, limit=limit, local=local, resume=resume, sort=sort) - - - -List all definitions. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HealthcheckApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -dir = 'dir_example' # str | The direction of the sort. (optional) -limit = 56 # int | Return no more than this many results at once (see resume). (optional) -local = true # bool | View definitions on the local node only. (optional) -resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) -sort = 'sort_example' # str | The field that will be used for sorting. (optional) - -try: - api_response = api_instance.list_healthcheck_definitions(dir=dir, limit=limit, local=local, resume=resume, sort=sort) - pprint(api_response) -except ApiException as e: - print("Exception when calling HealthcheckApi->list_healthcheck_definitions: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **dir** | **str**| The direction of the sort. | [optional] - **limit** | **int**| Return no more than this many results at once (see resume). | [optional] - **local** | **bool**| View definitions on the local node only. | [optional] - **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] - **sort** | **str**| The field that will be used for sorting. | [optional] - -### Return type - -[**HealthcheckDefinitions**](HealthcheckDefinitions.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **list_healthcheck_evaluations** -> HealthcheckEvaluationsExtended list_healthcheck_evaluations(checklist_id=checklist_id, detailed=detailed, dir=dir, level=level, limit=limit, resume=resume, sort=sort) +> HealthcheckEvaluationsExtended list_healthcheck_evaluations(detailed=detailed, level=level, limit=limit, resume=resume) @@ -1057,27 +814,24 @@ List evaluations. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HealthcheckApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -checklist_id = 'checklist_id_example' # str | Filter results to the specified Checklist or Item. (optional) -detailed = true # bool | Also return details for items that pass. (optional) -dir = 'dir_example' # str | The direction of the sort. (optional) -level = 'level_example' # str | Content detail level. (optional) +api_instance = isilon_sdk.v9_4_0.HealthcheckApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +detailed = true # bool | Also return details for items that pass (optional) +level = 'level_example' # str | Content detail level (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) -sort = 'sort_example' # str | The field that will be used for sorting. (optional) try: - api_response = api_instance.list_healthcheck_evaluations(checklist_id=checklist_id, detailed=detailed, dir=dir, level=level, limit=limit, resume=resume, sort=sort) + api_response = api_instance.list_healthcheck_evaluations(detailed=detailed, level=level, limit=limit, resume=resume) pprint(api_response) except ApiException as e: print("Exception when calling HealthcheckApi->list_healthcheck_evaluations: %s\n" % e) @@ -1087,13 +841,10 @@ except ApiException as e: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **checklist_id** | **str**| Filter results to the specified Checklist or Item. | [optional] - **detailed** | **bool**| Also return details for items that pass. | [optional] - **dir** | **str**| The direction of the sort. | [optional] - **level** | **str**| Content detail level. | [optional] + **detailed** | **bool**| Also return details for items that pass | [optional] + **level** | **str**| Content detail level | [optional] **limit** | **int**| Return no more than this many results at once (see resume). | [optional] **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] - **sort** | **str**| The field that will be used for sorting. | [optional] ### Return type @@ -1121,17 +872,17 @@ List parameters. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HealthcheckApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.HealthcheckApi(isilon_sdk.v9_4_0.ApiClient(configuration)) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -1175,17 +926,17 @@ List schedules. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HealthcheckApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.HealthcheckApi(isilon_sdk.v9_4_0.ApiClient(configuration)) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -1229,18 +980,18 @@ Modify checklist default delivery. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HealthcheckApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -healthcheck_checklist = isilon_sdk.v9_11_0.HealthcheckChecklist() # HealthcheckChecklist | +api_instance = isilon_sdk.v9_4_0.HealthcheckApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +healthcheck_checklist = isilon_sdk.v9_4_0.HealthcheckChecklist() # HealthcheckChecklist | healthcheck_checklist_id = 'healthcheck_checklist_id_example' # str | Modify checklist default delivery. try: @@ -1282,18 +1033,18 @@ Pause or resume an evaluation. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HealthcheckApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -healthcheck_evaluation = isilon_sdk.v9_11_0.HealthcheckEvaluation() # HealthcheckEvaluation | +api_instance = isilon_sdk.v9_4_0.HealthcheckApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +healthcheck_evaluation = isilon_sdk.v9_4_0.HealthcheckEvaluation() # HealthcheckEvaluation | healthcheck_evaluation_id = 'healthcheck_evaluation_id_example' # str | Pause or resume an evaluation. try: @@ -1335,18 +1086,18 @@ Modify a parameter value. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HealthcheckApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -healthcheck_parameter = isilon_sdk.v9_11_0.HealthcheckParameter() # HealthcheckParameter | +api_instance = isilon_sdk.v9_4_0.HealthcheckApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +healthcheck_parameter = isilon_sdk.v9_4_0.HealthcheckParameter() # HealthcheckParameter | healthcheck_parameter_id = 'healthcheck_parameter_id_example' # str | Modify a parameter value. try: @@ -1388,18 +1139,18 @@ Modify a schedule value. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.HealthcheckApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -healthcheck_schedule = isilon_sdk.v9_11_0.HealthcheckSchedule() # HealthcheckSchedule | +api_instance = isilon_sdk.v9_4_0.HealthcheckApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +healthcheck_schedule = isilon_sdk.v9_4_0.HealthcheckSchedule() # HealthcheckSchedule | healthcheck_schedule_id = 'healthcheck_schedule_id_example' # str | Modify a schedule value. try: diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckAutoupdate.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckAutoupdate.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckAutoupdate.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckAutoupdate.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckAutoupdateAutoupdate.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckAutoupdateAutoupdate.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckAutoupdateAutoupdate.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckAutoupdateAutoupdate.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckChecklist.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckChecklist.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckChecklist.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckChecklist.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckChecklistDeliveryItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckChecklistDeliveryItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckChecklistDeliveryItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckChecklistDeliveryItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckChecklistExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckChecklistExtended.md similarity index 92% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckChecklistExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckChecklistExtended.md index 235c47907..a7083ffc9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckChecklistExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckChecklistExtended.md @@ -7,7 +7,6 @@ Name | Type | Description | Notes **history** | **int** | Number of evaluation results to keep | [optional] **description** | **str** | Description covering intended use | [optional] **id** | **str** | Unique identifier | [optional] -**internal** | **bool** | Hide checklist or not | [optional] **items** | [**list[HealthcheckChecklistItem]**](HealthcheckChecklistItem.md) | Items to be evaluated | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckChecklistItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckChecklistItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckChecklistItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckChecklistItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckChecklistItemThresholds.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckChecklistItemThresholds.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckChecklistItemThresholds.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckChecklistItemThresholds.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckChecklists.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckChecklists.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckChecklists.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckChecklists.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckChecklistsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckChecklistsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckChecklistsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckChecklistsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckEvaluation.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckEvaluation.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckEvaluation.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckEvaluation.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckEvaluationCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckEvaluationCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckEvaluationCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckEvaluationCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckEvaluationDetail.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckEvaluationDetail.md similarity index 82% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckEvaluationDetail.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckEvaluationDetail.md index f17cf5349..df54e9416 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckEvaluationDetail.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckEvaluationDetail.md @@ -6,12 +6,10 @@ Name | Type | Description | Notes **details** | **object** | Optional details of the evaluation - raw data | [optional] **hash** | **str** | Unique identifier | [optional] **id** | **str** | Unique identifier of item | [optional] -**name** | **str** | Name of item | [optional] **node** | **str** | Either 'cluster' or an lnn | [optional] **parameters** | [**Empty**](Empty.md) | The parameters used in this item evaluation | [optional] -**passed** | **bool** | True if the item returned no failures | [optional] **status** | **str** | Health status based on default thresholds | [optional] -**value** | **int** | Normalized measured value 0 (bad) to 100 (perfect) or -1 for unsupported | [optional] +**value** | **int** | Normalized measured value 0 (bad) to 100 (perfect) | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckEvaluationExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckEvaluationExtended.md similarity index 77% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckEvaluationExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckEvaluationExtended.md index dd4c6e01c..64bc92d5f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckEvaluationExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckEvaluationExtended.md @@ -9,10 +9,8 @@ Name | Type | Description | Notes **id** | **str** | Unique identifier | [optional] **overrides** | [**list[HealthcheckEvaluationOverride]**](HealthcheckEvaluationOverride.md) | Optional overrides for thresholds etc. | [optional] **parameters** | [**Empty**](Empty.md) | Parameters supplied for this evaluation | [optional] -**queue_time** | **float** | Specifies the queue time for a checklist or item. | [optional] **result** | **str** | Overall result of evaluation - only if COMPLETED | [optional] **run_status** | **str** | Execution status | [optional] -**smartlog** | [**HealthcheckEvaluationSmartlog**](HealthcheckEvaluationSmartlog.md) | Relevant information that may be needed for the diagnostics api. This object will be absent in the case where no relevant logs exist. | [optional] **start_time** | **float** | | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckEvaluationOverride.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckEvaluationOverride.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckEvaluationOverride.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckEvaluationOverride.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckEvaluations.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckEvaluations.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckEvaluations.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckEvaluations.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckEvaluationsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckEvaluationsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckEvaluationsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckEvaluationsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckItem.md similarity index 90% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckItem.md index 45b58d010..a17dd5bf2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckItem.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckItem.md @@ -9,7 +9,6 @@ Name | Type | Description | Notes **node** | **bool** | True if this item is to be evaluated on each node | [optional] **parameters** | [**list[HealthcheckItemParameter]**](HealthcheckItemParameter.md) | Accepted and required parameters | [optional] **reference** | **str** | KB URL or similar reference link | [optional] -**resolution** | **str** | Generalized resolution statement for this item. | [optional] **summary** | **str** | Brief description of item | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckItemParameter.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckItemParameter.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckItemParameter.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckItemParameter.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckItems.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckItems.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckItems.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckItems.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckItemsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckItemsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckItemsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckItemsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckParameter.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckParameter.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckParameter.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckParameter.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckParameterCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckParameterCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckParameterCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckParameterCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckParameters.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckParameters.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckParameters.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckParameters.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckParametersExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckParametersExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckParametersExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckParametersExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckSchedule.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckSchedule.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckSchedule.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckSchedule.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckScheduleCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckScheduleCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckScheduleCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckScheduleCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckScheduleExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckScheduleExtended.md similarity index 78% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckScheduleExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckScheduleExtended.md index 4b0880ebd..218625d9e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckScheduleExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckScheduleExtended.md @@ -3,11 +3,11 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**base** | **str** | Seconds from Epoch when schedule was created. | [optional] +**base** | **str** | Seconds from Epoc when schedule was created. | [optional] **checklist** | **list[str]** | Checklists or Items for scheduling. | [optional] **id** | **str** | The ID of the newly created schedule. | [optional] **name** | **str** | The schedule name. | [optional] -**next_run** | **str** | Seconds from Epoch when next evaluation will run. | [optional] +**next_run** | **str** | Seconds from Epoc when next evaluation will run. | [optional] **schedule** | **str** | The isi-schedule compatible natural language description of the schedule. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckSchedules.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckSchedules.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckSchedules.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckSchedules.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckSchedulesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckSchedulesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckSchedulesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckSchedulesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckVersion.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckVersion.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HealthcheckVersion.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HealthcheckVersion.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HistogramStatBy.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HistogramStatBy.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HistogramStatBy.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HistogramStatBy.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HistogramStatByBreakout.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HistogramStatByBreakout.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HistogramStatByBreakout.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HistogramStatByBreakout.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HistoryFile.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HistoryFile.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HistoryFile.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HistoryFile.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HistoryFileStatistic.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HistoryFileStatistic.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HistoryFileStatistic.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HistoryFileStatistic.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HttpService.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HttpService.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HttpService.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HttpService.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HttpServiceExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HttpServiceExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HttpServiceExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HttpServiceExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HttpServices.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HttpServices.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HttpServices.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HttpServices.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HttpServicesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HttpServicesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HttpServicesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HttpServicesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/HttpSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HttpSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/HttpSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/HttpSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_4_0/docs/HttpSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/HttpSettingsSettings.md new file mode 100644 index 000000000..60a080273 --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/HttpSettingsSettings.md @@ -0,0 +1,17 @@ +# HttpSettingsSettings + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**access_control** | **bool** | Enable Access Control Authentication | [optional] +**basic_authentication** | **bool** | Enable Basic Authentication | [optional] +**dav** | **bool** | Enable DAV specification | [optional] +**enable_access_log** | **bool** | Enable HTTP access logging | [optional] +**https** | **bool** | Use HTTPS transport | [optional] +**integrated_authentication** | **bool** | Enable Integrated Authentication | [optional] +**server_root** | **str** | Document root directory. Must be within /ifs. | [optional] +**service** | **str** | Enable/disable the HTTP service or redirect to WebUI. | [optional] + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/IdResolutionApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/IdResolutionApi.md similarity index 89% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/IdResolutionApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/IdResolutionApi.md index bd784fb2f..e28b4339f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/IdResolutionApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/IdResolutionApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.IdResolutionApi +# isilon_sdk.v9_4_0.IdResolutionApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -23,17 +23,17 @@ List domain to path mappings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.IdResolutionApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.IdResolutionApi(isilon_sdk.v9_4_0.ApiClient(configuration)) id_resolution_domain_id = 'id_resolution_domain_id_example' # str | List domain to path mappings. try: @@ -75,17 +75,17 @@ List domain to path mappings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.IdResolutionApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.IdResolutionApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) domains = 'domains_example' # str | A comma separated list specifying the domains that will be mapped with a path. Only the domains specified in this list will be mapped. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) @@ -135,17 +135,17 @@ List lin to path mappings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.IdResolutionApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.IdResolutionApi(isilon_sdk.v9_4_0.ApiClient(configuration)) id_resolution_lin_id = 56 # int | List lin to path mappings. try: @@ -187,17 +187,17 @@ List lin to path mappings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.IdResolutionApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.IdResolutionApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) lins = 'lins_example' # str | A comma separated list specifying the lins that will be mapped with a path. Only the lins specified in this list will be mapped. (optional) @@ -247,17 +247,17 @@ List zone id to zone name mappings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.IdResolutionApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.IdResolutionApi(isilon_sdk.v9_4_0.ApiClient(configuration)) id_resolution_zone_id = 'id_resolution_zone_id_example' # str | List zone id to zone name mappings. try: @@ -299,17 +299,17 @@ List zone id to zone name mappings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.IdResolutionApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.IdResolutionApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/IdResolutionDomains.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/IdResolutionDomains.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/IdResolutionDomains.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/IdResolutionDomains.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/IdResolutionDomainsError.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/IdResolutionDomainsError.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/IdResolutionDomainsError.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/IdResolutionDomainsError.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/IdResolutionDomainsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/IdResolutionDomainsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/IdResolutionDomainsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/IdResolutionDomainsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/IdResolutionDomainsPath.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/IdResolutionDomainsPath.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/IdResolutionDomainsPath.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/IdResolutionDomainsPath.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/IdResolutionLins.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/IdResolutionLins.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/IdResolutionLins.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/IdResolutionLins.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/IdResolutionLinsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/IdResolutionLinsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/IdResolutionLinsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/IdResolutionLinsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/IdResolutionLinsPath.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/IdResolutionLinsPath.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/IdResolutionLinsPath.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/IdResolutionLinsPath.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/IdResolutionZone.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/IdResolutionZone.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/IdResolutionZone.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/IdResolutionZone.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/IdResolutionZones.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/IdResolutionZones.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/IdResolutionZones.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/IdResolutionZones.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/IdResolutionZonesApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/IdResolutionZonesApi.md similarity index 89% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/IdResolutionZonesApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/IdResolutionZonesApi.md index 98d58f5c9..e8d7d8b0c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/IdResolutionZonesApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/IdResolutionZonesApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.IdResolutionZonesApi +# isilon_sdk.v9_4_0.IdResolutionZonesApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -21,17 +21,17 @@ List a mapping of gid/gsid to groupname. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.IdResolutionZonesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.IdResolutionZonesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) zone_group_id = 'zone_group_id_example' # str | List a mapping of gid/gsid to groupname. zid = 'zid_example' # str | @@ -75,17 +75,17 @@ List gid/gsid to groupname mappings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.IdResolutionZonesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.IdResolutionZonesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) zid = 'zid_example' # str | dir = 'dir_example' # str | The direction of the sort. (optional) gids = 'gids_example' # str | A comma separated list specifying the gids to map with a groupname. (optional) @@ -139,17 +139,17 @@ List a mapping of uid/sid to username. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.IdResolutionZonesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.IdResolutionZonesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) zone_user_id = 'zone_user_id_example' # str | List a mapping of uid/sid to username. zid = 'zid_example' # str | @@ -193,17 +193,17 @@ List uid/sid to username mappings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.IdResolutionZonesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.IdResolutionZonesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) zid = 'zid_example' # str | dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/IdResolutionZonesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/IdResolutionZonesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/IdResolutionZonesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/IdResolutionZonesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/InlineSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/InlineSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/InlineSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/InlineSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/InlineSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/InlineSettingsSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/InlineSettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/InlineSettingsSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/InternalNetworksPreferredNetwork.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/InternalNetworksPreferredNetwork.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/InternalNetworksPreferredNetwork.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/InternalNetworksPreferredNetwork.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/InternalNetworksSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/InternalNetworksSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/InternalNetworksSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/InternalNetworksSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/InternalNetworksSettingsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/InternalNetworksSettingsExtended.md similarity index 81% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/InternalNetworksSettingsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/InternalNetworksSettingsExtended.md index cb3852072..0ee62d1f3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/InternalNetworksSettingsExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/InternalNetworksSettingsExtended.md @@ -3,7 +3,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**network** | [**InternalNetworksSettingsNetwork**](InternalNetworksSettingsNetwork.md) | Represents configuration properties per backend network | +**network** | [**InternalNetworksSettingsNetwork**](InternalNetworksSettingsNetwork.md) | Represents configuraton properties per backend network | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/InternalNetworksSettingsInternalNetworksSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/InternalNetworksSettingsInternalNetworksSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/InternalNetworksSettingsInternalNetworksSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/InternalNetworksSettingsInternalNetworksSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/InternalNetworksSettingsInternalNetworksSettingsNetworkItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/InternalNetworksSettingsInternalNetworksSettingsNetworkItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/InternalNetworksSettingsInternalNetworksSettingsNetworkItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/InternalNetworksSettingsInternalNetworksSettingsNetworkItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/InternalNetworksSettingsInternalNetworksSettingsNetworkItemBackendConfig.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/InternalNetworksSettingsInternalNetworksSettingsNetworkItemBackendConfig.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/InternalNetworksSettingsInternalNetworksSettingsNetworkItemBackendConfig.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/InternalNetworksSettingsInternalNetworksSettingsNetworkItemBackendConfig.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/InternalNetworksSettingsNetwork.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/InternalNetworksSettingsNetwork.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/InternalNetworksSettingsNetwork.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/InternalNetworksSettingsNetwork.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/InternalNetworksSettingsNetworkBackendConfig.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/InternalNetworksSettingsNetworkBackendConfig.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/InternalNetworksSettingsNetworkBackendConfig.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/InternalNetworksSettingsNetworkBackendConfig.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/IpmiApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/IpmiApi.md similarity index 83% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/IpmiApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/IpmiApi.md index 7cff75d80..fcec1199f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/IpmiApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/IpmiApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.IpmiApi +# isilon_sdk.v9_4_0.IpmiApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -28,17 +28,17 @@ Retrieve the Remote IPMI Management feature configuration. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.IpmiApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.IpmiApi(isilon_sdk.v9_4_0.ApiClient(configuration)) config_feature_id = 'config_feature_id_example' # str | Retrieve the Remote IPMI Management feature configuration. try: @@ -80,17 +80,17 @@ Get detailed information for all remote IPMI features. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.IpmiApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.IpmiApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_config_features() @@ -128,17 +128,17 @@ Retrieve the Remote IPMI Management static network configuration settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.IpmiApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.IpmiApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_config_network() @@ -176,17 +176,17 @@ Retrieve the Remote IPMI Management node configuration. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.IpmiApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.IpmiApi(isilon_sdk.v9_4_0.ApiClient(configuration)) config_node_id = 56 # int | Retrieve the Remote IPMI Management node configuration. try: @@ -228,17 +228,17 @@ Retrieve the Remote IPMI Management nodes configuration. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.IpmiApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.IpmiApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_config_nodes() @@ -276,17 +276,17 @@ View the Remote IPMI Management configuration settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.IpmiApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.IpmiApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_config_settings() @@ -324,17 +324,17 @@ View the Remote IPMI Management user. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.IpmiApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.IpmiApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_config_user() @@ -372,18 +372,18 @@ Modify remote IPMI Management feature settings ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.IpmiApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -config_feature = isilon_sdk.v9_11_0.ConfigFeature() # ConfigFeature | +api_instance = isilon_sdk.v9_4_0.IpmiApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +config_feature = isilon_sdk.v9_4_0.ConfigFeature() # ConfigFeature | config_feature_id = 'config_feature_id_example' # str | Modify remote IPMI Management feature settings try: @@ -425,18 +425,18 @@ Modify the remote IPMI Management static network configuration settings ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.IpmiApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -config_network = isilon_sdk.v9_11_0.ConfigNetworkNetwork() # ConfigNetworkNetwork | +api_instance = isilon_sdk.v9_4_0.IpmiApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +config_network = isilon_sdk.v9_4_0.ConfigNetworkNetwork() # ConfigNetworkNetwork | try: api_instance.update_config_network(config_network) @@ -476,18 +476,18 @@ Modify remote IPMI Management configuration settings ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.IpmiApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -config_settings = isilon_sdk.v9_11_0.ConfigSettingsSettings() # ConfigSettingsSettings | +api_instance = isilon_sdk.v9_4_0.IpmiApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +config_settings = isilon_sdk.v9_4_0.ConfigSettingsSettings() # ConfigSettingsSettings | try: api_instance.update_config_settings(config_settings) @@ -527,18 +527,18 @@ Modify remote IPMI Management user ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.IpmiApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -config_user = isilon_sdk.v9_11_0.ConfigUserExtended() # ConfigUserExtended | +api_instance = isilon_sdk.v9_4_0.IpmiApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +config_user = isilon_sdk.v9_4_0.ConfigUserUser() # ConfigUserUser | try: api_instance.update_config_user(config_user) @@ -550,7 +550,7 @@ except ApiException as e: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **config_user** | [**ConfigUserExtended**](ConfigUserExtended.md)| | + **config_user** | [**ConfigUserUser**](ConfigUserUser.md)| | ### Return type diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobApi.md similarity index 78% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobApi.md index da86d4661..e3e6b8cbb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobApi.md @@ -1,27 +1,25 @@ -# isilon_sdk.v9_11_0.JobApi +# isilon_sdk.v9_4_0.JobApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* Method | HTTP request | Description ------------- | ------------- | ------------- -[**create_job_job**](JobApi.md#create_job_job) | **POST** /platform/21/job/jobs | +[**create_job_job**](JobApi.md#create_job_job) | **POST** /platform/10/job/jobs | [**create_job_policy**](JobApi.md#create_job_policy) | **POST** /platform/1/job/policies | [**delete_job_policy**](JobApi.md#delete_job_policy) | **DELETE** /platform/1/job/policies/{JobPolicyId} | [**get_job_events**](JobApi.md#get_job_events) | **GET** /platform/3/job/events | -[**get_job_job**](JobApi.md#get_job_job) | **GET** /platform/21/job/jobs/{JobJobId} | -[**get_job_job_summary**](JobApi.md#get_job_job_summary) | **GET** /platform/19/job/job-summary | +[**get_job_job**](JobApi.md#get_job_job) | **GET** /platform/10/job/jobs/{JobJobId} | +[**get_job_job_summary**](JobApi.md#get_job_job_summary) | **GET** /platform/12/job/job-summary | [**get_job_policy**](JobApi.md#get_job_policy) | **GET** /platform/1/job/policies/{JobPolicyId} | [**get_job_recent**](JobApi.md#get_job_recent) | **GET** /platform/3/job/recent | [**get_job_reports**](JobApi.md#get_job_reports) | **GET** /platform/7/job/reports | -[**get_job_settings**](JobApi.md#get_job_settings) | **GET** /platform/19/job/settings | [**get_job_statistics**](JobApi.md#get_job_statistics) | **GET** /platform/1/job/statistics | [**get_job_type**](JobApi.md#get_job_type) | **GET** /platform/1/job/types/{JobTypeId} | [**get_job_types**](JobApi.md#get_job_types) | **GET** /platform/1/job/types | -[**list_job_jobs**](JobApi.md#list_job_jobs) | **GET** /platform/21/job/jobs | +[**list_job_jobs**](JobApi.md#list_job_jobs) | **GET** /platform/10/job/jobs | [**list_job_policies**](JobApi.md#list_job_policies) | **GET** /platform/1/job/policies | -[**update_job_job**](JobApi.md#update_job_job) | **PUT** /platform/21/job/jobs/{JobJobId} | +[**update_job_job**](JobApi.md#update_job_job) | **PUT** /platform/10/job/jobs/{JobJobId} | [**update_job_policy**](JobApi.md#update_job_policy) | **PUT** /platform/1/job/policies/{JobPolicyId} | -[**update_job_settings**](JobApi.md#update_job_settings) | **PUT** /platform/19/job/settings | [**update_job_type**](JobApi.md#update_job_type) | **PUT** /platform/1/job/types/{JobTypeId} | @@ -36,18 +34,18 @@ Queue a new instance of a job type. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.JobApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -job_job = isilon_sdk.v9_11_0.JobJobCreateParams() # JobJobCreateParams | +api_instance = isilon_sdk.v9_4_0.JobApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +job_job = isilon_sdk.v9_4_0.JobJobCreateParams() # JobJobCreateParams | try: api_response = api_instance.create_job_job(job_job) @@ -88,18 +86,18 @@ Create a new job impact policy. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.JobApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -job_policy = isilon_sdk.v9_11_0.JobPolicyCreateParams() # JobPolicyCreateParams | +api_instance = isilon_sdk.v9_4_0.JobApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +job_policy = isilon_sdk.v9_4_0.JobPolicyCreateParams() # JobPolicyCreateParams | try: api_response = api_instance.create_job_policy(job_policy) @@ -140,17 +138,17 @@ Delete a job impact policy. System policies may not be deleted. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.JobApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.JobApi(isilon_sdk.v9_4_0.ApiClient(configuration)) job_policy_id = 'job_policy_id_example' # str | Delete a job impact policy. System policies may not be deleted. try: @@ -191,19 +189,19 @@ List job events. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.JobApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -begin = 56 # int | Restrict the query to events at or after the given time. If positive, this represents seconds since the Epoch; if negative, this represents seconds before the current time. (optional) -end = 56 # int | Restrict the query to events before the given time. If positive, this represents seconds since the Epoch; if negative, this represents seconds before the current time. (optional) +api_instance = isilon_sdk.v9_4_0.JobApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +begin = 56 # int | Restrict the query to events at or after the given time, in seconds since the Epoch. (optional) +end = 56 # int | Restrict the query to events before the given time, in seconds since the Epoch. (optional) ended_jobs_only = true # bool | Request all jobs that ended. This parameter cannot be used with the 'state' parameter. Ended states are 'cancelled_user', 'cancelled_system', 'failed' or 'succeeded' (optional) job_id = 56 # int | Restrict the query to the given job ID. (optional) job_type = 'job_type_example' # str | Restrict the query to the given job type. (optional) @@ -224,8 +222,8 @@ except ApiException as e: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **begin** | **int**| Restrict the query to events at or after the given time. If positive, this represents seconds since the Epoch; if negative, this represents seconds before the current time. | [optional] - **end** | **int**| Restrict the query to events before the given time. If positive, this represents seconds since the Epoch; if negative, this represents seconds before the current time. | [optional] + **begin** | **int**| Restrict the query to events at or after the given time, in seconds since the Epoch. | [optional] + **end** | **int**| Restrict the query to events before the given time, in seconds since the Epoch. | [optional] **ended_jobs_only** | **bool**| Request all jobs that ended. This parameter cannot be used with the 'state' parameter. Ended states are 'cancelled_user', 'cancelled_system', 'failed' or 'succeeded' | [optional] **job_id** | **int**| Restrict the query to the given job ID. | [optional] **job_type** | **str**| Restrict the query to the given job type. | [optional] @@ -261,17 +259,17 @@ View a single job instance. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.JobApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.JobApi(isilon_sdk.v9_4_0.ApiClient(configuration)) job_job_id = 'job_job_id_example' # str | View a single job instance. try: @@ -313,17 +311,17 @@ View job engine status. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.JobApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.JobApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_job_job_summary() @@ -361,17 +359,17 @@ View a single job impact policy. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.JobApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.JobApi(isilon_sdk.v9_4_0.ApiClient(configuration)) job_policy_id = 'job_policy_id_example' # str | View a single job impact policy. try: @@ -413,17 +411,17 @@ List recently completed jobs. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.JobApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.JobApi(isilon_sdk.v9_4_0.ApiClient(configuration)) limit = 56 # int | Max number of recent jobs to return. The default is 8, the max is 100. (optional) timeout_ms = 56 # int | Query timeout in milliseconds. The default is 10000 ms. (optional) @@ -467,19 +465,19 @@ List job reports. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.JobApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -begin = 56 # int | Restrict the query to reports at or after the given time. If positive, this represents seconds since the Epoch; if negative, this represents seconds before the current time. (optional) -end = 56 # int | Restrict the query to reports before the given time. If positive, this represents seconds since the Epoch; if negative, this represents seconds before the current time; if zero, this represents no end time (no restriction). (optional) +api_instance = isilon_sdk.v9_4_0.JobApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +begin = 56 # int | Restrict the query to reports at or after the given time, in seconds since the Epoch. (optional) +end = 56 # int | Restrict the query to reports before the given time, in seconds since the Epoch. (optional) job_id = 56 # int | Restrict the query to the given job ID. (optional) job_type = 'job_type_example' # str | Restrict the query to the given job type. (optional) key = 'key_example' # str | Restrict the query to the given report key. (optional) @@ -500,8 +498,8 @@ except ApiException as e: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **begin** | **int**| Restrict the query to reports at or after the given time. If positive, this represents seconds since the Epoch; if negative, this represents seconds before the current time. | [optional] - **end** | **int**| Restrict the query to reports before the given time. If positive, this represents seconds since the Epoch; if negative, this represents seconds before the current time; if zero, this represents no end time (no restriction). | [optional] + **begin** | **int**| Restrict the query to reports at or after the given time, in seconds since the Epoch. | [optional] + **end** | **int**| Restrict the query to reports before the given time, in seconds since the Epoch. | [optional] **job_id** | **int**| Restrict the query to the given job ID. | [optional] **job_type** | **str**| Restrict the query to the given job type. | [optional] **key** | **str**| Restrict the query to the given report key. | [optional] @@ -526,54 +524,6 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **get_job_settings** -> JobSettings get_job_settings() - - - -View a subset of Job Engine generic settings. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.JobApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_job_settings() - pprint(api_response) -except ApiException as e: - print("Exception when calling JobApi->get_job_settings: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**JobSettings**](JobSettings.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **get_job_statistics** > JobStatistics get_job_statistics(devid=devid, job_id=job_id) @@ -585,17 +535,17 @@ View job engine statistics. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.JobApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.JobApi(isilon_sdk.v9_4_0.ApiClient(configuration)) devid = 56 # int | Restrict the query to the given node. (optional) job_id = 56 # int | Restrict the query to the given job ID. (optional) @@ -639,17 +589,17 @@ Retrieve job type information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.JobApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.JobApi(isilon_sdk.v9_4_0.ApiClient(configuration)) job_type_id = 'job_type_id_example' # str | Retrieve job type information. try: @@ -691,17 +641,17 @@ List job types. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.JobApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.JobApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) show_all = true # bool | Whether to show all job types, including hidden ones. Defaults to false. (optional) sort = 'sort_example' # str | The field that will be used for sorting. (optional) @@ -747,17 +697,17 @@ List running and paused jobs. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.JobApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.JobApi(isilon_sdk.v9_4_0.ApiClient(configuration)) batch = true # bool | If true, other arguments are ignored, and the query will return all results, unsorted, as quickly as possible. (optional) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) @@ -809,17 +759,17 @@ List job impact policies. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.JobApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.JobApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -867,18 +817,18 @@ Modify a running or paused job instance. All input fields are optional, but one ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.JobApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -job_job = isilon_sdk.v9_11_0.JobJob() # JobJob | +api_instance = isilon_sdk.v9_4_0.JobApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +job_job = isilon_sdk.v9_4_0.JobJob() # JobJob | job_job_id = 'job_job_id_example' # str | Modify a running or paused job instance. All input fields are optional, but one or more must be supplied. try: @@ -920,18 +870,18 @@ Modify a job impact policy. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.JobApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -job_policy = isilon_sdk.v9_11_0.JobPolicy() # JobPolicy | +api_instance = isilon_sdk.v9_4_0.JobApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +job_policy = isilon_sdk.v9_4_0.JobPolicy() # JobPolicy | job_policy_id = 'job_policy_id_example' # str | Modify a job impact policy. try: @@ -962,57 +912,6 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_job_settings** -> update_job_settings(job_settings) - - - -Modify a subset of Job Engine generic settings. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.JobApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -job_settings = isilon_sdk.v9_11_0.JobSettingsSettings() # JobSettingsSettings | - -try: - api_instance.update_job_settings(job_settings) -except ApiException as e: - print("Exception when calling JobApi->update_job_settings: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **job_settings** | [**JobSettingsSettings**](JobSettingsSettings.md)| | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **update_job_type** > update_job_type(job_type, job_type_id) @@ -1024,18 +923,18 @@ Modify the job type. All input fields are optional, but one or more must be sup ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.JobApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -job_type = isilon_sdk.v9_11_0.JobType() # JobType | +api_instance = isilon_sdk.v9_4_0.JobApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +job_type = isilon_sdk.v9_4_0.JobType() # JobType | job_type_id = 'job_type_id_example' # str | Modify the job type. All input fields are optional, but one or more must be supplied. try: diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobEvent.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobEvent.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobEvent.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobEvent.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobEvents.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobEvents.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobEvents.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobEvents.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobJob.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobJob.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobJob.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobJob.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobAvscanParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobAvscanParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobAvscanParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobAvscanParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobChangelistcreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobChangelistcreateParams.md similarity index 89% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobChangelistcreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobChangelistcreateParams.md index 3712108df..9059ec988 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobChangelistcreateParams.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobChangelistcreateParams.md @@ -7,7 +7,6 @@ Name | Type | Description | Notes **newer_snapid** | **int** | Newer snapshot ID. | **older_snapid** | **int** | Older snapshot ID. | **retain_repstate** | **bool** | Whether to retain the replication record after a changelist is created. Retaining a replication record allows a changelist to be recreated later. | [optional] -**track_data_location** | **bool** | Whether to track data location. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobDomainmarkParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobDomainmarkParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobDomainmarkParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobDomainmarkParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobEsrsmftdownloadParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobEsrsmftdownloadParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobEsrsmftdownloadParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobEsrsmftdownloadParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobFilepolicyParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobFilepolicyParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobFilepolicyParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobFilepolicyParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobPrepairParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobPrepairParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobPrepairParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobPrepairParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobSmartpoolstreeParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobSmartpoolstreeParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobSmartpoolstreeParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobSmartpoolstreeParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobSnaprevertParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobSnaprevertParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobSnaprevertParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobSnaprevertParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobSummary.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobSummary.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobSummary.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobSummary.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobSummarySummary.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobSummarySummary.md similarity index 91% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobSummarySummary.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobSummarySummary.md index ee56b892b..057432e93 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobSummarySummary.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobSummarySummary.md @@ -12,9 +12,7 @@ Name | Type | Description | Notes **job_d_enabled** | **bool** | Whether the isi_job_d is enabled. | **next_jid** | **int** | The job ID to be assigned to the next job. | **non_responding_nodes** | **list[int]** | Shows which nodes have not acknowledged the coordinator. | [optional] -**pp_enabled** | **bool** | Whether Job Engine uses SmartThrottling | **run_degraded** | **bool** | Whether the job engine would allow most jobs to run even when the cluster is in a degraded state. | -**smartthrottling_enabled** | **bool** | Whether Job Engine uses SmartThrottling | **stats_ready** | **bool** | Whether the coordinator has recently gathered statistics for all nodes in the cluster. | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobTreedeleteParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobTreedeleteParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobTreedeleteParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobTreedeleteParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobs.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobs.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobs.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobs.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobJobsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobJobsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobPolicies.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobPolicies.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobPolicies.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobPolicies.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobPoliciesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobPoliciesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobPoliciesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobPoliciesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobPolicy.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobPolicy.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobPolicy.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobPolicy.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobPolicyCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobPolicyCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobPolicyCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobPolicyCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobPolicyExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobPolicyExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobPolicyExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobPolicyExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobPolicyInterval.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobPolicyInterval.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobPolicyInterval.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobPolicyInterval.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobRecent.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobRecent.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobRecent.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobRecent.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobRecentRecentJob.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobRecentRecentJob.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobRecentRecentJob.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobRecentRecentJob.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobReport.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobReport.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobReport.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobReport.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobReports.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobReports.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobReports.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobReports.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobStatistics.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobStatistics.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobStatistics.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobStatistics.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobStatisticsJob.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobStatisticsJob.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobStatisticsJob.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobStatisticsJob.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobStatisticsJobNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobStatisticsJobNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobStatisticsJobNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobStatisticsJobNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobStatisticsJobNodeCpu.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobStatisticsJobNodeCpu.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobStatisticsJobNodeCpu.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobStatisticsJobNodeCpu.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobStatisticsJobNodeIo.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobStatisticsJobNodeIo.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobStatisticsJobNodeIo.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobStatisticsJobNodeIo.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobStatisticsJobNodeIoRead.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobStatisticsJobNodeIoRead.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobStatisticsJobNodeIoRead.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobStatisticsJobNodeIoRead.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobStatisticsJobNodeIoWrite.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobStatisticsJobNodeIoWrite.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobStatisticsJobNodeIoWrite.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobStatisticsJobNodeIoWrite.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobStatisticsJobNodeMemory.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobStatisticsJobNodeMemory.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobStatisticsJobNodeMemory.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobStatisticsJobNodeMemory.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobStatisticsJobNodeMemoryPhysical.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobStatisticsJobNodeMemoryPhysical.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobStatisticsJobNodeMemoryPhysical.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobStatisticsJobNodeMemoryPhysical.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobStatisticsJobNodeMemoryVirtual.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobStatisticsJobNodeMemoryVirtual.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobStatisticsJobNodeMemoryVirtual.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobStatisticsJobNodeMemoryVirtual.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobStatisticsJobNodeWorker.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobStatisticsJobNodeWorker.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobStatisticsJobNodeWorker.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobStatisticsJobNodeWorker.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobType.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobType.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobType.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobType.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobTypeExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobTypeExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobTypeExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobTypeExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobTypes.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobTypes.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobTypes.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobTypes.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/JobTypesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/JobTypesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/JobTypesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/JobTypesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_4_0/docs/KeymanagerApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/KeymanagerApi.md new file mode 100644 index 000000000..76cc3f335 --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/KeymanagerApi.md @@ -0,0 +1,588 @@ +# isilon_sdk.v9_4_0.KeymanagerApi + +All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* + +Method | HTTP request | Description +------------- | ------------- | ------------- +[**create_kmip_server**](KeymanagerApi.md#create_kmip_server) | **POST** /platform/12/keymanager/kmip/servers | +[**create_kmip_server_verify_item**](KeymanagerApi.md#create_kmip_server_verify_item) | **POST** /platform/12/keymanager/kmip/server/verify | +[**create_sed_migrate_item**](KeymanagerApi.md#create_sed_migrate_item) | **POST** /platform/12/keymanager/sed/migrate | +[**delete_kmip_server**](KeymanagerApi.md#delete_kmip_server) | **DELETE** /platform/12/keymanager/kmip/servers/{KmipServerId} | +[**get_kmip_server**](KeymanagerApi.md#get_kmip_server) | **GET** /platform/12/keymanager/kmip/servers/{KmipServerId} | +[**get_sed_settings**](KeymanagerApi.md#get_sed_settings) | **GET** /platform/12/keymanager/sed/settings | +[**get_sed_status**](KeymanagerApi.md#get_sed_status) | **GET** /platform/12/keymanager/sed/status | +[**get_sed_status_lnn**](KeymanagerApi.md#get_sed_status_lnn) | **GET** /platform/12/keymanager/sed/status/{SedStatusLnn} | +[**list_kmip_servers**](KeymanagerApi.md#list_kmip_servers) | **GET** /platform/12/keymanager/kmip/servers | +[**update_kmip_server**](KeymanagerApi.md#update_kmip_server) | **PUT** /platform/12/keymanager/kmip/servers/{KmipServerId} | +[**update_sed_settings**](KeymanagerApi.md#update_sed_settings) | **PUT** /platform/12/keymanager/sed/settings | + + +# **create_kmip_server** +> CreateResponse create_kmip_server(kmip_server) + + + +Create a new KMIP server entry. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.KeymanagerApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +kmip_server = isilon_sdk.v9_4_0.KmipServerCreateParams() # KmipServerCreateParams | + +try: + api_response = api_instance.create_kmip_server(kmip_server) + pprint(api_response) +except ApiException as e: + print("Exception when calling KeymanagerApi->create_kmip_server: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **kmip_server** | [**KmipServerCreateParams**](KmipServerCreateParams.md)| | + +### Return type + +[**CreateResponse**](CreateResponse.md) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **create_kmip_server_verify_item** +> CreateKmipServerVerifyItemResponse create_kmip_server_verify_item(kmip_server_verify_item) + + + +Verify KMIP configuration. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.KeymanagerApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +kmip_server_verify_item = isilon_sdk.v9_4_0.KmipServerVerifyItem() # KmipServerVerifyItem | + +try: + api_response = api_instance.create_kmip_server_verify_item(kmip_server_verify_item) + pprint(api_response) +except ApiException as e: + print("Exception when calling KeymanagerApi->create_kmip_server_verify_item: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **kmip_server_verify_item** | [**KmipServerVerifyItem**](KmipServerVerifyItem.md)| | + +### Return type + +[**CreateKmipServerVerifyItemResponse**](CreateKmipServerVerifyItemResponse.md) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **create_sed_migrate_item** +> CreateSedMigrateItemResponse create_sed_migrate_item(sed_migrate_item) + + + +Indicates the direction of the migration. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.KeymanagerApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +sed_migrate_item = isilon_sdk.v9_4_0.SedMigrateItem() # SedMigrateItem | + +try: + api_response = api_instance.create_sed_migrate_item(sed_migrate_item) + pprint(api_response) +except ApiException as e: + print("Exception when calling KeymanagerApi->create_sed_migrate_item: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **sed_migrate_item** | [**SedMigrateItem**](SedMigrateItem.md)| | + +### Return type + +[**CreateSedMigrateItemResponse**](CreateSedMigrateItemResponse.md) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **delete_kmip_server** +> delete_kmip_server(kmip_server_id) + + + +Delete a KMIP server entry. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.KeymanagerApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +kmip_server_id = 'kmip_server_id_example' # str | Delete a KMIP server entry. + +try: + api_instance.delete_kmip_server(kmip_server_id) +except ApiException as e: + print("Exception when calling KeymanagerApi->delete_kmip_server: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **kmip_server_id** | **str**| Delete a KMIP server entry. | + +### Return type + +void (empty response body) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **get_kmip_server** +> KmipServers get_kmip_server(kmip_server_id) + + + +Retrieve a specific KMIP server entry. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.KeymanagerApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +kmip_server_id = 'kmip_server_id_example' # str | Retrieve a specific KMIP server entry. + +try: + api_response = api_instance.get_kmip_server(kmip_server_id) + pprint(api_response) +except ApiException as e: + print("Exception when calling KeymanagerApi->get_kmip_server: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **kmip_server_id** | **str**| Retrieve a specific KMIP server entry. | + +### Return type + +[**KmipServers**](KmipServers.md) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **get_sed_settings** +> SedSettings get_sed_settings() + + + +Retrieve Current SED settings. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.KeymanagerApi(isilon_sdk.v9_4_0.ApiClient(configuration)) + +try: + api_response = api_instance.get_sed_settings() + pprint(api_response) +except ApiException as e: + print("Exception when calling KeymanagerApi->get_sed_settings: %s\n" % e) +``` + +### Parameters +This endpoint does not need any parameter. + +### Return type + +[**SedSettings**](SedSettings.md) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **get_sed_status** +> SedStatusExtended get_sed_status() + + + +Retrieve SED status on all nodes in this cluster. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.KeymanagerApi(isilon_sdk.v9_4_0.ApiClient(configuration)) + +try: + api_response = api_instance.get_sed_status() + pprint(api_response) +except ApiException as e: + print("Exception when calling KeymanagerApi->get_sed_status: %s\n" % e) +``` + +### Parameters +This endpoint does not need any parameter. + +### Return type + +[**SedStatusExtended**](SedStatusExtended.md) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **get_sed_status_lnn** +> SedStatus get_sed_status_lnn(sed_status_lnn) + + + +Retrieve SED status on a node in this cluster. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.KeymanagerApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +sed_status_lnn = 56 # int | Retrieve SED status on a node in this cluster. + +try: + api_response = api_instance.get_sed_status_lnn(sed_status_lnn) + pprint(api_response) +except ApiException as e: + print("Exception when calling KeymanagerApi->get_sed_status_lnn: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **sed_status_lnn** | **int**| Retrieve SED status on a node in this cluster. | + +### Return type + +[**SedStatus**](SedStatus.md) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **list_kmip_servers** +> KmipServersExtended list_kmip_servers(dir=dir, limit=limit, resume=resume, sort=sort) + + + +Retrieve a list of configured KMIP server entries. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.KeymanagerApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +dir = 'dir_example' # str | The direction of the sort. (optional) +limit = 56 # int | Return no more than this many results at once (see resume). (optional) +resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) +sort = 'sort_example' # str | The field that will be used for sorting. (optional) + +try: + api_response = api_instance.list_kmip_servers(dir=dir, limit=limit, resume=resume, sort=sort) + pprint(api_response) +except ApiException as e: + print("Exception when calling KeymanagerApi->list_kmip_servers: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **dir** | **str**| The direction of the sort. | [optional] + **limit** | **int**| Return no more than this many results at once (see resume). | [optional] + **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] + **sort** | **str**| The field that will be used for sorting. | [optional] + +### Return type + +[**KmipServersExtended**](KmipServersExtended.md) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **update_kmip_server** +> update_kmip_server(kmip_server, kmip_server_id) + + + +Modify a KMIP server entry. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.KeymanagerApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +kmip_server = isilon_sdk.v9_4_0.KmipServer() # KmipServer | +kmip_server_id = 'kmip_server_id_example' # str | Modify a KMIP server entry. + +try: + api_instance.update_kmip_server(kmip_server, kmip_server_id) +except ApiException as e: + print("Exception when calling KeymanagerApi->update_kmip_server: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **kmip_server** | [**KmipServer**](KmipServer.md)| | + **kmip_server_id** | **str**| Modify a KMIP server entry. | + +### Return type + +void (empty response body) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **update_sed_settings** +> update_sed_settings(sed_settings) + + + +Modify SED settings to allow migration, or forbid it and retrieve all keys. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.KeymanagerApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +sed_settings = isilon_sdk.v9_4_0.SedSettingsExtended() # SedSettingsExtended | + +try: + api_instance.update_sed_settings(sed_settings) +except ApiException as e: + print("Exception when calling KeymanagerApi->update_sed_settings: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **sed_settings** | [**SedSettingsExtended**](SedSettingsExtended.md)| | + +### Return type + +void (empty response body) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/KmipServer.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/KmipServer.md similarity index 86% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/KmipServer.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/KmipServer.md index 4d0ad33f7..cf5fcd4e6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/KmipServer.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/KmipServer.md @@ -8,10 +8,9 @@ Name | Type | Description | Notes **client_cert_path** | **str** | Cluster identity certificate and private key used for TLS Mutual Authentication with the KMIP Server. | [optional] **connection_timeout** | **int** | KMIP RPC connection timeout in seconds. | [optional] **host** | **str** | KMIP server hostname. | [optional] -**minimum_tls_version** | **str** | Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. Supported versions: '1.1', '1.2' and '1.3'. | [optional] +**minimum_tls_version** | **str** | Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. However other supported values are '1.0' and '1.1'. | [optional] **port** | **int** | KMIP server port. | [optional] **retry_timeout** | **int** | KMIP RPC retry timeout in milliseconds. | [optional] -**tls_ciphers** | **str** | TLS cipher suite to use for communication with the KMIP server. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/KmipServerCaChainItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/KmipServerCaCert.md similarity index 85% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/KmipServerCaChainItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/KmipServerCaCert.md index ff39a4b1c..4ad3e6e3a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/KmipServerCaChainItem.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/KmipServerCaCert.md @@ -1,11 +1,10 @@ -# KmipServerCaChainItem +# KmipServerCaCert ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **expiration_date** | **int** | Certificate Authority (CA) certificate expiration date in UNIX timestamp format. | [optional] **fingerprint** | **str** | Certification Authority (CA) certificate sha256 fingerprint. | [optional] -**issuer** | **str** | Certification Authority (CA) certificate issuer field. | [optional] **serial** | **int** | Certification Authority (CA) certificate serial number field. | [optional] **subject** | **str** | Certification Authority (CA) certificate subject field. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/KmipServerClientCert.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/KmipServerClientCert.md similarity index 89% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/KmipServerClientCert.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/KmipServerClientCert.md index 1e7e36ab8..5bfd99001 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/KmipServerClientCert.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/KmipServerClientCert.md @@ -5,7 +5,6 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **expiration_date** | **int** | Cluster identity certificate expiration date in UNIX timestamp format. | [optional] **fingerprint** | **str** | Cluster identity certificate sha256 fingerprint. | [optional] -**issuer** | **str** | Cluster identity certificate issuer field. | [optional] **serial** | **int** | Cluster identity certificate serial number field. | [optional] **subject** | **str** | Cluster identity certificate subject field. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/KmipServerCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/KmipServerCreateParams.md similarity index 86% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/KmipServerCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/KmipServerCreateParams.md index 474660f0d..86bd7d7e8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/KmipServerCreateParams.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/KmipServerCreateParams.md @@ -8,10 +8,9 @@ Name | Type | Description | Notes **client_cert_path** | **str** | Cluster identity certificate and private key used for TLS Mutual Authentication with the KMIP Server. | **connection_timeout** | **int** | KMIP RPC connection timeout in seconds. | [optional] **host** | **str** | KMIP server hostname. | -**minimum_tls_version** | **str** | Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. Supported versions: '1.1', '1.2' and '1.3'. | [optional] +**minimum_tls_version** | **str** | Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. However other supported values are '1.0' and '1.1'. | [optional] **port** | **int** | KMIP server port. | [optional] **retry_timeout** | **int** | KMIP RPC retry timeout in milliseconds. | [optional] -**tls_ciphers** | **str** | TLS cipher suite to use for communication with the KMIP server. | [optional] **id** | **str** | Unique KMIP server identifier. | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/KmipServerExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/KmipServerExtended.md similarity index 75% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/KmipServerExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/KmipServerExtended.md index 89979254d..4719b66e5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/KmipServerExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/KmipServerExtended.md @@ -3,15 +3,14 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**ca_chain** | [**list[KmipServerCaChainItem]**](KmipServerCaChainItem.md) | CA certificate chain. | [optional] +**ca_cert** | [**KmipServerCaCert**](KmipServerCaCert.md) | | [optional] **client_cert** | [**KmipServerClientCert**](KmipServerClientCert.md) | | [optional] **connection_timeout** | **int** | KMIP RPC connection timeout in seconds. | [optional] **host** | **str** | KMIP server hostname. | [optional] **id** | **str** | Unique KMIP server identifier. | [optional] -**minimum_tls_version** | **str** | Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. Supported versions: '1.1', '1.2' and '1.3'. | [optional] +**minimum_tls_version** | **str** | Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. However other supported values are '1.0' and '1.1'. | [optional] **port** | **int** | KMIP server port. | [optional] **retry_timeout** | **int** | KMIP RPC retry timeout in milliseconds. | [optional] -**tls_ciphers** | **str** | TLS cipher suite to use for communication with the KMIP server. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/KmipServerExtendedExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/KmipServerExtendedExtended.md similarity index 75% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/KmipServerExtendedExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/KmipServerExtendedExtended.md index f35ae0467..29dff58c5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/KmipServerExtendedExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/KmipServerExtendedExtended.md @@ -3,15 +3,14 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**ca_chain** | [**list[KmipServerCaChainItem]**](KmipServerCaChainItem.md) | CA certificate chain. | +**ca_cert** | [**KmipServerCaCert**](KmipServerCaCert.md) | | **client_cert** | [**KmipServerClientCert**](KmipServerClientCert.md) | | **connection_timeout** | **int** | KMIP RPC connection timeout in seconds. | **host** | **str** | KMIP server hostname. | **id** | **str** | Unique KMIP server identifier. | -**minimum_tls_version** | **str** | Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. Supported versions: '1.1', '1.2' and '1.3'. | +**minimum_tls_version** | **str** | Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. However other supported values are '1.0' and '1.1'. | **port** | **int** | KMIP server port. | **retry_timeout** | **int** | KMIP RPC retry timeout in milliseconds. | -**tls_ciphers** | **str** | TLS cipher suite to use for communication with the KMIP server. | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/KmipServerVerifyItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/KmipServerVerifyItem.md similarity index 86% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/KmipServerVerifyItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/KmipServerVerifyItem.md index 9aacf46ca..34a482a00 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/KmipServerVerifyItem.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/KmipServerVerifyItem.md @@ -8,10 +8,9 @@ Name | Type | Description | Notes **client_cert_path** | **str** | Cluster identity certificate and private key used for TLS Mutual Authentication with the KMIP Server. | **connection_timeout** | **int** | KMIP RPC connection timeout in seconds. | [optional] **host** | **str** | KMIP server hostname. | -**minimum_tls_version** | **str** | Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. Supported versions: '1.1', '1.2' and '1.3'. | [optional] +**minimum_tls_version** | **str** | Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. However other supported values are '1.0' and '1.1'. | [optional] **port** | **int** | KMIP server port. | [optional] **retry_timeout** | **int** | KMIP RPC retry timeout in milliseconds. | [optional] -**tls_ciphers** | **str** | TLS cipher suite to use for communication with the KMIP server. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/KmipServers.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/KmipServers.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/KmipServers.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/KmipServers.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/KmipServersExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/KmipServersExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/KmipServersExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/KmipServersExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/Lfn.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/Lfn.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/Lfn.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/Lfn.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/LfnApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/LfnApi.md similarity index 86% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/LfnApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/LfnApi.md index dabb8c41e..13588a9c2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/LfnApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/LfnApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.LfnApi +# isilon_sdk.v9_4_0.LfnApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -23,18 +23,18 @@ Create a new file name length configuration domain. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.LfnApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -lfn_item = isilon_sdk.v9_11_0.LfnItem() # LfnItem | +api_instance = isilon_sdk.v9_4_0.LfnApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +lfn_item = isilon_sdk.v9_4_0.LfnItem() # LfnItem | try: api_response = api_instance.create_lfn_item(lfn_item) @@ -75,17 +75,17 @@ Delete all file name length configuration domains, returning to legacy limits. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.LfnApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.LfnApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_instance.delete_lfn() @@ -122,17 +122,17 @@ Delete the file name length configuration domain that originates at the specifie ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.LfnApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.LfnApi(isilon_sdk.v9_4_0.ApiClient(configuration)) lfn_path = 'lfn_path_example' # str | Delete the file name length configuration domain that originates at the specified path. try: @@ -173,17 +173,17 @@ Retrieve file name length configuration information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.LfnApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.LfnApi(isilon_sdk.v9_4_0.ApiClient(configuration)) lfn_path = 'lfn_path_example' # str | Retrieve file name length configuration information. try: @@ -225,17 +225,17 @@ List all file name length configuration domains. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.LfnApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.LfnApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -283,18 +283,18 @@ Modify file name length settings if specified path is the root of the configurat ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.LfnApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -lfn_path_params = isilon_sdk.v9_11_0.LfnPathParams() # LfnPathParams | +api_instance = isilon_sdk.v9_4_0.LfnApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +lfn_path_params = isilon_sdk.v9_4_0.LfnPathParams() # LfnPathParams | lfn_path = 'lfn_path_example' # str | Modify file name length settings if specified path is the root of the configuration. All input fields are optional, but one or more must be supplied. try: diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/LfnDomain.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/LfnDomain.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/LfnDomain.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/LfnDomain.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/LfnExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/LfnExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/LfnExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/LfnExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/LfnItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/LfnItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/LfnItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/LfnItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/LfnPathParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/LfnPathParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/LfnPathParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/LfnPathParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/LicenseActivation.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/LicenseActivation.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/LicenseActivation.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/LicenseActivation.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/LicenseActivationElmsError.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/LicenseActivationElmsError.md similarity index 82% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/LicenseActivationElmsError.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/LicenseActivationElmsError.md index 4a5b9765f..289a57fb0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/LicenseActivationElmsError.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/LicenseActivationElmsError.md @@ -4,7 +4,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **code** | **str** | An error code corresponding to an error returned from the SRS ELMS rest call. | [optional] -**error** | **str** | An error string returned from the SRS ELMS rest call | [optional] +**error** | **str** | An error string retured from the SRS ELMS rest call | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/LicenseActivationItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/LicenseActivationItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/LicenseActivationItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/LicenseActivationItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/LicenseApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/LicenseApi.md similarity index 86% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/LicenseApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/LicenseApi.md index 44b5c5014..a395be401 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/LicenseApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/LicenseApi.md @@ -1,15 +1,15 @@ -# isilon_sdk.v9_11_0.LicenseApi +# isilon_sdk.v9_4_0.LicenseApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* Method | HTTP request | Description ------------- | ------------- | ------------- [**create_license_activation_item**](LicenseApi.md#create_license_activation_item) | **POST** /platform/11/license/activation | -[**create_license_license**](LicenseApi.md#create_license_license) | **POST** /platform/17/license/licenses | +[**create_license_license**](LicenseApi.md#create_license_license) | **POST** /platform/5/license/licenses | [**get_license_generate**](LicenseApi.md#get_license_generate) | **GET** /platform/5/license/generate | -[**get_license_license**](LicenseApi.md#get_license_license) | **GET** /platform/17/license/licenses/{LicenseLicenseId} | +[**get_license_license**](LicenseApi.md#get_license_license) | **GET** /platform/5/license/licenses/{LicenseLicenseId} | [**list_license_activation**](LicenseApi.md#list_license_activation) | **GET** /platform/11/license/activation | -[**list_license_licenses**](LicenseApi.md#list_license_licenses) | **GET** /platform/17/license/licenses | +[**list_license_licenses**](LicenseApi.md#list_license_licenses) | **GET** /platform/5/license/licenses | # **create_license_activation_item** @@ -23,18 +23,18 @@ Start or cancel an activation. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.LicenseApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -license_activation_item = isilon_sdk.v9_11_0.LicenseActivationItem() # LicenseActivationItem | +api_instance = isilon_sdk.v9_4_0.LicenseApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +license_activation_item = isilon_sdk.v9_4_0.LicenseActivationItem() # LicenseActivationItem | try: api_instance.create_license_activation_item(license_activation_item) @@ -74,18 +74,18 @@ Install a new license file and/or activate evaluation licenses. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.LicenseApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -license_license = isilon_sdk.v9_11_0.LicenseLicenseCreateParams() # LicenseLicenseCreateParams | +api_instance = isilon_sdk.v9_4_0.LicenseApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +license_license = isilon_sdk.v9_4_0.LicenseLicenseCreateParams() # LicenseLicenseCreateParams | try: api_response = api_instance.create_license_license(license_license) @@ -126,17 +126,17 @@ Generate license activation file. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.LicenseApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.LicenseApi(isilon_sdk.v9_4_0.ApiClient(configuration)) action = 'license_list_only' # str | enum: license_list_only (default), generate_activation, download_activation. Generate an activation file or return a list of activated licenses. If generating an activation file and no licenses are specified, the default configuration is to generate an activation file with the current set of licensed features. download_activation returns HTTP headers and the same XML content as seen in the response activation. (optional) (default to license_list_only) licenses_to_exclude = 'licenses_to_exclude_example' # str | Licenses to omit from activation file. (optional) licenses_to_include = 'licenses_to_include_example' # str | Licenses to include in activation file. (optional) @@ -184,17 +184,17 @@ Retrieve license information for the feature. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.LicenseApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.LicenseApi(isilon_sdk.v9_4_0.ApiClient(configuration)) license_license_id = 'license_license_id_example' # str | Retrieve license information for the feature. try: @@ -236,17 +236,17 @@ Return the current the current phase of the activation process. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.LicenseApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.LicenseApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.list_license_activation() @@ -284,17 +284,17 @@ Retrieve license information for all licensable products. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.LicenseApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.LicenseApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/LicenseGenerate.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/LicenseGenerate.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/LicenseGenerate.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/LicenseGenerate.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/LicenseGenerateHardwareItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/LicenseGenerateHardwareItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/LicenseGenerateHardwareItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/LicenseGenerateHardwareItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/LicenseLicense.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/LicenseLicense.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/LicenseLicense.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/LicenseLicense.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/LicenseLicenseCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/LicenseLicenseCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/LicenseLicenseCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/LicenseLicenseCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/LicenseLicenseTier.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/LicenseLicenseTier.md similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/LicenseLicenseTier.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/LicenseLicenseTier.md index 49db9eee5..a0cf76359 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/LicenseLicenseTier.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/LicenseLicenseTier.md @@ -7,7 +7,6 @@ Name | Type | Description | Notes **licensed_drive_capacity** | **int** | Licensed terabyte (TB, 10^12 bytes) drive capacity allocated as storage associated with tier. Included if tier is not NONINF and license is not a base only license. | [optional] **licensed_node_count** | **int** | Licensed number of nodes in this tier. | [optional] **licensed_nodes_with_seds_count** | **int** | Licensed number of nodes of this tier that contain self-encrypting drives. Included only if license is ONEFS and tier is not NONINF. | [optional] -**platform** | **str** | Platform | [optional] **tier** | **str** | OneFS hardware tier. Tier is a number, NONINF, or NO_TIER. NONINF indicates a non infinity tier. NO_TIER indicates a license that is not tier based. | [optional] **used_drive_capacity** | **int** | Actual terabyte (TB, 10^12 bytes) drive capacity allocated as storage space associated with tier. Included if tier is not NONINF and license is not a base only license. | [optional] **used_node_count** | **int** | Actual number of nodes in this tier. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/LicenseLicenseTierEntitlementsExceededAlert.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/LicenseLicenseTierEntitlementsExceededAlert.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/LicenseLicenseTierEntitlementsExceededAlert.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/LicenseLicenseTierEntitlementsExceededAlert.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/LicenseLicenses.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/LicenseLicenses.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/LicenseLicenses.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/LicenseLicenses.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/LicenseLicensesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/LicenseLicensesExtended.md similarity index 95% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/LicenseLicensesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/LicenseLicensesExtended.md index 2d8875e58..3e11b47f0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/LicenseLicensesExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/LicenseLicensesExtended.md @@ -7,7 +7,6 @@ Name | Type | Description | Notes **activation_incomplete_alert** | **bool** | True when we are generating an activation incomplete alert. An activation incomplete alert is generated if we do not have a signed license file 90 days after OneFS is upgraded. | **base_only_licenses** | **list[str]** | | **evaluatable** | **list[str]** | | -**guid** | **str** | Cluster GUID | [optional] **resume** | **str** | Provide this token as the 'resume' query argument to continue listing results. | [optional] **swid** | **str** | Software license identifier. SWID will be absent if not yet obtained from a license file. | [optional] **total** | **int** | Total number of items available. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/LocalApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/LocalApi.md similarity index 77% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/LocalApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/LocalApi.md index 861236484..4e17ee93e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/LocalApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/LocalApi.md @@ -1,11 +1,11 @@ -# isilon_sdk.v9_11_0.LocalApi +# isilon_sdk.v9_4_0.LocalApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* Method | HTTP request | Description ------------- | ------------- | ------------- [**get_cluster_time**](LocalApi.md#get_cluster_time) | **GET** /platform/3/local/cluster/time | -[**get_network_interfaces**](LocalApi.md#get_network_interfaces) | **GET** /platform/21/local/network/interfaces | +[**get_network_interfaces**](LocalApi.md#get_network_interfaces) | **GET** /platform/14/local/network/interfaces | [**get_protocols_smb_sessions**](LocalApi.md#get_protocols_smb_sessions) | **GET** /platform/11/local/protocols/smb/sessions | [**get_upgrade_cluster_firmware_device**](LocalApi.md#get_upgrade_cluster_firmware_device) | **GET** /platform/10/local/upgrade/cluster/firmware/device | [**get_upgrade_cluster_firmware_status**](LocalApi.md#get_upgrade_cluster_firmware_status) | **GET** /platform/3/local/upgrade/cluster/firmware/status | @@ -22,17 +22,17 @@ Get the current time on the local node. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.LocalApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.LocalApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_cluster_time() @@ -60,7 +60,7 @@ This endpoint does not need any parameter. [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_network_interfaces** -> NetworkInterfaces get_network_interfaces(cache=cache, dir=dir, flag=flag, include_access_zones=include_access_zones, include_vlans=include_vlans, limit=limit, linklayer=linklayer, lnn=lnn, network=network, owner=owner, resume=resume, sort=sort, type=type, vlan_id=vlan_id) +> NetworkInterfaces get_network_interfaces(cache=cache, dir=dir, include_vlans=include_vlans, limit=limit, lnn=lnn, network=network, owner=owner, resume=resume, sort=sort, type=type, vlan_id=vlan_id) @@ -70,24 +70,21 @@ Get a list of interfaces. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.LocalApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cache = 'cache_example' # str | Control where interface data is sourced from. no-cache only returns live data from a running node, and if a node can't be reached, no results will be returned. cache-only only returns cached data, some fields are set as null/unknown if they can't be determined, and IPs listed are the IPs that should be configured. Finally, nodes-first will try to query live nodes, and fall back to the cache for any nodes that fail. Default: nodes-first (optional) +api_instance = isilon_sdk.v9_4_0.LocalApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cache = 'cache_example' # str | Control where interface data is source from. no-cache only returns live data from a running node, and if a node can't be reached, no results will be returned. cache-only only returns cached data, some fields are set as null/unknown if they can't be determined, and IPs listed are the IPs that should be configured. Finally, nodes-first will try to query live nodes, and fall back to the cache for any nodes that fail. Default: nodes-first (optional) dir = 'dir_example' # str | The direction of the sort. (optional) -flag = 'flag_example' # str | Filters results to only show interfaces with the specified flag. Only one flag can be specified. (optional) -include_access_zones = true # bool | If include_access_zones is set to false, the 'access_zone' field will be set to an empty string. (optional) include_vlans = true # bool | If include_vlans is set to true, all vlans are returned unless further filtered by vlan_id. If include_vlans is set to false, no vlans are returned. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) -linklayer = 'linklayer_example' # str | Filters results to only show interfaces with the specified linklayer. Default: all (optional) lnn = [56] # list[int] | Get a list of interfaces for the specified lnns. (optional) network = 'network_example' # str | Show interfaces associated with external and/or internal networks. Default is 'external' (optional) owner = 'owner_example' # str | Filter results by owner id. Support partials matches too. Ex owner=groupnet0 or owner=groupnet0.subnet0.pool0. (optional) @@ -97,7 +94,7 @@ type = 'type_example' # str | Filter the returned IPs by IP type. (optional) vlan_id = 56 # int | Only return IPs/interfaces configured in the specified VLAN ID (optional) try: - api_response = api_instance.get_network_interfaces(cache=cache, dir=dir, flag=flag, include_access_zones=include_access_zones, include_vlans=include_vlans, limit=limit, linklayer=linklayer, lnn=lnn, network=network, owner=owner, resume=resume, sort=sort, type=type, vlan_id=vlan_id) + api_response = api_instance.get_network_interfaces(cache=cache, dir=dir, include_vlans=include_vlans, limit=limit, lnn=lnn, network=network, owner=owner, resume=resume, sort=sort, type=type, vlan_id=vlan_id) pprint(api_response) except ApiException as e: print("Exception when calling LocalApi->get_network_interfaces: %s\n" % e) @@ -107,13 +104,10 @@ except ApiException as e: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **cache** | **str**| Control where interface data is sourced from. no-cache only returns live data from a running node, and if a node can't be reached, no results will be returned. cache-only only returns cached data, some fields are set as null/unknown if they can't be determined, and IPs listed are the IPs that should be configured. Finally, nodes-first will try to query live nodes, and fall back to the cache for any nodes that fail. Default: nodes-first | [optional] + **cache** | **str**| Control where interface data is source from. no-cache only returns live data from a running node, and if a node can't be reached, no results will be returned. cache-only only returns cached data, some fields are set as null/unknown if they can't be determined, and IPs listed are the IPs that should be configured. Finally, nodes-first will try to query live nodes, and fall back to the cache for any nodes that fail. Default: nodes-first | [optional] **dir** | **str**| The direction of the sort. | [optional] - **flag** | **str**| Filters results to only show interfaces with the specified flag. Only one flag can be specified. | [optional] - **include_access_zones** | **bool**| If include_access_zones is set to false, the 'access_zone' field will be set to an empty string. | [optional] **include_vlans** | **bool**| If include_vlans is set to true, all vlans are returned unless further filtered by vlan_id. If include_vlans is set to false, no vlans are returned. | [optional] **limit** | **int**| Return no more than this many results at once (see resume). | [optional] - **linklayer** | **str**| Filters results to only show interfaces with the specified linklayer. Default: all | [optional] **lnn** | [**list[int]**](int.md)| Get a list of interfaces for the specified lnns. | [optional] **network** | **str**| Show interfaces associated with external and/or internal networks. Default is 'external' | [optional] **owner** | **str**| Filter results by owner id. Support partials matches too. Ex owner=groupnet0 or owner=groupnet0.subnet0.pool0. | [optional] @@ -148,17 +142,17 @@ List open SMB sessions. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.LocalApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.LocalApi(isilon_sdk.v9_4_0.ApiClient(configuration)) limit = 56 # int | Return no more than this many results at once (see resume). (optional) lnn = 'lnn_example' # str | The node to fetch open sessions from. (optional) lnn_skip = 'lnn_skip_example' # str | When parameter lnn=all, don't fetch open session info from this node. (optional) @@ -206,17 +200,17 @@ The firmware status for the cluster. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.LocalApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.LocalApi(isilon_sdk.v9_4_0.ApiClient(configuration)) devices = true # bool | Show devices. If false, this returns an empty list. Default is false. (optional) package = true # bool | Show package. If false, this returns an empty list. Default is false. (optional) refresh = true # bool | Re-gather firmware status. Default is false. (optional) @@ -262,17 +256,17 @@ The firmware status for the cluster. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.LocalApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.LocalApi(isilon_sdk.v9_4_0.ApiClient(configuration)) devices = true # bool | Show devices. If false, this returns an empty list. Default is false. (optional) package = true # bool | Show package. If false, this returns an empty list. Default is false. (optional) refresh = true # bool | Re-gather firmware status. Default is false. (optional) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/LocalClusterApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/LocalClusterApi.md similarity index 85% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/LocalClusterApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/LocalClusterApi.md index c74969717..2fb49d5c0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/LocalClusterApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/LocalClusterApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.LocalClusterApi +# isilon_sdk.v9_4_0.LocalClusterApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -18,17 +18,17 @@ View internal ip address with respect to node. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.LocalClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.LocalClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) lnn = 56 # int | try: diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MappingDump.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingDump.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/MappingDump.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/MappingDump.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MappingIdentities.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingIdentities.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/MappingIdentities.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/MappingIdentities.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MappingIdentitiesCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingIdentitiesCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/MappingIdentitiesCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/MappingIdentitiesCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MappingIdentitiesTarget.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingIdentitiesTarget.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/MappingIdentitiesTarget.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/MappingIdentitiesTarget.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MappingIdentity.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingIdentity.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/MappingIdentity.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/MappingIdentity.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MappingIdentityTarget.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingIdentityTarget.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/MappingIdentityTarget.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/MappingIdentityTarget.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersLookup.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersLookup.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersLookup.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersLookup.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersLookupMappingItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersLookupMappingItem.md similarity index 67% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersLookupMappingItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersLookupMappingItem.md index c2257bcc1..f361155e7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersLookupMappingItem.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersLookupMappingItem.md @@ -5,8 +5,8 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **groups** | [**list[MappingUsersLookupMappingItemGroup]**](MappingUsersLookupMappingItemGroup.md) | | [optional] **object_history** | [**list[AuthGroupObjectHistoryItem]**](AuthGroupObjectHistoryItem.md) | | [optional] -**privileges** | [**list[AuthIdNtokenPrivilegeItem]**](AuthIdNtokenPrivilegeItem.md) | | [optional] -**user** | [**AuthUserExtended**](AuthUserExtended.md) | Specifies the configuration properties for a user. | [optional] +**privileges** | [**list[MappingUsersLookupMappingItemPrivilege]**](MappingUsersLookupMappingItemPrivilege.md) | | [optional] +**user** | [**MappingUsersLookupMappingItemUser**](MappingUsersLookupMappingItemUser.md) | Specifies the configuration properties for a user. | [optional] **zid** | **int** | | [optional] **zone** | **str** | | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersLookupMappingItemGroup.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersLookupMappingItemGroup.md new file mode 100644 index 000000000..807f461db --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersLookupMappingItemGroup.md @@ -0,0 +1,44 @@ +# MappingUsersLookupMappingItemGroup + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**dn** | **str** | | [optional] +**dns_domain** | **str** | | [optional] +**domain** | **str** | | [optional] +**email** | **str** | | [optional] +**enabled** | **bool** | If true, the authenticated user is enabled. | [optional] +**expired** | **bool** | If true, the authenticated auth user is expired. | [optional] +**expiry** | **int** | | [optional] +**gecos** | **str** | | [optional] +**generated_gid** | **bool** | If true, indicates that the GID was generated. | [optional] +**generated_uid** | **bool** | If true, indicates that the UID was generated. | [optional] +**generated_upn** | **bool** | If true, indicates that the UPN was generated. | [optional] +**gid** | [**AuthAccessAccessItemFileGroup**](AuthAccessAccessItemFileGroup.md) | Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'. | [optional] +**home_directory** | **str** | | [optional] +**id** | **str** | Specifies the user or group ID. | +**locked** | **bool** | If true, the account is locked out. | [optional] +**max_password_age** | **int** | Specifies the maximum time in seconds allowed before the password expires. | [optional] +**member_of** | [**list[AuthAccessAccessItemFileGroup]**](AuthAccessAccessItemFileGroup.md) | | [optional] +**name** | **str** | Specifies a user or group name. | +**object_history** | [**list[AuthGroupObjectHistoryItem]**](AuthGroupObjectHistoryItem.md) | | [optional] +**on_disk_group_identity** | [**AuthAccessAccessItemFileGroup**](AuthAccessAccessItemFileGroup.md) | Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'. | [optional] +**on_disk_user_identity** | [**AuthAccessAccessItemFileGroup**](AuthAccessAccessItemFileGroup.md) | Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'. | [optional] +**password_expired** | **bool** | If true, the password has expired. | [optional] +**password_expires** | **bool** | If true, the password is allowed to expire. | [optional] +**password_expiry** | **int** | | [optional] +**password_last_set** | **int** | | [optional] +**primary_group_sid** | [**AuthAccessAccessItemFileGroup**](AuthAccessAccessItemFileGroup.md) | Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'. | [optional] +**prompt_password_change** | **bool** | If true, prompts the user to change their password on next login. | [optional] +**provider** | **str** | | [optional] +**sam_account_name** | **str** | | [optional] +**shell** | **str** | | [optional] +**sid** | [**AuthAccessAccessItemFileGroup**](AuthAccessAccessItemFileGroup.md) | Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'. | [optional] +**type** | **str** | Specifies the object type. | +**uid** | [**AuthAccessAccessItemFileGroup**](AuthAccessAccessItemFileGroup.md) | Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'. | [optional] +**upn** | **str** | | [optional] +**user_can_change_password** | **bool** | If true, the user password can be changed. | [optional] + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateOauthOauth2ClientResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersLookupMappingItemPrivilege.md similarity index 54% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateOauthOauth2ClientResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersLookupMappingItemPrivilege.md index 0d036511c..afb4f6905 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateOauthOauth2ClientResponse.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersLookupMappingItemPrivilege.md @@ -1,10 +1,11 @@ -# CreateOauthOauth2ClientResponse +# MappingUsersLookupMappingItemPrivilege ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**client_secret** | **str** | Client Secret to identify the OAuth2 client | [optional] -**id** | **str** | Unique identifier of an OAuth2 client. | [optional] +**id** | **str** | Specifies the ID of the privilege. | +**name** | **str** | Specifies the name of the privilege. | [optional] +**read_only** | **bool** | True, if the privilege is read-only. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersLookupMappingItemGroup.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersLookupMappingItemUser.md similarity index 86% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersLookupMappingItemGroup.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersLookupMappingItemUser.md index ff87a8c5c..b6d0234a9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersLookupMappingItemGroup.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersLookupMappingItemUser.md @@ -1,15 +1,14 @@ -# MappingUsersLookupMappingItemGroup +# MappingUsersLookupMappingItemUser ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**disable_when_inactive** | **bool** | The user account will be disabled when inactive beyond a period of time. | [optional] **dn** | **str** | | [optional] **dns_domain** | **str** | | [optional] **domain** | **str** | | [optional] **email** | **str** | | [optional] -**enabled** | **bool** | True, if the authenticated user is enabled. | [optional] -**expired** | **bool** | True, if the authenticated user has expired. | [optional] +**enabled** | **bool** | True, if the authenticated user is enabled. | +**expired** | **bool** | True, if the authenticated user has expired. | **expiry** | **int** | | [optional] **gecos** | **str** | | [optional] **generated_gid** | **bool** | True, if the GID was generated. | [optional] @@ -18,29 +17,27 @@ Name | Type | Description | Notes **gid** | [**AuthAccessAccessItemFileGroup**](AuthAccessAccessItemFileGroup.md) | Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'. | [optional] **home_directory** | **str** | | [optional] **id** | **str** | Specifies the user or group ID. | -**last_logon** | **int** | | [optional] -**locked** | **bool** | If true, indicates that the account is locked. | [optional] +**locked** | **bool** | If true, indicates that the account is locked. | **max_password_age** | **int** | Specifies the maximum time in seconds allowed before the password expires. | [optional] **member_of** | [**list[AuthAccessAccessItemFileGroup]**](AuthAccessAccessItemFileGroup.md) | | [optional] **name** | **str** | Specifies a user or group name. | **object_history** | [**list[AuthGroupObjectHistoryItem]**](AuthGroupObjectHistoryItem.md) | | [optional] **on_disk_group_identity** | [**AuthAccessAccessItemFileGroup**](AuthAccessAccessItemFileGroup.md) | Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'. | [optional] **on_disk_user_identity** | [**AuthAccessAccessItemFileGroup**](AuthAccessAccessItemFileGroup.md) | Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'. | [optional] -**password_expired** | **bool** | If true, the password has expired. | [optional] -**password_expires** | **bool** | If true, the password is allowed to expire. | [optional] +**password_expired** | **bool** | If true, the password has expired. | +**password_expires** | **bool** | If true, the password is allowed to expire. | **password_expiry** | **int** | | [optional] **password_last_set** | **int** | | [optional] **primary_group_sid** | [**AuthAccessAccessItemFileGroup**](AuthAccessAccessItemFileGroup.md) | Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'. | [optional] -**prompt_password_change** | **bool** | Prompts the user to change their password at the next login. | [optional] +**prompt_password_change** | **bool** | Prompts the user to change their password at the next login. | **provider** | **str** | | [optional] **sam_account_name** | **str** | | [optional] **shell** | **str** | | [optional] **sid** | [**AuthAccessAccessItemFileGroup**](AuthAccessAccessItemFileGroup.md) | Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'. | [optional] -**ssh_public_keys** | **list[str]** | Specifies the user's LDAP SSH Public Key. | [optional] **type** | **str** | Specifies the object type. | **uid** | [**AuthAccessAccessItemFileGroup**](AuthAccessAccessItemFileGroup.md) | Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'. | [optional] **upn** | **str** | | [optional] -**user_can_change_password** | **bool** | Specifies whether the password for the user can be changed. | [optional] +**user_can_change_password** | **bool** | Specifies whether the password for the user can be changed. | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersRules.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersRules.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersRules.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersRules.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersRulesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersRulesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersRulesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersRulesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersRulesParameters.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersRulesParameters.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersRulesParameters.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersRulesParameters.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersRulesParametersDefaultUnixUser.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersRulesParametersDefaultUnixUser.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersRulesParametersDefaultUnixUser.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersRulesParametersDefaultUnixUser.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersRulesRule.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersRulesRule.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersRulesRule.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersRulesRule.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersRulesRuleExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersRulesRuleExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersRulesRuleExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersRulesRuleExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersRulesRuleOptions.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersRulesRuleOptions.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersRulesRuleOptions.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersRulesRuleOptions.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersRulesRuleOptionsDefaultUser.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersRulesRuleOptionsDefaultUser.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersRulesRuleOptionsDefaultUser.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersRulesRuleOptionsDefaultUser.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersRulesRuleOptionsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersRulesRuleOptionsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersRulesRuleOptionsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersRulesRuleOptionsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersRulesRuleUser1.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersRulesRuleUser1.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersRulesRuleUser1.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersRulesRuleUser1.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersRulesRuleUser2.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersRulesRuleUser2.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersRulesRuleUser2.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersRulesRuleUser2.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersRulesRules.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersRulesRules.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersRulesRules.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersRulesRules.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersRulesRulesParameters.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersRulesRulesParameters.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersRulesRulesParameters.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersRulesRulesParameters.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersRulesRulesParametersDefaultUnixUser.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersRulesRulesParametersDefaultUnixUser.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/MappingUsersRulesRulesParametersDefaultUnixUser.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/MappingUsersRulesRulesParametersDefaultUnixUser.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MemberObject.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/MemberObject.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/MemberObject.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/MemberObject.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NameLin.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NameLin.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NameLin.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NameLin.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NameLins.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NameLins.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NameLins.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NameLins.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NameLinsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NameLinsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NameLinsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NameLinsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NamespaceAccessPoints.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NamespaceAccessPoints.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NamespaceAccessPoints.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NamespaceAccessPoints.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NamespaceAccessPointsNamespaces.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NamespaceAccessPointsNamespaces.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NamespaceAccessPointsNamespaces.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NamespaceAccessPointsNamespaces.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NamespaceAcl.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NamespaceAcl.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NamespaceAcl.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NamespaceAcl.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NamespaceApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NamespaceApi.md similarity index 88% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NamespaceApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NamespaceApi.md index 9d6d4ab92..2383efc9f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NamespaceApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/NamespaceApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.NamespaceApi +# isilon_sdk.v9_4_0.NamespaceApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -45,17 +45,17 @@ Recursively copies a directory to a specified destination path. Symbolic links a ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NamespaceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NamespaceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) directory_copy_target = 'directory_copy_target_example' # str | Directory copy destination relative to /. x_isi_ifs_copy_source = 'x_isi_ifs_copy_source_example' # str | Specifies the full path to the source directory. overwrite = true # bool | Deletes and replaces the existing user attributes and ACLs of the directory with user-specified attributes and ACLS from the header, when set to true. (optional) @@ -105,17 +105,17 @@ Copies a file to the specified destination path. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NamespaceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NamespaceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) file_copy_target = 'file_copy_target_example' # str | File copy destination relative to /. x_isi_ifs_copy_source = 'x_isi_ifs_copy_source_example' # str | Specifies the full path to the source file. clone = true # bool | You must set this parameter to true in order to clone a file. (optional) @@ -165,19 +165,19 @@ Creates a namespace access point in the file system. Only root users can create ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NamespaceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NamespaceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) access_point_name = 'access_point_name_example' # str | Access point name. -access_point = isilon_sdk.v9_11_0.AccessPointCreateParams() # AccessPointCreateParams | Access point parameters model. +access_point = isilon_sdk.v9_4_0.AccessPointCreateParams() # AccessPointCreateParams | Access point parameters model. try: api_response = api_instance.create_access_point(access_point_name, access_point) @@ -219,17 +219,17 @@ Creates a directory with a specified path. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NamespaceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NamespaceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) directory_path = 'directory_path_example' # str | Directory path relative to /. x_isi_ifs_target_type = 'container' # str | Specifies the resource type. (default to container) x_isi_ifs_access_control = '0700' # str | Specifies a pre-defined ACL value or POSIX mode with a string in octal string format. (optional) (default to 0700) @@ -281,17 +281,17 @@ Creates a directory with a specified accesspoint and container path. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NamespaceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NamespaceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) access_point = 'access_point_example' # str | Access point. container_path = 'container_path_example' # str | Directory path relative to access point. x_isi_ifs_target_type = 'container' # str | Specifies the resource type. (default to container) @@ -345,17 +345,17 @@ Creates a file object with a given path. Note that file streaming is not support ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NamespaceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NamespaceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) file_path = 'file_path_example' # str | File path relative to /. x_isi_ifs_target_type = 'object' # str | Specifies the resource type. (default to object) file_contents = 'file_contents_example' # str | The contents of the file object. @@ -409,17 +409,17 @@ Deletes a namespace access point. Only root users can delete namespace access po ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NamespaceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NamespaceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) access_point_name = 'access_point_name_example' # str | Access point name. try: @@ -461,17 +461,17 @@ Deletes the directory at the specified path. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NamespaceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NamespaceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) directory_path = 'directory_path_example' # str | Directory path relative to /. recursive = true # bool | Deletes directories recursively, when set to true. (optional) @@ -515,17 +515,17 @@ Deletes the directory at the specified path. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NamespaceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NamespaceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) access_point = 'access_point_example' # str | Access point. container_path = 'container_path_example' # str | Directory path relative to access point. recursive = true # bool | Deletes directories recursively, when set to true. (optional) @@ -571,17 +571,17 @@ Deletes the specified file. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NamespaceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NamespaceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) file_path = 'file_path_example' # str | File path relative to /. try: @@ -613,7 +613,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_acl** -> NamespaceAcl get_acl(namespace_path, acl, nsaccess=nsaccess, zone=zone) +> NamespaceAcl get_acl(namespace_path, acl, nsaccess=nsaccess) @@ -623,24 +623,23 @@ Retrieves the access control list for a namespace object. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NamespaceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NamespaceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) namespace_path = 'namespace_path_example' # str | Namespace path relative to /. acl = true # bool | Show access control lists. nsaccess = true # bool | Indicates that the operation is on the access point instead of the store path. (optional) -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.get_acl(namespace_path, acl, nsaccess=nsaccess, zone=zone) + api_response = api_instance.get_acl(namespace_path, acl, nsaccess=nsaccess) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->get_acl: %s\n" % e) @@ -653,7 +652,6 @@ Name | Type | Description | Notes **namespace_path** | **str**| Namespace path relative to /. | **acl** | **bool**| Show access control lists. | **nsaccess** | **bool**| Indicates that the operation is on the access point instead of the store path. | [optional] - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -681,17 +679,17 @@ Retrieves the attribute information for a specified directory without transferri ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NamespaceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NamespaceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) directory_path = 'directory_path_example' # str | Directory path relative to /. if_modified_since = 'if_modified_since_example' # str | Returns only files that were modified since the specified time. If no files were modified since this time, a 304 message is returned. (optional) if_unmodified_since = 'if_unmodified_since_example' # str | Returns only files that were not modified since the specified time. If there are no unmodified files since this time, a 412 message is returned to indicate that the precondition failed. (optional) @@ -737,17 +735,17 @@ Retrieves a list of files and subdirectories from a directory. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NamespaceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NamespaceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) directory_path = 'directory_path_example' # str | Directory path relative to /. detail = 'detail_example' # str | Specifies which object attributes are displayed. (optional) limit = 56 # int | Specifies the maximum number of objects to send to the client. (optional) @@ -793,7 +791,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_directory_metadata** -> NamespaceMetadataList get_directory_metadata(directory_metadata_path, metadata, zone=zone) +> NamespaceMetadataList get_directory_metadata(directory_metadata_path, metadata) @@ -803,23 +801,22 @@ Retrieves the attribute information for a specified directory with the metadata ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NamespaceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NamespaceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) directory_metadata_path = 'directory_metadata_path_example' # str | Directory path relative to /. metadata = true # bool | Show directory metadata. -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.get_directory_metadata(directory_metadata_path, metadata, zone=zone) + api_response = api_instance.get_directory_metadata(directory_metadata_path, metadata) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->get_directory_metadata: %s\n" % e) @@ -831,7 +828,6 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **directory_metadata_path** | **str**| Directory path relative to /. | **metadata** | **bool**| Show directory metadata. | - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -859,17 +855,17 @@ Retrieves a list of files and subdirectories from a directory. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NamespaceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NamespaceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) access_point = 'access_point_example' # str | Access point. container_path = 'container_path_example' # str | Container path relative to access point. detail = 'detail_example' # str | Specifies which object attributes are displayed. (optional) @@ -927,17 +923,17 @@ Retrieves the attribute information for a specified file. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NamespaceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NamespaceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) file_path = 'file_path_example' # str | File path relative to /. if_modified_since = 'if_modified_since_example' # str | Returns only files that were modified since the specified time. If no files were modified since this time, a 304 message is returned. (optional) if_unmodified_since = 'if_unmodified_since_example' # str | Returns only files that were not modified since the specified time. If there are no unmodified files since this time, a 412 message is returned to indicate that the precondition failed. (optional) @@ -983,17 +979,17 @@ Retrieves the contents of a file from a specified path. Note that file streaming ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NamespaceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NamespaceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) file_path = 'file_path_example' # str | File path relative to /. range = 'range_example' # str | Returns the specified range bytes of an object. (optional) if_modified_since = 'if_modified_since_example' # str | Returns only files that were modified since the specified time. If no files were modified since this time, a 304 message is returned. (optional) @@ -1031,7 +1027,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_file_metadata** -> NamespaceMetadataList get_file_metadata(file_metadata_path, metadata, zone=zone) +> NamespaceMetadataList get_file_metadata(file_metadata_path, metadata) @@ -1041,23 +1037,22 @@ Retrieves the attribute information for a specified file with the metadata query ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NamespaceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NamespaceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) file_metadata_path = 'file_metadata_path_example' # str | File path relative to /. metadata = true # bool | Show file metadata. -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.get_file_metadata(file_metadata_path, metadata, zone=zone) + api_response = api_instance.get_file_metadata(file_metadata_path, metadata) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->get_file_metadata: %s\n" % e) @@ -1069,7 +1064,6 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **file_metadata_path** | **str**| File path relative to /. | **metadata** | **bool**| Show file metadata. | - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -1097,17 +1091,17 @@ Retrieves the WORM retention date and committed state of the file. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NamespaceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NamespaceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) worm_file_path = 'worm_file_path_example' # str | Write once read many file path relative to /. worm = true # bool | View WORM properties @@ -1151,17 +1145,17 @@ Retrieves the namespace access points available for the authenticated user. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NamespaceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NamespaceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) versions = true # bool | Protocol versions that are supported for the current namespace access server. (optional) try: @@ -1203,17 +1197,17 @@ Moves a directory from an existing source to a new destination path. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NamespaceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NamespaceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) directory_path = 'directory_path_example' # str | Directory path relative to /. x_isi_ifs_set_location = 'x_isi_ifs_set_location_example' # str | Specifies the full path for the destination directory. @@ -1257,17 +1251,17 @@ Moves a directory from an existing source to a new destination path. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NamespaceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NamespaceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) access_point = 'access_point_example' # str | Access point. container_path = 'container_path_example' # str | Directory path relative to access point. x_isi_ifs_set_location = 'x_isi_ifs_set_location_example' # str | Specifies the full path for the destination directory. @@ -1313,17 +1307,17 @@ Moves a file to a destination path that does not yet exist. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NamespaceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NamespaceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) file_path = 'file_path_example' # str | File path relative to /. x_isi_ifs_set_location = 'x_isi_ifs_set_location_example' # str | Specifies the full path for the destination file. @@ -1367,20 +1361,20 @@ Query objects by system-defined and user-defined attributes in a directory. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NamespaceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NamespaceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) query_path = 'query_path_example' # str | Directory path relative to /. query = true # bool | Enable directory query. -directory_query = isilon_sdk.v9_11_0.DirectoryQuery() # DirectoryQuery | Directory query parameters model. +directory_query = isilon_sdk.v9_4_0.DirectoryQuery() # DirectoryQuery | Directory query parameters model. limit = 56 # int | Specifies the maximum number of objects to send to the client. You can set the value to a negative number to retrieve all objects. (optional) detail = 'detail_example' # str | Specifies which object attributes are displayed. If the detail parameter is excluded, only the name of the object is returned. (optional) resume = 'resume_example' # str | Specifies a token to return in the JSON result to indicate when there is a next page. (optional) @@ -1429,7 +1423,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **set_acl** -> Empty set_acl(namespace_path, acl, namespace_acl, nsaccess=nsaccess, zone=zone) +> Empty set_acl(namespace_path, acl, namespace_acl, nsaccess=nsaccess) @@ -1439,25 +1433,24 @@ Sets the access control list for a namespace. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NamespaceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NamespaceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) namespace_path = 'namespace_path_example' # str | Namespace path relative to /. acl = true # bool | Update access control lists. -namespace_acl = isilon_sdk.v9_11_0.NamespaceAcl() # NamespaceAcl | Namespace ACL parameters model. +namespace_acl = isilon_sdk.v9_4_0.NamespaceAcl() # NamespaceAcl | Namespace ACL parameters model. nsaccess = true # bool | Indicates that the operation is on the access point instead of the store path. (optional) -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.set_acl(namespace_path, acl, namespace_acl, nsaccess=nsaccess, zone=zone) + api_response = api_instance.set_acl(namespace_path, acl, namespace_acl, nsaccess=nsaccess) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->set_acl: %s\n" % e) @@ -1471,7 +1464,6 @@ Name | Type | Description | Notes **acl** | **bool**| Update access control lists. | **namespace_acl** | [**NamespaceAcl**](NamespaceAcl.md)| Namespace ACL parameters model. | **nsaccess** | **bool**| Indicates that the operation is on the access point instead of the store path. | [optional] - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -1489,7 +1481,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **set_directory_metadata** -> Empty set_directory_metadata(directory_metadata_path, metadata, directory_metadata, zone=zone) +> Empty set_directory_metadata(directory_metadata_path, metadata, directory_metadata) @@ -1499,24 +1491,23 @@ Sets attributes on a specified directory with the metadata query argument. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NamespaceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NamespaceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) directory_metadata_path = 'directory_metadata_path_example' # str | Directory path relative to /. metadata = true # bool | Set directory metadata. -directory_metadata = isilon_sdk.v9_11_0.NamespaceMetadata() # NamespaceMetadata | Directory metadata parameters model. -zone = 'zone_example' # str | Specifies the access zone name. (optional) +directory_metadata = isilon_sdk.v9_4_0.NamespaceMetadata() # NamespaceMetadata | Directory metadata parameters model. try: - api_response = api_instance.set_directory_metadata(directory_metadata_path, metadata, directory_metadata, zone=zone) + api_response = api_instance.set_directory_metadata(directory_metadata_path, metadata, directory_metadata) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->set_directory_metadata: %s\n" % e) @@ -1529,7 +1520,6 @@ Name | Type | Description | Notes **directory_metadata_path** | **str**| Directory path relative to /. | **metadata** | **bool**| Set directory metadata. | **directory_metadata** | [**NamespaceMetadata**](NamespaceMetadata.md)| Directory metadata parameters model. | - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -1547,7 +1537,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **set_file_metadata** -> Empty set_file_metadata(file_metadata_path, metadata, file_metadata, zone=zone) +> Empty set_file_metadata(file_metadata_path, metadata, file_metadata) @@ -1557,24 +1547,23 @@ Sets attributes on a specified file with the metadata query argument through the ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NamespaceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NamespaceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) file_metadata_path = 'file_metadata_path_example' # str | File path relative to /. metadata = true # bool | Set file metadata. -file_metadata = isilon_sdk.v9_11_0.NamespaceMetadata() # NamespaceMetadata | File metadata parameters model. -zone = 'zone_example' # str | Specifies the access zone name. (optional) +file_metadata = isilon_sdk.v9_4_0.NamespaceMetadata() # NamespaceMetadata | File metadata parameters model. try: - api_response = api_instance.set_file_metadata(file_metadata_path, metadata, file_metadata, zone=zone) + api_response = api_instance.set_file_metadata(file_metadata_path, metadata, file_metadata) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->set_file_metadata: %s\n" % e) @@ -1587,7 +1576,6 @@ Name | Type | Description | Notes **file_metadata_path** | **str**| File path relative to /. | **metadata** | **bool**| Set file metadata. | **file_metadata** | [**NamespaceMetadata**](NamespaceMetadata.md)| File metadata parameters model. | - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -1615,20 +1603,20 @@ Sets the retention period and commits a file in a SmartLock directory. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NamespaceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NamespaceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) worm_file_path = 'worm_file_path_example' # str | Write once read many file path relative to /. worm = true # bool | View WORM properties -worm_properties = isilon_sdk.v9_11_0.WormCreateParams() # WormCreateParams | WORM parameters model. +worm_properties = isilon_sdk.v9_4_0.WormCreateParams() # WormCreateParams | WORM parameters model. try: api_response = api_instance.set_worm_properties(worm_file_path, worm, worm_properties) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NamespaceMetadata.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NamespaceMetadata.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NamespaceMetadata.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NamespaceMetadata.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NamespaceMetadataAttrs.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NamespaceMetadataAttrs.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NamespaceMetadataAttrs.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NamespaceMetadataAttrs.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NamespaceMetadataList.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NamespaceMetadataList.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NamespaceMetadataList.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NamespaceMetadataList.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NamespaceMetadataListAttrs.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NamespaceMetadataListAttrs.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NamespaceMetadataListAttrs.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NamespaceMetadataListAttrs.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NamespaceObject.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NamespaceObject.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NamespaceObject.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NamespaceObject.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NamespaceObjects.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NamespaceObjects.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NamespaceObjects.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NamespaceObjects.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpContextsBackup.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpContextsBackup.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpContextsBackup.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpContextsBackup.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpContextsBackupContext.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpContextsBackupContext.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpContextsBackupContext.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpContextsBackupContext.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpContextsBackupContextExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpContextsBackupContextExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpContextsBackupContextExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpContextsBackupContextExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpContextsBackupContextSession.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpContextsBackupContextSession.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpContextsBackupContextSession.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpContextsBackupContextSession.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpContextsBackupExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpContextsBackupExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpContextsBackupExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpContextsBackupExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpContextsBre.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpContextsBre.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpContextsBre.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpContextsBre.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpContextsBreContext.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpContextsBreContext.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpContextsBreContext.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpContextsBreContext.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpContextsBreContextEnvVariable.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpContextsBreContextEnvVariable.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpContextsBreContextEnvVariable.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpContextsBreContextEnvVariable.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpContextsBreContextExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpContextsBreContextExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpContextsBreContextExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpContextsBreContextExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpContextsBreExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpContextsBreExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpContextsBreExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpContextsBreExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpDiagnostics.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpDiagnostics.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpDiagnostics.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpDiagnostics.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpDiagnosticsDiagnostics.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpDiagnosticsDiagnostics.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpDiagnosticsDiagnostics.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpDiagnosticsDiagnostics.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpDumpdate.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpDumpdate.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpDumpdate.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpDumpdate.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpDumpdates.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpDumpdates.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpDumpdates.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpDumpdates.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpLogs.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpLogs.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpLogs.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpLogs.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpLogsNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpLogsNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpLogsNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpLogsNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSession.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSession.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSession.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSession.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSessions.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSessions.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSessions.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSessions.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSessionsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSessionsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSessionsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSessionsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSessionsNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSessionsNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSessionsNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSessionsNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSessionsNodeSession.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSessionsNodeSession.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSessionsNodeSession.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSessionsNodeSession.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsDmas.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsDmas.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsDmas.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsDmas.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsDmasDmavendor.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsDmasDmavendor.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsDmasDmavendor.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsDmasDmavendor.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsGlobal.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsGlobal.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsGlobal.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsGlobal.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsGlobalGlobal.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsGlobalGlobal.md similarity index 95% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsGlobalGlobal.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsGlobalGlobal.md index e5aa465be..69369515a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsGlobalGlobal.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsGlobalGlobal.md @@ -13,7 +13,6 @@ Name | Type | Description | Notes **service** | **bool** | Property to enable/disable the NDMP service. | [optional] **stub_file_open_timeout** | **int** | Stub file open timeout during a backup or restore, expressed in seconds. | [optional] **throttler_cpu_threshold** | **int** | NDMP Throttler CPU threshold in percentage. | [optional] -**vmem_size** | **int** | NDMP Vmem size in mebibytes. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsPreferredIp.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsPreferredIp.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsPreferredIp.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsPreferredIp.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsPreferredIpCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsPreferredIpCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsPreferredIpCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsPreferredIpCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsPreferredIpDataSubnet.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsPreferredIpDataSubnet.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsPreferredIpDataSubnet.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsPreferredIpDataSubnet.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsPreferredIps.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsPreferredIps.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsPreferredIps.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsPreferredIps.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsPreferredIpsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsPreferredIpsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsPreferredIpsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsPreferredIpsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsPreferredIpsPreference.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsPreferredIpsPreference.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsPreferredIpsPreference.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsPreferredIpsPreference.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsVariable.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsVariable.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsVariable.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsVariable.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsVariableCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsVariableCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsVariableCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsVariableCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsVariables.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsVariables.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsVariables.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsVariables.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsVariablesVariable.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsVariablesVariable.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsVariablesVariable.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsVariablesVariable.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsVariablesVariablePathVariable.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsVariablesVariablePathVariable.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpSettingsVariablesVariablePathVariable.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpSettingsVariablesVariablePathVariable.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpUser.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpUser.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpUser.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpUser.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpUserCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpUserCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpUserCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpUserCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpUserExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpUserExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpUserExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpUserExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpUsers.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpUsers.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpUsers.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpUsers.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpUsersExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpUsersExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NdmpUsersExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NdmpUsersExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkApi.md new file mode 100644 index 000000000..0fbbb9be9 --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkApi.md @@ -0,0 +1,853 @@ +# isilon_sdk.v9_4_0.NetworkApi + +All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* + +Method | HTTP request | Description +------------- | ------------- | ------------- +[**create_dnscache_flush_item**](NetworkApi.md#create_dnscache_flush_item) | **POST** /platform/3/network/dnscache/flush | +[**create_network_groupnet**](NetworkApi.md#create_network_groupnet) | **POST** /platform/10/network/groupnets | +[**create_network_sc_rebalance_all_item**](NetworkApi.md#create_network_sc_rebalance_all_item) | **POST** /platform/3/network/sc-rebalance-all | +[**delete_network_groupnet**](NetworkApi.md#delete_network_groupnet) | **DELETE** /platform/10/network/groupnets/{NetworkGroupnetId} | +[**get_network_dnscache**](NetworkApi.md#get_network_dnscache) | **GET** /platform/3/network/dnscache | +[**get_network_external**](NetworkApi.md#get_network_external) | **GET** /platform/12/network/external | +[**get_network_groupnet**](NetworkApi.md#get_network_groupnet) | **GET** /platform/10/network/groupnets/{NetworkGroupnetId} | +[**get_network_interfaces**](NetworkApi.md#get_network_interfaces) | **GET** /platform/14/network/interfaces | +[**get_network_pools**](NetworkApi.md#get_network_pools) | **GET** /platform/12/network/pools | +[**get_network_rules**](NetworkApi.md#get_network_rules) | **GET** /platform/3/network/rules | +[**get_network_subnets**](NetworkApi.md#get_network_subnets) | **GET** /platform/7/network/subnets | +[**list_network_groupnets**](NetworkApi.md#list_network_groupnets) | **GET** /platform/10/network/groupnets | +[**update_network_dnscache**](NetworkApi.md#update_network_dnscache) | **PUT** /platform/3/network/dnscache | +[**update_network_external**](NetworkApi.md#update_network_external) | **PUT** /platform/12/network/external | +[**update_network_groupnet**](NetworkApi.md#update_network_groupnet) | **PUT** /platform/10/network/groupnets/{NetworkGroupnetId} | + + +# **create_dnscache_flush_item** +> Empty create_dnscache_flush_item(dnscache_flush_item) + + + +Flush the DNSCache. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.NetworkApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +dnscache_flush_item = isilon_sdk.v9_4_0.Empty() # Empty | + +try: + api_response = api_instance.create_dnscache_flush_item(dnscache_flush_item) + pprint(api_response) +except ApiException as e: + print("Exception when calling NetworkApi->create_dnscache_flush_item: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **dnscache_flush_item** | [**Empty**](Empty.md)| | + +### Return type + +[**Empty**](Empty.md) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **create_network_groupnet** +> CreateResponse create_network_groupnet(network_groupnet) + + + +Create a new groupnet. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.NetworkApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +network_groupnet = isilon_sdk.v9_4_0.NetworkGroupnetCreateParams() # NetworkGroupnetCreateParams | + +try: + api_response = api_instance.create_network_groupnet(network_groupnet) + pprint(api_response) +except ApiException as e: + print("Exception when calling NetworkApi->create_network_groupnet: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **network_groupnet** | [**NetworkGroupnetCreateParams**](NetworkGroupnetCreateParams.md)| | + +### Return type + +[**CreateResponse**](CreateResponse.md) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **create_network_sc_rebalance_all_item** +> Empty create_network_sc_rebalance_all_item(network_sc_rebalance_all_item) + + + +Rebalance IP addresses in all pools. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.NetworkApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +network_sc_rebalance_all_item = isilon_sdk.v9_4_0.Empty() # Empty | + +try: + api_response = api_instance.create_network_sc_rebalance_all_item(network_sc_rebalance_all_item) + pprint(api_response) +except ApiException as e: + print("Exception when calling NetworkApi->create_network_sc_rebalance_all_item: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **network_sc_rebalance_all_item** | [**Empty**](Empty.md)| | + +### Return type + +[**Empty**](Empty.md) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **delete_network_groupnet** +> delete_network_groupnet(network_groupnet_id) + + + +Delete a network groupnet. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.NetworkApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +network_groupnet_id = 'network_groupnet_id_example' # str | Delete a network groupnet. + +try: + api_instance.delete_network_groupnet(network_groupnet_id) +except ApiException as e: + print("Exception when calling NetworkApi->delete_network_groupnet: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **network_groupnet_id** | **str**| Delete a network groupnet. | + +### Return type + +void (empty response body) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **get_network_dnscache** +> NetworkDnscache get_network_dnscache() + + + +View network dns cache settings. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.NetworkApi(isilon_sdk.v9_4_0.ApiClient(configuration)) + +try: + api_response = api_instance.get_network_dnscache() + pprint(api_response) +except ApiException as e: + print("Exception when calling NetworkApi->get_network_dnscache: %s\n" % e) +``` + +### Parameters +This endpoint does not need any parameter. + +### Return type + +[**NetworkDnscache**](NetworkDnscache.md) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **get_network_external** +> NetworkExternal get_network_external() + + + +View external network settings. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.NetworkApi(isilon_sdk.v9_4_0.ApiClient(configuration)) + +try: + api_response = api_instance.get_network_external() + pprint(api_response) +except ApiException as e: + print("Exception when calling NetworkApi->get_network_external: %s\n" % e) +``` + +### Parameters +This endpoint does not need any parameter. + +### Return type + +[**NetworkExternal**](NetworkExternal.md) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **get_network_groupnet** +> NetworkGroupnets get_network_groupnet(network_groupnet_id) + + + +View a network groupnet. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.NetworkApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +network_groupnet_id = 'network_groupnet_id_example' # str | View a network groupnet. + +try: + api_response = api_instance.get_network_groupnet(network_groupnet_id) + pprint(api_response) +except ApiException as e: + print("Exception when calling NetworkApi->get_network_groupnet: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **network_groupnet_id** | **str**| View a network groupnet. | + +### Return type + +[**NetworkGroupnets**](NetworkGroupnets.md) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **get_network_interfaces** +> NetworkInterfacesExtended get_network_interfaces(cache=cache, dir=dir, include_vlans=include_vlans, limit=limit, lnn=lnn, network=network, owner=owner, resume=resume, sort=sort, type=type, vlan_id=vlan_id) + + + +Get a list of interfaces. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.NetworkApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cache = 'cache_example' # str | Control where interface data is source from. no-cache only returns live data from a running node, and if a node can't be reached, no results will be returned. cache-only only returns cached data, some fields are set as null/unknown if they can't be determined, and IPs listed are the IPs that should be configured. Finally, nodes-first will try to query live nodes, and fall back to the cache for any nodes that fail. Default: nodes-first (optional) +dir = 'dir_example' # str | The direction of the sort. (optional) +include_vlans = true # bool | If include_vlans is set to true, all vlans are returned unless further filtered by vlan_id. If include_vlans is set to false, no vlans are returned. (optional) +limit = 56 # int | Return no more than this many results at once (see resume). (optional) +lnn = [56] # list[int] | Get a list of interfaces for the specified lnns. (optional) +network = 'network_example' # str | Show interfaces associated with external and/or internal networks. Default is 'external' (optional) +owner = 'owner_example' # str | Filter results by owner id. Support partials matches too. Ex owner=groupnet0 or owner=groupnet0.subnet0.pool0. (optional) +resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) +sort = 'sort_example' # str | The field that will be used for sorting. (optional) +type = 'type_example' # str | Filter the returned IPs by IP type. (optional) +vlan_id = 56 # int | Only return IPs/interfaces configured in the specified VLAN ID (optional) + +try: + api_response = api_instance.get_network_interfaces(cache=cache, dir=dir, include_vlans=include_vlans, limit=limit, lnn=lnn, network=network, owner=owner, resume=resume, sort=sort, type=type, vlan_id=vlan_id) + pprint(api_response) +except ApiException as e: + print("Exception when calling NetworkApi->get_network_interfaces: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **cache** | **str**| Control where interface data is source from. no-cache only returns live data from a running node, and if a node can't be reached, no results will be returned. cache-only only returns cached data, some fields are set as null/unknown if they can't be determined, and IPs listed are the IPs that should be configured. Finally, nodes-first will try to query live nodes, and fall back to the cache for any nodes that fail. Default: nodes-first | [optional] + **dir** | **str**| The direction of the sort. | [optional] + **include_vlans** | **bool**| If include_vlans is set to true, all vlans are returned unless further filtered by vlan_id. If include_vlans is set to false, no vlans are returned. | [optional] + **limit** | **int**| Return no more than this many results at once (see resume). | [optional] + **lnn** | [**list[int]**](int.md)| Get a list of interfaces for the specified lnns. | [optional] + **network** | **str**| Show interfaces associated with external and/or internal networks. Default is 'external' | [optional] + **owner** | **str**| Filter results by owner id. Support partials matches too. Ex owner=groupnet0 or owner=groupnet0.subnet0.pool0. | [optional] + **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] + **sort** | **str**| The field that will be used for sorting. | [optional] + **type** | **str**| Filter the returned IPs by IP type. | [optional] + **vlan_id** | **int**| Only return IPs/interfaces configured in the specified VLAN ID | [optional] + +### Return type + +[**NetworkInterfacesExtended**](NetworkInterfacesExtended.md) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **get_network_pools** +> NetworkPools get_network_pools(access_zone=access_zone, alloc_method=alloc_method, dir=dir, groupnet=groupnet, limit=limit, resume=resume, sort=sort, subnet=subnet) + + + +Get a list of flexnet pools. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.NetworkApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +access_zone = 'access_zone_example' # str | If specified, only pools with this zone name will be returned. (optional) +alloc_method = 'alloc_method_example' # str | If specified, only pools with this allocation type will be returned. (optional) +dir = 'dir_example' # str | The direction of the sort. (optional) +groupnet = 'groupnet_example' # str | If specified, only pools for this groupnet will be returned. (optional) +limit = 56 # int | Return no more than this many results at once (see resume). (optional) +resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) +sort = 'sort_example' # str | The field that will be used for sorting. (optional) +subnet = 'subnet_example' # str | If specified, only pools for this subnet will be returned. (optional) + +try: + api_response = api_instance.get_network_pools(access_zone=access_zone, alloc_method=alloc_method, dir=dir, groupnet=groupnet, limit=limit, resume=resume, sort=sort, subnet=subnet) + pprint(api_response) +except ApiException as e: + print("Exception when calling NetworkApi->get_network_pools: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **access_zone** | **str**| If specified, only pools with this zone name will be returned. | [optional] + **alloc_method** | **str**| If specified, only pools with this allocation type will be returned. | [optional] + **dir** | **str**| The direction of the sort. | [optional] + **groupnet** | **str**| If specified, only pools for this groupnet will be returned. | [optional] + **limit** | **int**| Return no more than this many results at once (see resume). | [optional] + **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] + **sort** | **str**| The field that will be used for sorting. | [optional] + **subnet** | **str**| If specified, only pools for this subnet will be returned. | [optional] + +### Return type + +[**NetworkPools**](NetworkPools.md) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **get_network_rules** +> PoolsPoolRulesExtended get_network_rules(dir=dir, groupnet=groupnet, limit=limit, pool=pool, resume=resume, sort=sort, subnet=subnet) + + + +Get a list of network rules. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.NetworkApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +dir = 'dir_example' # str | The direction of the sort. (optional) +groupnet = 'groupnet_example' # str | Name of the groupnet to list rules from. (optional) +limit = 56 # int | Return no more than this many results at once (see resume). (optional) +pool = 'pool_example' # str | Name of the pool to list rules from. (optional) +resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) +sort = 'sort_example' # str | The field that will be used for sorting. (optional) +subnet = 'subnet_example' # str | Name of the subnet to list rules from. (optional) + +try: + api_response = api_instance.get_network_rules(dir=dir, groupnet=groupnet, limit=limit, pool=pool, resume=resume, sort=sort, subnet=subnet) + pprint(api_response) +except ApiException as e: + print("Exception when calling NetworkApi->get_network_rules: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **dir** | **str**| The direction of the sort. | [optional] + **groupnet** | **str**| Name of the groupnet to list rules from. | [optional] + **limit** | **int**| Return no more than this many results at once (see resume). | [optional] + **pool** | **str**| Name of the pool to list rules from. | [optional] + **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] + **sort** | **str**| The field that will be used for sorting. | [optional] + **subnet** | **str**| Name of the subnet to list rules from. | [optional] + +### Return type + +[**PoolsPoolRulesExtended**](PoolsPoolRulesExtended.md) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **get_network_subnets** +> GroupnetSubnetsExtended get_network_subnets(dir=dir, groupnet=groupnet, limit=limit, resume=resume, sort=sort) + + + +Get a list of subnets. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.NetworkApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +dir = 'dir_example' # str | The direction of the sort. (optional) +groupnet = 'groupnet_example' # str | If specified, only subnets for this groupnet will be returned. (optional) +limit = 56 # int | Return no more than this many results at once (see resume). (optional) +resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) +sort = 'sort_example' # str | The field that will be used for sorting. (optional) + +try: + api_response = api_instance.get_network_subnets(dir=dir, groupnet=groupnet, limit=limit, resume=resume, sort=sort) + pprint(api_response) +except ApiException as e: + print("Exception when calling NetworkApi->get_network_subnets: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **dir** | **str**| The direction of the sort. | [optional] + **groupnet** | **str**| If specified, only subnets for this groupnet will be returned. | [optional] + **limit** | **int**| Return no more than this many results at once (see resume). | [optional] + **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] + **sort** | **str**| The field that will be used for sorting. | [optional] + +### Return type + +[**GroupnetSubnetsExtended**](GroupnetSubnetsExtended.md) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **list_network_groupnets** +> NetworkGroupnetsExtended list_network_groupnets(dir=dir, limit=limit, resume=resume, sort=sort) + + + +Get a list of groupnets. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.NetworkApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +dir = 'dir_example' # str | The direction of the sort. (optional) +limit = 56 # int | Return no more than this many results at once (see resume). (optional) +resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) +sort = 'sort_example' # str | The field that will be used for sorting. (optional) + +try: + api_response = api_instance.list_network_groupnets(dir=dir, limit=limit, resume=resume, sort=sort) + pprint(api_response) +except ApiException as e: + print("Exception when calling NetworkApi->list_network_groupnets: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **dir** | **str**| The direction of the sort. | [optional] + **limit** | **int**| Return no more than this many results at once (see resume). | [optional] + **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] + **sort** | **str**| The field that will be used for sorting. | [optional] + +### Return type + +[**NetworkGroupnetsExtended**](NetworkGroupnetsExtended.md) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **update_network_dnscache** +> update_network_dnscache(network_dnscache) + + + +Modify network dns cache settings. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.NetworkApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +network_dnscache = isilon_sdk.v9_4_0.NetworkDnscacheExtended() # NetworkDnscacheExtended | + +try: + api_instance.update_network_dnscache(network_dnscache) +except ApiException as e: + print("Exception when calling NetworkApi->update_network_dnscache: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **network_dnscache** | [**NetworkDnscacheExtended**](NetworkDnscacheExtended.md)| | + +### Return type + +void (empty response body) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **update_network_external** +> update_network_external(network_external) + + + +Modify external network settings. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.NetworkApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +network_external = isilon_sdk.v9_4_0.NetworkExternalExtended() # NetworkExternalExtended | + +try: + api_instance.update_network_external(network_external) +except ApiException as e: + print("Exception when calling NetworkApi->update_network_external: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **network_external** | [**NetworkExternalExtended**](NetworkExternalExtended.md)| | + +### Return type + +void (empty response body) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **update_network_groupnet** +> update_network_groupnet(network_groupnet, network_groupnet_id) + + + +Modify a network groupnet. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.NetworkApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +network_groupnet = isilon_sdk.v9_4_0.NetworkGroupnet() # NetworkGroupnet | +network_groupnet_id = 'network_groupnet_id_example' # str | Modify a network groupnet. + +try: + api_instance.update_network_groupnet(network_groupnet, network_groupnet_id) +except ApiException as e: + print("Exception when calling NetworkApi->update_network_groupnet: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **network_groupnet** | [**NetworkGroupnet**](NetworkGroupnet.md)| | + **network_groupnet_id** | **str**| Modify a network groupnet. | + +### Return type + +void (empty response body) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkDnscache.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkDnscache.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkDnscache.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkDnscache.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkDnscacheExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkDnscacheExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkDnscacheExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkDnscacheExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkDnscacheSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkDnscacheSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkDnscacheSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkDnscacheSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkExternal.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkExternal.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkExternal.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkExternal.md diff --git a/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkExternalExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkExternalExtended.md new file mode 100644 index 000000000..13a1a7a35 --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkExternalExtended.md @@ -0,0 +1,13 @@ +# NetworkExternalExtended + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**ipv6_auto_config_enabled** | **bool** | True if rtsold daemon is enabled. When set to false, the rtsold service is disabled, and IPv6 auto configuration is disabled | [optional] +**sbr** | **bool** | Enable or disable Source Based Routing (Defaults to false) | [optional] +**sc_rebalance_delay** | **int** | Delay in seconds for IP rebalance. | [optional] +**tcp_ports** | **list[int]** | List of client TCP ports. | [optional] + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkExternalSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkExternalSettings.md new file mode 100644 index 000000000..84b87f1f8 --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkExternalSettings.md @@ -0,0 +1,14 @@ +# NetworkExternalSettings + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**default_groupnet** | **str** | Default client-side DNS settings for non-multitenancy aware programs | +**ipv6_auto_config_enabled** | **bool** | True if rtsold daemon is enabled. When set to false, the rtsold service is disabled, and IPv6 auto configuration is disabled | +**sbr** | **bool** | Enable or disable Source Based Routing (Defaults to false) | +**sc_rebalance_delay** | **int** | Delay in seconds for IP rebalance. | +**tcp_ports** | **list[int]** | List of client TCP ports. | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkGroupnet.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkGroupnet.md similarity index 90% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkGroupnet.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkGroupnet.md index 8d4e68587..fc13be19c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkGroupnet.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkGroupnet.md @@ -10,7 +10,7 @@ Name | Type | Description | Notes **dns_search** | **list[str]** | List of DNS search suffixes. | [optional] **dns_servers** | **list[str]** | List of Domain Name Server IP addresses. | [optional] **name** | **str** | The name of the groupnet. | [optional] -**server_side_dns_search** | **bool** | Enable or disable appending nodes DNS search list to client DNS inquiries directed at SmartConnect service IP. | [optional] +**server_side_dns_search** | **bool** | Enable or disable appending nodes DNS search list to client DNS inquiries directed at SmartConnect service IP. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkGroupnetCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkGroupnetCreateParams.md similarity index 90% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkGroupnetCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkGroupnetCreateParams.md index 24c9d7142..8e0a6a92b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkGroupnetCreateParams.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkGroupnetCreateParams.md @@ -10,7 +10,7 @@ Name | Type | Description | Notes **dns_search** | **list[str]** | List of DNS search suffixes. | [optional] **dns_servers** | **list[str]** | List of Domain Name Server IP addresses. | [optional] **name** | **str** | The name of the groupnet. | -**server_side_dns_search** | **bool** | Enable or disable appending nodes DNS search list to client DNS inquiries directed at SmartConnect service IP. | [optional] +**server_side_dns_search** | **bool** | Enable or disable appending nodes DNS search list to client DNS inquiries directed at SmartConnect service IP. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkGroupnetExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkGroupnetExtended.md similarity index 91% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkGroupnetExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkGroupnetExtended.md index a17b57f00..d6a7fb3b7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkGroupnetExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkGroupnetExtended.md @@ -10,7 +10,7 @@ Name | Type | Description | Notes **dns_search** | **list[str]** | List of DNS search suffixes. | [optional] **dns_servers** | **list[str]** | List of Domain Name Server IP addresses. | [optional] **name** | **str** | The name of the groupnet. | [optional] -**server_side_dns_search** | **bool** | Enable or disable appending nodes DNS search list to client DNS inquiries directed at SmartConnect service IP. | [optional] +**server_side_dns_search** | **bool** | Enable or disable appending nodes DNS search list to client DNS inquiries directed at SmartConnect service IP. | [optional] **id** | **str** | Unique Interface ID. | [optional] **subnets** | **list[str]** | Name of the subnets in the groupnet. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkGroupnets.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkGroupnets.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkGroupnets.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkGroupnets.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkGroupnetsApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkGroupnetsApi.md similarity index 84% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkGroupnetsApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkGroupnetsApi.md index 1e1fae06c..1b65d4deb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkGroupnetsApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkGroupnetsApi.md @@ -1,19 +1,19 @@ -# isilon_sdk.v9_11_0.NetworkGroupnetsApi +# isilon_sdk.v9_4_0.NetworkGroupnetsApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* Method | HTTP request | Description ------------- | ------------- | ------------- -[**create_groupnet_subnet**](NetworkGroupnetsApi.md#create_groupnet_subnet) | **POST** /platform/21/network/groupnets/{Groupnet}/subnets | -[**create_subnets_subnet_pool**](NetworkGroupnetsApi.md#create_subnets_subnet_pool) | **POST** /platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools | -[**delete_groupnet_subnet**](NetworkGroupnetsApi.md#delete_groupnet_subnet) | **DELETE** /platform/21/network/groupnets/{Groupnet}/subnets/{GroupnetSubnetId} | -[**delete_subnets_subnet_pool**](NetworkGroupnetsApi.md#delete_subnets_subnet_pool) | **DELETE** /platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{SubnetsSubnetPoolId} | -[**get_groupnet_subnet**](NetworkGroupnetsApi.md#get_groupnet_subnet) | **GET** /platform/21/network/groupnets/{Groupnet}/subnets/{GroupnetSubnetId} | -[**get_subnets_subnet_pool**](NetworkGroupnetsApi.md#get_subnets_subnet_pool) | **GET** /platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{SubnetsSubnetPoolId} | -[**list_groupnet_subnets**](NetworkGroupnetsApi.md#list_groupnet_subnets) | **GET** /platform/21/network/groupnets/{Groupnet}/subnets | -[**list_subnets_subnet_pools**](NetworkGroupnetsApi.md#list_subnets_subnet_pools) | **GET** /platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools | -[**update_groupnet_subnet**](NetworkGroupnetsApi.md#update_groupnet_subnet) | **PUT** /platform/21/network/groupnets/{Groupnet}/subnets/{GroupnetSubnetId} | -[**update_subnets_subnet_pool**](NetworkGroupnetsApi.md#update_subnets_subnet_pool) | **PUT** /platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{SubnetsSubnetPoolId} | +[**create_groupnet_subnet**](NetworkGroupnetsApi.md#create_groupnet_subnet) | **POST** /platform/12/network/groupnets/{Groupnet}/subnets | +[**create_subnets_subnet_pool**](NetworkGroupnetsApi.md#create_subnets_subnet_pool) | **POST** /platform/12/network/groupnets/{Groupnet}/subnets/{Subnet}/pools | +[**delete_groupnet_subnet**](NetworkGroupnetsApi.md#delete_groupnet_subnet) | **DELETE** /platform/12/network/groupnets/{Groupnet}/subnets/{GroupnetSubnetId} | +[**delete_subnets_subnet_pool**](NetworkGroupnetsApi.md#delete_subnets_subnet_pool) | **DELETE** /platform/12/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{SubnetsSubnetPoolId} | +[**get_groupnet_subnet**](NetworkGroupnetsApi.md#get_groupnet_subnet) | **GET** /platform/12/network/groupnets/{Groupnet}/subnets/{GroupnetSubnetId} | +[**get_subnets_subnet_pool**](NetworkGroupnetsApi.md#get_subnets_subnet_pool) | **GET** /platform/12/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{SubnetsSubnetPoolId} | +[**list_groupnet_subnets**](NetworkGroupnetsApi.md#list_groupnet_subnets) | **GET** /platform/12/network/groupnets/{Groupnet}/subnets | +[**list_subnets_subnet_pools**](NetworkGroupnetsApi.md#list_subnets_subnet_pools) | **GET** /platform/12/network/groupnets/{Groupnet}/subnets/{Subnet}/pools | +[**update_groupnet_subnet**](NetworkGroupnetsApi.md#update_groupnet_subnet) | **PUT** /platform/12/network/groupnets/{Groupnet}/subnets/{GroupnetSubnetId} | +[**update_subnets_subnet_pool**](NetworkGroupnetsApi.md#update_subnets_subnet_pool) | **PUT** /platform/12/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{SubnetsSubnetPoolId} | # **create_groupnet_subnet** @@ -27,18 +27,18 @@ Create a new subnet. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkGroupnetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -groupnet_subnet = isilon_sdk.v9_11_0.GroupnetSubnetCreateParams() # GroupnetSubnetCreateParams | +api_instance = isilon_sdk.v9_4_0.NetworkGroupnetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +groupnet_subnet = isilon_sdk.v9_4_0.GroupnetSubnetCreateParams() # GroupnetSubnetCreateParams | groupnet = 'groupnet_example' # str | try: @@ -81,18 +81,18 @@ Create a new pool. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkGroupnetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -subnets_subnet_pool = isilon_sdk.v9_11_0.SubnetsSubnetPoolCreateParams() # SubnetsSubnetPoolCreateParams | +api_instance = isilon_sdk.v9_4_0.NetworkGroupnetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +subnets_subnet_pool = isilon_sdk.v9_4_0.SubnetsSubnetPoolCreateParams() # SubnetsSubnetPoolCreateParams | groupnet = 'groupnet_example' # str | subnet = 'subnet_example' # str | force = true # bool | Force creating this pool even if it causes an MTU conflict. (optional) @@ -139,17 +139,17 @@ Delete a network subnet. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkGroupnetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NetworkGroupnetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) groupnet_subnet_id = 'groupnet_subnet_id_example' # str | Delete a network subnet. groupnet = 'groupnet_example' # str | force = true # bool | Force deleting this subnet even if pools in other subnets rely on this subnet's SC VIP. (optional) @@ -194,17 +194,17 @@ Delete a network pool. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkGroupnetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NetworkGroupnetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) subnets_subnet_pool_id = 'subnets_subnet_pool_id_example' # str | Delete a network pool. groupnet = 'groupnet_example' # str | subnet = 'subnet_example' # str | @@ -249,17 +249,17 @@ View a network subnet. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkGroupnetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NetworkGroupnetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) groupnet_subnet_id = 'groupnet_subnet_id_example' # str | View a network subnet. groupnet = 'groupnet_example' # str | @@ -303,17 +303,17 @@ View a single network pool. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkGroupnetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NetworkGroupnetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) subnets_subnet_pool_id = 'subnets_subnet_pool_id_example' # str | View a single network pool. groupnet = 'groupnet_example' # str | subnet = 'subnet_example' # str | @@ -359,17 +359,17 @@ Get a list of subnets. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkGroupnetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NetworkGroupnetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) groupnet = 'groupnet_example' # str | dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) @@ -419,17 +419,17 @@ Get a list of network pools. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkGroupnetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NetworkGroupnetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) groupnet = 'groupnet_example' # str | subnet = 'subnet_example' # str | access_zone = 'access_zone_example' # str | If specified, only pools with this zone name will be returned. (optional) @@ -485,18 +485,18 @@ Modify a network subnet. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkGroupnetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -groupnet_subnet = isilon_sdk.v9_11_0.GroupnetSubnet() # GroupnetSubnet | +api_instance = isilon_sdk.v9_4_0.NetworkGroupnetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +groupnet_subnet = isilon_sdk.v9_4_0.GroupnetSubnet() # GroupnetSubnet | groupnet_subnet_id = 'groupnet_subnet_id_example' # str | Modify a network subnet. groupnet = 'groupnet_example' # str | force = true # bool | Force modifying this subnet even if it causes an MTU conflict. (optional) @@ -542,18 +542,18 @@ Modify a network pool. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkGroupnetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -subnets_subnet_pool = isilon_sdk.v9_11_0.SubnetsSubnetPool() # SubnetsSubnetPool | +api_instance = isilon_sdk.v9_4_0.NetworkGroupnetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +subnets_subnet_pool = isilon_sdk.v9_4_0.SubnetsSubnetPool() # SubnetsSubnetPool | subnets_subnet_pool_id = 'subnets_subnet_pool_id_example' # str | Modify a network pool. groupnet = 'groupnet_example' # str | subnet = 'subnet_example' # str | diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkGroupnetsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkGroupnetsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkGroupnetsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkGroupnetsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkGroupnetsSubnetsApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkGroupnetsSubnetsApi.md similarity index 84% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkGroupnetsSubnetsApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkGroupnetsSubnetsApi.md index ce8005b8f..d7cd769e7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkGroupnetsSubnetsApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkGroupnetsSubnetsApi.md @@ -1,19 +1,19 @@ -# isilon_sdk.v9_11_0.NetworkGroupnetsSubnetsApi +# isilon_sdk.v9_4_0.NetworkGroupnetsSubnetsApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* Method | HTTP request | Description ------------- | ------------- | ------------- [**create_pools_pool_rebalance_ip**](NetworkGroupnetsSubnetsApi.md#create_pools_pool_rebalance_ip) | **POST** /platform/3/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rebalance-ips | -[**create_pools_pool_rule**](NetworkGroupnetsSubnetsApi.md#create_pools_pool_rule) | **POST** /platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules | +[**create_pools_pool_rule**](NetworkGroupnetsSubnetsApi.md#create_pools_pool_rule) | **POST** /platform/3/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules | [**create_pools_pool_sc_resume_node**](NetworkGroupnetsSubnetsApi.md#create_pools_pool_sc_resume_node) | **POST** /platform/3/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/sc-resume-nodes | [**create_pools_pool_sc_suspend_node**](NetworkGroupnetsSubnetsApi.md#create_pools_pool_sc_suspend_node) | **POST** /platform/3/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/sc-suspend-nodes | -[**delete_pools_pool_rule**](NetworkGroupnetsSubnetsApi.md#delete_pools_pool_rule) | **DELETE** /platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules/{PoolsPoolRuleId} | +[**delete_pools_pool_rule**](NetworkGroupnetsSubnetsApi.md#delete_pools_pool_rule) | **DELETE** /platform/3/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules/{PoolsPoolRuleId} | [**get_pools_pool_interfaces**](NetworkGroupnetsSubnetsApi.md#get_pools_pool_interfaces) | **GET** /platform/7/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/interfaces | -[**get_pools_pool_rule**](NetworkGroupnetsSubnetsApi.md#get_pools_pool_rule) | **GET** /platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules/{PoolsPoolRuleId} | +[**get_pools_pool_rule**](NetworkGroupnetsSubnetsApi.md#get_pools_pool_rule) | **GET** /platform/3/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules/{PoolsPoolRuleId} | [**get_pools_pool_status**](NetworkGroupnetsSubnetsApi.md#get_pools_pool_status) | **GET** /platform/15/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/status | -[**list_pools_pool_rules**](NetworkGroupnetsSubnetsApi.md#list_pools_pool_rules) | **GET** /platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules | -[**update_pools_pool_rule**](NetworkGroupnetsSubnetsApi.md#update_pools_pool_rule) | **PUT** /platform/21/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules/{PoolsPoolRuleId} | +[**list_pools_pool_rules**](NetworkGroupnetsSubnetsApi.md#list_pools_pool_rules) | **GET** /platform/3/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules | +[**update_pools_pool_rule**](NetworkGroupnetsSubnetsApi.md#update_pools_pool_rule) | **PUT** /platform/3/network/groupnets/{Groupnet}/subnets/{Subnet}/pools/{Pool}/rules/{PoolsPoolRuleId} | # **create_pools_pool_rebalance_ip** @@ -27,18 +27,18 @@ Rebalance IP addresses in specified pool. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkGroupnetsSubnetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -pools_pool_rebalance_ip = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.NetworkGroupnetsSubnetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +pools_pool_rebalance_ip = isilon_sdk.v9_4_0.Empty() # Empty | groupnet = 'groupnet_example' # str | subnet = 'subnet_example' # str | pool = 'pool_example' # str | @@ -85,18 +85,18 @@ Create a new rule. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkGroupnetsSubnetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -pools_pool_rule = isilon_sdk.v9_11_0.PoolsPoolRuleCreateParams() # PoolsPoolRuleCreateParams | +api_instance = isilon_sdk.v9_4_0.NetworkGroupnetsSubnetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +pools_pool_rule = isilon_sdk.v9_4_0.PoolsPoolRuleCreateParams() # PoolsPoolRuleCreateParams | groupnet = 'groupnet_example' # str | subnet = 'subnet_example' # str | pool = 'pool_example' # str | @@ -143,18 +143,18 @@ Resume suspended nodes. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkGroupnetsSubnetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -pools_pool_sc_resume_node = isilon_sdk.v9_11_0.PoolsPoolScResumeNode() # PoolsPoolScResumeNode | +api_instance = isilon_sdk.v9_4_0.NetworkGroupnetsSubnetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +pools_pool_sc_resume_node = isilon_sdk.v9_4_0.PoolsPoolScResumeNode() # PoolsPoolScResumeNode | groupnet = 'groupnet_example' # str | subnet = 'subnet_example' # str | pool = 'pool_example' # str | @@ -201,18 +201,18 @@ Suspend nodes. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkGroupnetsSubnetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -pools_pool_sc_suspend_node = isilon_sdk.v9_11_0.PoolsPoolScResumeNode() # PoolsPoolScResumeNode | +api_instance = isilon_sdk.v9_4_0.NetworkGroupnetsSubnetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +pools_pool_sc_suspend_node = isilon_sdk.v9_4_0.PoolsPoolScResumeNode() # PoolsPoolScResumeNode | groupnet = 'groupnet_example' # str | subnet = 'subnet_example' # str | pool = 'pool_example' # str | @@ -259,17 +259,17 @@ Delete a network rule. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkGroupnetsSubnetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NetworkGroupnetsSubnetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) pools_pool_rule_id = 'pools_pool_rule_id_example' # str | Delete a network rule. groupnet = 'groupnet_example' # str | subnet = 'subnet_example' # str | @@ -316,17 +316,17 @@ Get a list of interfaces. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkGroupnetsSubnetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NetworkGroupnetsSubnetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) groupnet = 'groupnet_example' # str | subnet = 'subnet_example' # str | pool = 'pool_example' # str | @@ -382,17 +382,17 @@ View a single network rule. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkGroupnetsSubnetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NetworkGroupnetsSubnetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) pools_pool_rule_id = 'pools_pool_rule_id_example' # str | View a single network rule. groupnet = 'groupnet_example' # str | subnet = 'subnet_example' # str | @@ -440,17 +440,17 @@ View the status of a single network pool. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkGroupnetsSubnetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NetworkGroupnetsSubnetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) groupnet = 'groupnet_example' # str | subnet = 'subnet_example' # str | pool = 'pool_example' # str | @@ -498,17 +498,17 @@ Get a list of network rules. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkGroupnetsSubnetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.NetworkGroupnetsSubnetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) groupnet = 'groupnet_example' # str | subnet = 'subnet_example' # str | pool = 'pool_example' # str | @@ -562,18 +562,18 @@ Modify a network rule. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.NetworkGroupnetsSubnetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -pools_pool_rule = isilon_sdk.v9_11_0.PoolsPoolRule() # PoolsPoolRule | +api_instance = isilon_sdk.v9_4_0.NetworkGroupnetsSubnetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +pools_pool_rule = isilon_sdk.v9_4_0.PoolsPoolRule() # PoolsPoolRule | pools_pool_rule_id = 'pools_pool_rule_id_example' # str | Modify a network rule. groupnet = 'groupnet_example' # str | subnet = 'subnet_example' # str | diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkInterface.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkInterface.md similarity index 87% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkInterface.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkInterface.md index 24e1ed9ea..fdcdb4c35 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkInterface.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkInterface.md @@ -8,9 +8,7 @@ Name | Type | Description | Notes **ip_addrs** | **list[str]** | List of IP addresses | **ipv4_gateway** | **str** | | [optional] **ipv6_gateway** | **str** | | [optional] -**linklayer** | **str** | Specifies the type of network linklayer this interface uses. | **lnn** | **int** | Logical Node Number (LNN) of a node. | -**macaddr** | **str** | The MAC address of the interface. | [optional] **mtu** | **int** | The mtu the interface. | [optional] **name** | **str** | The name of the interface. | **nic_name** | **str** | NIC name | diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkInterfaceOwner.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkInterfaceOwner.md similarity index 81% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkInterfaceOwner.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkInterfaceOwner.md index 969473ab1..a5bf4be4c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkInterfaceOwner.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkInterfaceOwner.md @@ -8,9 +8,7 @@ Name | Type | Description | Notes **id** | **str** | The id of the owner. The concatenation of the groupnet, subnet, and pool fields as relevant. | [optional] **ip_addrs** | **list[str]** | List of IPs on this interface in the pool | [optional] **pool** | **str** | | [optional] -**prefixlen** | **int** | Prefix length of the subnet this owner belongs to. | [optional] **subnet** | **str** | | [optional] -**subtype** | **str** | Name of the system allocating the IPs for this Network Pool. | [optional] **type** | **str** | Specifies the type of network addresses that this interface owner contains. | [optional] **vlan_id** | **int** | | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkInterfaceVlan.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkInterfaceVlan.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkInterfaceVlan.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkInterfaceVlan.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkInterfaces.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkInterfaces.md similarity index 87% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkInterfaces.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkInterfaces.md index 65b12092a..e935900c2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkInterfaces.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkInterfaces.md @@ -3,7 +3,6 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**errors** | [**list[NodeStatusCpuError]**](NodeStatusCpuError.md) | | [optional] **interfaces** | [**list[NetworkInterface]**](NetworkInterface.md) | | [optional] **resume** | **str** | Provide this token as the 'resume' query argument to continue listing results. | [optional] **total** | **int** | Total number of items available. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesSyslogExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkInterfacesExtended.md similarity index 70% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesSyslogExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkInterfacesExtended.md index dc7a1bff5..f650bda08 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CertificatesSyslogExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkInterfacesExtended.md @@ -1,11 +1,12 @@ -# CertificatesSyslogExtended +# NetworkInterfacesExtended ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**certificates** | [**list[CertificatesSyslogCertificate]**](CertificatesSyslogCertificate.md) | | [optional] +**interfaces** | [**list[NetworkInterface]**](NetworkInterface.md) | | [optional] **resume** | **str** | Provide this token as the 'resume' query argument to continue listing results. | [optional] **total** | **int** | Total number of items available. | [optional] +**errors** | [**list[NodeStatusCpuError]**](NodeStatusCpuError.md) | | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkPool.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkPool.md similarity index 70% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkPool.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkPool.md index b30f10e01..906075de1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkPool.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkPool.md @@ -5,21 +5,18 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **access_zone** | **str** | Name of a valid access zone to map IP address pool to the zone. | [optional] **addr_family** | **str** | IP address format. | [optional] -**aggregation_mode** | **str** | OneFS supports the following NIC aggregation modes. 'fec' was renamed to 'loadbalance' in OneFS 9.7. | [optional] +**aggregation_mode** | **str** | OneFS supports the following NIC aggregation modes. | [optional] **alloc_method** | **str** | Specifies how IP address allocation is done among pool members. | [optional] **description** | **str** | A description of the pool. | [optional] -**external_manager** | **str** | Name of the system allocating the IPs for this Network Pool. | [optional] -**firewall_policy** | **str** | Name of the Firewall Policy associated with this Network Pool. | [optional] **groupnet** | **str** | Name of the groupnet this pool belongs to. | [optional] **id** | **str** | Unique Pool ID. | [optional] **ifaces** | [**list[SubnetsSubnetPoolIface]**](SubnetsSubnetPoolIface.md) | List of interface members in this pool. | [optional] -**ipv6_perform_dad** | **bool** | Indicates if the Network Pool should perform IPv6 Duplicate Address Detection when configuring the IPs. Only applies to IPv6 Network Pools. | [optional] -**linklayer** | **str** | Specifies the type of network linklayer this Network Pool uses. | [optional] **name** | **str** | The name of the pool. It must be unique throughout the given subnet.It's a required field with POST method. | [optional] -**nfs_rroce_only** | **bool** | Indicates that pool contains only RDMA RRoCE capable interfaces. | [optional] +**nfsv3_rroce_only** | **bool** | Indicates that pool contains only RDMA RRoCE capable interfaces. | [optional] **ranges** | [**list[SubnetsSubnetPoolRange]**](SubnetsSubnetPoolRange.md) | List of IP address ranges in this pool. | [optional] -**rebalance_policy** | **str** | Rebalance policy. | [optional] +**rebalance_policy** | **str** | Rebalance policy.. | [optional] **rules** | **list[str]** | Names of the rules in this pool. | [optional] +**sc_auto_unsuspend_delay** | **int** | Time delay in seconds before a node which has been automatically unsuspended becomes usable in SmartConnect responses for pool zones. | [optional] **sc_connect_policy** | **str** | SmartConnect client connection balancing policy. | [optional] **sc_dns_zone** | **str** | SmartConnect zone name for the pool. | [optional] **sc_dns_zone_aliases** | **list[str]** | List of SmartConnect zone aliases (DNS names) to the pool. | [optional] @@ -27,7 +24,7 @@ Name | Type | Description | Notes **sc_subnet** | **str** | Name of SmartConnect service subnet for this pool. | [optional] **sc_suspended_nodes** | **list[int]** | List of LNNs showing currently suspended nodes in SmartConnect. | [optional] **sc_ttl** | **int** | Time to live value for SmartConnect DNS query responses in seconds. | [optional] -**static_routes** | [**list[SubnetsSubnetPoolStaticRoute]**](SubnetsSubnetPoolStaticRoute.md) | List of configured static routes in this network pool | [optional] +**static_routes** | [**list[SubnetsSubnetPoolStaticRoute]**](SubnetsSubnetPoolStaticRoute.md) | List of interface members in this pool. | [optional] **subnet** | **str** | The name of the subnet. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkPools.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkPools.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NetworkPools.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NetworkPools.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsAlias.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsAlias.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsAlias.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsAlias.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsAliasCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsAliasCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsAliasCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsAliasCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsAliasExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsAliasExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsAliasExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsAliasExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsAliases.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsAliases.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsAliases.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsAliases.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsAliasesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsAliasesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsAliasesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsAliasesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsCheck.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsCheck.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsCheck.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsCheck.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsCheckExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsCheckExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsCheckExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsCheckExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsExport.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsExport.md similarity index 91% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsExport.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsExport.md index 92f7167db..5ae5e2746 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsExport.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsExport.md @@ -12,7 +12,7 @@ Name | Type | Description | Notes **clients** | **list[str]** | Specifies the clients with root access to the export. | [optional] **commit_asynchronous** | **bool** | True if NFS commit requests execute asynchronously. | [optional] **description** | **str** | Specifies the user-defined string that is used to identify the export. | [optional] -**directory_transfer_size** | **int** | Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server. | [optional] +**directory_transfer_size** | **int** | Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] **encoding** | **str** | Specifies the default character set encoding of the clients connecting to the export, unless otherwise specified. | [optional] **link_max** | **int** | Specifies the reported maximum number of links to a file. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. | [optional] **map_all** | [**NfsExportMapAll**](NfsExportMapAll.md) | User and group mapping. | [optional] @@ -28,9 +28,9 @@ Name | Type | Description | Notes **paths** | **list[str]** | Specifies the paths under /ifs that are exported. | [optional] **read_only** | **bool** | True if the export is set to read-only. | [optional] **read_only_clients** | **list[str]** | Specifies the clients with read-only access to the export. | [optional] -**read_transfer_max_size** | **int** | Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server. | [optional] +**read_transfer_max_size** | **int** | Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] **read_transfer_multiple** | **int** | Specifies the preferred multiple size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] -**read_transfer_size** | **int** | Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server. | [optional] +**read_transfer_size** | **int** | Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] **read_write_clients** | **list[str]** | Specifies the clients with both read and write access to the export, even when the export is set to read-only. | [optional] **readdirplus** | **bool** | True if 'readdirplus' requests are enabled. Enabling this property might improve network performance and is only available for NFSv3. | [optional] **readdirplus_prefetch** | **int** | Sets the number of directory entries that are prefetched when a 'readdirplus' request is processed. (Deprecated.) | [optional] @@ -42,14 +42,14 @@ Name | Type | Description | Notes **symlinks** | **bool** | True if symlinks are supported. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] **time_delta** | **float** | Specifies the resolution of all time values that are returned to the clients | [optional] **write_datasync_action** | **str** | Specifies the synchronization type. | [optional] -**write_datasync_reply** | **str** | The synchronization type. | [optional] +**write_datasync_reply** | **str** | Specifies the synchronization type. | [optional] **write_filesync_action** | **str** | Specifies the synchronization type. | [optional] -**write_filesync_reply** | **str** | The synchronization type. | [optional] -**write_transfer_max_size** | **int** | Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server. | [optional] +**write_filesync_reply** | **str** | Specifies the synchronization type. | [optional] +**write_transfer_max_size** | **int** | Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] **write_transfer_multiple** | **int** | Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] -**write_transfer_size** | **int** | Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server. | [optional] +**write_transfer_size** | **int** | Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] **write_unstable_action** | **str** | Specifies the synchronization type. | [optional] -**write_unstable_reply** | **str** | The synchronization type. | [optional] +**write_unstable_reply** | **str** | Specifies the synchronization type. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsExportCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsExportCreateParams.md similarity index 84% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsExportCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsExportCreateParams.md index 6ba9d49aa..da03f9f2e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsExportCreateParams.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsExportCreateParams.md @@ -12,25 +12,25 @@ Name | Type | Description | Notes **clients** | **list[str]** | Specifies the clients with root access to the export. | [optional] **commit_asynchronous** | **bool** | True if NFS commit requests execute asynchronously. | [optional] **description** | **str** | Specifies the user-defined string that is used to identify the export. | [optional] -**directory_transfer_size** | **int** | Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server. | [optional] +**directory_transfer_size** | **int** | Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] **encoding** | **str** | Specifies the default character set encoding of the clients connecting to the export, unless otherwise specified. | [optional] **link_max** | **int** | Specifies the reported maximum number of links to a file. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. | [optional] -**map_all** | [**NfsExportMapAll**](NfsExportMapAll.md) | User and group mapping. | [optional] -**map_failure** | [**NfsExportMapAll**](NfsExportMapAll.md) | User and group mapping. | [optional] +**map_all** | [**NfsSettingsExportSettingsMapAll**](NfsSettingsExportSettingsMapAll.md) | User and group mapping. | [optional] +**map_failure** | [**NfsSettingsExportSettingsMapAll**](NfsSettingsExportSettingsMapAll.md) | User and group mapping. | [optional] **map_full** | **bool** | True if user mappings query the OneFS user database. When set to false, user mappings only query local authentication. | [optional] **map_lookup_uid** | **bool** | True if incoming user IDs (UIDs) are mapped to users in the OneFS user database. When set to false, incoming UIDs are applied directly to file operations. | [optional] -**map_non_root** | [**NfsExportMapAll**](NfsExportMapAll.md) | User and group mapping. | [optional] +**map_non_root** | [**NfsSettingsExportSettingsMapAll**](NfsSettingsExportSettingsMapAll.md) | User and group mapping. | [optional] **map_retry** | **bool** | Determines whether searches for users specified in 'map_all', 'map_root' or 'map_nonroot' are retried if the search fails. | [optional] -**map_root** | [**NfsExportMapAll**](NfsExportMapAll.md) | User and group mapping. | [optional] +**map_root** | [**NfsSettingsExportSettingsMapAll**](NfsSettingsExportSettingsMapAll.md) | User and group mapping. | [optional] **max_file_size** | **int** | Specifies the maximum file size for any file accessed from the export. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. | [optional] **name_max_size** | **int** | Specifies the reported maximum length of a file name. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. | [optional] **no_truncate** | **bool** | True if long file names result in an error. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. | [optional] **paths** | **list[str]** | Specifies the paths under /ifs that are exported. | **read_only** | **bool** | True if the export is set to read-only. | [optional] **read_only_clients** | **list[str]** | Specifies the clients with read-only access to the export. | [optional] -**read_transfer_max_size** | **int** | Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server. | [optional] +**read_transfer_max_size** | **int** | Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] **read_transfer_multiple** | **int** | Specifies the preferred multiple size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] -**read_transfer_size** | **int** | Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server. | [optional] +**read_transfer_size** | **int** | Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] **read_write_clients** | **list[str]** | Specifies the clients with both read and write access to the export, even when the export is set to read-only. | [optional] **readdirplus** | **bool** | True if 'readdirplus' requests are enabled. Enabling this property might improve network performance and is only available for NFSv3. | [optional] **readdirplus_prefetch** | **int** | Sets the number of directory entries that are prefetched when a 'readdirplus' request is processed. (Deprecated.) | [optional] @@ -42,15 +42,14 @@ Name | Type | Description | Notes **symlinks** | **bool** | True if symlinks are supported. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] **time_delta** | **float** | Specifies the resolution of all time values that are returned to the clients | [optional] **write_datasync_action** | **str** | Specifies the synchronization type. | [optional] -**write_datasync_reply** | **str** | The synchronization type. | [optional] +**write_datasync_reply** | **str** | Specifies the synchronization type. | [optional] **write_filesync_action** | **str** | Specifies the synchronization type. | [optional] -**write_filesync_reply** | **str** | The synchronization type. | [optional] -**write_transfer_max_size** | **int** | Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server. | [optional] +**write_filesync_reply** | **str** | Specifies the synchronization type. | [optional] +**write_transfer_max_size** | **int** | Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] **write_transfer_multiple** | **int** | Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] -**write_transfer_size** | **int** | Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server. | [optional] +**write_transfer_size** | **int** | Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] **write_unstable_action** | **str** | Specifies the synchronization type. | [optional] -**write_unstable_reply** | **str** | The synchronization type. | [optional] -**create_path** | **bool** | Create path if does not exist. | [optional] +**write_unstable_reply** | **str** | Specifies the synchronization type. | [optional] **zone** | **str** | Specifies the zone in which the export is valid. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsExportExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsExportExtended.md similarity index 95% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsExportExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsExportExtended.md index 3c03fbc18..48e20def6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsExportExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsExportExtended.md @@ -11,11 +11,9 @@ Name | Type | Description | Notes **chown_restricted** | **bool** | True if the superuser can change file ownership. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. | [optional] **clients** | **list[str]** | Specifies the clients with root access to the export. | [optional] **commit_asynchronous** | **bool** | True if NFS commit requests execute asynchronously. | [optional] -**conflicting_paths** | **list[str]** | Reports the paths that conflict with another export. | [optional] **description** | **str** | Specifies the user-defined string that is used to identify the export. | [optional] -**directory_transfer_size** | **int** | Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server. | [optional] +**directory_transfer_size** | **int** | Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] **encoding** | **str** | Specifies the default character set encoding of the clients connecting to the export, unless otherwise specified. | [optional] -**id** | **int** | Specifies the system-assigned ID for the export. This ID is returned when an export is created through the POST method. | [optional] **link_max** | **int** | Specifies the reported maximum number of links to a file. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. | [optional] **map_all** | [**NfsExportMapAll**](NfsExportMapAll.md) | User and group mapping. | [optional] **map_failure** | [**NfsExportMapAll**](NfsExportMapAll.md) | User and group mapping. | [optional] @@ -30,9 +28,9 @@ Name | Type | Description | Notes **paths** | **list[str]** | Specifies the paths under /ifs that are exported. | [optional] **read_only** | **bool** | True if the export is set to read-only. | [optional] **read_only_clients** | **list[str]** | Specifies the clients with read-only access to the export. | [optional] -**read_transfer_max_size** | **int** | Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server. | [optional] +**read_transfer_max_size** | **int** | Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] **read_transfer_multiple** | **int** | Specifies the preferred multiple size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] -**read_transfer_size** | **int** | Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server. | [optional] +**read_transfer_size** | **int** | Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] **read_write_clients** | **list[str]** | Specifies the clients with both read and write access to the export, even when the export is set to read-only. | [optional] **readdirplus** | **bool** | True if 'readdirplus' requests are enabled. Enabling this property might improve network performance and is only available for NFSv3. | [optional] **readdirplus_prefetch** | **int** | Sets the number of directory entries that are prefetched when a 'readdirplus' request is processed. (Deprecated.) | [optional] @@ -43,16 +41,18 @@ Name | Type | Description | Notes **snapshot** | **str** | Specifies the snapshot for all mounts. | [optional] **symlinks** | **bool** | True if symlinks are supported. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] **time_delta** | **float** | Specifies the resolution of all time values that are returned to the clients | [optional] -**unresolved_clients** | **list[str]** | Reports clients that cannot be resolved. | [optional] **write_datasync_action** | **str** | Specifies the synchronization type. | [optional] **write_datasync_reply** | **str** | Specifies the synchronization type. | [optional] **write_filesync_action** | **str** | Specifies the synchronization type. | [optional] **write_filesync_reply** | **str** | Specifies the synchronization type. | [optional] -**write_transfer_max_size** | **int** | Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server. | [optional] +**write_transfer_max_size** | **int** | Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] **write_transfer_multiple** | **int** | Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] -**write_transfer_size** | **int** | Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server. | [optional] +**write_transfer_size** | **int** | Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] **write_unstable_action** | **str** | Specifies the synchronization type. | [optional] **write_unstable_reply** | **str** | Specifies the synchronization type. | [optional] +**conflicting_paths** | **list[str]** | Reports the paths that conflict with another export. | [optional] +**id** | **int** | Specifies the system-assigned ID for the export. This ID is returned when an export is created through the POST method. | [optional] +**unresolved_clients** | **list[str]** | Reports clients that cannot be resolved. | [optional] **zone** | **str** | Specifies the zone in which the export is valid. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsExportExtendedExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsExportExtendedExtended.md new file mode 100644 index 000000000..1c9a95d8f --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsExportExtendedExtended.md @@ -0,0 +1,60 @@ +# NfsExportExtendedExtended + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**all_dirs** | **bool** | True if all directories under the specified paths are mountable. | [optional] +**block_size** | **int** | Specifies the block size returned by the NFS statfs procedure. | [optional] +**can_set_time** | **bool** | True if the client can set file times through the NFS set attribute request. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. | [optional] +**case_insensitive** | **bool** | True if the case is ignored for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. | [optional] +**case_preserving** | **bool** | True if the case is preserved for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. | [optional] +**chown_restricted** | **bool** | True if the superuser can change file ownership. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. | [optional] +**clients** | **list[str]** | Specifies the clients with root access to the export. | [optional] +**commit_asynchronous** | **bool** | True if NFS commit requests execute asynchronously. | [optional] +**conflicting_paths** | **list[str]** | Reports the paths that conflict with another export. | [optional] +**description** | **str** | Specifies the user-defined string that is used to identify the export. | [optional] +**directory_transfer_size** | **int** | Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] +**encoding** | **str** | Specifies the default character set encoding of the clients connecting to the export, unless otherwise specified. | [optional] +**id** | **int** | Specifies the system-assigned ID for the export. This ID is returned when an export is created through the POST method. | [optional] +**link_max** | **int** | Specifies the reported maximum number of links to a file. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. | [optional] +**map_all** | [**NfsSettingsExportSettingsMapAll**](NfsSettingsExportSettingsMapAll.md) | User and group mapping. | [optional] +**map_failure** | [**NfsSettingsExportSettingsMapAll**](NfsSettingsExportSettingsMapAll.md) | User and group mapping. | [optional] +**map_full** | **bool** | True if user mappings query the OneFS user database. When set to false, user mappings only query local authentication. | [optional] +**map_lookup_uid** | **bool** | True if incoming user IDs (UIDs) are mapped to users in the OneFS user database. When set to false, incoming UIDs are applied directly to file operations. | [optional] +**map_non_root** | [**NfsSettingsExportSettingsMapAll**](NfsSettingsExportSettingsMapAll.md) | User and group mapping. | [optional] +**map_retry** | **bool** | Determines whether searches for users specified in 'map_all', 'map_root' or 'map_nonroot' are retried if the search fails. | [optional] +**map_root** | [**NfsSettingsExportSettingsMapAll**](NfsSettingsExportSettingsMapAll.md) | User and group mapping. | [optional] +**max_file_size** | **int** | Specifies the maximum file size for any file accessed from the export. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. | [optional] +**name_max_size** | **int** | Specifies the reported maximum length of a file name. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. | [optional] +**no_truncate** | **bool** | True if long file names result in an error. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. | [optional] +**paths** | **list[str]** | Specifies the paths under /ifs that are exported. | [optional] +**read_only** | **bool** | True if the export is set to read-only. | [optional] +**read_only_clients** | **list[str]** | Specifies the clients with read-only access to the export. | [optional] +**read_transfer_max_size** | **int** | Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] +**read_transfer_multiple** | **int** | Specifies the preferred multiple size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] +**read_transfer_size** | **int** | Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] +**read_write_clients** | **list[str]** | Specifies the clients with both read and write access to the export, even when the export is set to read-only. | [optional] +**readdirplus** | **bool** | True if 'readdirplus' requests are enabled. Enabling this property might improve network performance and is only available for NFSv3. | [optional] +**readdirplus_prefetch** | **int** | Sets the number of directory entries that are prefetched when a 'readdirplus' request is processed. (Deprecated.) | [optional] +**return_32bit_file_ids** | **bool** | Limits the size of file identifiers returned by NFSv3+ to 32-bit values (may require remount). | [optional] +**root_clients** | **list[str]** | Clients that have root access to the export. | [optional] +**security_flavors** | **list[str]** | Specifies the authentication types that are supported for this export. | [optional] +**setattr_asynchronous** | **bool** | True if set attribute operations execute asynchronously. | [optional] +**snapshot** | **str** | Specifies the snapshot for all mounts. | [optional] +**symlinks** | **bool** | True if symlinks are supported. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] +**time_delta** | **float** | Specifies the resolution of all time values that are returned to the clients | [optional] +**unresolved_clients** | **list[str]** | Reports clients that cannot be resolved. | [optional] +**write_datasync_action** | **str** | Specifies the synchronization type. | [optional] +**write_datasync_reply** | **str** | Specifies the synchronization type. | [optional] +**write_filesync_action** | **str** | Specifies the synchronization type. | [optional] +**write_filesync_reply** | **str** | Specifies the synchronization type. | [optional] +**write_transfer_max_size** | **int** | Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] +**write_transfer_multiple** | **int** | Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] +**write_transfer_size** | **int** | Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. | [optional] +**write_unstable_action** | **str** | Specifies the synchronization type. | [optional] +**write_unstable_reply** | **str** | Specifies the synchronization type. | [optional] +**zone** | **str** | Specifies the zone in which the export is valid. | [optional] + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsExportMapAll.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsExportMapAll.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsExportMapAll.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsExportMapAll.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsExportMapAllSecondaryGroups.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsExportMapAllSecondaryGroups.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsExportMapAllSecondaryGroups.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsExportMapAllSecondaryGroups.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsExports.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsExports.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsExports.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsExports.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsExportsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsExportsExtended.md similarity index 85% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsExportsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsExportsExtended.md index cccc10cb0..976f5d824 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsExportsExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsExportsExtended.md @@ -4,7 +4,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **digest** | **str** | An identifier for a set of exports. | [optional] -**exports** | [**list[NfsExportExtended]**](NfsExportExtended.md) | | [optional] +**exports** | [**list[NfsExportExtendedExtended]**](NfsExportExtendedExtended.md) | | [optional] **resume** | **str** | Provide this token as the 'resume' query argument to continue listing results. | [optional] **total** | **int** | Total number of items available. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsExportsSummary.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsExportsSummary.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsExportsSummary.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsExportsSummary.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsExportsSummarySummary.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsExportsSummarySummary.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsExportsSummarySummary.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsExportsSummarySummary.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsLogLevel.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsLogLevel.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsLogLevel.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsLogLevel.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsNetgroup.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsNetgroup.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsNetgroup.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsNetgroup.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsNetgroupSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsNetgroupSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsNetgroupSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsNetgroupSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsNlmLocks.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsNlmLocks.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsNlmLocks.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsNlmLocks.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsNlmLocksLock.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsNlmLocksLock.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsNlmLocksLock.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsNlmLocksLock.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsNlmSessions.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsNlmSessions.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsNlmSessions.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsNlmSessions.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsNlmSessionsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsNlmSessionsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsNlmSessionsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsNlmSessionsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsNlmSessionsSession.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsNlmSessionsSession.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsNlmSessionsSession.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsNlmSessionsSession.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsNlmWaiters.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsNlmWaiters.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsNlmWaiters.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsNlmWaiters.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsSettingsExport.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsSettingsExport.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsSettingsExport.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsSettingsExport.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsSettingsExportSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsSettingsExportSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsSettingsExportSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsSettingsExportSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsSettingsExportSettingsMapAll.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsSettingsExportSettingsMapAll.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsSettingsExportSettingsMapAll.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsSettingsExportSettingsMapAll.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsSettingsGlobal.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsSettingsGlobal.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsSettingsGlobal.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsSettingsGlobal.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsSettingsGlobalSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsSettingsGlobalSettings.md similarity index 93% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsSettingsGlobalSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsSettingsGlobalSettings.md index 9d44359da..a5a563462 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsSettingsGlobalSettings.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsSettingsGlobalSettings.md @@ -3,8 +3,8 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**nfs_rdma_enabled** | **bool** | True if the RDMA is enabled for NFS | [optional] **nfsv3_enabled** | **bool** | True if NFSv3 is enabled. | [optional] +**nfsv3_rdma_enabled** | **bool** | True if the RDMA is enabled for NFSv3. | [optional] **nfsv40_enabled** | **bool** | Enable/disable minor version 0 of NFSv4 protocol. | [optional] **nfsv41_enabled** | **bool** | Enable/disable minor version 1 of NFSv4 protocol. | [optional] **nfsv42_enabled** | **bool** | Enable/disable minor version 2 of NFSv4 protocol. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsSettingsZone.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsSettingsZone.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsSettingsZone.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsSettingsZone.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NfsSettingsZoneSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NfsSettingsZoneSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NfsSettingsZoneSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NfsSettingsZoneSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDriveconfig.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDriveconfig.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDriveconfig.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDriveconfig.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDriveconfigExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDriveconfigExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDriveconfigExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDriveconfigExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDriveconfigNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDriveconfigNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDriveconfigNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDriveconfigNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDriveconfigNodeAlert.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDriveconfigNodeAlert.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDriveconfigNodeAlert.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDriveconfigNodeAlert.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDriveconfigNodeAllow.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDriveconfigNodeAllow.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDriveconfigNodeAllow.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDriveconfigNodeAllow.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDriveconfigNodeAutomaticReplacementRecognition.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDriveconfigNodeAutomaticReplacementRecognition.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDriveconfigNodeAutomaticReplacementRecognition.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDriveconfigNodeAutomaticReplacementRecognition.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDriveconfigNodeInstantSecureErase.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDriveconfigNodeInstantSecureErase.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDriveconfigNodeInstantSecureErase.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDriveconfigNodeInstantSecureErase.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDriveconfigNodeLog.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDriveconfigNodeLog.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDriveconfigNodeLog.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDriveconfigNodeLog.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDriveconfigNodeReboot.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDriveconfigNodeReboot.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDriveconfigNodeReboot.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDriveconfigNodeReboot.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDriveconfigNodeSpinWait.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDriveconfigNodeSpinWait.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDriveconfigNodeSpinWait.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDriveconfigNodeSpinWait.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDriveconfigNodeStall.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDriveconfigNodeStall.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDriveconfigNodeStall.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDriveconfigNodeStall.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDriveconfigStall.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDriveconfigStall.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDriveconfigStall.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDriveconfigStall.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDrives.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDrives.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDrives.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDrives.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDrivesNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDrivesNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDrivesNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDrivesNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDrivesNodeDrive.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDrivesNodeDrive.md similarity index 95% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDrivesNodeDrive.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDrivesNodeDrive.md index ac19597a8..2ca1dbd09 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDrivesNodeDrive.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDrivesNodeDrive.md @@ -23,7 +23,6 @@ Name | Type | Description | Notes **present** | **bool** | Indicates whether this drive is physically present in the node. | [optional] **purpose** | **str** | This drive's purpose in the DRV state machine. | [optional] **purpose_description** | **str** | Description of this drive's purpose. | [optional] -**sed_compliance_level** | **str** | String representation of this drive's SED compliance level. | [optional] **serial** | **str** | Serial number for this drive. | [optional] **ui_state** | **str** | This drive's state as presented to the UI. | [optional] **wwn** | **str** | The drive's 'worldwide name' from its NAA identifiers. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDrivesNodeDriveFirmware.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDrivesNodeDriveFirmware.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDrivesNodeDriveFirmware.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDrivesNodeDriveFirmware.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDrivesPurposelist.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDrivesPurposelist.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDrivesPurposelist.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDrivesPurposelist.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDrivesPurposelistNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDrivesPurposelistNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDrivesPurposelistNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDrivesPurposelistNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDrivesPurposelistNodePurpose.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDrivesPurposelistNodePurpose.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeDrivesPurposelistNodePurpose.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeDrivesPurposelistNodePurpose.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeHardware.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeHardware.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeHardware.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeHardware.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeHardwareFast.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeHardwareFast.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeHardwareFast.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeHardwareFast.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeHardwareFastNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeHardwareFastNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeHardwareFastNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeHardwareFastNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeHardwareNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeHardwareNode.md similarity index 87% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeHardwareNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeHardwareNode.md index ca7537a42..8cf014e50 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeHardwareNode.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeHardwareNode.md @@ -19,11 +19,10 @@ Name | Type | Description | Notes **infiniband** | **str** | Infiniband card type. | [optional] **lcd_version** | **str** | Version of the LCD panel. | [optional] **lnn** | **int** | Logical Node Number (LNN) of a node. | [optional] -**model** | **str** | PowerScale node model identifier string (X410, Infinity-H500, etc.). | [optional] -**model_code** | **str** | PowerScale node model code string (X410, H500, etc.). | [optional] +**model** | **str** | PowerScale node model identifier string (S200, X410, Infinity-H500, etc.). | [optional] +**model_code** | **str** | PowerScale node model code string (S200, X410, H500, etc.). | [optional] **motherboard** | **str** | Manufacturer and model of this node's motherboard. | [optional] **net_interfaces** | **str** | Description of all this node's network interfaces. | [optional] -**node_id** | **str** | Node id of the queried node | **node_slot_id** | **int** | Position of node within chassis. -1 for error or not supported. | [optional] **nvram** | **str** | Manufacturer and model of this node's NVRAM board. | [optional] **peer_serial_number** | **str** | Serial number of this node's peer/buddy node.(Infinity Only) | [optional] @@ -32,16 +31,12 @@ Name | Type | Description | Notes **processor** | **str** | Number of processors and cores on this node. | [optional] **product** | **str** | PowerScale product name. | [optional] **ram** | **int** | Size of RAM in bytes. | [optional] -**region** | **str** | Region of the queried node | -**resource_group** | **str** | Resource group of the queried node | **serial_number** | **str** | Serial number of this node. | [optional] **series** | **str** | Series of this node (X, I, NL, etc.). | [optional] **sled_drive_count** | **int** | Size of drive sleds in node, if applicable. Expected values: 3, 4, 6. 0 if unable to determine sled size. -1 for error or not supported. If PSI_Get fails: -1. PSI_Get can fail if PSI not initialized, or key does not exist. | [optional] **storage_class** | **str** | Storage class of this node (storage or diskless). | [optional] -**subscription_id** | **str** | Subscription id of the queried node | **tier** | **int** | Platform tier level of this node if applicable(positive for a defined tier, 0 for unknown or not supported, -1 for error). | [optional] **top_level_assembly_serial_number** | **str** | Serial number of the top level assembly of this node.(Infinity Only) | -**volume_type** | **str** | Volume type of the queried node | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeInternalIpAddress.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeInternalIpAddress.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeInternalIpAddress.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeInternalIpAddress.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeInternalIpAddressNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeInternalIpAddressNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeInternalIpAddressNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeInternalIpAddressNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodePartitions.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodePartitions.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodePartitions.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodePartitions.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodePartitionsNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodePartitionsNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodePartitionsNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodePartitionsNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeSensors.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeSensors.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeSensors.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeSensors.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeSensorsNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeSensorsNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeSensorsNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeSensorsNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeSleds.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeSleds.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeSleds.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeSleds.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeSledsNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeSledsNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeSledsNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeSledsNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeState.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeState.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeState.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeState.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStateNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStateNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStateNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStateNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStateNodeReadonly.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStateNodeReadonly.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStateNodeReadonly.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStateNodeReadonly.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStateNodeServicelight.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStateNodeServicelight.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStateNodeServicelight.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStateNodeServicelight.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStateNodeSmartfail.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStateNodeSmartfail.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStateNodeSmartfail.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStateNodeSmartfail.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStateReadonly.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStateReadonly.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStateReadonly.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStateReadonly.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStateReadonlyNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStateReadonlyNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStateReadonlyNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStateReadonlyNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStateServicelight.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStateServicelight.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStateServicelight.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStateServicelight.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStateServicelightExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStateServicelightExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStateServicelightExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStateServicelightExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStateServicelightNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStateServicelightNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStateServicelightNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStateServicelightNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStateSmartfail.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStateSmartfail.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStateSmartfail.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStateSmartfail.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStateSmartfailNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStateSmartfailNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStateSmartfailNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStateSmartfailNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatus.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatus.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatus.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatus.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusBatterystatus.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusBatterystatus.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusBatterystatus.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusBatterystatus.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusBatterystatusNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusBatterystatusNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusBatterystatusNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusBatterystatusNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusCpu.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusCpu.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusCpu.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusCpu.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusCpuError.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusCpuError.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusCpuError.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusCpuError.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusCpuNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusCpuNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusCpuNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusCpuNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNodeBatterystatus.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusNodeBatterystatus.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNodeBatterystatus.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusNodeBatterystatus.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNodeCapacityItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusNodeCapacityItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNodeCapacityItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusNodeCapacityItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNodeCpu.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusNodeCpu.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNodeCpu.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusNodeCpu.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNodeExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusNodeExtended.md similarity index 89% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNodeExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusNodeExtended.md index 1ba7e67b8..bcc9ef6a3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNodeExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusNodeExtended.md @@ -6,7 +6,6 @@ Name | Type | Description | Notes **batterystatus** | [**NodeStatusNodeBatterystatus**](NodeStatusNodeBatterystatus.md) | Battery status information. | [optional] **capacity** | [**list[NodeStatusNodeCapacityItem]**](NodeStatusNodeCapacityItem.md) | Storage capacity of this node. | [optional] **cpu** | [**NodeStatusNodeCpu**](NodeStatusNodeCpu.md) | CPU status information for this node. | [optional] -**drive_security_level** | [**NodeStatusNodeDriveSecurityLevel**](NodeStatusNodeDriveSecurityLevel.md) | Information about this node's drive security level. | [optional] **error** | **str** | Error message, if the HTTP status returned from this node was not 200. | [optional] **id** | **int** | Node ID (Device Number) of a node. | [optional] **lnn** | **int** | Logical Node Number (LNN) of a node. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNodeNvram.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusNodeNvram.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNodeNvram.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusNodeNvram.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNodePowersupplies.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusNodePowersupplies.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNodePowersupplies.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusNodePowersupplies.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNodeStatus.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusNodeStatus.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNodeStatus.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusNodeStatus.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNodeStatusServerStatusItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusNodeStatusServerStatusItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNodeStatusServerStatusItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusNodeStatusServerStatusItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNodeStatusSystemStats.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusNodeStatusSystemStats.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNodeStatusSystemStats.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusNodeStatusSystemStats.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNvram.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusNvram.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNvram.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusNvram.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNvramNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusNvramNode.md similarity index 95% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNvramNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusNvramNode.md index 761847c90..42ca18f91 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNvramNode.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusNvramNode.md @@ -17,6 +17,7 @@ Name | Type | Description | Notes **status** | **int** | Status of the HTTP response from this node if not 200. If 200, this field does not appear. | [optional] **supported** | **bool** | This node supports NVRAM. | [optional] **supported_flash** | **bool** | This node supports NVRAM with flash storage. | [optional] +**supported_size** | **int** | The maximum size of the NVRAM, in bytes. | [optional] **supported_type** | **str** | This node's supported NVRAM type. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNvramNodeBattery.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusNvramNodeBattery.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusNvramNodeBattery.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusNvramNodeBattery.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusPowersupplies.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusPowersupplies.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusPowersupplies.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusPowersupplies.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusPowersuppliesNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusPowersuppliesNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusPowersuppliesNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusPowersuppliesNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusPowersuppliesNodeSupply.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusPowersuppliesNodeSupply.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodeStatusPowersuppliesNodeSupply.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodeStatusPowersuppliesNodeSupply.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodesNodeFirmwareDevice.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodesNodeFirmwareDevice.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodesNodeFirmwareDevice.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodesNodeFirmwareDevice.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodesNodeInternalIpAddress.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodesNodeInternalIpAddress.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodesNodeInternalIpAddress.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodesNodeInternalIpAddress.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodetypeAssess.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodetypeAssess.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodetypeAssess.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodetypeAssess.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NodetypeAssessFromNodepool.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NodetypeAssessFromNodepool.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NodetypeAssessFromNodepool.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NodetypeAssessFromNodepool.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NtpServer.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NtpServer.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NtpServer.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NtpServer.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NtpServerCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NtpServerCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NtpServerCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NtpServerCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NtpServerExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NtpServerExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NtpServerExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NtpServerExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NtpServers.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NtpServers.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NtpServers.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NtpServers.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NtpServersExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NtpServersExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NtpServersExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NtpServersExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NtpSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NtpSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NtpSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NtpSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/NtpSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/NtpSettingsSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/NtpSettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/NtpSettingsSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PapiApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PapiApi.md similarity index 76% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PapiApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PapiApi.md index 7022ef059..d903da159 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PapiApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/PapiApi.md @@ -1,11 +1,11 @@ -# isilon_sdk.v9_11_0.PapiApi +# isilon_sdk.v9_4_0.PapiApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* Method | HTTP request | Description ------------- | ------------- | ------------- -[**get_papi_settings**](PapiApi.md#get_papi_settings) | **GET** /platform/18/papi/settings | -[**update_papi_settings**](PapiApi.md#update_papi_settings) | **PUT** /platform/18/papi/settings | +[**get_papi_settings**](PapiApi.md#get_papi_settings) | **GET** /platform/14/papi/settings | +[**update_papi_settings**](PapiApi.md#update_papi_settings) | **PUT** /platform/14/papi/settings | # **get_papi_settings** @@ -19,17 +19,17 @@ List PAPI settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.PapiApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.PapiApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_papi_settings() @@ -67,18 +67,18 @@ Modify PAPI settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.PapiApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -papi_settings = isilon_sdk.v9_11_0.PapiSettingsExtended() # PapiSettingsExtended | +api_instance = isilon_sdk.v9_4_0.PapiApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +papi_settings = isilon_sdk.v9_4_0.PapiSettingsPapiSettings() # PapiSettingsPapiSettings | try: api_instance.update_papi_settings(papi_settings) @@ -90,7 +90,7 @@ except ApiException as e: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **papi_settings** | [**PapiSettingsExtended**](PapiSettingsExtended.md)| | + **papi_settings** | [**PapiSettingsPapiSettings**](PapiSettingsPapiSettings.md)| | ### Return type diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PapiSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PapiSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PapiSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PapiSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PapiSettingsPapiSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PapiSettingsPapiSettings.md similarity index 64% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PapiSettingsPapiSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PapiSettingsPapiSettings.md index 6528b7dbe..e410bf0f6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PapiSettingsPapiSettings.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/PapiSettingsPapiSettings.md @@ -3,10 +3,8 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**auto_configure_child_limit** | **bool** | If true, PAPI automatically configures the child settings. | [optional] [default to True] +**auto_configure_child_limit** | **bool** | If true, PAPI automatically configures the child limit. | [optional] [default to True] **child_settings** | [**PapiSettingsPapiSettingsChildSettings**](PapiSettingsPapiSettingsChildSettings.md) | This schema describes various values related to PAPI children. | [optional] -**config_lock_timeout** | **int** | Time out limit of PAPI Configuration lock request. | [optional] -**enable_config_lock_feature** | **bool** | If true, PAPI configuration lock feature is enabled. | [optional] [default to True] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PapiSettingsPapiSettingsChildSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PapiSettingsPapiSettingsChildSettings.md similarity index 81% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PapiSettingsPapiSettingsChildSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PapiSettingsPapiSettingsChildSettings.md index 9334dbb54..2bba5aa3b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PapiSettingsPapiSettingsChildSettings.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/PapiSettingsPapiSettingsChildSettings.md @@ -3,7 +3,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**child_limit** | **int** | The number of PAPI requests that can be processed concurrently. If child_limit = 0, then it is set to child_limit_ceiling. If child_limit <= 2, then it is set to 2. | [optional] +**child_limit** | **int** | The number of PAPI requests that can be processed concurrently. | [optional] **child_limit_ceiling** | **int** | Max value of child_limit that can be controlled. | [optional] **child_limit_extension** | **int** | Extends the child limit for serving the URIs. | [optional] **child_limit_floor** | **int** | Min value of child_limit that can be controlled. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceApi.md similarity index 73% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceApi.md index f55e24401..fde171004 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceApi.md @@ -1,19 +1,18 @@ -# isilon_sdk.v9_11_0.PerformanceApi +# isilon_sdk.v9_4_0.PerformanceApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* Method | HTTP request | Description ------------- | ------------- | ------------- -[**create_performance_dataset**](PerformanceApi.md#create_performance_dataset) | **POST** /platform/19/performance/datasets | -[**delete_datasets_dataset_workloads_workload_limit**](PerformanceApi.md#delete_datasets_dataset_workloads_workload_limit) | **DELETE** /platform/16/performance/datasets/{Dataset}/workloads/{Workload}/limits/{DatasetsDatasetWorkloadsWorkloadLimitId} | -[**delete_performance_dataset**](PerformanceApi.md#delete_performance_dataset) | **DELETE** /platform/19/performance/datasets/{PerformanceDatasetId} | -[**get_performance_dataset**](PerformanceApi.md#get_performance_dataset) | **GET** /platform/19/performance/datasets/{PerformanceDatasetId} | -[**get_performance_metric**](PerformanceApi.md#get_performance_metric) | **GET** /platform/19/performance/metrics/{PerformanceMetricId} | -[**get_performance_metrics**](PerformanceApi.md#get_performance_metrics) | **GET** /platform/19/performance/metrics | -[**get_performance_settings**](PerformanceApi.md#get_performance_settings) | **GET** /platform/19/performance/settings | -[**list_performance_datasets**](PerformanceApi.md#list_performance_datasets) | **GET** /platform/19/performance/datasets | -[**update_performance_dataset**](PerformanceApi.md#update_performance_dataset) | **PUT** /platform/19/performance/datasets/{PerformanceDatasetId} | -[**update_performance_settings**](PerformanceApi.md#update_performance_settings) | **PUT** /platform/19/performance/settings | +[**create_performance_dataset**](PerformanceApi.md#create_performance_dataset) | **POST** /platform/12/performance/datasets | +[**delete_performance_dataset**](PerformanceApi.md#delete_performance_dataset) | **DELETE** /platform/12/performance/datasets/{PerformanceDatasetId} | +[**get_performance_dataset**](PerformanceApi.md#get_performance_dataset) | **GET** /platform/12/performance/datasets/{PerformanceDatasetId} | +[**get_performance_metric**](PerformanceApi.md#get_performance_metric) | **GET** /platform/12/performance/metrics/{PerformanceMetricId} | +[**get_performance_metrics**](PerformanceApi.md#get_performance_metrics) | **GET** /platform/12/performance/metrics | +[**get_performance_settings**](PerformanceApi.md#get_performance_settings) | **GET** /platform/12/performance/settings | +[**list_performance_datasets**](PerformanceApi.md#list_performance_datasets) | **GET** /platform/12/performance/datasets | +[**update_performance_dataset**](PerformanceApi.md#update_performance_dataset) | **PUT** /platform/12/performance/datasets/{PerformanceDatasetId} | +[**update_performance_settings**](PerformanceApi.md#update_performance_settings) | **PUT** /platform/12/performance/settings | # **create_performance_dataset** @@ -27,18 +26,18 @@ Create a new dataset. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.PerformanceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -performance_dataset = isilon_sdk.v9_11_0.PerformanceDatasetCreateParams() # PerformanceDatasetCreateParams | +api_instance = isilon_sdk.v9_4_0.PerformanceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +performance_dataset = isilon_sdk.v9_4_0.PerformanceDatasetCreateParams() # PerformanceDatasetCreateParams | force = true # bool | For use by support only. (optional) try: @@ -70,61 +69,6 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **delete_datasets_dataset_workloads_workload_limit** -> delete_datasets_dataset_workloads_workload_limit(datasets_dataset_workloads_workload_limit_id, dataset, workload) - - - -Delete the workload limit. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.PerformanceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -datasets_dataset_workloads_workload_limit_id = 'datasets_dataset_workloads_workload_limit_id_example' # str | Delete the workload limit. -dataset = 'dataset_example' # str | -workload = 'workload_example' # str | - -try: - api_instance.delete_datasets_dataset_workloads_workload_limit(datasets_dataset_workloads_workload_limit_id, dataset, workload) -except ApiException as e: - print("Exception when calling PerformanceApi->delete_datasets_dataset_workloads_workload_limit: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **datasets_dataset_workloads_workload_limit_id** | **str**| Delete the workload limit. | - **dataset** | **str**| | - **workload** | **str**| | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **delete_performance_dataset** > delete_performance_dataset(performance_dataset_id) @@ -136,17 +80,17 @@ Delete the performance dataset. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.PerformanceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.PerformanceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) performance_dataset_id = 'performance_dataset_id_example' # str | Delete the performance dataset. try: @@ -187,17 +131,17 @@ Retrieve the performance dataset. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.PerformanceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.PerformanceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) performance_dataset_id = 'performance_dataset_id_example' # str | Retrieve the performance dataset. try: @@ -239,17 +183,17 @@ View a single performance metric. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.PerformanceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.PerformanceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) performance_metric_id = 'performance_metric_id_example' # str | View a single performance metric. try: @@ -291,17 +235,17 @@ List all metrics. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.PerformanceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.PerformanceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) sort = 'sort_example' # str | The field that will be used for sorting. (optional) @@ -345,17 +289,17 @@ List all performance settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.PerformanceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.PerformanceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_performance_settings() @@ -393,17 +337,17 @@ List all datasets. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.PerformanceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.PerformanceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -451,18 +395,18 @@ Modify the name of the performance dataset. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.PerformanceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -performance_dataset = isilon_sdk.v9_11_0.PerformanceDataset() # PerformanceDataset | +api_instance = isilon_sdk.v9_4_0.PerformanceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +performance_dataset = isilon_sdk.v9_4_0.PerformanceDataset() # PerformanceDataset | performance_dataset_id = 'performance_dataset_id_example' # str | Modify the name of the performance dataset. try: @@ -504,18 +448,18 @@ Configure performance settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.PerformanceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -performance_settings = isilon_sdk.v9_11_0.PerformanceSettingsExtended() # PerformanceSettingsExtended | +api_instance = isilon_sdk.v9_4_0.PerformanceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +performance_settings = isilon_sdk.v9_4_0.PerformanceSettingsExtended() # PerformanceSettingsExtended | force = true # bool | Allow modification of settings outside of recommended limits (optional) try: diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceDataset.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceDataset.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceDataset.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceDataset.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceDatasetCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceDatasetCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceDatasetCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceDatasetCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceDatasetExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceDatasetExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceDatasetExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceDatasetExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceDatasets.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceDatasets.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceDatasets.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceDatasets.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceDatasetsApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceDatasetsApi.md similarity index 82% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceDatasetsApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceDatasetsApi.md index 4937b29fa..900de21ca 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceDatasetsApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceDatasetsApi.md @@ -1,21 +1,21 @@ -# isilon_sdk.v9_11_0.PerformanceDatasetsApi +# isilon_sdk.v9_4_0.PerformanceDatasetsApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* Method | HTTP request | Description ------------- | ------------- | ------------- -[**create_dataset_filter**](PerformanceDatasetsApi.md#create_dataset_filter) | **POST** /platform/19/performance/datasets/{Dataset}/filters | -[**create_dataset_workload**](PerformanceDatasetsApi.md#create_dataset_workload) | **POST** /platform/19/performance/datasets/{Dataset}/workloads | -[**delete_dataset_filter**](PerformanceDatasetsApi.md#delete_dataset_filter) | **DELETE** /platform/19/performance/datasets/{Dataset}/filters/{DatasetFilterId} | -[**delete_dataset_filters**](PerformanceDatasetsApi.md#delete_dataset_filters) | **DELETE** /platform/19/performance/datasets/{Dataset}/filters | -[**delete_dataset_workload**](PerformanceDatasetsApi.md#delete_dataset_workload) | **DELETE** /platform/19/performance/datasets/{Dataset}/workloads/{DatasetWorkloadId} | -[**delete_dataset_workloads**](PerformanceDatasetsApi.md#delete_dataset_workloads) | **DELETE** /platform/19/performance/datasets/{Dataset}/workloads | -[**get_dataset_filter**](PerformanceDatasetsApi.md#get_dataset_filter) | **GET** /platform/19/performance/datasets/{Dataset}/filters/{DatasetFilterId} | -[**get_dataset_workload**](PerformanceDatasetsApi.md#get_dataset_workload) | **GET** /platform/19/performance/datasets/{Dataset}/workloads/{DatasetWorkloadId} | -[**list_dataset_filters**](PerformanceDatasetsApi.md#list_dataset_filters) | **GET** /platform/19/performance/datasets/{Dataset}/filters | -[**list_dataset_workloads**](PerformanceDatasetsApi.md#list_dataset_workloads) | **GET** /platform/19/performance/datasets/{Dataset}/workloads | -[**update_dataset_filter**](PerformanceDatasetsApi.md#update_dataset_filter) | **PUT** /platform/19/performance/datasets/{Dataset}/filters/{DatasetFilterId} | -[**update_dataset_workload**](PerformanceDatasetsApi.md#update_dataset_workload) | **PUT** /platform/19/performance/datasets/{Dataset}/workloads/{DatasetWorkloadId} | +[**create_dataset_filter**](PerformanceDatasetsApi.md#create_dataset_filter) | **POST** /platform/12/performance/datasets/{Dataset}/filters | +[**create_dataset_workload**](PerformanceDatasetsApi.md#create_dataset_workload) | **POST** /platform/12/performance/datasets/{Dataset}/workloads | +[**delete_dataset_filter**](PerformanceDatasetsApi.md#delete_dataset_filter) | **DELETE** /platform/12/performance/datasets/{Dataset}/filters/{DatasetFilterId} | +[**delete_dataset_filters**](PerformanceDatasetsApi.md#delete_dataset_filters) | **DELETE** /platform/12/performance/datasets/{Dataset}/filters | +[**delete_dataset_workload**](PerformanceDatasetsApi.md#delete_dataset_workload) | **DELETE** /platform/12/performance/datasets/{Dataset}/workloads/{DatasetWorkloadId} | +[**delete_dataset_workloads**](PerformanceDatasetsApi.md#delete_dataset_workloads) | **DELETE** /platform/12/performance/datasets/{Dataset}/workloads | +[**get_dataset_filter**](PerformanceDatasetsApi.md#get_dataset_filter) | **GET** /platform/12/performance/datasets/{Dataset}/filters/{DatasetFilterId} | +[**get_dataset_workload**](PerformanceDatasetsApi.md#get_dataset_workload) | **GET** /platform/12/performance/datasets/{Dataset}/workloads/{DatasetWorkloadId} | +[**list_dataset_filters**](PerformanceDatasetsApi.md#list_dataset_filters) | **GET** /platform/12/performance/datasets/{Dataset}/filters | +[**list_dataset_workloads**](PerformanceDatasetsApi.md#list_dataset_workloads) | **GET** /platform/12/performance/datasets/{Dataset}/workloads | +[**update_dataset_filter**](PerformanceDatasetsApi.md#update_dataset_filter) | **PUT** /platform/12/performance/datasets/{Dataset}/filters/{DatasetFilterId} | +[**update_dataset_workload**](PerformanceDatasetsApi.md#update_dataset_workload) | **PUT** /platform/12/performance/datasets/{Dataset}/workloads/{DatasetWorkloadId} | # **create_dataset_filter** @@ -29,18 +29,18 @@ Create a new filter. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.PerformanceDatasetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -dataset_filter = isilon_sdk.v9_11_0.DatasetFilterCreateParams() # DatasetFilterCreateParams | +api_instance = isilon_sdk.v9_4_0.PerformanceDatasetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +dataset_filter = isilon_sdk.v9_4_0.DatasetFilterCreateParams() # DatasetFilterCreateParams | dataset = 'dataset_example' # str | force = true # bool | For use by support only. (optional) @@ -85,18 +85,18 @@ Create a new workload. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.PerformanceDatasetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -dataset_workload = isilon_sdk.v9_11_0.DatasetWorkloadCreateParams() # DatasetWorkloadCreateParams | +api_instance = isilon_sdk.v9_4_0.PerformanceDatasetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +dataset_workload = isilon_sdk.v9_4_0.DatasetWorkloadCreateParams() # DatasetWorkloadCreateParams | dataset = 'dataset_example' # str | force = true # bool | For use by support only. (optional) @@ -141,17 +141,17 @@ Delete the filter. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.PerformanceDatasetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.PerformanceDatasetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dataset_filter_id = 'dataset_filter_id_example' # str | Delete the filter. dataset = 'dataset_example' # str | @@ -194,17 +194,17 @@ Delete all filters associated with the dataset. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.PerformanceDatasetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.PerformanceDatasetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dataset = 'dataset_example' # str | try: @@ -245,17 +245,17 @@ Delete the workload. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.PerformanceDatasetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.PerformanceDatasetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dataset_workload_id = 'dataset_workload_id_example' # str | Delete the workload. dataset = 'dataset_example' # str | @@ -298,17 +298,17 @@ Delete all workloads associated with the dataset. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.PerformanceDatasetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.PerformanceDatasetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dataset = 'dataset_example' # str | try: @@ -349,17 +349,17 @@ Retrieve the filter. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.PerformanceDatasetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.PerformanceDatasetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dataset_filter_id = 'dataset_filter_id_example' # str | Retrieve the filter. dataset = 'dataset_example' # str | @@ -403,17 +403,17 @@ Retrieve the workload. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.PerformanceDatasetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.PerformanceDatasetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dataset_workload_id = 'dataset_workload_id_example' # str | Retrieve the workload. dataset = 'dataset_example' # str | @@ -457,17 +457,17 @@ List all filters. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.PerformanceDatasetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.PerformanceDatasetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dataset = 'dataset_example' # str | dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) @@ -517,17 +517,17 @@ List all workloads. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.PerformanceDatasetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.PerformanceDatasetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dataset = 'dataset_example' # str | dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) @@ -577,18 +577,18 @@ Modify the filter. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.PerformanceDatasetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -dataset_filter = isilon_sdk.v9_11_0.DatasetFilter() # DatasetFilter | +api_instance = isilon_sdk.v9_4_0.PerformanceDatasetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +dataset_filter = isilon_sdk.v9_4_0.DatasetFilter() # DatasetFilter | dataset_filter_id = 'dataset_filter_id_example' # str | Modify the filter. dataset = 'dataset_example' # str | @@ -632,18 +632,18 @@ Modify the workload. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.PerformanceDatasetsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -dataset_workload = isilon_sdk.v9_11_0.DatasetWorkload() # DatasetWorkload | +api_instance = isilon_sdk.v9_4_0.PerformanceDatasetsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +dataset_workload = isilon_sdk.v9_4_0.DatasetWorkload() # DatasetWorkload | dataset_workload_id = 'dataset_workload_id_example' # str | Modify the workload. dataset = 'dataset_example' # str | diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceDatasetsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceDatasetsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceDatasetsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceDatasetsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceMetric.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceMetric.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceMetric.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceMetric.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceMetrics.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceMetrics.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceMetrics.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceMetrics.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceMetricsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceMetricsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceMetricsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceMetricsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PerformanceSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceSettingsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceSettingsExtended.md new file mode 100644 index 000000000..2141ad5eb --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceSettingsExtended.md @@ -0,0 +1,14 @@ +# PerformanceSettingsExtended + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**max_filter_count** | **int** | The maximum number of filters that can be applied to a configured performance dataset. | [optional] +**max_stat_size** | **int** | The maximum size in bytes of a single performance dataset sample. | [optional] +**max_top_n_collection_count** | **int** | The maximum valid value for the 'top_n_collection_count' setting. | [optional] +**max_workload_count** | **int** | The maximum number of workloads that can be pinned to a configured performance dataset. | [optional] +**top_n_collection_count** | **int** | The number of highest resource-consuming workloads tracked and collected by the system per configured performance dataset. The number of workloads pinned to a configured performance dataset does not count towards this value. | [optional] + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceSettingsSettings.md new file mode 100644 index 000000000..2ca7a4a0a --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/PerformanceSettingsSettings.md @@ -0,0 +1,15 @@ +# PerformanceSettingsSettings + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**max_dataset_count** | **int** | The maximum number of datasets that can be configured on the system. | +**max_filter_count** | **int** | The maximum number of filters that can be applied to a configured performance dataset. | +**max_stat_size** | **int** | The maximum size in bytes of a single performance dataset sample. | +**max_top_n_collection_count** | **int** | The maximum valid value for the 'top_n_collection_count' setting. | +**max_workload_count** | **int** | The maximum number of workloads that can be pinned to a configured performance dataset. | +**top_n_collection_count** | **int** | The number of highest resource-consuming workloads tracked and collected by the system per configured performance dataset. The number of workloads pinned to a configured performance dataset does not count towards this value. | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolInterfaces.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolInterfaces.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolInterfaces.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolInterfaces.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolInterfacesInterface.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolInterfacesInterface.md similarity index 59% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolInterfacesInterface.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolInterfacesInterface.md index d826afec0..eecb04f18 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolInterfacesInterface.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolInterfacesInterface.md @@ -10,7 +10,7 @@ Name | Type | Description | Notes **nic_name** | **str** | NIC name | **owners** | [**list[PoolsPoolInterfacesInterfaceOwner]**](PoolsPoolInterfacesInterfaceOwner.md) | List of owners (membership) | **status** | **str** | Status of the interface | -**type** | **str** | Interface type. The '*gige' types stand for 'gigabit ethernet'. 'gige' itself is occasionally also referred to in other places as 'ext' for 'external'. 'ib' and 'ib_qdr' are internal Infiniband interface types. 'vlan' and 'vmxnet3' are virtual interface types that appear on virtual nodes. 'loopback' is an interface for failover addresses and should only appear if failover is configured. | +**type** | **str** | Interface type. The '*gige' types stand for 'gigabit ethernet'. 'gige' itself is occasionally also referred to in other places as 'ext' for 'external'. 'ib' and 'ib_qdr' are internal Infiniband interface types. 'vlan' and 'vmxnet3' are virtual interface types that appear on virtual nodes. 'loopback' is an interface for failover addresses and should only appear if failover is configured. | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolInterfacesInterfaceOwner.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolInterfacesInterfaceOwner.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolInterfacesInterfaceOwner.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolInterfacesInterfaceOwner.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolRule.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolRule.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolRule.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolRule.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolRuleCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolRuleCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolRuleCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolRuleCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolRules.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolRules.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolRules.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolRules.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolRulesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolRulesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolRulesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolRulesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolRulesRule.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolRulesRule.md similarity index 91% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolRulesRule.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolRulesRule.md index 5f04e37ae..9acacc358 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolRulesRule.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolRulesRule.md @@ -7,7 +7,6 @@ Name | Type | Description | Notes **groupnet** | **str** | Name of the groupnet this rule belongs to | **id** | **str** | Unique rule ID. | **iface** | **str** | Interface name the provisioning rule applies to. | -**linklayer** | **str** | Linklayer of the subnet this rule belongs to. | **name** | **str** | Name of the provisioning rule. | **node_type** | **str** | Node type the provisioning rule applies to. | **pool** | **str** | Name of the pool this rule belongs to. | diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolScResumeNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolScResumeNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolScResumeNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolScResumeNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolStatus.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolStatus.md similarity index 76% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolStatus.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolStatus.md index 4b8806ad9..87efe8608 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolStatus.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolStatus.md @@ -3,7 +3,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**status** | [**PoolsPoolStatusStatus**](PoolsPoolStatusStatus.md) | | [optional] +**settings** | [**PoolsPoolStatusSettings**](PoolsPoolStatusSettings.md) | | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolStatusStatus.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolStatusSettings.md similarity index 60% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolStatusStatus.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolStatusSettings.md index 122954bbe..b19f03f94 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolStatusStatus.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolStatusSettings.md @@ -1,11 +1,11 @@ -# PoolsPoolStatusStatus +# PoolsPoolStatusSettings ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **id** | **str** | Unique Pool ID. | -**nodes** | [**list[PoolsPoolStatusStatusNode]**](PoolsPoolStatusStatusNode.md) | The status of the requested nodes. | -**sc_dns_overview** | [**PoolsPoolStatusStatusScDnsOverview**](PoolsPoolStatusStatusScDnsOverview.md) | | +**nodes** | [**list[PoolsPoolStatusSettingsNode]**](PoolsPoolStatusSettingsNode.md) | The status of the requested nodes. | +**sc_dns_overview** | [**PoolsPoolStatusSettingsScDnsOverview**](PoolsPoolStatusSettingsScDnsOverview.md) | | **total_configured_nodes** | **int** | The number of nodes configured in the Network Pool. | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolStatusStatusNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolStatusSettingsNode.md similarity index 89% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolStatusStatusNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolStatusSettingsNode.md index 17d2d85e7..dc41f3f7b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolStatusStatusNode.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolStatusSettingsNode.md @@ -1,10 +1,10 @@ -# PoolsPoolStatusStatusNode +# PoolsPoolStatusSettingsNode ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **devid** | **int** | Node ID (Device Number) of a node. | [optional] -**interface_status** | [**PoolsPoolStatusStatusNodeInterfaceStatus**](PoolsPoolStatusStatusNodeInterfaceStatus.md) | | [optional] +**interface_status** | [**PoolsPoolStatusSettingsNodeInterfaceStatus**](PoolsPoolStatusSettingsNodeInterfaceStatus.md) | | [optional] **ip_status** | **str** | Summary of the status of the IPs currently configured on this node. usable: The node has IPs allocated that are usable. none_usable: The node has IPs configured, but they are currently not in a usable state. This can occur for a variety of reasons. For static IPs, this can occur if the node is down, or if the interfaces are down. For dynamic IPs, this can occur if all of the IPs are about to move to a different node. none_configured: The node has no IPs from the Network Pool configured currently. | [optional] **lnn** | **int** | Logical Node Number (LNN) of a node. | [optional] **node_state** | **str** | The node's current state within the cluster. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolStatusStatusNodeInterfaceStatus.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolStatusSettingsNodeInterfaceStatus.md similarity index 92% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolStatusStatusNodeInterfaceStatus.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolStatusSettingsNodeInterfaceStatus.md index 391076b7a..4e90bfb83 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolStatusStatusNodeInterfaceStatus.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolStatusSettingsNodeInterfaceStatus.md @@ -1,4 +1,4 @@ -# PoolsPoolStatusStatusNodeInterfaceStatus +# PoolsPoolStatusSettingsNodeInterfaceStatus ## Properties Name | Type | Description | Notes diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolStatusStatusScDnsOverview.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolStatusSettingsScDnsOverview.md similarity index 94% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolStatusStatusScDnsOverview.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolStatusSettingsScDnsOverview.md index ae0987340..40172326a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/PoolsPoolStatusStatusScDnsOverview.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/PoolsPoolStatusSettingsScDnsOverview.md @@ -1,4 +1,4 @@ -# PoolsPoolStatusStatusScDnsOverview +# PoolsPoolStatusSettingsScDnsOverview ## Properties Name | Type | Description | Notes diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProgressGlobal.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProgressGlobal.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProgressGlobal.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProgressGlobal.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProgressGlobalProgress.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProgressGlobalProgress.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProgressGlobalProgress.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProgressGlobalProgress.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProtocolsApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProtocolsApi.md similarity index 83% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProtocolsApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProtocolsApi.md index 45eade484..4610fa3d9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProtocolsApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProtocolsApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.ProtocolsApi +# isilon_sdk.v9_4_0.ProtocolsApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -11,7 +11,7 @@ Method | HTTP request | Description [**create_ndmp_settings_variable**](ProtocolsApi.md#create_ndmp_settings_variable) | **POST** /platform/3/protocols/ndmp/settings/variables/{NdmpSettingsVariableId} | [**create_ndmp_user**](ProtocolsApi.md#create_ndmp_user) | **POST** /platform/3/protocols/ndmp/users | [**create_nfs_alias**](ProtocolsApi.md#create_nfs_alias) | **POST** /platform/15/protocols/nfs/aliases | -[**create_nfs_export**](ProtocolsApi.md#create_nfs_export) | **POST** /platform/22/protocols/nfs/exports | +[**create_nfs_export**](ProtocolsApi.md#create_nfs_export) | **POST** /platform/4/protocols/nfs/exports | [**create_nfs_netgroup_check_item**](ProtocolsApi.md#create_nfs_netgroup_check_item) | **POST** /platform/3/protocols/nfs/netgroup/check | [**create_nfs_netgroup_flush_item**](ProtocolsApi.md#create_nfs_netgroup_flush_item) | **POST** /platform/3/protocols/nfs/netgroup/flush | [**create_nfs_netgroup_save_item**](ProtocolsApi.md#create_nfs_netgroup_save_item) | **POST** /platform/12/protocols/nfs/netgroup/save | @@ -22,7 +22,8 @@ Method | HTTP request | Description [**create_s3_key**](ProtocolsApi.md#create_s3_key) | **POST** /platform/10/protocols/s3/keys/{S3KeyId} | [**create_s3_mykey**](ProtocolsApi.md#create_s3_mykey) | **POST** /platform/10/protocols/s3/mykeys | [**create_smb_log_level_filter**](ProtocolsApi.md#create_smb_log_level_filter) | **POST** /platform/3/protocols/smb/log-level/filters | -[**create_smb_share**](ProtocolsApi.md#create_smb_share) | **POST** /platform/22/protocols/smb/shares | +[**create_smb_share**](ProtocolsApi.md#create_smb_share) | **POST** /platform/12/protocols/smb/shares | +[**create_swift_account**](ProtocolsApi.md#create_swift_account) | **POST** /platform/3/protocols/swift/accounts | [**delete_hdfs_fsimage_latest**](ProtocolsApi.md#delete_hdfs_fsimage_latest) | **DELETE** /platform/5/protocols/hdfs/fsimage/latest | [**delete_hdfs_inotify_stream**](ProtocolsApi.md#delete_hdfs_inotify_stream) | **DELETE** /platform/5/protocols/hdfs/inotify/stream | [**delete_hdfs_proxyuser**](ProtocolsApi.md#delete_hdfs_proxyuser) | **DELETE** /platform/1/protocols/hdfs/proxyusers/{HdfsProxyuserId} | @@ -36,7 +37,7 @@ Method | HTTP request | Description [**delete_ndmp_settings_variable**](ProtocolsApi.md#delete_ndmp_settings_variable) | **DELETE** /platform/3/protocols/ndmp/settings/variables/{NdmpSettingsVariableId} | [**delete_ndmp_user**](ProtocolsApi.md#delete_ndmp_user) | **DELETE** /platform/3/protocols/ndmp/users/{NdmpUserId} | [**delete_nfs_alias**](ProtocolsApi.md#delete_nfs_alias) | **DELETE** /platform/15/protocols/nfs/aliases/{NfsAliasId} | -[**delete_nfs_export**](ProtocolsApi.md#delete_nfs_export) | **DELETE** /platform/22/protocols/nfs/exports/{NfsExportId} | +[**delete_nfs_export**](ProtocolsApi.md#delete_nfs_export) | **DELETE** /platform/4/protocols/nfs/exports/{NfsExportId} | [**delete_nfs_nlm_session**](ProtocolsApi.md#delete_nfs_nlm_session) | **DELETE** /platform/3/protocols/nfs/nlm/sessions/{NfsNlmSessionId} | [**delete_ntp_server**](ProtocolsApi.md#delete_ntp_server) | **DELETE** /platform/3/protocols/ntp/servers/{NtpServerId} | [**delete_ntp_servers**](ProtocolsApi.md#delete_ntp_servers) | **DELETE** /platform/3/protocols/ntp/servers | @@ -48,9 +49,10 @@ Method | HTTP request | Description [**delete_smb_openfile**](ProtocolsApi.md#delete_smb_openfile) | **DELETE** /platform/1/protocols/smb/openfiles/{SmbOpenfileId} | [**delete_smb_session**](ProtocolsApi.md#delete_smb_session) | **DELETE** /platform/11/protocols/smb/sessions/{SmbSessionId} | [**delete_smb_sessions_computer_user**](ProtocolsApi.md#delete_smb_sessions_computer_user) | **DELETE** /platform/1/protocols/smb/sessions/{Computer}/{SmbSessionsComputerUser} | -[**delete_smb_share**](ProtocolsApi.md#delete_smb_share) | **DELETE** /platform/22/protocols/smb/shares/{SmbShareId} | -[**delete_smb_shares**](ProtocolsApi.md#delete_smb_shares) | **DELETE** /platform/22/protocols/smb/shares | -[**get_ftp_settings**](ProtocolsApi.md#get_ftp_settings) | **GET** /platform/16/protocols/ftp/settings | +[**delete_smb_share**](ProtocolsApi.md#delete_smb_share) | **DELETE** /platform/12/protocols/smb/shares/{SmbShareId} | +[**delete_smb_shares**](ProtocolsApi.md#delete_smb_shares) | **DELETE** /platform/12/protocols/smb/shares | +[**delete_swift_account**](ProtocolsApi.md#delete_swift_account) | **DELETE** /platform/3/protocols/swift/accounts/{SwiftAccountId} | +[**get_ftp_settings**](ProtocolsApi.md#get_ftp_settings) | **GET** /platform/3/protocols/ftp/settings | [**get_hdfs_crypto_settings**](ProtocolsApi.md#get_hdfs_crypto_settings) | **GET** /platform/7/protocols/hdfs/crypto/settings | [**get_hdfs_fsimage_job**](ProtocolsApi.md#get_hdfs_fsimage_job) | **GET** /platform/5/protocols/hdfs/fsimage/job | [**get_hdfs_fsimage_job_settings**](ProtocolsApi.md#get_hdfs_fsimage_job_settings) | **GET** /platform/5/protocols/hdfs/fsimage/job/settings | @@ -66,7 +68,7 @@ Method | HTTP request | Description [**get_hdfs_settings_global**](ProtocolsApi.md#get_hdfs_settings_global) | **GET** /platform/11/protocols/hdfs/settings/global | [**get_http_service**](ProtocolsApi.md#get_http_service) | **GET** /platform/15/protocols/http/services/{HttpServiceId} | [**get_http_services**](ProtocolsApi.md#get_http_services) | **GET** /platform/15/protocols/http/services | -[**get_http_settings**](ProtocolsApi.md#get_http_settings) | **GET** /platform/16/protocols/http/settings | +[**get_http_settings**](ProtocolsApi.md#get_http_settings) | **GET** /platform/3/protocols/http/settings | [**get_ndmp_contexts_backup**](ProtocolsApi.md#get_ndmp_contexts_backup) | **GET** /platform/3/protocols/ndmp/contexts/backup | [**get_ndmp_contexts_backup_by_id**](ProtocolsApi.md#get_ndmp_contexts_backup_by_id) | **GET** /platform/3/protocols/ndmp/contexts/backup/{NdmpContextsBackupId} | [**get_ndmp_contexts_bre**](ProtocolsApi.md#get_ndmp_contexts_bre) | **GET** /platform/3/protocols/ndmp/contexts/bre | @@ -79,15 +81,14 @@ Method | HTTP request | Description [**get_ndmp_session**](ProtocolsApi.md#get_ndmp_session) | **GET** /platform/3/protocols/ndmp/sessions/{NdmpSessionId} | [**get_ndmp_sessions**](ProtocolsApi.md#get_ndmp_sessions) | **GET** /platform/3/protocols/ndmp/sessions | [**get_ndmp_settings_dmas**](ProtocolsApi.md#get_ndmp_settings_dmas) | **GET** /platform/3/protocols/ndmp/settings/dmas | -[**get_ndmp_settings_global**](ProtocolsApi.md#get_ndmp_settings_global) | **GET** /platform/20/protocols/ndmp/settings/global | +[**get_ndmp_settings_global**](ProtocolsApi.md#get_ndmp_settings_global) | **GET** /platform/3/protocols/ndmp/settings/global | [**get_ndmp_settings_preferred_ip**](ProtocolsApi.md#get_ndmp_settings_preferred_ip) | **GET** /platform/4/protocols/ndmp/settings/preferred-ips/{NdmpSettingsPreferredIpId} | [**get_ndmp_settings_variable**](ProtocolsApi.md#get_ndmp_settings_variable) | **GET** /platform/3/protocols/ndmp/settings/variables/{NdmpSettingsVariableId} | [**get_ndmp_user**](ProtocolsApi.md#get_ndmp_user) | **GET** /platform/3/protocols/ndmp/users/{NdmpUserId} | [**get_nfs_alias**](ProtocolsApi.md#get_nfs_alias) | **GET** /platform/15/protocols/nfs/aliases/{NfsAliasId} | [**get_nfs_check**](ProtocolsApi.md#get_nfs_check) | **GET** /platform/2/protocols/nfs/check | -[**get_nfs_export**](ProtocolsApi.md#get_nfs_export) | **GET** /platform/22/protocols/nfs/exports/{NfsExportId} | +[**get_nfs_export**](ProtocolsApi.md#get_nfs_export) | **GET** /platform/4/protocols/nfs/exports/{NfsExportId} | [**get_nfs_exports_summary**](ProtocolsApi.md#get_nfs_exports_summary) | **GET** /platform/2/protocols/nfs/exports-summary | -[**get_nfs_locks**](ProtocolsApi.md#get_nfs_locks) | **GET** /platform/16/protocols/nfs/locks | [**get_nfs_log_level**](ProtocolsApi.md#get_nfs_log_level) | **GET** /platform/12/protocols/nfs/log-level | [**get_nfs_netgroup**](ProtocolsApi.md#get_nfs_netgroup) | **GET** /platform/3/protocols/nfs/netgroup | [**get_nfs_nlm_locks**](ProtocolsApi.md#get_nfs_nlm_locks) | **GET** /platform/2/protocols/nfs/nlm/locks | @@ -95,9 +96,8 @@ Method | HTTP request | Description [**get_nfs_nlm_sessions**](ProtocolsApi.md#get_nfs_nlm_sessions) | **GET** /platform/3/protocols/nfs/nlm/sessions | [**get_nfs_nlm_waiters**](ProtocolsApi.md#get_nfs_nlm_waiters) | **GET** /platform/2/protocols/nfs/nlm/waiters | [**get_nfs_settings_export**](ProtocolsApi.md#get_nfs_settings_export) | **GET** /platform/2/protocols/nfs/settings/export | -[**get_nfs_settings_global**](ProtocolsApi.md#get_nfs_settings_global) | **GET** /platform/19/protocols/nfs/settings/global | +[**get_nfs_settings_global**](ProtocolsApi.md#get_nfs_settings_global) | **GET** /platform/14/protocols/nfs/settings/global | [**get_nfs_settings_zone**](ProtocolsApi.md#get_nfs_settings_zone) | **GET** /platform/2/protocols/nfs/settings/zone | -[**get_nfs_waiters**](ProtocolsApi.md#get_nfs_waiters) | **GET** /platform/16/protocols/nfs/waiters | [**get_ntp_server**](ProtocolsApi.md#get_ntp_server) | **GET** /platform/3/protocols/ntp/servers/{NtpServerId} | [**get_ntp_settings**](ProtocolsApi.md#get_ntp_settings) | **GET** /platform/3/protocols/ntp/settings | [**get_s3_bucket**](ProtocolsApi.md#get_s3_bucket) | **GET** /platform/15/protocols/s3/buckets/{S3BucketId} | @@ -109,26 +109,28 @@ Method | HTTP request | Description [**get_smb_log_level_filter**](ProtocolsApi.md#get_smb_log_level_filter) | **GET** /platform/3/protocols/smb/log-level/filters/{SmbLogLevelFilterId} | [**get_smb_openfiles**](ProtocolsApi.md#get_smb_openfiles) | **GET** /platform/1/protocols/smb/openfiles | [**get_smb_sessions**](ProtocolsApi.md#get_smb_sessions) | **GET** /platform/11/protocols/smb/sessions | -[**get_smb_settings_global**](ProtocolsApi.md#get_smb_settings_global) | **GET** /platform/17/protocols/smb/settings/global | +[**get_smb_settings_global**](ProtocolsApi.md#get_smb_settings_global) | **GET** /platform/7/protocols/smb/settings/global | [**get_smb_settings_share**](ProtocolsApi.md#get_smb_settings_share) | **GET** /platform/7/protocols/smb/settings/share | -[**get_smb_settings_zone**](ProtocolsApi.md#get_smb_settings_zone) | **GET** /platform/17/protocols/smb/settings/zone | -[**get_smb_share**](ProtocolsApi.md#get_smb_share) | **GET** /platform/22/protocols/smb/shares/{SmbShareId} | +[**get_smb_settings_zone**](ProtocolsApi.md#get_smb_settings_zone) | **GET** /platform/6/protocols/smb/settings/zone | +[**get_smb_share**](ProtocolsApi.md#get_smb_share) | **GET** /platform/12/protocols/smb/shares/{SmbShareId} | [**get_smb_shares_summary**](ProtocolsApi.md#get_smb_shares_summary) | **GET** /platform/1/protocols/smb/shares-summary | -[**get_snmp_settings**](ProtocolsApi.md#get_snmp_settings) | **GET** /platform/16/protocols/snmp/settings | -[**get_ssh_settings**](ProtocolsApi.md#get_ssh_settings) | **GET** /platform/22/protocols/ssh/settings | +[**get_snmp_settings**](ProtocolsApi.md#get_snmp_settings) | **GET** /platform/5/protocols/snmp/settings | +[**get_ssh_settings**](ProtocolsApi.md#get_ssh_settings) | **GET** /platform/8/protocols/ssh/settings | +[**get_swift_account**](ProtocolsApi.md#get_swift_account) | **GET** /platform/3/protocols/swift/accounts/{SwiftAccountId} | [**list_hdfs_crypto_encryption_zones**](ProtocolsApi.md#list_hdfs_crypto_encryption_zones) | **GET** /platform/7/protocols/hdfs/crypto/encryption-zones | [**list_hdfs_proxyusers**](ProtocolsApi.md#list_hdfs_proxyusers) | **GET** /platform/1/protocols/hdfs/proxyusers | [**list_hdfs_racks**](ProtocolsApi.md#list_hdfs_racks) | **GET** /platform/1/protocols/hdfs/racks | [**list_ndmp_settings_preferred_ips**](ProtocolsApi.md#list_ndmp_settings_preferred_ips) | **GET** /platform/4/protocols/ndmp/settings/preferred-ips | [**list_ndmp_users**](ProtocolsApi.md#list_ndmp_users) | **GET** /platform/3/protocols/ndmp/users | [**list_nfs_aliases**](ProtocolsApi.md#list_nfs_aliases) | **GET** /platform/15/protocols/nfs/aliases | -[**list_nfs_exports**](ProtocolsApi.md#list_nfs_exports) | **GET** /platform/22/protocols/nfs/exports | +[**list_nfs_exports**](ProtocolsApi.md#list_nfs_exports) | **GET** /platform/4/protocols/nfs/exports | [**list_ntp_servers**](ProtocolsApi.md#list_ntp_servers) | **GET** /platform/3/protocols/ntp/servers | [**list_s3_buckets**](ProtocolsApi.md#list_s3_buckets) | **GET** /platform/15/protocols/s3/buckets | [**list_s3_mykeys**](ProtocolsApi.md#list_s3_mykeys) | **GET** /platform/10/protocols/s3/mykeys | [**list_smb_log_level_filters**](ProtocolsApi.md#list_smb_log_level_filters) | **GET** /platform/3/protocols/smb/log-level/filters | -[**list_smb_shares**](ProtocolsApi.md#list_smb_shares) | **GET** /platform/22/protocols/smb/shares | -[**update_ftp_settings**](ProtocolsApi.md#update_ftp_settings) | **PUT** /platform/16/protocols/ftp/settings | +[**list_smb_shares**](ProtocolsApi.md#list_smb_shares) | **GET** /platform/12/protocols/smb/shares | +[**list_swift_accounts**](ProtocolsApi.md#list_swift_accounts) | **GET** /platform/3/protocols/swift/accounts | +[**update_ftp_settings**](ProtocolsApi.md#update_ftp_settings) | **PUT** /platform/3/protocols/ftp/settings | [**update_hdfs_crypto_settings**](ProtocolsApi.md#update_hdfs_crypto_settings) | **PUT** /platform/7/protocols/hdfs/crypto/settings | [**update_hdfs_fsimage_job_settings**](ProtocolsApi.md#update_hdfs_fsimage_job_settings) | **PUT** /platform/5/protocols/hdfs/fsimage/job/settings | [**update_hdfs_fsimage_settings**](ProtocolsApi.md#update_hdfs_fsimage_settings) | **PUT** /platform/5/protocols/hdfs/fsimage/settings | @@ -140,18 +142,18 @@ Method | HTTP request | Description [**update_hdfs_settings**](ProtocolsApi.md#update_hdfs_settings) | **PUT** /platform/12/protocols/hdfs/settings | [**update_hdfs_settings_global**](ProtocolsApi.md#update_hdfs_settings_global) | **PUT** /platform/11/protocols/hdfs/settings/global | [**update_http_service**](ProtocolsApi.md#update_http_service) | **PUT** /platform/15/protocols/http/services/{HttpServiceId} | -[**update_http_settings**](ProtocolsApi.md#update_http_settings) | **PUT** /platform/16/protocols/http/settings | +[**update_http_settings**](ProtocolsApi.md#update_http_settings) | **PUT** /platform/3/protocols/http/settings | [**update_ndmp_diagnostics**](ProtocolsApi.md#update_ndmp_diagnostics) | **PUT** /platform/3/protocols/ndmp/diagnostics | -[**update_ndmp_settings_global**](ProtocolsApi.md#update_ndmp_settings_global) | **PUT** /platform/20/protocols/ndmp/settings/global | +[**update_ndmp_settings_global**](ProtocolsApi.md#update_ndmp_settings_global) | **PUT** /platform/3/protocols/ndmp/settings/global | [**update_ndmp_settings_preferred_ip**](ProtocolsApi.md#update_ndmp_settings_preferred_ip) | **PUT** /platform/4/protocols/ndmp/settings/preferred-ips/{NdmpSettingsPreferredIpId} | [**update_ndmp_settings_variable**](ProtocolsApi.md#update_ndmp_settings_variable) | **PUT** /platform/3/protocols/ndmp/settings/variables/{NdmpSettingsVariableId} | [**update_ndmp_user**](ProtocolsApi.md#update_ndmp_user) | **PUT** /platform/3/protocols/ndmp/users/{NdmpUserId} | [**update_nfs_alias**](ProtocolsApi.md#update_nfs_alias) | **PUT** /platform/15/protocols/nfs/aliases/{NfsAliasId} | -[**update_nfs_export**](ProtocolsApi.md#update_nfs_export) | **PUT** /platform/22/protocols/nfs/exports/{NfsExportId} | +[**update_nfs_export**](ProtocolsApi.md#update_nfs_export) | **PUT** /platform/4/protocols/nfs/exports/{NfsExportId} | [**update_nfs_log_level**](ProtocolsApi.md#update_nfs_log_level) | **PUT** /platform/12/protocols/nfs/log-level | [**update_nfs_netgroup**](ProtocolsApi.md#update_nfs_netgroup) | **PUT** /platform/3/protocols/nfs/netgroup | [**update_nfs_settings_export**](ProtocolsApi.md#update_nfs_settings_export) | **PUT** /platform/2/protocols/nfs/settings/export | -[**update_nfs_settings_global**](ProtocolsApi.md#update_nfs_settings_global) | **PUT** /platform/19/protocols/nfs/settings/global | +[**update_nfs_settings_global**](ProtocolsApi.md#update_nfs_settings_global) | **PUT** /platform/14/protocols/nfs/settings/global | [**update_nfs_settings_zone**](ProtocolsApi.md#update_nfs_settings_zone) | **PUT** /platform/2/protocols/nfs/settings/zone | [**update_ntp_server**](ProtocolsApi.md#update_ntp_server) | **PUT** /platform/3/protocols/ntp/servers/{NtpServerId} | [**update_ntp_settings**](ProtocolsApi.md#update_ntp_settings) | **PUT** /platform/3/protocols/ntp/settings | @@ -160,12 +162,13 @@ Method | HTTP request | Description [**update_s3_settings_global**](ProtocolsApi.md#update_s3_settings_global) | **PUT** /platform/10/protocols/s3/settings/global | [**update_s3_settings_zone**](ProtocolsApi.md#update_s3_settings_zone) | **PUT** /platform/12/protocols/s3/settings/zone | [**update_smb_log_level**](ProtocolsApi.md#update_smb_log_level) | **PUT** /platform/12/protocols/smb/log-level | -[**update_smb_settings_global**](ProtocolsApi.md#update_smb_settings_global) | **PUT** /platform/17/protocols/smb/settings/global | +[**update_smb_settings_global**](ProtocolsApi.md#update_smb_settings_global) | **PUT** /platform/7/protocols/smb/settings/global | [**update_smb_settings_share**](ProtocolsApi.md#update_smb_settings_share) | **PUT** /platform/7/protocols/smb/settings/share | -[**update_smb_settings_zone**](ProtocolsApi.md#update_smb_settings_zone) | **PUT** /platform/17/protocols/smb/settings/zone | -[**update_smb_share**](ProtocolsApi.md#update_smb_share) | **PUT** /platform/22/protocols/smb/shares/{SmbShareId} | -[**update_snmp_settings**](ProtocolsApi.md#update_snmp_settings) | **PUT** /platform/16/protocols/snmp/settings | -[**update_ssh_settings**](ProtocolsApi.md#update_ssh_settings) | **PUT** /platform/22/protocols/ssh/settings | +[**update_smb_settings_zone**](ProtocolsApi.md#update_smb_settings_zone) | **PUT** /platform/6/protocols/smb/settings/zone | +[**update_smb_share**](ProtocolsApi.md#update_smb_share) | **PUT** /platform/12/protocols/smb/shares/{SmbShareId} | +[**update_snmp_settings**](ProtocolsApi.md#update_snmp_settings) | **PUT** /platform/5/protocols/snmp/settings | +[**update_ssh_settings**](ProtocolsApi.md#update_ssh_settings) | **PUT** /platform/8/protocols/ssh/settings | +[**update_swift_account**](ProtocolsApi.md#update_swift_account) | **PUT** /platform/3/protocols/swift/accounts/{SwiftAccountId} | # **create_hdfs_crypto_encryption_zone** @@ -179,18 +182,18 @@ Turn an empty directory into an Encryption Zone. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -hdfs_crypto_encryption_zone = isilon_sdk.v9_11_0.HdfsCryptoEncryptionZone() # HdfsCryptoEncryptionZone | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +hdfs_crypto_encryption_zone = isilon_sdk.v9_4_0.HdfsCryptoEncryptionZone() # HdfsCryptoEncryptionZone | zone = 'zone_example' # str | Specifies which access zone to use. (optional) try: @@ -233,18 +236,18 @@ Create a new HDFS proxyuser. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -hdfs_proxyuser = isilon_sdk.v9_11_0.HdfsProxyuserCreateParams() # HdfsProxyuserCreateParams | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +hdfs_proxyuser = isilon_sdk.v9_4_0.HdfsProxyuserCreateParams() # HdfsProxyuserCreateParams | zone = 'zone_example' # str | Access zone which contains HDFS proxyuser. (optional) try: @@ -287,18 +290,18 @@ Create a new HDFS rack. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -hdfs_rack = isilon_sdk.v9_11_0.HdfsRackCreateParams() # HdfsRackCreateParams | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +hdfs_rack = isilon_sdk.v9_4_0.HdfsRackCreateParams() # HdfsRackCreateParams | zone = 'zone_example' # str | Access zone which contains HDFS rack. (optional) try: @@ -341,18 +344,18 @@ Create a preferred ip preference. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -ndmp_settings_preferred_ip = isilon_sdk.v9_11_0.NdmpSettingsPreferredIpCreateParams() # NdmpSettingsPreferredIpCreateParams | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +ndmp_settings_preferred_ip = isilon_sdk.v9_4_0.NdmpSettingsPreferredIpCreateParams() # NdmpSettingsPreferredIpCreateParams | try: api_response = api_instance.create_ndmp_settings_preferred_ip(ndmp_settings_preferred_ip) @@ -393,18 +396,18 @@ Create a preferred NDMP environment variable. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -ndmp_settings_variable = isilon_sdk.v9_11_0.NdmpSettingsVariableCreateParams() # NdmpSettingsVariableCreateParams | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +ndmp_settings_variable = isilon_sdk.v9_4_0.NdmpSettingsVariableCreateParams() # NdmpSettingsVariableCreateParams | ndmp_settings_variable_id = 'ndmp_settings_variable_id_example' # str | Create a preferred NDMP environment variable. try: @@ -447,18 +450,18 @@ Created a new user. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -ndmp_user = isilon_sdk.v9_11_0.NdmpUserCreateParams() # NdmpUserCreateParams | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +ndmp_user = isilon_sdk.v9_4_0.NdmpUserCreateParams() # NdmpUserCreateParams | try: api_response = api_instance.create_ndmp_user(ndmp_user) @@ -499,18 +502,18 @@ Create a new NFS alias. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -nfs_alias = isilon_sdk.v9_11_0.NfsAliasCreateParams() # NfsAliasCreateParams | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +nfs_alias = isilon_sdk.v9_4_0.NfsAliasCreateParams() # NfsAliasCreateParams | zone = 'zone_example' # str | Access zone (optional) try: @@ -553,18 +556,18 @@ Create a new NFS export. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -nfs_export = isilon_sdk.v9_11_0.NfsExportCreateParams() # NfsExportCreateParams | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +nfs_export = isilon_sdk.v9_4_0.NfsExportCreateParams() # NfsExportCreateParams | force = true # bool | If true, the export will be created even if it conflicts with another export. (optional) ignore_bad_auth = true # bool | Ignore invalid users. (optional) ignore_bad_paths = true # bool | Ignore nonexistent or otherwise bad paths. (optional) @@ -617,18 +620,18 @@ Update the NFS netgroups in the cache. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -nfs_netgroup_check_item = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +nfs_netgroup_check_item = isilon_sdk.v9_4_0.Empty() # Empty | host = 'host_example' # str | IP address of node to update. If unspecified, the local nodes cache is updated. (optional) try: @@ -671,18 +674,18 @@ Flush the NFS netgroups in the cache. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -nfs_netgroup_flush_item = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +nfs_netgroup_flush_item = isilon_sdk.v9_4_0.Empty() # Empty | host = 'host_example' # str | IP address of node to flush. If unspecified, all nodes on the cluster are flushed. (optional) try: @@ -725,18 +728,18 @@ Save the NFS netgroups in the cache. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -nfs_netgroup_save_item = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +nfs_netgroup_save_item = isilon_sdk.v9_4_0.Empty() # Empty | host = 'host_example' # str | IP address of node to save. If unspecified, all nodes on the cluster are saved. (optional) try: @@ -779,18 +782,18 @@ Perform an active scan for lost NFSv3 locks. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -nfs_nlm_sessions_check_item = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +nfs_nlm_sessions_check_item = isilon_sdk.v9_4_0.Empty() # Empty | cluster_ip = 'cluster_ip_example' # str | An IP address for which NSM has client records (optional) zone = 'zone_example' # str | Represents an extant auth zone (optional) @@ -835,18 +838,18 @@ Reload default NFS export configuration. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -nfs_reload_item = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +nfs_reload_item = isilon_sdk.v9_4_0.Empty() # Empty | zone = 'zone_example' # str | Access zone (optional) try: @@ -889,18 +892,18 @@ Create an NTP server entry. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -ntp_server = isilon_sdk.v9_11_0.NtpServerCreateParams() # NtpServerCreateParams | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +ntp_server = isilon_sdk.v9_4_0.NtpServerCreateParams() # NtpServerCreateParams | try: api_response = api_instance.create_ntp_server(ntp_server) @@ -941,18 +944,18 @@ Create a new bucket. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -s3_bucket = isilon_sdk.v9_11_0.S3BucketCreateParams() # S3BucketCreateParams | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +s3_bucket = isilon_sdk.v9_4_0.S3BucketCreateParams() # S3BucketCreateParams | zone = 'zone_example' # str | Specifies which access zone to use. (optional) try: @@ -995,18 +998,18 @@ Generate a new secret key/access ID for given user. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -s3_key = isilon_sdk.v9_11_0.S3Key() # S3Key | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +s3_key = isilon_sdk.v9_4_0.S3Key() # S3Key | s3_key_id = 's3_key_id_example' # str | Generate a new secret key/access ID for given user. force = true # bool | Forces to create new key. (optional) zone = 'zone_example' # str | Specifies access zone containing user. (optional) @@ -1053,18 +1056,18 @@ Generate a new secret key/access ID. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -s3_mykey = isilon_sdk.v9_11_0.S3Key() # S3Key | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +s3_mykey = isilon_sdk.v9_4_0.S3Key() # S3Key | force = true # bool | Forces to create new key. (optional) try: @@ -1107,18 +1110,18 @@ Add an SMB log filter. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -smb_log_level_filter = isilon_sdk.v9_11_0.SmbLogLevelFilter() # SmbLogLevelFilter | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +smb_log_level_filter = isilon_sdk.v9_4_0.SmbLogLevelFilter() # SmbLogLevelFilter | try: api_response = api_instance.create_smb_log_level_filter(smb_log_level_filter) @@ -1159,18 +1162,18 @@ Create a new share. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -smb_share = isilon_sdk.v9_11_0.SmbShareCreateParams() # SmbShareCreateParams | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +smb_share = isilon_sdk.v9_4_0.SmbShareCreateParams() # SmbShareCreateParams | zone = 'zone_example' # str | Specifies which access zone to use. (optional) try: @@ -1202,6 +1205,60 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) +# **create_swift_account** +> Empty create_swift_account(swift_account, zone=zone) + + + +Create a new Swift account + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +swift_account = isilon_sdk.v9_4_0.SwiftAccount() # SwiftAccount | +zone = 'zone_example' # str | Access zone which contains Swift account. (optional) + +try: + api_response = api_instance.create_swift_account(swift_account, zone=zone) + pprint(api_response) +except ApiException as e: + print("Exception when calling ProtocolsApi->create_swift_account: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **swift_account** | [**SwiftAccount**](SwiftAccount.md)| | + **zone** | **str**| Access zone which contains Swift account. | [optional] + +### Return type + +[**Empty**](Empty.md) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + # **delete_hdfs_fsimage_latest** > delete_hdfs_fsimage_latest(zone=zone) @@ -1213,17 +1270,17 @@ Delete the latest HDFS FSImage, if there is one. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) zone = 'zone_example' # str | Access zone which contains HDFS FSImage. (optional) try: @@ -1264,17 +1321,17 @@ Delete all collected events, this has the effect of resetting the stream. Note t ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) zone = 'zone_example' # str | Access zone which exposes HDFS INotify. (optional) try: @@ -1315,17 +1372,17 @@ Delete an HDFS proxyuser. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) hdfs_proxyuser_id = 'hdfs_proxyuser_id_example' # str | Delete an HDFS proxyuser. zone = 'zone_example' # str | Access zone which contains HDFS proxyuser. (optional) @@ -1368,17 +1425,17 @@ Delete the HDFS rack. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) hdfs_rack_id = 'hdfs_rack_id_example' # str | Delete the HDFS rack. zone = 'zone_example' # str | Access zone which contains HDFS rack. (optional) @@ -1421,17 +1478,17 @@ Delete a backup context ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) ndmp_contexts_backup_id = 'ndmp_contexts_backup_id_example' # str | Delete a backup context try: @@ -1472,17 +1529,17 @@ Delete a NDMP BRE context ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) ndmp_contexts_bre_id = 'ndmp_contexts_bre_id_example' # str | Delete a NDMP BRE context try: @@ -1523,17 +1580,17 @@ Delete a restore context ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) ndmp_contexts_restore_id = 'ndmp_contexts_restore_id_example' # str | Delete a restore context try: @@ -1574,17 +1631,17 @@ Delete dumpdates entries of a specified path. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) ndmp_dumpdate_id = 'ndmp_dumpdate_id_example' # str | Delete dumpdates entries of a specified path. level = 56 # int | Level is an input from 0 to 10. (optional) @@ -1627,17 +1684,17 @@ Delete the ndmp session. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) ndmp_session_id = 'ndmp_session_id_example' # str | Delete the ndmp session. lnn = 'lnn_example' # str | Logical node number. (optional) @@ -1680,17 +1737,17 @@ Delete a preferred ip preference. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) ndmp_settings_preferred_ip_id = 'ndmp_settings_preferred_ip_id_example' # str | Delete a preferred ip preference. try: @@ -1731,17 +1788,17 @@ Delete preferred environment variable entries ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) ndmp_settings_variable_id = 'ndmp_settings_variable_id_example' # str | Delete preferred environment variable entries name = 'name_example' # str | Name of the variable to delete. (optional) @@ -1784,17 +1841,17 @@ Delete the user. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) ndmp_user_id = 'ndmp_user_id_example' # str | Delete the user. try: @@ -1835,17 +1892,17 @@ Delete the export. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) nfs_alias_id = 'nfs_alias_id_example' # str | Delete the export. zone = 'zone_example' # str | Access zone (optional) @@ -1888,17 +1945,17 @@ Delete the export. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) nfs_export_id = 'nfs_export_id_example' # str | Delete the export. zone = 'zone_example' # str | Access zone (optional) @@ -1941,17 +1998,17 @@ Delete all lock state for this host. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) nfs_nlm_session_id = 'nfs_nlm_session_id_example' # str | Delete all lock state for this host. cluster_ip = 'cluster_ip_example' # str | An IP address for which NSM has client records (optional) refresh = true # bool | if set to true, the client will be given a chance to reclaim its locks before they are destroyed (optional) @@ -1998,17 +2055,17 @@ Delete an NTP server entry. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) ntp_server_id = 'ntp_server_id_example' # str | Delete an NTP server entry. try: @@ -2049,17 +2106,17 @@ Delete all NTP server entries. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_instance.delete_ntp_servers() @@ -2096,17 +2153,17 @@ Delete the bucket. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) s3_bucket_id = 's3_bucket_id_example' # str | Delete the bucket. zone = 'zone_example' # str | Specifies which access zone to use. (optional) @@ -2149,17 +2206,17 @@ Delete secret key information for given user. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) s3_key_id = 's3_key_id_example' # str | Delete secret key information for given user. zone = 'zone_example' # str | Specifies access zone containing user. (optional) @@ -2202,17 +2259,17 @@ Delete secret key information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_instance.delete_s3_mykeys() @@ -2249,17 +2306,17 @@ Delete log filter. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) smb_log_level_filter_id = 'smb_log_level_filter_id_example' # str | Delete log filter. try: @@ -2300,17 +2357,17 @@ Delete existing SMB log filters. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) level = 'level_example' # str | Valid SMB logging levels (optional) try: @@ -2351,17 +2408,17 @@ Close the file in the SMB server. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) smb_openfile_id = 'smb_openfile_id_example' # str | Close the file in the SMB server. try: @@ -2402,17 +2459,17 @@ Close the SMB session. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) smb_session_id = 'smb_session_id_example' # str | Close the SMB session. try: @@ -2453,17 +2510,17 @@ Close the SMB session. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) smb_sessions_computer_user = 'smb_sessions_computer_user_example' # str | Close the SMB session. computer = 'computer_example' # str | @@ -2506,17 +2563,17 @@ Delete the share. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) smb_share_id = 'smb_share_id_example' # str | Delete the share. zone = 'zone_example' # str | Specifies which access zone to use. (optional) @@ -2559,17 +2616,17 @@ Delete multiple smb shares. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) zone = 'zone_example' # str | Specifies which access zone to use. (optional) try: @@ -2599,6 +2656,59 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) +# **delete_swift_account** +> delete_swift_account(swift_account_id, zone=zone) + + + +Delete a Swift account. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +swift_account_id = 'swift_account_id_example' # str | Delete a Swift account. +zone = 'zone_example' # str | Access zone which contains Swift account. (optional) + +try: + api_instance.delete_swift_account(swift_account_id, zone=zone) +except ApiException as e: + print("Exception when calling ProtocolsApi->delete_swift_account: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **swift_account_id** | **str**| Delete a Swift account. | + **zone** | **str**| Access zone which contains Swift account. | [optional] + +### Return type + +void (empty response body) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + # **get_ftp_settings** > FtpSettings get_ftp_settings() @@ -2610,17 +2720,17 @@ Retrieve the FTP settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_ftp_settings() @@ -2658,17 +2768,17 @@ Retrieve HDFS crypto settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) zone = 'zone_example' # str | Specifies which access zone to use. (optional) try: @@ -2710,17 +2820,17 @@ Retrieve current HDFS FSImage job information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) zone = 'zone_example' # str | Access zone which contains job information. (optional) try: @@ -2762,17 +2872,17 @@ Retrieve HDFS FSImage job properties. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) zone = 'zone_example' # str | Access zone which contains job settings. (optional) try: @@ -2814,17 +2924,17 @@ Retrieve the latest HDFS FSImage information, if there is one. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) zone = 'zone_example' # str | Access zone which contains HDFS FSImage. (optional) try: @@ -2866,17 +2976,17 @@ Retrieve HDFS FSImage properties. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) zone = 'zone_example' # str | Access zone which contains FSImage settings. (optional) try: @@ -2918,17 +3028,17 @@ Retrieve HDFS INotify properties. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) zone = 'zone_example' # str | Access zone which contains INotify settings. (optional) try: @@ -2970,17 +3080,17 @@ Retrieve information about the collection and availability of HDFS INotify edit ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) zone = 'zone_example' # str | Access zone which exposes HDFS INotify. (optional) try: @@ -3022,17 +3132,17 @@ Retrieve the HDFS service log-level. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_hdfs_log_level() @@ -3070,17 +3180,17 @@ View the proxyuser. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) hdfs_proxyuser_id = 'hdfs_proxyuser_id_example' # str | View the proxyuser. zone = 'zone_example' # str | Access zone which contains HDFS proxyuser. (optional) @@ -3124,17 +3234,17 @@ Retrieve the HDFS rack. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) hdfs_rack_id = 'hdfs_rack_id_example' # str | Retrieve the HDFS rack. zone = 'zone_example' # str | Access zone which contains HDFS rack. (optional) @@ -3178,17 +3288,17 @@ Retrieve HDFS ranger-plugin properties. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) zone = 'zone_example' # str | Access zone which contains HDFS ranger-plugin settings. (optional) try: @@ -3230,17 +3340,17 @@ Retrieve HDFS properties. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) zone = 'zone_example' # str | Access zone which contains HDFS settings. (optional) try: @@ -3282,17 +3392,17 @@ Retrieve HDFS global settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_hdfs_settings_global() @@ -3330,17 +3440,17 @@ Get the HTTP service status. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) http_service_id = 'http_service_id_example' # str | Get the HTTP service status. try: @@ -3382,17 +3492,17 @@ Get detailed information for all remote HTTP services. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_http_services() @@ -3430,17 +3540,17 @@ Retrieve HTTP properties. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_http_settings() @@ -3478,17 +3588,17 @@ Get List of NDMP Backup Contexts. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -3532,17 +3642,17 @@ View a NDMP backup context ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) ndmp_contexts_backup_id = 'ndmp_contexts_backup_id_example' # str | View a NDMP backup context try: @@ -3584,17 +3694,17 @@ Get list of NDMP BRE Contexts. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -3638,17 +3748,17 @@ View a NDMP BRE context ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) ndmp_contexts_bre_id = 'ndmp_contexts_bre_id_example' # str | View a NDMP BRE context try: @@ -3690,17 +3800,17 @@ Get List of NDMP Restore Contexts. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -3744,17 +3854,17 @@ View a NDMP restore context ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) ndmp_contexts_restore_id = 'ndmp_contexts_restore_id_example' # str | View a NDMP restore context try: @@ -3796,17 +3906,17 @@ List ndmp diagnostics settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_ndmp_diagnostics() @@ -3844,17 +3954,17 @@ List of dumpdates entries. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) ndmp_dumpdate_id = 'ndmp_dumpdate_id_example' # str | List of dumpdates entries. dir = 'dir_example' # str | The direction of the sort. (optional) level = 56 # int | Filter by dumpdate level. (optional) @@ -3908,17 +4018,17 @@ Get NDMP logs ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) lnn = 'lnn_example' # str | Logical node number. (optional) page = 56 # int | The page number of the NDMP logs file. (optional) pagesize = 56 # int | The page size of each page of the NDMP log file. (optional) @@ -3964,17 +4074,17 @@ Retrieve the ndmp session. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) ndmp_session_id = 'ndmp_session_id_example' # str | Retrieve the ndmp session. lnn = 'lnn_example' # str | Logical node number. (optional) @@ -4018,17 +4128,17 @@ List all ndmp sessions. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) consolidate = true # bool | Combine sessions in the same context. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) node = 'node_example' # str | Only return sessions of the node. (optional) @@ -4078,17 +4188,17 @@ List of supported dma vendors. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_ndmp_settings_dmas() @@ -4126,17 +4236,17 @@ List global ndmp settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_ndmp_settings_global() @@ -4174,17 +4284,17 @@ Get one preference by id. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) ndmp_settings_preferred_ip_id = 'ndmp_settings_preferred_ip_id_example' # str | Get one preference by id. try: @@ -4226,17 +4336,17 @@ List of preferred environment variables. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) ndmp_settings_variable_id = 'ndmp_settings_variable_id_example' # str | List of preferred environment variables. limit = 56 # int | Return no more than this many results at once (see resume). (optional) path = 'path_example' # str | Return variables of the path. (optional) @@ -4284,17 +4394,17 @@ Retrieve the user. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) ndmp_user_id = 'ndmp_user_id_example' # str | Retrieve the user. try: @@ -4336,17 +4446,17 @@ Retrieve export information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) nfs_alias_id = 'nfs_alias_id_example' # str | Retrieve export information. check = true # bool | Check for conflicts when viewing alias. (optional) scope = 'scope_example' # str | When specified as 'effective', or not specified, all fields are returned. When specified as 'user', only fields with non-default values are shown. When specified as 'default', the original values are returned. (optional) @@ -4394,17 +4504,17 @@ Retrieve NFS export validation information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) ignore_bad_auth = true # bool | Ignore invalid users. (optional) ignore_bad_paths = true # bool | Ignore nonexistent or otherwise bad paths. (optional) ignore_unresolvable_hosts = true # bool | Ignore unresolvable hosts. (optional) @@ -4452,19 +4562,19 @@ Retrieve export information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) nfs_export_id = 'nfs_export_id_example' # str | Retrieve export information. -scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) +scope = 'scope_example' # str | When specified as 'effective', or not specified, all fields are returned. When specified as 'user', only fields with non-default values are shown. When specified as 'default', the original values are returned. (optional) zone = 'zone_example' # str | Access zone (optional) try: @@ -4479,7 +4589,7 @@ except ApiException as e: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **nfs_export_id** | **str**| Retrieve export information. | - **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] + **scope** | **str**| When specified as 'effective', or not specified, all fields are returned. When specified as 'user', only fields with non-default values are shown. When specified as 'default', the original values are returned. | [optional] **zone** | **str**| Access zone | [optional] ### Return type @@ -4508,17 +4618,17 @@ Retrieve NFS export summary information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) zone = 'zone_example' # str | Access zone (optional) try: @@ -4549,74 +4659,6 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **get_nfs_locks** -> NfsLocks get_nfs_locks(client=client, client_id=client_id, created=created, dir=dir, limit=limit, lin=lin, path=path, sort=sort, version=version) - - - -List all locks. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -client = 'client_example' # str | Filter locks by the specified client host (optional) -client_id = 56 # int | Filter locks by the specified client ID. (optional) -created = 56 # int | Return locks created before the (optional) -dir = 'dir_example' # str | The direction of the sort. (optional) -limit = 56 # int | Return no more than this many results at once (see resume). (optional) -lin = 56 # int | Filter locks by the specified LIN in /ifs that is locked. (optional) -path = 'path_example' # str | Filter locks by the specified path under /ifs. (optional) -sort = 'sort_example' # str | The field that will be used for sorting. (optional) -version = 'version_example' # str | Filter by major NFS version: v3 or v4. (optional) - -try: - api_response = api_instance.get_nfs_locks(client=client, client_id=client_id, created=created, dir=dir, limit=limit, lin=lin, path=path, sort=sort, version=version) - pprint(api_response) -except ApiException as e: - print("Exception when calling ProtocolsApi->get_nfs_locks: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **client** | **str**| Filter locks by the specified client host | [optional] - **client_id** | **int**| Filter locks by the specified client ID. | [optional] - **created** | **int**| Return locks created before the | [optional] - **dir** | **str**| The direction of the sort. | [optional] - **limit** | **int**| Return no more than this many results at once (see resume). | [optional] - **lin** | **int**| Filter locks by the specified LIN in /ifs that is locked. | [optional] - **path** | **str**| Filter locks by the specified path under /ifs. | [optional] - **sort** | **str**| The field that will be used for sorting. | [optional] - **version** | **str**| Filter by major NFS version: v3 or v4. | [optional] - -### Return type - -[**NfsLocks**](NfsLocks.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **get_nfs_log_level** > NfsLogLevel get_nfs_log_level() @@ -4628,17 +4670,17 @@ Get the current NFS service logging level. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_nfs_log_level() @@ -4676,17 +4718,17 @@ Get the current NFS netgroup cache settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) host = 'host_example' # str | Host to retrieve netgroup cache settings from. (optional) try: @@ -4728,17 +4770,17 @@ List all NLM locks. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) client = 'client_example' # str | Filter locks by the specified client host name and IP address. (optional) client_id = 'client_id_example' # str | Filter locks by the specified client ID. (optional) created = 'created_example' # str | Return locks created after the specified unix epoch time. (optional) @@ -4796,17 +4838,17 @@ Retrieve all lock state for a single client. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) nfs_nlm_session_id = 'nfs_nlm_session_id_example' # str | Retrieve all lock state for a single client. cluster_ip = 'cluster_ip_example' # str | An IP address for which NSM has client records (optional) zone = 'zone_example' # str | Represents an extant auth zone (optional) @@ -4852,17 +4894,17 @@ List all NSM clients (optionally filtered by either zone or IP) ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) ip = 'ip_example' # str | An IP address for which NSM has client records (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) @@ -4912,17 +4954,17 @@ List all NLM lock waiters. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -4970,17 +5012,17 @@ Retrieve export information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) zone = 'zone_example' # str | Access zone (optional) @@ -5024,17 +5066,17 @@ Retrieve the NFS configuration. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_nfs_settings_global() @@ -5072,17 +5114,17 @@ Retrieve the NFS server settings for this zone. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) zone = 'zone_example' # str | Access zone (optional) try: @@ -5113,72 +5155,6 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **get_nfs_waiters** -> NfsWaiters get_nfs_waiters(client=client, client_id=client_id, created=created, dir=dir, limit=limit, lin=lin, path=path, sort=sort) - - - -List all persisted lock waiters. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -client = 'client_example' # str | Filter locks by the specified client host (optional) -client_id = 56 # int | Filter locks by the specified client ID. (optional) -created = 56 # int | Return locks created before the (optional) -dir = 'dir_example' # str | The direction of the sort. (optional) -limit = 56 # int | Return no more than this many results at once (see resume). (optional) -lin = 56 # int | Filter locks by the specified LIN in /ifs that is locked. (optional) -path = 'path_example' # str | Filter locks by the specified path under /ifs. (optional) -sort = 'sort_example' # str | The field that will be used for sorting. (optional) - -try: - api_response = api_instance.get_nfs_waiters(client=client, client_id=client_id, created=created, dir=dir, limit=limit, lin=lin, path=path, sort=sort) - pprint(api_response) -except ApiException as e: - print("Exception when calling ProtocolsApi->get_nfs_waiters: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **client** | **str**| Filter locks by the specified client host | [optional] - **client_id** | **int**| Filter locks by the specified client ID. | [optional] - **created** | **int**| Return locks created before the | [optional] - **dir** | **str**| The direction of the sort. | [optional] - **limit** | **int**| Return no more than this many results at once (see resume). | [optional] - **lin** | **int**| Filter locks by the specified LIN in /ifs that is locked. | [optional] - **path** | **str**| Filter locks by the specified path under /ifs. | [optional] - **sort** | **str**| The field that will be used for sorting. | [optional] - -### Return type - -[**NfsWaiters**](NfsWaiters.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **get_ntp_server** > NtpServers get_ntp_server(ntp_server_id) @@ -5190,17 +5166,17 @@ Retrieve one NTP server. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) ntp_server_id = 'ntp_server_id_example' # str | Retrieve one NTP server. try: @@ -5242,17 +5218,17 @@ Retrieve the NTP settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_ntp_settings() @@ -5290,17 +5266,17 @@ Retrieve bucket. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) s3_bucket_id = 's3_bucket_id_example' # str | Retrieve bucket. zone = 'zone_example' # str | Specifies which access zone to use. (optional) @@ -5344,17 +5320,17 @@ Get access ID information for given user. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) s3_key_id = 's3_key_id_example' # str | Get access ID information for given user. zone = 'zone_example' # str | Specifies access zone containing user. (optional) @@ -5398,17 +5374,17 @@ Get the current S3 service logging level. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_s3_log_level() @@ -5446,17 +5422,17 @@ Retrieve global S3 bucket settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_s3_settings_global() @@ -5494,17 +5470,17 @@ Retrieve the S3 bucket settings for this zone. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) zone = 'zone_example' # str | Access zone (optional) try: @@ -5546,17 +5522,17 @@ Get the current SMB logging level. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_smb_log_level() @@ -5594,17 +5570,17 @@ View log filter. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) smb_log_level_filter_id = 'smb_log_level_filter_id_example' # str | View log filter. try: @@ -5646,17 +5622,17 @@ List open files. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -5704,17 +5680,17 @@ List open SMB sessions. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) limit = 56 # int | Return no more than this many results at once (see resume). (optional) lnn = 'lnn_example' # str | The node to fetch open sessions from. (optional) lnn_skip = 'lnn_skip_example' # str | When parameter lnn=all, don't fetch open session info from this node. (optional) @@ -5762,17 +5738,17 @@ List all settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) try: @@ -5814,17 +5790,17 @@ List all settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) zone = 'zone_example' # str | Specifies which access zone to use. (optional) @@ -5868,17 +5844,17 @@ List all settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) zone = 'zone_example' # str | Name of the access zone (optional) @@ -5922,17 +5898,17 @@ Retrieve share. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) smb_share_id = 'smb_share_id_example' # str | Retrieve share. resolve_names = true # bool | If true, resolve group and user names in personas. (optional) scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) @@ -5980,17 +5956,17 @@ Return summary information about shares. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) zone = 'zone_example' # str | Specifies which access zone to use. (optional) try: @@ -6032,17 +6008,17 @@ Retrieve the SNMP settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_snmp_settings() @@ -6080,17 +6056,17 @@ ssh settings ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_ssh_settings() @@ -6117,6 +6093,60 @@ This endpoint does not need any parameter. [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) +# **get_swift_account** +> SwiftAccounts get_swift_account(swift_account_id, zone=zone) + + + +List a swift account. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +swift_account_id = 'swift_account_id_example' # str | List a swift account. +zone = 'zone_example' # str | Access zone which contains Swift account. (optional) + +try: + api_response = api_instance.get_swift_account(swift_account_id, zone=zone) + pprint(api_response) +except ApiException as e: + print("Exception when calling ProtocolsApi->get_swift_account: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **swift_account_id** | **str**| List a swift account. | + **zone** | **str**| Access zone which contains Swift account. | [optional] + +### Return type + +[**SwiftAccounts**](SwiftAccounts.md) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + # **list_hdfs_crypto_encryption_zones** > HdfsCryptoEncryptionZones list_hdfs_crypto_encryption_zones(dir=dir, limit=limit, resume=resume, sort=sort, zone=zone) @@ -6128,17 +6158,17 @@ Retrieve a list of Encryption Zones. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -6188,17 +6218,17 @@ List all proxyusers. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -6246,17 +6276,17 @@ List all racks. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -6304,17 +6334,17 @@ Get list of preferences. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) scope = 'scope_example' # str | Either cluster or a network subnet defined in OneFS. (optional) @@ -6360,17 +6390,17 @@ List all ndmp administrators. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.list_ndmp_users() @@ -6408,17 +6438,17 @@ List all NFS aliases. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) check = true # bool | Check for conflicts when listing aliases. (optional) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) @@ -6470,17 +6500,17 @@ List all NFS exports. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) check = true # bool | Check for conflicts when listing exports. (optional) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) @@ -6538,17 +6568,17 @@ List all NTP servers. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -6596,17 +6626,17 @@ List all buckets. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) offset = 56 # int | The position of the first item returned for a paginated query within the full result set. (optional) @@ -6660,17 +6690,17 @@ Get user secret key information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.list_s3_mykeys() @@ -6708,17 +6738,17 @@ Get the current SMB log filters. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) level = 'level_example' # str | Valid SMB logging levels (optional) sort = 'sort_example' # str | The field that will be used for sorting. (optional) @@ -6764,17 +6794,17 @@ List all shares. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) offset = 56 # int | The position of the first item returned for a paginated query within the full result set. (optional) @@ -6819,8 +6849,60 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) +# **list_swift_accounts** +> SwiftAccountsExtended list_swift_accounts(zone=zone) + + + +List all swift accounts. + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +zone = 'zone_example' # str | Access zone which contains Swift accounts. (optional) + +try: + api_response = api_instance.list_swift_accounts(zone=zone) + pprint(api_response) +except ApiException as e: + print("Exception when calling ProtocolsApi->list_swift_accounts: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **zone** | **str**| Access zone which contains Swift accounts. | [optional] + +### Return type + +[**SwiftAccountsExtended**](SwiftAccountsExtended.md) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + # **update_ftp_settings** -> update_ftp_settings(ftp_settings, force=force) +> update_ftp_settings(ftp_settings) @@ -6830,22 +6912,21 @@ Modify the FTP settings. All input fields are optional, but one or more must be ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -ftp_settings = isilon_sdk.v9_11_0.FtpSettingsExtended() # FtpSettingsExtended | -force = true # bool | Force modify FTP settings, even if it leads to FTP service being blocked (optional) +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +ftp_settings = isilon_sdk.v9_4_0.FtpSettingsExtended() # FtpSettingsExtended | try: - api_instance.update_ftp_settings(ftp_settings, force=force) + api_instance.update_ftp_settings(ftp_settings) except ApiException as e: print("Exception when calling ProtocolsApi->update_ftp_settings: %s\n" % e) ``` @@ -6855,7 +6936,6 @@ except ApiException as e: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **ftp_settings** | [**FtpSettingsExtended**](FtpSettingsExtended.md)| | - **force** | **bool**| Force modify FTP settings, even if it leads to FTP service being blocked | [optional] ### Return type @@ -6883,18 +6963,18 @@ Modify HDFS crypto settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -hdfs_crypto_settings = isilon_sdk.v9_11_0.HdfsCryptoSettingsSettings() # HdfsCryptoSettingsSettings | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +hdfs_crypto_settings = isilon_sdk.v9_4_0.HdfsCryptoSettingsSettings() # HdfsCryptoSettingsSettings | zone = 'zone_example' # str | Specifies which access zone to use. (optional) try: @@ -6936,18 +7016,18 @@ Modify HDFS FSImage job properties. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -hdfs_fsimage_job_settings = isilon_sdk.v9_11_0.HdfsFsimageJobSettingsSettings() # HdfsFsimageJobSettingsSettings | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +hdfs_fsimage_job_settings = isilon_sdk.v9_4_0.HdfsFsimageJobSettingsSettings() # HdfsFsimageJobSettingsSettings | zone = 'zone_example' # str | Access zone which contains job settings. (optional) try: @@ -6989,18 +7069,18 @@ Modify HDFS FSImage properties. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -hdfs_fsimage_settings = isilon_sdk.v9_11_0.HdfsFsimageSettingsSettings() # HdfsFsimageSettingsSettings | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +hdfs_fsimage_settings = isilon_sdk.v9_4_0.HdfsFsimageSettingsSettings() # HdfsFsimageSettingsSettings | zone = 'zone_example' # str | Access zone which contains FSImage settings. (optional) try: @@ -7042,18 +7122,18 @@ Modify HDFS INotify properties. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -hdfs_inotify_settings = isilon_sdk.v9_11_0.HdfsInotifySettingsSettings() # HdfsInotifySettingsSettings | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +hdfs_inotify_settings = isilon_sdk.v9_4_0.HdfsInotifySettingsSettings() # HdfsInotifySettingsSettings | zone = 'zone_example' # str | Access zone which contains INotify settings. (optional) try: @@ -7095,18 +7175,18 @@ Modify the HDFS service log-level. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -hdfs_log_level = isilon_sdk.v9_11_0.HdfsLogLevel() # HdfsLogLevel | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +hdfs_log_level = isilon_sdk.v9_4_0.HdfsLogLevel() # HdfsLogLevel | try: api_instance.update_hdfs_log_level(hdfs_log_level) @@ -7146,18 +7226,18 @@ Modify an HDFS proxyuser. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -hdfs_proxyuser = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +hdfs_proxyuser = isilon_sdk.v9_4_0.Empty() # Empty | hdfs_proxyuser_id = 'hdfs_proxyuser_id_example' # str | Modify an HDFS proxyuser. zone = 'zone_example' # str | Access zone which contains HDFS proxyuser. (optional) @@ -7201,18 +7281,18 @@ Modify the HDFS rack ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -hdfs_rack = isilon_sdk.v9_11_0.HdfsRack() # HdfsRack | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +hdfs_rack = isilon_sdk.v9_4_0.HdfsRack() # HdfsRack | hdfs_rack_id = 'hdfs_rack_id_example' # str | Modify the HDFS rack zone = 'zone_example' # str | Access zone which contains HDFS rack. (optional) @@ -7256,18 +7336,18 @@ Modify HDFS ranger-plugin properties. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -hdfs_ranger_plugin_settings = isilon_sdk.v9_11_0.HdfsRangerPluginSettingsSettings() # HdfsRangerPluginSettingsSettings | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +hdfs_ranger_plugin_settings = isilon_sdk.v9_4_0.HdfsRangerPluginSettingsSettings() # HdfsRangerPluginSettingsSettings | zone = 'zone_example' # str | Access zone which contains HDFS ranger-plugin settings. (optional) try: @@ -7309,18 +7389,18 @@ Modify HDFS properties. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -hdfs_settings = isilon_sdk.v9_11_0.HdfsSettingsSettings() # HdfsSettingsSettings | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +hdfs_settings = isilon_sdk.v9_4_0.HdfsSettingsSettings() # HdfsSettingsSettings | zone = 'zone_example' # str | Access zone which contains HDFS settings. (optional) try: @@ -7362,18 +7442,18 @@ Modify HDFS global settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -hdfs_settings_global = isilon_sdk.v9_11_0.HdfsSettingsGlobalGlobalSettings() # HdfsSettingsGlobalGlobalSettings | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +hdfs_settings_global = isilon_sdk.v9_4_0.HdfsSettingsGlobalGlobalSettings() # HdfsSettingsGlobalGlobalSettings | try: api_instance.update_hdfs_settings_global(hdfs_settings_global) @@ -7413,18 +7493,18 @@ Modify HTTP services. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -http_service = isilon_sdk.v9_11_0.HttpService() # HttpService | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +http_service = isilon_sdk.v9_4_0.HttpService() # HttpService | http_service_id = 'http_service_id_example' # str | Modify HTTP services. try: @@ -7466,18 +7546,18 @@ Modify HTTP properties. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -http_settings = isilon_sdk.v9_11_0.HttpSettingsExtended() # HttpSettingsExtended | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +http_settings = isilon_sdk.v9_4_0.HttpSettingsSettings() # HttpSettingsSettings | try: api_instance.update_http_settings(http_settings) @@ -7489,7 +7569,7 @@ except ApiException as e: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **http_settings** | [**HttpSettingsExtended**](HttpSettingsExtended.md)| | + **http_settings** | [**HttpSettingsSettings**](HttpSettingsSettings.md)| | ### Return type @@ -7517,18 +7597,18 @@ Modify ndmp diagnostics settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -ndmp_diagnostics = isilon_sdk.v9_11_0.NdmpDiagnosticsDiagnostics() # NdmpDiagnosticsDiagnostics | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +ndmp_diagnostics = isilon_sdk.v9_4_0.NdmpDiagnosticsDiagnostics() # NdmpDiagnosticsDiagnostics | try: api_instance.update_ndmp_diagnostics(ndmp_diagnostics) @@ -7568,18 +7648,18 @@ Modify one or more settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -ndmp_settings_global = isilon_sdk.v9_11_0.NdmpSettingsGlobalGlobal() # NdmpSettingsGlobalGlobal | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +ndmp_settings_global = isilon_sdk.v9_4_0.NdmpSettingsGlobalGlobal() # NdmpSettingsGlobalGlobal | try: api_instance.update_ndmp_settings_global(ndmp_settings_global) @@ -7619,18 +7699,18 @@ Modify a preferred ip preference. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -ndmp_settings_preferred_ip = isilon_sdk.v9_11_0.NdmpSettingsPreferredIp() # NdmpSettingsPreferredIp | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +ndmp_settings_preferred_ip = isilon_sdk.v9_4_0.NdmpSettingsPreferredIp() # NdmpSettingsPreferredIp | ndmp_settings_preferred_ip_id = 'ndmp_settings_preferred_ip_id_example' # str | Modify a preferred ip preference. try: @@ -7672,18 +7752,18 @@ Modify or create a NDMP preferred environment variable. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -ndmp_settings_variable = isilon_sdk.v9_11_0.NdmpSettingsVariable() # NdmpSettingsVariable | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +ndmp_settings_variable = isilon_sdk.v9_4_0.NdmpSettingsVariable() # NdmpSettingsVariable | ndmp_settings_variable_id = 'ndmp_settings_variable_id_example' # str | Modify or create a NDMP preferred environment variable. name = 'name_example' # str | Name of the variable to modify. (optional) @@ -7727,18 +7807,18 @@ Modify the user ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -ndmp_user = isilon_sdk.v9_11_0.NdmpUser() # NdmpUser | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +ndmp_user = isilon_sdk.v9_4_0.NdmpUser() # NdmpUser | ndmp_user_id = 'ndmp_user_id_example' # str | Modify the user try: @@ -7780,18 +7860,18 @@ Modify the alias. All input fields are optional, but one or more must be supplie ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -nfs_alias = isilon_sdk.v9_11_0.NfsAlias() # NfsAlias | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +nfs_alias = isilon_sdk.v9_4_0.NfsAlias() # NfsAlias | nfs_alias_id = 'nfs_alias_id_example' # str | Modify the alias. All input fields are optional, but one or more must be supplied. zone = 'zone_example' # str | Access zone (optional) @@ -7835,18 +7915,18 @@ Modify the export. All input fields are optional, but one or more must be suppli ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -nfs_export = isilon_sdk.v9_11_0.NfsExport() # NfsExport | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +nfs_export = isilon_sdk.v9_4_0.NfsExport() # NfsExport | nfs_export_id = 'nfs_export_id_example' # str | Modify the export. All input fields are optional, but one or more must be supplied. force = true # bool | If true, the export will be updated even if that change conflicts with another export. (optional) ignore_bad_auth = true # bool | Ignore invalid users. (optional) @@ -7900,18 +7980,18 @@ Set the current NFS service logging level. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -nfs_log_level = isilon_sdk.v9_11_0.NfsLogLevel() # NfsLogLevel | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +nfs_log_level = isilon_sdk.v9_4_0.NfsLogLevel() # NfsLogLevel | try: api_instance.update_nfs_log_level(nfs_log_level) @@ -7951,18 +8031,18 @@ Modify the current NFS netgroup settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -nfs_netgroup = isilon_sdk.v9_11_0.NfsNetgroup() # NfsNetgroup | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +nfs_netgroup = isilon_sdk.v9_4_0.NfsNetgroup() # NfsNetgroup | host = 'host_example' # str | Host to retrieve netgroup cache settings for. (optional) try: @@ -8004,18 +8084,18 @@ Modify the default values for NFS exports. All input fields are optional, but on ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -nfs_settings_export = isilon_sdk.v9_11_0.NfsSettingsExportSettings() # NfsSettingsExportSettings | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +nfs_settings_export = isilon_sdk.v9_4_0.NfsSettingsExportSettings() # NfsSettingsExportSettings | zone = 'zone_example' # str | Access zone (optional) try: @@ -8051,24 +8131,24 @@ void (empty response body) -Modify the default values for NFS exports. All input fields areoptional, but one or more must be supplied. +Modify the default values for NFS exports. All input fields are optional, but one or more must be supplied. ### Example ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -nfs_settings_global = isilon_sdk.v9_11_0.NfsSettingsGlobalSettings() # NfsSettingsGlobalSettings | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +nfs_settings_global = isilon_sdk.v9_4_0.NfsSettingsGlobalSettings() # NfsSettingsGlobalSettings | try: api_instance.update_nfs_settings_global(nfs_settings_global) @@ -8108,18 +8188,18 @@ Modify the NFS server settings for this zone. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -nfs_settings_zone = isilon_sdk.v9_11_0.NfsSettingsZoneSettings() # NfsSettingsZoneSettings | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +nfs_settings_zone = isilon_sdk.v9_4_0.NfsSettingsZoneSettings() # NfsSettingsZoneSettings | zone = 'zone_example' # str | Access zone (optional) try: @@ -8161,18 +8241,18 @@ Modify the key value for an NTP server. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -ntp_server = isilon_sdk.v9_11_0.NtpServer() # NtpServer | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +ntp_server = isilon_sdk.v9_4_0.NtpServer() # NtpServer | ntp_server_id = 'ntp_server_id_example' # str | Modify the key value for an NTP server. try: @@ -8214,18 +8294,18 @@ Modify the NTP settings. All input fields are optional, but one or more must be ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -ntp_settings = isilon_sdk.v9_11_0.NtpSettingsSettings() # NtpSettingsSettings | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +ntp_settings = isilon_sdk.v9_4_0.NtpSettingsSettings() # NtpSettingsSettings | try: api_instance.update_ntp_settings(ntp_settings) @@ -8265,18 +8345,18 @@ Modify bucket. All input fields are optional, but one or more must be supplied. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -s3_bucket = isilon_sdk.v9_11_0.S3Bucket() # S3Bucket | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +s3_bucket = isilon_sdk.v9_4_0.S3Bucket() # S3Bucket | s3_bucket_id = 's3_bucket_id_example' # str | Modify bucket. All input fields are optional, but one or more must be supplied. zone = 'zone_example' # str | Specifies which access zone to use. (optional) @@ -8320,18 +8400,18 @@ Set the current S3 service logging level. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -s3_log_level = isilon_sdk.v9_11_0.S3LogLevel() # S3LogLevel | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +s3_log_level = isilon_sdk.v9_4_0.S3LogLevel() # S3LogLevel | try: api_instance.update_s3_log_level(s3_log_level) @@ -8371,18 +8451,18 @@ Modify global S3 bucket settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -s3_settings_global = isilon_sdk.v9_11_0.S3SettingsGlobalSettings() # S3SettingsGlobalSettings | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +s3_settings_global = isilon_sdk.v9_4_0.S3SettingsGlobalSettings() # S3SettingsGlobalSettings | try: api_instance.update_s3_settings_global(s3_settings_global) @@ -8422,18 +8502,18 @@ Modify the S3 bucket settings for this zone. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -s3_settings_zone = isilon_sdk.v9_11_0.S3SettingsZoneSettings() # S3SettingsZoneSettings | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +s3_settings_zone = isilon_sdk.v9_4_0.S3SettingsZoneSettings() # S3SettingsZoneSettings | zone = 'zone_example' # str | Access zone (optional) try: @@ -8475,18 +8555,18 @@ Set the current SMB logging level. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -smb_log_level = isilon_sdk.v9_11_0.SmbLogLevel() # SmbLogLevel | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +smb_log_level = isilon_sdk.v9_4_0.SmbLogLevel() # SmbLogLevel | try: api_instance.update_smb_log_level(smb_log_level) @@ -8526,18 +8606,18 @@ Modify one or more settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -smb_settings_global = isilon_sdk.v9_11_0.SmbSettingsGlobalExtended() # SmbSettingsGlobalExtended | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +smb_settings_global = isilon_sdk.v9_4_0.SmbSettingsGlobalExtended() # SmbSettingsGlobalExtended | try: api_instance.update_smb_settings_global(smb_settings_global) @@ -8577,18 +8657,18 @@ Modify one or more settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -smb_settings_share = isilon_sdk.v9_11_0.SmbSettingsShareExtended() # SmbSettingsShareExtended | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +smb_settings_share = isilon_sdk.v9_4_0.SmbSettingsShareExtended() # SmbSettingsShareExtended | zone = 'zone_example' # str | Specifies which access zone to use. (optional) try: @@ -8630,18 +8710,18 @@ Modify one or more settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -smb_settings_zone = isilon_sdk.v9_11_0.SmbSettingsZoneSettings() # SmbSettingsZoneSettings | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +smb_settings_zone = isilon_sdk.v9_4_0.SmbSettingsZoneSettings() # SmbSettingsZoneSettings | zone = 'zone_example' # str | Name of the access zone (optional) try: @@ -8683,18 +8763,18 @@ Modify share. All input fields are optional, but one or more must be supplied. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -smb_share = isilon_sdk.v9_11_0.SmbShare() # SmbShare | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +smb_share = isilon_sdk.v9_4_0.SmbShare() # SmbShare | smb_share_id = 'smb_share_id_example' # str | Modify share. All input fields are optional, but one or more must be supplied. zone = 'zone_example' # str | Specifies which access zone to use. (optional) @@ -8738,18 +8818,18 @@ Modify the SNMP settings. All input fields are optional, but one or more must be ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -snmp_settings = isilon_sdk.v9_11_0.SnmpSettingsExtended() # SnmpSettingsExtended | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +snmp_settings = isilon_sdk.v9_4_0.SnmpSettingsExtended() # SnmpSettingsExtended | try: api_instance.update_snmp_settings(snmp_settings) @@ -8789,18 +8869,18 @@ ssh settings ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -ssh_settings = isilon_sdk.v9_11_0.SshSettingsSettings() # SshSettingsSettings | +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +ssh_settings = isilon_sdk.v9_4_0.SshSettingsExtended() # SshSettingsExtended | try: api_instance.update_ssh_settings(ssh_settings) @@ -8812,7 +8892,62 @@ except ApiException as e: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **ssh_settings** | [**SshSettingsSettings**](SshSettingsSettings.md)| | + **ssh_settings** | [**SshSettingsExtended**](SshSettingsExtended.md)| | + +### Return type + +void (empty response body) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **update_swift_account** +> update_swift_account(swift_account, swift_account_id, zone=zone) + + + +Modify a Swift account + +### Example +```python +from __future__ import print_function +import time +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException +from pprint import pprint + +# Configure HTTP basic authorization: basicAuth +configuration = isilon_sdk.v9_4_0.Configuration() +configuration.username = 'YOUR_USERNAME' +configuration.password = 'YOUR_PASSWORD' + +# create an instance of the API class +api_instance = isilon_sdk.v9_4_0.ProtocolsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +swift_account = isilon_sdk.v9_4_0.SwiftAccount() # SwiftAccount | +swift_account_id = 'swift_account_id_example' # str | Modify a Swift account +zone = 'zone_example' # str | Access zone which contains Swift account. (optional) + +try: + api_instance.update_swift_account(swift_account, swift_account_id, zone=zone) +except ApiException as e: + print("Exception when calling ProtocolsApi->update_swift_account: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **swift_account** | [**SwiftAccount**](SwiftAccount.md)| | + **swift_account_id** | **str**| Modify a Swift account | + **zone** | **str**| Access zone which contains Swift account. | [optional] ### Return type diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProtocolsHdfsApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProtocolsHdfsApi.md similarity index 86% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProtocolsHdfsApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProtocolsHdfsApi.md index 643d36f4f..ab992fa2a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProtocolsHdfsApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProtocolsHdfsApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.ProtocolsHdfsApi +# isilon_sdk.v9_4_0.ProtocolsHdfsApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -21,18 +21,18 @@ Add a member to the HDFS proxyuser. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsHdfsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -proxyusers_name_member = isilon_sdk.v9_11_0.AuthAccessAccessItemFileGroup() # AuthAccessAccessItemFileGroup | +api_instance = isilon_sdk.v9_4_0.ProtocolsHdfsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +proxyusers_name_member = isilon_sdk.v9_4_0.AuthAccessAccessItemFileGroup() # AuthAccessAccessItemFileGroup | name = 'name_example' # str | zone = 'zone_example' # str | Specifies which access zone to use. (optional) @@ -77,17 +77,17 @@ Remove a member from the HDFS proxyuser. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsHdfsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsHdfsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) proxyusers_name_member_id = 'proxyusers_name_member_id_example' # str | Remove a member from the HDFS proxyuser. name = 'name_example' # str | zone = 'zone_example' # str | Specifies which access zone to use. (optional) @@ -132,17 +132,17 @@ List all the members of the HDFS proxyuser. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsHdfsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ProtocolsHdfsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) name = 'name_example' # str | zone = 'zone_example' # str | Specifies which access zone to use. (optional) @@ -186,18 +186,18 @@ Create a new HDFS proxyuser. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ProtocolsHdfsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -proxyusers_name_member = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.ProtocolsHdfsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +proxyusers_name_member = isilon_sdk.v9_4_0.Empty() # Empty | proxyusers_name_member_id = 'proxyusers_name_member_id_example' # str | Create a new HDFS proxyuser. name = 'name_example' # str | zone = 'zone_example' # str | Specifies which access zone to use. (optional) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProtocolsSmbSessions.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProtocolsSmbSessions.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProtocolsSmbSessions.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProtocolsSmbSessions.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProtocolsSmbSessionsSession.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProtocolsSmbSessionsSession.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProtocolsSmbSessionsSession.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProtocolsSmbSessionsSession.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersAds.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersAds.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersAds.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersAds.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersAdsAdsItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersAdsAdsItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersAdsAdsItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersAdsAdsItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersAdsAdsItemExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersAdsAdsItemExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersAdsAdsItemExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersAdsAdsItemExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersAdsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersAdsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersAdsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersAdsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersAdsIdParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersAdsIdParams.md similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersAdsIdParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersAdsIdParams.md index 34e57513b..cd64bf398 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersAdsIdParams.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersAdsIdParams.md @@ -26,7 +26,6 @@ Name | Type | Description | Notes **lookup_normalize_groups** | **bool** | Normalizes AD group names to lowercase before look up. | [optional] **lookup_normalize_users** | **bool** | Normalize AD user names to lowercase before look up. | [optional] **lookup_users** | **bool** | Looks up AD users in other providers before allocating a user ID. | [optional] -**machine_account** | **str** | Specifies the machine account name when creating a SAM account with Active Directory. | [optional] **machine_password_changes** | **bool** | Enables periodic changes of the machine password for security. | [optional] **machine_password_lifespan** | **int** | Sets maximum age of a password in seconds. | [optional] **node_dc_affinity** | **str** | Specifies the domain controller for which the node has affinity. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersAdsItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersAdsItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersAdsItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersAdsItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersDuo.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersDuo.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersDuo.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersDuo.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersDuoExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersDuoExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersDuoExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersDuoExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersDuoSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersDuoSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersDuoSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersDuoSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersFile.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersFile.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersFile.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersFile.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersFileFileItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersFileFileItem.md similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersFileFileItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersFileFileItem.md index 6120f9f47..59cdfd5a8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersFileFileItem.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersFileFileItem.md @@ -25,7 +25,6 @@ Name | Type | Description | Notes **normalize_users** | **bool** | Normalizes user names to lowercase before look up. | [optional] **ntlm_support** | **str** | Specifies which NTLM versions to support for users with NTLM-compatible credentials. | [optional] **password_file** | **str** | Specifies the location of the file containing information about users. | [optional] -**password_hash_type** | **str** | Specifies the password hash algorithm to use. | [optional] **provider_domain** | **str** | Specifies the domain for the provider. | [optional] **restrict_findable** | **bool** | If true, checks the provider for filtered lists of findable and unfindable users and groups. | [optional] **restrict_listable** | **bool** | If true, checks the provider for filtered lists of listable and unlistable users and groups. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersFileIdParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersFileIdParams.md similarity index 93% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersFileIdParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersFileIdParams.md index 09a9d0ab9..e80823d96 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersFileIdParams.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersFileIdParams.md @@ -5,7 +5,6 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **authentication** | **bool** | Enables authentication and identity mapping through the authentication provider. | [optional] **create_home_directory** | **bool** | Automatically creates a home directory on the first login. | [optional] -**delete_password_hashes** | **bool** | Delete all password hashes that do not match Password Hash Type and force password change at next login. | [optional] **enabled** | **bool** | Enables the file provider. | [optional] **enumerate_groups** | **bool** | Enables the provider to enumerate groups. | [optional] **enumerate_users** | **bool** | Enables the provider to enumerate users. | [optional] @@ -25,7 +24,6 @@ Name | Type | Description | Notes **normalize_users** | **bool** | Normalizes user names to lowercase before look up. | [optional] **ntlm_support** | **str** | Specifies which NTLM versions to support for users with NTLM-compatible credentials. | [optional] **password_file** | **str** | Specifies the location of the file containing information about users. | [optional] -**password_hash_type** | **str** | Specifies the password hash algorithm to use. | [optional] **provider_domain** | **str** | Specifies the domain for the provider. | [optional] **restrict_findable** | **bool** | If true, checks the provider for filtered lists of findable and unfindable users and groups. | [optional] **restrict_listable** | **bool** | If true, checks the provider for filtered lists of listable and unlistable users and groups. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersFileItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersFileItem.md similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersFileItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersFileItem.md index f31ff811a..581a69a68 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersFileItem.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersFileItem.md @@ -24,7 +24,6 @@ Name | Type | Description | Notes **normalize_users** | **bool** | Normalizes user names to lowercase before look up. | [optional] **ntlm_support** | **str** | Specifies which NTLM versions to support for users with NTLM-compatible credentials. | [optional] **password_file** | **str** | Specifies the location of the file containing information about users. | -**password_hash_type** | **str** | Specifies the password hash algorithm to use. | [optional] **provider_domain** | **str** | Specifies the domain for the provider. | [optional] **restrict_findable** | **bool** | If true, checks the provider for filtered lists of findable and unfindable users and groups. | [optional] **restrict_listable** | **bool** | If true, checks the provider for filtered lists of listable and unlistable users and groups. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersKrb5.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersKrb5.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersKrb5.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersKrb5.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersKrb5Extended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersKrb5Extended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersKrb5Extended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersKrb5Extended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersKrb5IdParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersKrb5IdParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersKrb5IdParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersKrb5IdParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersKrb5IdParamsKeytabEntry.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersKrb5IdParamsKeytabEntry.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersKrb5IdParamsKeytabEntry.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersKrb5IdParamsKeytabEntry.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersKrb5Item.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersKrb5Item.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersKrb5Item.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersKrb5Item.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersKrb5Krb5Item.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersKrb5Krb5Item.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersKrb5Krb5Item.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersKrb5Krb5Item.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersKrb5Krb5ItemExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersKrb5Krb5ItemExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersKrb5Krb5ItemExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersKrb5Krb5ItemExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersLdap.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersLdap.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersLdap.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersLdap.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersLdapIdParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersLdapIdParams.md similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersLdapIdParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersLdapIdParams.md index df9a363b9..3b68a1455 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersLdapIdParams.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersLdapIdParams.md @@ -48,7 +48,6 @@ Name | Type | Description | Notes **normalize_users** | **bool** | Normalizes user names to lowercase before look up. | [optional] **nt_password_attribute** | **str** | Specifies the LDAP NT Password attribute. | [optional] **ntlm_support** | **str** | Specifies which NTLM versions to support for users with NTLM-compatible credentials. | [optional] -**ocsp_server_uris** | **list[str]** | Specifies the OCSP server URIs. | [optional] **provider_domain** | **str** | Specifies the provider domain. | [optional] **require_secure_connection** | **bool** | Determines whether to continue over a non-TLS connection. | [optional] **restrict_findable** | **bool** | If true, checks the provider for filtered lists of findable and unfindable users and groups. | [optional] @@ -68,7 +67,6 @@ Name | Type | Description | Notes **ssh_public_key_attribute** | **str** | Sets the attribute name that indicates the SSH Public Key for the user. | [optional] **template** | **str** | Specifies template to be used to create the LDAP provider. The list of templates can be found at /auth/ldap-templates. Any fields directly defined in your request will override the template values. | [optional] **tls_protocol_min** | **str** | Specifies the minimum TLS protocol version. | [optional] -**tls_revocation_check_level** | **str** | This setting controls the behavior of the certificate revocation checking algorithm when the LDAP provider is presented with a digital certificate by an LDAP server. | [optional] **uid_attribute** | **str** | Specifies the LDAP UID Number attribute. | [optional] **unfindable_groups** | **list[str]** | Specifies the groups that cannot be resolved by the provider. | [optional] **unfindable_users** | **list[str]** | Specifies users that cannot be resolved by the provider. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersLdapItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersLdapItem.md similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersLdapItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersLdapItem.md index 519b0101a..e4f8c0773 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersLdapItem.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersLdapItem.md @@ -49,7 +49,6 @@ Name | Type | Description | Notes **normalize_users** | **bool** | Normalizes user names to lowercase before look up. | [optional] **nt_password_attribute** | **str** | Specifies the LDAP NT Password attribute. | [optional] **ntlm_support** | **str** | Specifies which NTLM versions to support for users with NTLM-compatible credentials. | [optional] -**ocsp_server_uris** | **list[str]** | Specifies the OCSP server URIs. | [optional] **provider_domain** | **str** | Specifies the provider domain. | [optional] **require_secure_connection** | **bool** | Determines whether to continue over a non-TLS connection. | [optional] **restrict_findable** | **bool** | If true, checks the provider for filtered lists of findable and unfindable users and groups. | [optional] @@ -69,7 +68,6 @@ Name | Type | Description | Notes **ssh_public_key_attribute** | **str** | Sets the attribute name that indicates the SSH Public Key for the user. | [optional] **template** | **str** | Specifies template to be used to create the LDAP provider. The list of templates can be found at /auth/ldap-templates. Any fields directly defined in your request will override the template values. | [optional] **tls_protocol_min** | **str** | Specifies the minimum TLS protocol version. | [optional] -**tls_revocation_check_level** | **str** | This setting controls the behavior of the certificate revocation checking algorithm when the LDAP provider is presented with a digital certificate by an LDAP server. | [optional] **uid_attribute** | **str** | Specifies the LDAP UID Number attribute. | [optional] **unfindable_groups** | **list[str]** | Specifies the groups that cannot be resolved by the provider. | [optional] **unfindable_users** | **list[str]** | Specifies users that cannot be resolved by the provider. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersLdapLdapItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersLdapLdapItem.md similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersLdapLdapItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersLdapLdapItem.md index 4249f130d..ca403f428 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersLdapLdapItem.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersLdapLdapItem.md @@ -49,7 +49,6 @@ Name | Type | Description | Notes **normalize_users** | **bool** | Normalizes user names to lowercase before look up. | [optional] **nt_password_attribute** | **str** | Specifies the LDAP NT Password attribute. | [optional] **ntlm_support** | **str** | Specifies which NTLM versions to support for users with NTLM-compatible credentials. | [optional] -**ocsp_server_uris** | **list[str]** | Specifies the OCSP server URIs. | [optional] **provider_domain** | **str** | Specifies the provider domain. | [optional] **require_secure_connection** | **bool** | Determines whether to continue over a non-TLS connection. | [optional] **restrict_findable** | **bool** | If true, checks the provider for filtered lists of findable and unfindable users and groups. | [optional] @@ -70,7 +69,6 @@ Name | Type | Description | Notes **status** | **str** | Specifies the status of the provider. | [optional] **system** | **bool** | If true, indicates that this provider instance was created by OneFS and cannot be removed. | [optional] **tls_protocol_min** | **str** | Specifies the minimum TLS protocol version. | [optional] -**tls_revocation_check_level** | **str** | This setting controls the behavior of the certificate revocation checking algorithm when the LDAP provider is presented with a digital certificate by an LDAP server. | [optional] **uid_attribute** | **str** | Specifies the LDAP UID Number attribute. | [optional] **unfindable_groups** | **list[str]** | Specifies the groups that cannot be resolved by the provider. | [optional] **unfindable_users** | **list[str]** | Specifies users that cannot be resolved by the provider. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersLocal.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersLocal.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersLocal.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersLocal.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersLocalIdParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersLocalIdParams.md similarity index 73% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersLocalIdParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersLocalIdParams.md index 0db91c3ff..e44f322e8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersLocalIdParams.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersLocalIdParams.md @@ -5,24 +5,18 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **authentication** | **bool** | If true, enables authentication and identity management through the authentication provider. | [optional] **create_home_directory** | **bool** | Automatically creates the home directory on the first login. | [optional] -**delete_password_hashes** | **bool** | Delete all password hashes that do not match Password Hash Type and force password change at next login. | [optional] -**delete_password_history** | **bool** | Delete password history for all local users | [optional] **home_directory_template** | **str** | Specifies the path to the home directory template. | [optional] **lockout_duration** | **int** | Specifies the length of time in seconds that an account will be inaccessible after multiple failed login attempts. | [optional] **lockout_threshold** | **int** | Specifies the number of failed login attempts necessary before an account is locked. | [optional] **lockout_window** | **int** | Specifies the duration of time in seconds in which the number of failed attempts set in the 'lockout_threshold' parameter must be made before an account is locked. | [optional] **login_shell** | **str** | Specifies the login shell path. | [optional] **machine_name** | **str** | Specifies the domain for this provider through which users and groups are qualified. | [optional] -**max_inactivity_days** | **int** | Specifies the maximum number of days a user account can be inactive before it will be disabled. | [optional] **max_password_age** | **int** | Specifies the maximum password age in seconds. | [optional] **min_password_age** | **int** | Specifies the minimum password age in seconds. | [optional] **min_password_length** | **int** | Specifies the minimum password length. | [optional] **name** | **str** | Specifies the local provider name. | [optional] -**password_chars_changed** | **int** | Specifies the minimum number of characters changed when a password is updated. | [optional] **password_complexity** | **list[str]** | Specifies the conditions required for a password. | [optional] -**password_hash_type** | **str** | Specifies the password hash algorithm to use. | [optional] **password_history_length** | **int** | Specifies the number of previous passwords to store. | [optional] -**password_percent_changed** | **int** | Specifies the minimum percent of characters changed when a password is updated. | [optional] **password_prompt_time** | **int** | Specifies the time in seconds remaining before a user will be prompted for a password change. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersLocalLocalItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersLocalLocalItem.md similarity index 82% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersLocalLocalItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersLocalLocalItem.md index 5aaf35292..33ddd3529 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersLocalLocalItem.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersLocalLocalItem.md @@ -12,16 +12,12 @@ Name | Type | Description | Notes **lockout_window** | **int** | Specifies the duration of time in seconds in which the number of failed attempts set in the 'lockout_threshold' parameter must be made before an account is locked. | [optional] **login_shell** | **str** | Specifies the login shell path. | [optional] **machine_name** | **str** | Specifies the domain for this provider through which users and groups are qualified. | [optional] -**max_inactivity_days** | **int** | Specifies the maximum number of days a user account can be inactive before it will be disabled. | [optional] **max_password_age** | **int** | Specifies the maximum password age in seconds. | [optional] **min_password_age** | **int** | Specifies the minimum password age in seconds. | [optional] **min_password_length** | **int** | Specifies the minimum password length. | [optional] **name** | **str** | Specifies the local provider name. | [optional] -**password_chars_changed** | **int** | Specifies the minimum number of characters changed when a password is updated. | [optional] **password_complexity** | **list[str]** | Specifies the conditions required for a password. | [optional] -**password_hash_type** | **str** | Specifies the password hash algorithm to use. | [optional] **password_history_length** | **int** | Specifies the number of previous passwords to store. | [optional] -**password_percent_changed** | **int** | Specifies the minimum percent of characters changed when a password is updated. | [optional] **password_prompt_time** | **int** | Specifies the time in seconds remaining before a user will be prompted for a password change. | [optional] **status** | **str** | Specifies the status of the provider. | [optional] **system** | **bool** | If true, indicates that this provider instance was created by OneFS and cannot be removed. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersNis.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersNis.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersNis.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersNis.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersNisIdParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersNisIdParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersNisIdParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersNisIdParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersNisItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersNisItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersNisItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersNisItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersNisNisItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersNisNisItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersNisNisItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersNisNisItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSummary.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersSummary.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSummary.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersSummary.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSummaryProviderInstance.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersSummaryProviderInstance.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSummaryProviderInstance.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersSummaryProviderInstance.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSummaryProviderInstanceConnection.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersSummaryProviderInstanceConnection.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProvidersSummaryProviderInstanceConnection.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProvidersSummaryProviderInstanceConnection.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ProxyusersNameMembers.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ProxyusersNameMembers.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ProxyusersNameMembers.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ProxyusersNameMembers.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaApi.md similarity index 86% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaApi.md index a16e5149b..e127d2738 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaApi.md @@ -1,32 +1,32 @@ -# isilon_sdk.v9_11_0.QuotaApi +# isilon_sdk.v9_4_0.QuotaApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* Method | HTTP request | Description ------------- | ------------- | ------------- -[**create_quota_quota**](QuotaApi.md#create_quota_quota) | **POST** /platform/19/quota/quotas | +[**create_quota_quota**](QuotaApi.md#create_quota_quota) | **POST** /platform/15/quota/quotas | [**create_quota_report**](QuotaApi.md#create_quota_report) | **POST** /platform/1/quota/reports | [**create_settings_mapping**](QuotaApi.md#create_settings_mapping) | **POST** /platform/1/quota/settings/mappings | [**create_settings_notification**](QuotaApi.md#create_settings_notification) | **POST** /platform/7/quota/settings/notifications | -[**delete_quota_quota**](QuotaApi.md#delete_quota_quota) | **DELETE** /platform/19/quota/quotas/{QuotaQuotaId} | -[**delete_quota_quotas**](QuotaApi.md#delete_quota_quotas) | **DELETE** /platform/19/quota/quotas | +[**delete_quota_quota**](QuotaApi.md#delete_quota_quota) | **DELETE** /platform/15/quota/quotas/{QuotaQuotaId} | +[**delete_quota_quotas**](QuotaApi.md#delete_quota_quotas) | **DELETE** /platform/15/quota/quotas | [**delete_quota_report**](QuotaApi.md#delete_quota_report) | **DELETE** /platform/1/quota/reports/{QuotaReportId} | [**delete_settings_mapping**](QuotaApi.md#delete_settings_mapping) | **DELETE** /platform/1/quota/settings/mappings/{SettingsMappingId} | [**delete_settings_mappings**](QuotaApi.md#delete_settings_mappings) | **DELETE** /platform/1/quota/settings/mappings | [**delete_settings_notification**](QuotaApi.md#delete_settings_notification) | **DELETE** /platform/7/quota/settings/notifications/{SettingsNotificationId} | [**delete_settings_notifications**](QuotaApi.md#delete_settings_notifications) | **DELETE** /platform/7/quota/settings/notifications | [**get_quota_license**](QuotaApi.md#get_quota_license) | **GET** /platform/5/quota/license | -[**get_quota_quota**](QuotaApi.md#get_quota_quota) | **GET** /platform/19/quota/quotas/{QuotaQuotaId} | +[**get_quota_quota**](QuotaApi.md#get_quota_quota) | **GET** /platform/15/quota/quotas/{QuotaQuotaId} | [**get_quota_quotas_summary**](QuotaApi.md#get_quota_quotas_summary) | **GET** /platform/1/quota/quotas-summary | [**get_quota_report**](QuotaApi.md#get_quota_report) | **GET** /platform/1/quota/reports/{QuotaReportId} | [**get_settings_mapping**](QuotaApi.md#get_settings_mapping) | **GET** /platform/1/quota/settings/mappings/{SettingsMappingId} | [**get_settings_notification**](QuotaApi.md#get_settings_notification) | **GET** /platform/7/quota/settings/notifications/{SettingsNotificationId} | [**get_settings_reports**](QuotaApi.md#get_settings_reports) | **GET** /platform/1/quota/settings/reports | -[**list_quota_quotas**](QuotaApi.md#list_quota_quotas) | **GET** /platform/19/quota/quotas | +[**list_quota_quotas**](QuotaApi.md#list_quota_quotas) | **GET** /platform/15/quota/quotas | [**list_quota_reports**](QuotaApi.md#list_quota_reports) | **GET** /platform/1/quota/reports | [**list_settings_mappings**](QuotaApi.md#list_settings_mappings) | **GET** /platform/1/quota/settings/mappings | [**list_settings_notifications**](QuotaApi.md#list_settings_notifications) | **GET** /platform/7/quota/settings/notifications | -[**update_quota_quota**](QuotaApi.md#update_quota_quota) | **PUT** /platform/19/quota/quotas/{QuotaQuotaId} | +[**update_quota_quota**](QuotaApi.md#update_quota_quota) | **PUT** /platform/15/quota/quotas/{QuotaQuotaId} | [**update_settings_mapping**](QuotaApi.md#update_settings_mapping) | **PUT** /platform/1/quota/settings/mappings/{SettingsMappingId} | [**update_settings_notification**](QuotaApi.md#update_settings_notification) | **PUT** /platform/7/quota/settings/notifications/{SettingsNotificationId} | [**update_settings_reports**](QuotaApi.md#update_settings_reports) | **PUT** /platform/1/quota/settings/reports | @@ -43,18 +43,18 @@ Create a new quota. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -quota_quota = isilon_sdk.v9_11_0.QuotaQuotaCreateParams() # QuotaQuotaCreateParams | +api_instance = isilon_sdk.v9_4_0.QuotaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +quota_quota = isilon_sdk.v9_4_0.QuotaQuotaCreateParams() # QuotaQuotaCreateParams | zone = 'zone_example' # str | Optional named zone to use for user and group resolution. (optional) try: @@ -97,18 +97,18 @@ Create a new report. The type of this report is 'manual'; it is also sometimes c ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -quota_report = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.QuotaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +quota_report = isilon_sdk.v9_4_0.Empty() # Empty | try: api_response = api_instance.create_quota_report(quota_report) @@ -149,18 +149,18 @@ Create a new rule. The new rule must not conflict with an existing rule (e.g. ma ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -settings_mapping = isilon_sdk.v9_11_0.SettingsMappingCreateParams() # SettingsMappingCreateParams | +api_instance = isilon_sdk.v9_4_0.QuotaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +settings_mapping = isilon_sdk.v9_4_0.SettingsMappingCreateParams() # SettingsMappingCreateParams | try: api_response = api_instance.create_settings_mapping(settings_mapping) @@ -201,18 +201,18 @@ Create a new global notification rule. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -settings_notification = isilon_sdk.v9_11_0.QuotaNotificationCreateParams() # QuotaNotificationCreateParams | +api_instance = isilon_sdk.v9_4_0.QuotaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +settings_notification = isilon_sdk.v9_4_0.QuotaNotificationCreateParams() # QuotaNotificationCreateParams | try: api_response = api_instance.create_settings_notification(settings_notification) @@ -253,17 +253,17 @@ Delete the quota. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.QuotaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) quota_quota_id = 'quota_quota_id_example' # str | Delete the quota. try: @@ -304,22 +304,22 @@ Delete all or matching quotas. For any query argument not supplied, the default ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.QuotaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) enforced = true # bool | Only delete quotas with this enforcement (non-accounting). (optional) include_snapshots = true # bool | Only delete quotas with this setting for include_snapshots. (optional) path = 'path_example' # str | Only delete quotas matching this path (see also recurse_path_*). (optional) persona = 'persona_example' # str | Only delete user or group quotas matching this persona (must be used with the corresponding type argument). Format is :, where PERSONA_TYPE is one of USER, GROUP, SID, ID, or GID. (optional) -recurse_path_children = true # bool | If used with the path argument, delete all quotas at that path or any descendant sub-directory. (optional) +recurse_path_children = true # bool | If used with the path argument, delete all quotas at that path or any descendent sub-directory. (optional) recurse_path_parents = true # bool | If used with the path argument, delete all quotas at that path or any parent directory. (optional) type = 'type_example' # str | Only delete quotas matching this type. (optional) zone = 'zone_example' # str | Optional named zone to use for user and group resolution. (optional) @@ -338,7 +338,7 @@ Name | Type | Description | Notes **include_snapshots** | **bool**| Only delete quotas with this setting for include_snapshots. | [optional] **path** | **str**| Only delete quotas matching this path (see also recurse_path_*). | [optional] **persona** | **str**| Only delete user or group quotas matching this persona (must be used with the corresponding type argument). Format is <PERSONA_TYPE>:<string/integer>, where PERSONA_TYPE is one of USER, GROUP, SID, ID, or GID. | [optional] - **recurse_path_children** | **bool**| If used with the path argument, delete all quotas at that path or any descendant sub-directory. | [optional] + **recurse_path_children** | **bool**| If used with the path argument, delete all quotas at that path or any descendent sub-directory. | [optional] **recurse_path_parents** | **bool**| If used with the path argument, delete all quotas at that path or any parent directory. | [optional] **type** | **str**| Only delete quotas matching this type. | [optional] **zone** | **str**| Optional named zone to use for user and group resolution. | [optional] @@ -369,17 +369,17 @@ Delete the report. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.QuotaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) quota_report_id = 'quota_report_id_example' # str | Delete the report. try: @@ -420,17 +420,17 @@ Delete the mapping. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.QuotaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) settings_mapping_id = 'settings_mapping_id_example' # str | Delete the mapping. try: @@ -471,17 +471,17 @@ Delete all rules. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.QuotaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_instance.delete_settings_mappings() @@ -518,17 +518,17 @@ Delete the notification rule. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.QuotaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) settings_notification_id = 'settings_notification_id_example' # str | Delete the notification rule. try: @@ -569,17 +569,17 @@ Delete all rules. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.QuotaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_instance.delete_settings_notifications() @@ -606,7 +606,7 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_quota_license** -> QuotaLicense get_quota_license() +> LicenseLicense get_quota_license() @@ -616,17 +616,17 @@ Retrieve license information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.QuotaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_quota_license() @@ -640,7 +640,7 @@ This endpoint does not need any parameter. ### Return type -[**QuotaLicense**](QuotaLicense.md) +[**LicenseLicense**](LicenseLicense.md) ### Authorization @@ -664,17 +664,17 @@ Retrieve quota information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.QuotaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) quota_quota_id = 'quota_quota_id_example' # str | Retrieve quota information. resolve_names = true # bool | If true, resolve group and user names in personas. (optional) zone = 'zone_example' # str | Optional named zone to use for user and group resolution. (optional) @@ -720,17 +720,17 @@ Return summary information about quotas. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.QuotaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_quota_quotas_summary() @@ -768,17 +768,17 @@ Retrieve report data (XML) or contents (meta-data). ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.QuotaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) quota_report_id = 'quota_report_id_example' # str | Retrieve report data (XML) or contents (meta-data). contents = true # bool | Display JSON meta-data contents instead of report data. (optional) @@ -822,17 +822,17 @@ Retrieve the mapping information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.QuotaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) settings_mapping_id = 'settings_mapping_id_example' # str | Retrieve the mapping information. try: @@ -874,17 +874,17 @@ Retrieve notification rule information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.QuotaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) settings_notification_id = 'settings_notification_id_example' # str | Retrieve notification rule information. try: @@ -926,17 +926,17 @@ List all settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.QuotaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) try: @@ -978,24 +978,24 @@ List all or matching quotas. Can also be used to retrieve quota state from exist ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.QuotaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) enforced = true # bool | Only list enforced quotas. (optional) exceeded = true # bool | Set to true to only list quotas which have exceeded one or more of their thresholds. (optional) include_snapshots = true # bool | Only list quotas with this setting for include_snapshots. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) path = 'path_example' # str | Only list quotas matching this path (see also recurse_path_*). (optional) persona = 'persona_example' # str | Only list user or group quotas matching this persona (must be used with the corresponding type argument). Format is :, where PERSONA_TYPE is one of USER, GROUP, SID, ID, or GID. (optional) -recurse_path_children = true # bool | If used with the path argument, match all quotas at that path or any descendant sub-directory. (optional) +recurse_path_children = true # bool | If used with the path argument, match all quotas at that path or any descendent sub-directory. (optional) recurse_path_parents = true # bool | If used with the path argument, match all quotas at that path or any parent directory. (optional) report_id = 'report_id_example' # str | Use the named report as a source rather than the live quotas. See the /q/quota/reports resource for a list of valid reports. (optional) resolve_names = true # bool | If true, resolve group and user names in personas. (optional) @@ -1020,7 +1020,7 @@ Name | Type | Description | Notes **limit** | **int**| Return no more than this many results at once (see resume). | [optional] **path** | **str**| Only list quotas matching this path (see also recurse_path_*). | [optional] **persona** | **str**| Only list user or group quotas matching this persona (must be used with the corresponding type argument). Format is <PERSONA_TYPE>:<string/integer>, where PERSONA_TYPE is one of USER, GROUP, SID, ID, or GID. | [optional] - **recurse_path_children** | **bool**| If used with the path argument, match all quotas at that path or any descendant sub-directory. | [optional] + **recurse_path_children** | **bool**| If used with the path argument, match all quotas at that path or any descendent sub-directory. | [optional] **recurse_path_parents** | **bool**| If used with the path argument, match all quotas at that path or any parent directory. | [optional] **report_id** | **str**| Use the named report as a source rather than the live quotas. See the /q/quota/reports resource for a list of valid reports. | [optional] **resolve_names** | **bool**| If true, resolve group and user names in personas. | [optional] @@ -1054,17 +1054,17 @@ List all or matching reports. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.QuotaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) generated = 'generated_example' # str | Only list reports matching this source. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) @@ -1116,17 +1116,17 @@ List all rules. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.QuotaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.list_settings_mappings() @@ -1164,17 +1164,17 @@ List all rules. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.QuotaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.list_settings_notifications() @@ -1212,18 +1212,18 @@ Modify quota. All input fields are optional, but one or more must be supplied. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -quota_quota = isilon_sdk.v9_11_0.QuotaQuota() # QuotaQuota | +api_instance = isilon_sdk.v9_4_0.QuotaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +quota_quota = isilon_sdk.v9_4_0.QuotaQuota() # QuotaQuota | quota_quota_id = 'quota_quota_id_example' # str | Modify quota. All input fields are optional, but one or more must be supplied. try: @@ -1265,18 +1265,18 @@ Modify the mapping. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -settings_mapping = isilon_sdk.v9_11_0.SettingsMappingExtended() # SettingsMappingExtended | +api_instance = isilon_sdk.v9_4_0.QuotaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +settings_mapping = isilon_sdk.v9_4_0.SettingsMappingExtended() # SettingsMappingExtended | settings_mapping_id = 'settings_mapping_id_example' # str | Modify the mapping. try: @@ -1318,18 +1318,18 @@ Modify notification rule. All input fields are optional, but one or more must be ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -settings_notification = isilon_sdk.v9_11_0.QuotaNotification() # QuotaNotification | +api_instance = isilon_sdk.v9_4_0.QuotaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +settings_notification = isilon_sdk.v9_4_0.QuotaNotification() # QuotaNotification | settings_notification_id = 'settings_notification_id_example' # str | Modify notification rule. All input fields are optional, but one or more must be supplied. try: @@ -1371,18 +1371,18 @@ Modify one or more settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -settings_reports = isilon_sdk.v9_11_0.SettingsReportsExtended() # SettingsReportsExtended | +api_instance = isilon_sdk.v9_4_0.QuotaApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +settings_reports = isilon_sdk.v9_4_0.SettingsReportsExtended() # SettingsReportsExtended | try: api_instance.update_settings_reports(settings_reports) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaNotification.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaNotification.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaNotification.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaNotification.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaNotificationCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaNotificationCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaNotificationCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaNotificationCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaNotificationExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaNotificationExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaNotificationExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaNotificationExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaNotifications.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaNotifications.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaNotifications.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaNotifications.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaNotificationsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaNotificationsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaNotificationsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaNotificationsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaQuota.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaQuota.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaQuota.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaQuota.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaQuotaCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaQuotaCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaQuotaCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaQuotaCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaQuotaExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaQuotaExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaQuotaExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaQuotaExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaQuotaThresholds.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaQuotaThresholds.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaQuotaThresholds.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaQuotaThresholds.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaQuotaThresholdsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaQuotaThresholdsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaQuotaThresholdsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaQuotaThresholdsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaQuotaUsage.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaQuotaUsage.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaQuotaUsage.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaQuotaUsage.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaQuotas.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaQuotas.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaQuotas.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaQuotas.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaQuotasApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaQuotasApi.md similarity index 85% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaQuotasApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaQuotasApi.md index a02b93ff7..f6ddcf1d2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaQuotasApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaQuotasApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.QuotaQuotasApi +# isilon_sdk.v9_4_0.QuotaQuotasApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -24,18 +24,18 @@ Create a new notification rule specific to this quota. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaQuotasApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -quota_notification = isilon_sdk.v9_11_0.QuotaNotificationCreateParams() # QuotaNotificationCreateParams | +api_instance = isilon_sdk.v9_4_0.QuotaQuotasApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +quota_notification = isilon_sdk.v9_4_0.QuotaNotificationCreateParams() # QuotaNotificationCreateParams | qid = 'qid_example' # str | try: @@ -78,17 +78,17 @@ Delete the notification rule. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaQuotasApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.QuotaQuotasApi(isilon_sdk.v9_4_0.ApiClient(configuration)) quota_notification_id = 'quota_notification_id_example' # str | Delete the notification rule. qid = 'qid_example' # str | @@ -131,17 +131,17 @@ Delete all quota specific rules. The quota will then use the global rules. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaQuotasApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.QuotaQuotasApi(isilon_sdk.v9_4_0.ApiClient(configuration)) qid = 'qid_example' # str | try: @@ -182,17 +182,17 @@ Retrieve notification rule information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaQuotasApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.QuotaQuotasApi(isilon_sdk.v9_4_0.ApiClient(configuration)) quota_notification_id = 'quota_notification_id_example' # str | Retrieve notification rule information. qid = 'qid_example' # str | @@ -236,17 +236,17 @@ List all rules. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaQuotasApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.QuotaQuotasApi(isilon_sdk.v9_4_0.ApiClient(configuration)) qid = 'qid_example' # str | try: @@ -288,18 +288,18 @@ Modify notification rule. All input fields are optional, but one or more must be ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaQuotasApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -quota_notification = isilon_sdk.v9_11_0.QuotaNotification() # QuotaNotification | +api_instance = isilon_sdk.v9_4_0.QuotaQuotasApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +quota_notification = isilon_sdk.v9_4_0.QuotaNotification() # QuotaNotification | quota_notification_id = 'quota_notification_id_example' # str | Modify notification rule. All input fields are optional, but one or more must be supplied. qid = 'qid_example' # str | @@ -343,18 +343,18 @@ This method creates an empty set of rules so that the global rules are not used. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaQuotasApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -quota_notifications = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.QuotaQuotasApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +quota_notifications = isilon_sdk.v9_4_0.Empty() # Empty | qid = 'qid_example' # str | try: diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaQuotasExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaQuotasExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaQuotasExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaQuotasExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaQuotasSummary.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaQuotasSummary.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaQuotasSummary.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaQuotasSummary.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaQuotasSummarySummary.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaQuotasSummarySummary.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaQuotasSummarySummary.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaQuotasSummarySummary.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaReports.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaReports.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaReports.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaReports.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaReportsApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaReportsApi.md similarity index 84% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaReportsApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaReportsApi.md index 6c4a70d4e..a546b847d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/QuotaReportsApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/QuotaReportsApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.QuotaReportsApi +# isilon_sdk.v9_4_0.QuotaReportsApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -18,17 +18,17 @@ Retrieve report meta-data information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.QuotaReportsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.QuotaReportsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) rid = 'rid_example' # str | try: diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ReportAbout.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ReportAbout.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ReportAbout.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ReportAbout.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ReportAboutReport.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ReportAboutReport.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ReportAboutReport.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ReportAboutReport.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ReportSubreport.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ReportSubreport.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ReportSubreport.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ReportSubreport.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ReportSubreports.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ReportSubreports.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ReportSubreports.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ReportSubreports.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ReportSubreportsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ReportSubreportsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ReportSubreportsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ReportSubreportsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ReportsReportSubreports.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ReportsReportSubreports.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ReportsReportSubreports.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ReportsReportSubreports.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ReportsReportSubreportsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ReportsReportSubreportsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ReportsReportSubreportsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ReportsReportSubreportsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ReportsReportSubreportsSubreport.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ReportsReportSubreportsSubreport.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ReportsReportSubreportsSubreport.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ReportsReportSubreportsSubreport.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ReportsScans.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ReportsScans.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ReportsScans.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ReportsScans.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ReportsScansExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ReportsScansExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ReportsScansExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ReportsScansExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ReportsScansReport.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ReportsScansReport.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ReportsScansReport.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ReportsScansReport.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ReportsThreats.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ReportsThreats.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ReportsThreats.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ReportsThreats.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ReportsThreatsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ReportsThreatsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ReportsThreatsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ReportsThreatsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ReportsThreatsReport.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ReportsThreatsReport.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ReportsThreatsReport.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ReportsThreatsReport.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ResultDirPoolsUsage.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ResultDirPoolsUsage.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ResultDirPoolsUsage.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ResultDirPoolsUsage.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ResultDirPoolsUsageUsageData.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ResultDirPoolsUsageUsageData.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ResultDirPoolsUsageUsageData.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ResultDirPoolsUsageUsageData.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ResultDirectories.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ResultDirectories.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ResultDirectories.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ResultDirectories.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ResultDirectoriesDirUsage.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ResultDirectoriesDirUsage.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ResultDirectoriesDirUsage.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ResultDirectoriesDirUsage.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ResultDirectoriesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ResultDirectoriesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ResultDirectoriesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ResultDirectoriesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ResultDirectoriesTotalUsage.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ResultDirectoriesTotalUsage.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ResultDirectoriesTotalUsage.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ResultDirectoriesTotalUsage.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ResultDirectoriesTotalUsageExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ResultDirectoriesTotalUsageExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ResultDirectoriesTotalUsageExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ResultDirectoriesTotalUsageExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ResultDirectoriesUsageDataItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ResultDirectoriesUsageDataItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ResultDirectoriesUsageDataItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ResultDirectoriesUsageDataItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ResultHistogram.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ResultHistogram.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ResultHistogram.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ResultHistogram.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ResultHistogramHistogramItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ResultHistogramHistogramItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ResultHistogramHistogramItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ResultHistogramHistogramItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ResultTopDirs.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ResultTopDirs.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ResultTopDirs.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ResultTopDirs.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ResultTopDirsDir.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ResultTopDirsDir.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ResultTopDirsDir.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ResultTopDirsDir.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ResultTopFiles.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ResultTopFiles.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ResultTopFiles.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ResultTopFiles.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ResultTopFilesFile.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ResultTopFilesFile.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ResultTopFilesFile.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ResultTopFilesFile.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/RoleMembers.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/RoleMembers.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/RoleMembers.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/RoleMembers.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/RolePrivileges.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/RolePrivileges.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/RolePrivileges.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/RolePrivileges.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/S3Bucket.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/S3Bucket.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/S3Bucket.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/S3Bucket.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/S3BucketAclItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/S3BucketAclItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/S3BucketAclItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/S3BucketAclItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/S3BucketCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/S3BucketCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/S3BucketCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/S3BucketCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/S3BucketExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/S3BucketExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/S3BucketExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/S3BucketExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/S3Buckets.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/S3Buckets.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/S3Buckets.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/S3Buckets.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/S3BucketsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/S3BucketsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/S3BucketsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/S3BucketsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/S3Key.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/S3Key.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/S3Key.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/S3Key.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/S3Keys.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/S3Keys.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/S3Keys.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/S3Keys.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/S3KeysKeys.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/S3KeysKeys.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/S3KeysKeys.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/S3KeysKeys.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/S3LogLevel.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/S3LogLevel.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/S3LogLevel.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/S3LogLevel.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/S3SettingsGlobal.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/S3SettingsGlobal.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/S3SettingsGlobal.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/S3SettingsGlobal.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/S3SettingsGlobalSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/S3SettingsGlobalSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/S3SettingsGlobalSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/S3SettingsGlobalSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/S3SettingsZone.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/S3SettingsZone.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/S3SettingsZone.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/S3SettingsZone.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/S3SettingsZoneSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/S3SettingsZoneSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/S3SettingsZoneSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/S3SettingsZoneSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SecurityApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SecurityApi.md similarity index 81% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SecurityApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SecurityApi.md index 19696c0c4..0bdfa6616 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SecurityApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SecurityApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.SecurityApi +# isilon_sdk.v9_4_0.SecurityApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -7,10 +7,10 @@ Method | HTTP request | Description [**create_security_check_item**](SecurityApi.md#create_security_check_item) | **POST** /platform/15/security/check | [**get_check_report**](SecurityApi.md#get_check_report) | **GET** /platform/15/security/check/report | [**get_check_settings**](SecurityApi.md#get_check_settings) | **GET** /platform/15/security/check/settings | -[**get_security_settings**](SecurityApi.md#get_security_settings) | **GET** /platform/16/security/settings | +[**get_security_settings**](SecurityApi.md#get_security_settings) | **GET** /platform/15/security/settings | [**list_security_check**](SecurityApi.md#list_security_check) | **GET** /platform/15/security/check | [**update_check_settings**](SecurityApi.md#update_check_settings) | **PUT** /platform/15/security/check/settings | -[**update_security_settings**](SecurityApi.md#update_security_settings) | **PUT** /platform/16/security/settings | +[**update_security_settings**](SecurityApi.md#update_security_settings) | **PUT** /platform/15/security/settings | # **create_security_check_item** @@ -24,18 +24,18 @@ Start the security check. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SecurityApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -security_check_item = isilon_sdk.v9_11_0.SecurityCheckItem() # SecurityCheckItem | +api_instance = isilon_sdk.v9_4_0.SecurityApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +security_check_item = isilon_sdk.v9_4_0.SecurityCheckItem() # SecurityCheckItem | try: api_instance.create_security_check_item(security_check_item) @@ -75,17 +75,17 @@ Retrieve security check report properties. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SecurityApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SecurityApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_check_report() @@ -123,17 +123,17 @@ View the security check settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SecurityApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SecurityApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_check_settings() @@ -171,17 +171,17 @@ Retrieve security properties. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SecurityApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SecurityApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_security_settings() @@ -219,17 +219,17 @@ Retrieve security check status properties. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SecurityApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SecurityApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.list_security_check() @@ -267,18 +267,18 @@ Modify the security check settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SecurityApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -check_settings = isilon_sdk.v9_11_0.CheckSettingsExtended() # CheckSettingsExtended | +api_instance = isilon_sdk.v9_4_0.SecurityApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +check_settings = isilon_sdk.v9_4_0.CheckSettingsExtended() # CheckSettingsExtended | try: api_instance.update_check_settings(check_settings) @@ -318,18 +318,18 @@ Modify security properties. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SecurityApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -security_settings = isilon_sdk.v9_11_0.SecuritySettingsSettings() # SecuritySettingsSettings | +api_instance = isilon_sdk.v9_4_0.SecurityApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +security_settings = isilon_sdk.v9_4_0.SecuritySettingsSettings() # SecuritySettingsSettings | try: api_instance.update_security_settings(security_settings) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SecurityCheck.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SecurityCheck.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SecurityCheck.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SecurityCheck.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SecurityCheckItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SecurityCheckItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SecurityCheckItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SecurityCheckItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SecurityCheckSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SecurityCheckSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SecurityCheckSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SecurityCheckSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SecuritySettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SecuritySettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SecuritySettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SecuritySettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigNamespace.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SecuritySettingsSettings.md similarity index 71% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigNamespace.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SecuritySettingsSettings.md index 8d2d5e632..7190cdea7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ConfigNamespace.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SecuritySettingsSettings.md @@ -1,9 +1,9 @@ -# ConfigNamespace +# SecuritySettingsSettings ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**entries** | [**list[ConfigNamespaceEntry]**](ConfigNamespaceEntry.md) | | [optional] +**fips_mode_enabled** | **bool** | Enable OpenSSL FIPS compliance | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_4_0/docs/SedMigrateItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SedMigrateItem.md new file mode 100644 index 000000000..12ff6be9a --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SedMigrateItem.md @@ -0,0 +1,11 @@ +# SedMigrateItem + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**retry** | **bool** | Set to true to retry KMIP migration in the previous direction for errored nodes. e.g. if error occured after migrate with 'to_server=true', using 'sed/migrate' handler with 'retry=true' will retry migration to server. Similarly, if previous migration was 'to_server=false', retry will try to restore back to local. Also note that, whenever a 'retry' arg is provided to the handler, regardless of true or false, 'to_server' arg will be ignored. i.e. if using the handler with ('retry':true(or false), 'to_server': true), the 'to_server' arg will be ignored and have no effects. | [optional] +**to_server** | **bool** | Set to true to indicate migrating all keys to server. Set to false to indicate retoring all keys back to local. | [optional] + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SedSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SedSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SedSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SedSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SedSettingsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SedSettingsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SedSettingsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SedSettingsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SedSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SedSettingsSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SedSettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SedSettingsSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SedStatus.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SedStatus.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SedStatus.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SedStatus.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SedStatusExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SedStatusExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SedStatusExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SedStatusExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SedStatusNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SedStatusNode.md similarity index 83% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SedStatusNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SedStatusNode.md index 4d0a64ad4..9d3317593 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SedStatusNode.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SedStatusNode.md @@ -5,11 +5,10 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **error_msg** | **str** | information of the error if there is an error status. Empty if no error occurred. | [optional] **id** | **int** | Node ID (Device Number) of a node. | [optional] -**key_timestamp** | **int** | Creation time of the key | [optional] **lnn** | **int** | Logical Node Number (LNN) of a node. | [optional] **location** | **str** | Current location of the key. | [optional] **remote_key_id** | **str** | Key ID in the remote KMIP server. | [optional] -**status** | **str** | Current key migration status. If no SEDs are available and KMIP is not supported, it will show OFFLINE status. | [optional] +**status** | **str** | Current key migration status. If no SEDs are avaiable and KMIP is not supported, it will show OFFLINE status. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SedStatusNodeExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SedStatusNodeExtended.md similarity index 84% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SedStatusNodeExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SedStatusNodeExtended.md index ab06fc65b..5730e4a34 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SedStatusNodeExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SedStatusNodeExtended.md @@ -5,11 +5,10 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **error_msg** | **str** | information of the error if there is an error status. Empty if no error occurred. | **id** | **int** | Node ID (Device Number) of a node. | -**key_timestamp** | **int** | Creation time of the key | **lnn** | **int** | Logical Node Number (LNN) of a node. | **location** | **str** | Current location of the key. | **remote_key_id** | **str** | Key ID in the remote KMIP server. | -**status** | **str** | Current key migration status. If no SEDs are available and KMIP is not supported, it will show OFFLINE status. | +**status** | **str** | Current key migration status. If no SEDs are avaiable and KMIP is not supported, it will show OFFLINE status. | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ServicePolicies.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ServicePolicies.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ServicePolicies.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ServicePolicies.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ServicePoliciesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ServicePoliciesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ServicePoliciesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ServicePoliciesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ServicePolicy.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ServicePolicy.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ServicePolicy.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ServicePolicy.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ServicePolicyCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ServicePolicyCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ServicePolicyCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ServicePolicyCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ServicePolicyExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ServicePolicyExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ServicePolicyExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ServicePolicyExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ServicePolicyExtendedExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ServicePolicyExtendedExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ServicePolicyExtendedExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ServicePolicyExtendedExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallRules.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ServiceTargetPolicies.md similarity index 82% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallRules.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ServiceTargetPolicies.md index 83c79f57f..867f6dab5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/FirewallRules.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ServiceTargetPolicies.md @@ -1,10 +1,10 @@ -# FirewallRules +# ServiceTargetPolicies ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- +**policies** | [**list[TargetPolicy]**](TargetPolicy.md) | | [optional] **resume** | **str** | Provide this token as the 'resume' query argument to continue listing results. | [optional] -**rules** | [**list[FirewallRule]**](FirewallRule.md) | | [optional] **total** | **int** | Total number of items available. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SessionsInvalidation.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SessionsInvalidation.md similarity index 90% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SessionsInvalidation.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SessionsInvalidation.md index f987329d6..54c7cd069 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SessionsInvalidation.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SessionsInvalidation.md @@ -3,7 +3,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**expiration** | **int** | The time in seconds since the UNIX epoch when this invalidation expires. | [optional] +**expiration** | **int** | The time in seconds since the UNIX epoc when this invalidation expires. | [optional] **not_before** | **int** | The time in seconds since the UNIX epoch, before which sessions for a user are disallowed. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SessionsInvalidationCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SessionsInvalidationCreateParams.md similarity index 92% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SessionsInvalidationCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SessionsInvalidationCreateParams.md index 37561c402..f8c94c1ed 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SessionsInvalidationCreateParams.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SessionsInvalidationCreateParams.md @@ -3,7 +3,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**expiration** | **int** | The time in seconds since the UNIX epoch when this invalidation expires. | [optional] +**expiration** | **int** | The time in seconds since the UNIX epoc when this invalidation expires. | [optional] **not_before** | **int** | The time in seconds since the UNIX epoch, before which sessions for a user are disallowed. | [optional] **id** | **str** | Specifies the serialized form of the user persona, which can be 'UID:0', 'USER:name' or 'SID:S-1-1'. | diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SessionsInvalidationExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SessionsInvalidationExtended.md similarity index 87% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SessionsInvalidationExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SessionsInvalidationExtended.md index 92ec223ad..a82ef4c17 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SessionsInvalidationExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SessionsInvalidationExtended.md @@ -3,7 +3,6 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**expiration** | **int** | The time in seconds since the UNIX epoch when this invalidation expires. | [optional] **id** | **str** | Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'. | [optional] **name** | **str** | Specifies the persona name, which must be combined with a type. | [optional] **not_before** | **int** | The time since the UNIX epoch to not allow sessions for a user. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SessionsInvalidations.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SessionsInvalidations.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SessionsInvalidations.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SessionsInvalidations.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsAccessTime.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsAccessTime.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsAccessTime.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsAccessTime.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsAccessTimeExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsAccessTimeExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsAccessTimeExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsAccessTimeExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsAccessTimeSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsAccessTimeSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsAccessTimeSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsAccessTimeSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsAcls.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsAcls.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsAcls.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsAcls.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsAclsAclPolicySettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsAclsAclPolicySettings.md similarity index 93% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsAclsAclPolicySettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsAclsAclPolicySettings.md index 2c9804875..134ee210d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsAclsAclPolicySettings.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsAclsAclPolicySettings.md @@ -15,7 +15,6 @@ Name | Type | Description | Notes **create_over_smb** | **str** | ACL creation over SMB. | [optional] **dos_attr** | **str** | Read only DOS attribute. | [optional] **group_owner_inheritance** | **str** | Group owner inheritance. | [optional] -**read_attributes** | **str** | Require read attribute permissions on files with existing ACLs. | [optional] **rwx** | **str** | Treatment of 'rwx' permissions. | [optional] **synthetic_denies** | **str** | Synthetic 'deny' ACEs. | [optional] **utimes** | **str** | Access check (utimes) | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsAclsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsAclsExtended.md similarity index 93% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsAclsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsAclsExtended.md index 6598ac39d..09ae3509c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsAclsExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsAclsExtended.md @@ -15,7 +15,6 @@ Name | Type | Description | Notes **create_over_smb** | **str** | ACL creation over SMB. | [optional] **dos_attr** | **str** | Read only DOS attribute. | [optional] **group_owner_inheritance** | **str** | Group owner inheritance. | [optional] -**read_attributes** | **str** | Require read attribute permissions on files with existing ACLs. | [optional] **rwx** | **str** | Treatment of 'rwx' permissions. | [optional] **synthetic_denies** | **str** | Synthetic 'deny' ACEs. | [optional] **utimes** | **str** | Access check (utimes) | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsCharacterEncodings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsCharacterEncodings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsCharacterEncodings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsCharacterEncodings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsCharacterEncodingsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsCharacterEncodingsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsCharacterEncodingsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsCharacterEncodingsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsCharacterEncodingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsCharacterEncodingsSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsCharacterEncodingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsCharacterEncodingsSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsCompression.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsCompression.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsCompression.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsCompression.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsCompressionExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsCompressionExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsCompressionExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsCompressionExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsCompressionSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsCompressionSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsCompressionSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsCompressionSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsGlobalExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsGlobal.md similarity index 94% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsGlobalExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsGlobal.md index a085d2ef3..8ff0e56a0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsGlobalExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsGlobal.md @@ -1,4 +1,4 @@ -# SettingsGlobalExtended +# SettingsGlobal ## Properties Name | Type | Description | Notes diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsGlobal.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsGlobalExtended.md similarity index 93% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsGlobal.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsGlobalExtended.md index 8bdbf2fd4..5ab5f992a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsGlobal.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsGlobalExtended.md @@ -1,4 +1,4 @@ -# SettingsGlobal +# SettingsGlobalExtended ## Properties Name | Type | Description | Notes diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsGlobalGlobalSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsGlobalGlobalSettings.md similarity index 86% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsGlobalGlobalSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsGlobalGlobalSettings.md index c7f1eeee8..24c72cc06 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsGlobalGlobalSettings.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsGlobalGlobalSettings.md @@ -4,9 +4,6 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **alloc_retries** | **int** | Specifies the number of times to retry an ID allocation before failing. | [optional] -**concurrent_session_limit** | **int** | Specifies the total number of concurrent administrative sessions. | [optional] -**default_ldap_tls_revocation_check_level** | **str** | This setting controls the default behavior of the certificate revocation checking algorithm when the LDAP provider is presented with a digital certificate by an LDAP server. | [optional] -**failed_login_delay_time** | **int** | Specifies the delay in seconds following a failed login/authentication attempt. | [optional] **gid_range_enabled** | **bool** | If true, allocates GIDs from a fixed range. | [optional] **gid_range_max** | **int** | Specifies the ending number for a fixed range from which GIDs are allocated. | [optional] **gid_range_min** | **int** | Specifies the starting number for a fixed range from which GIDs are allocated. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsGlobalSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsGlobalSettings.md similarity index 61% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsGlobalSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsGlobalSettings.md index 1604562f7..23f057a47 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsGlobalSettings.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsGlobalSettings.md @@ -4,26 +4,17 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **audited_zones** | **list[str]** | Specifies zones that are audited when the protocol_auditing_enabled property is enabled. | [optional] -**auto_purging_enabled** | **bool** | Specifies whether auto purging of audit log files is enabled. | [optional] +**auto_purging_enabled** | **bool** | whether auto purging of audit log files is enabled. | [optional] **cee_log_time** | **str** | Specifies that events past a certain date are forwarded by the audit CEE forwarder. Format these events as follows: 'Topic@YYYY-MM-DD HH:MM:SS'. | [optional] **cee_server_uris** | **list[str]** | Specifies a list of Common Event Enabler (CEE) server URIs. Protocol audit logs are sent to these URIs for external processing. | [optional] **config_auditing_enabled** | **bool** | Specifies whether logging for API configuration changes are enabled. | [optional] -**config_syslog_certificate_id** | **str** | Specifies the certificate ID used by configuration syslog forwarding. | [optional] **config_syslog_enabled** | **bool** | Specifies whether configuration audit syslog messages are forwarded. | [optional] **config_syslog_servers** | **list[str]** | Specifies a list of remote servers for audit logging of configuration changes. Audit logs are sent to syslog of these remote servers. | [optional] -**config_syslog_tls_enabled** | **bool** | Specifies whether TLS is enabled for configuration syslog forwarding. | [optional] **hostname** | **str** | Specifies the hostname that is reported in protocol events from this cluster. | [optional] **protocol_auditing_enabled** | **bool** | Specifies if logging for the I/O stream is enabled. | [optional] -**protocol_syslog_certificate_id** | **str** | Specifies the certificate ID used by protocol syslog forwarding. | [optional] **protocol_syslog_servers** | **list[str]** | Specifies a list of remote servers for protocol audit logging. Protocol audit logs are sent to syslog of these remote servers. | [optional] -**protocol_syslog_tls_enabled** | **bool** | Specifies whether TLS is enabled for protocol syslog forwarding. | [optional] **retention_period** | **int** | Specifies the number of days for which audit log files will be retained before being purged. | [optional] **syslog_log_time** | **str** | Specifies that events past a specified date are forwarded by the audit syslog forwarder. Format these events as follows: 'Topic@YYYY-MM-DD HH:MM:SS' format | [optional] -**system_auditing_enabled** | **bool** | Specifies whether auditd(openbsm) service is enabled. | [optional] -**system_syslog_certificate_id** | **str** | Specifies the certificate ID used by system syslog forwarding. | [optional] -**system_syslog_enabled** | **bool** | Specifies whether system syslog forwarding is enabled. | [optional] -**system_syslog_servers** | **list[str]** | Specifies a list of remote servers. System event forwarding are forwarded to syslog of these remote servers. | [optional] -**system_syslog_tls_enabled** | **bool** | Specifies whether TLS is enabled for system syslog forwarding. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsKrb5Defaults.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsKrb5Defaults.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsKrb5Defaults.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsKrb5Defaults.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsKrb5DefaultsKrb5Settings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsKrb5DefaultsKrb5Settings.md similarity index 61% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsKrb5DefaultsKrb5Settings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsKrb5DefaultsKrb5Settings.md index 4250f1ba6..cf1f7802c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsKrb5DefaultsKrb5Settings.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsKrb5DefaultsKrb5Settings.md @@ -6,13 +6,8 @@ Name | Type | Description | Notes **allow_weak_crypto** | **bool** | If true, allow the use of DES encryption | [optional] **always_send_preauth** | **bool** | If true, always attempts to preauthenticate to the domain controller. | [optional] **default_realm** | **str** | Specifies the realm for unqualified names. | [optional] -**default_tgs_enctypes** | **list[str]** | Enctypes for ticket granting server | [optional] -**default_tkt_enctypes** | **list[str]** | Enctypes for tickets | [optional] **dns_lookup_kdc** | **bool** | If true, find KDCs through the DNS. | [optional] **dns_lookup_realm** | **bool** | If true, find realm names through the DNS. | [optional] -**permitted_enctypes** | **list[str]** | Enctypes permitted in tickets | [optional] -**preferred_enctypes** | **list[str]** | Enctypes preferred in tickets | [optional] -**udp_preference_limit** | **int** | Defines threshold in bytes below which UDP is preferred over TCP. Set to 1 to use TCP first. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsKrb5Domain.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsKrb5Domain.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsKrb5Domain.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsKrb5Domain.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsKrb5DomainCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsKrb5DomainCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsKrb5DomainCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsKrb5DomainCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsKrb5Domains.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsKrb5Domains.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsKrb5Domains.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsKrb5Domains.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsKrb5DomainsDomainItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsKrb5DomainsDomainItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsKrb5DomainsDomainItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsKrb5DomainsDomainItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsKrb5Realm.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsKrb5Realm.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsKrb5Realm.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsKrb5Realm.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsKrb5RealmCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsKrb5RealmCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsKrb5RealmCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsKrb5RealmCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsKrb5Realms.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsKrb5Realms.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsKrb5Realms.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsKrb5Realms.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsKrb5RealmsRealmItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsKrb5RealmsRealmItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsKrb5RealmsRealmItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsKrb5RealmsRealmItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsMapping.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsMapping.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsMapping.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsMapping.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsMappingCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsMappingCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsMappingCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsMappingCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsMappingExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsMappingExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsMappingExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsMappingExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsMappingExtendedExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsMappingExtendedExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsMappingExtendedExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsMappingExtendedExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsMappingMappingSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsMappingMappingSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsMappingMappingSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsMappingMappingSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsMappings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsMappings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsMappings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsMappings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsMappingsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsMappingsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsMappingsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsMappingsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsNotifications.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsNotifications.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsNotifications.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsNotifications.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsReportingEula.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsReportingEula.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsReportingEula.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsReportingEula.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsReportingEulaEula.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsReportingEulaEula.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsReportingEulaEula.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsReportingEulaEula.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsReports.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsReports.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsReports.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsReports.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsReportsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsReportsExtended.md similarity index 72% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsReportsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsReportsExtended.md index 1c85835d6..8d4a87cf4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsReportsExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsReportsExtended.md @@ -3,10 +3,10 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**live_dir** | **str** | | [optional] +**live_dir** | **str** | The directory on /ifs where manual or live reports will be placed. | [optional] **live_retain** | **int** | The number of manual reports to keep. | [optional] **schedule** | **str** | The isidate schedule used to generate reports. | [optional] -**scheduled_dir** | **str** | | [optional] +**scheduled_dir** | **str** | The directory on /ifs where schedule reports will be placed. | [optional] **scheduled_retain** | **int** | The number of scheduled reports to keep. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsReportsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsReportsSettings.md similarity index 73% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsReportsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsReportsSettings.md index 0f9ead4ab..59dd3b9c0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsReportsSettings.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsReportsSettings.md @@ -3,10 +3,10 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**live_dir** | **str** | | [optional] +**live_dir** | **str** | The directory on /ifs where manual or live reports will be placed. | **live_retain** | **int** | The number of manual reports to keep. | **schedule** | **str** | The isidate schedule used to generate reports. | -**scheduled_dir** | **str** | | [optional] +**scheduled_dir** | **str** | The directory on /ifs where schedule reports will be placed. | **scheduled_retain** | **int** | The number of scheduled reports to keep. | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsSessions.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsSessions.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SettingsSessions.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsSessions.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqStatus.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsSessionsSettings.md similarity index 64% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqStatus.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsSessionsSettings.md index 58eddf528..20d37e7b3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/MetadataiqStatus.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SettingsSessionsSettings.md @@ -1,9 +1,9 @@ -# MetadataiqStatus +# SettingsSessionsSettings ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**status** | [**MetadataiqStatusStatus**](MetadataiqStatusStatus.md) | MetadataIQ current Cycle Producer and Consumer Status. | +**key_rotation** | **int** | The amount of time in seconds before rotating the session signing key with a new key. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SmbLogLevel.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SmbLogLevel.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SmbLogLevel.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SmbLogLevel.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SmbLogLevelFilter.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SmbLogLevelFilter.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SmbLogLevelFilter.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SmbLogLevelFilter.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SmbLogLevelFilters.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SmbLogLevelFilters.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SmbLogLevelFilters.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SmbLogLevelFilters.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SmbLogLevelFiltersFilter.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SmbLogLevelFiltersFilter.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SmbLogLevelFiltersFilter.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SmbLogLevelFiltersFilter.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SmbOpenfile.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SmbOpenfile.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SmbOpenfile.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SmbOpenfile.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SmbOpenfiles.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SmbOpenfiles.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SmbOpenfiles.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SmbOpenfiles.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSessions.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSessions.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSessions.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSessions.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSessionsNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSessionsNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSessionsNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSessionsNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSettingsGlobal.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSettingsGlobal.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSettingsGlobal.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSettingsGlobal.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSettingsGlobalExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSettingsGlobalExtended.md similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSettingsGlobalExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSettingsGlobalExtended.md index d953d8f90..864d21320 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSettingsGlobalExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSettingsGlobalExtended.md @@ -24,7 +24,6 @@ Name | Type | Description | Notes **srv_num_workers** | **int** | Set the maximum number of SRV service worker threads. | [optional] **support_multichannel** | **bool** | Support multichannel. | [optional] **support_netbios** | **bool** | Support NetBIOS. | [optional] -**support_smb1** | **bool** | Support the SMB1 protocol on the server. | [optional] **support_smb2** | **bool** | Support the SMB2 protocol on the server. | [optional] **support_smb3_encryption** | **bool** | Support the SMB3 encryption on the server. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSettingsGlobalSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSettingsGlobalSettings.md similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSettingsGlobalSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSettingsGlobalSettings.md index ecefb805a..fefacc791 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSettingsGlobalSettings.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSettingsGlobalSettings.md @@ -24,7 +24,6 @@ Name | Type | Description | Notes **srv_num_workers** | **int** | Set the maximum number of SRV service worker threads. | [optional] **support_multichannel** | **bool** | Support multichannel. | [optional] **support_netbios** | **bool** | Support NetBIOS. | [optional] -**support_smb1** | **bool** | Support the SMB1 protocol on the server. | [optional] **support_smb2** | **bool** | Support the SMB2 protocol on the server. | [optional] **support_smb3_encryption** | **bool** | Support the SMB3 encryption on the server. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSettingsShare.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSettingsShare.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSettingsShare.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSettingsShare.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSettingsShareExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSettingsShareExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSettingsShareExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSettingsShareExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSettingsShareSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSettingsShareSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSettingsShareSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSettingsShareSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSettingsZone.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSettingsZone.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSettingsZone.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSettingsZone.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSettingsZoneSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSettingsZoneSettings.md similarity index 92% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSettingsZoneSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSettingsZoneSettings.md index 473c09a11..19a55b7af 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSettingsZoneSettings.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSettingsZoneSettings.md @@ -9,7 +9,6 @@ Name | Type | Description | Notes **require_security_signatures** | **bool** | Indicates whether the server requires signed SMB packets. | [optional] **server_side_copy** | **bool** | Enable Server Side Copy. | [optional] **support_multichannel** | **bool** | Support multichannel. | [optional] -**support_smb1** | **bool** | Support the SMB1 protocol on the server. | [optional] **support_smb2** | **bool** | Support the SMB2 protocol on the server. | [optional] **support_smb3_encryption** | **bool** | Support the SMB3 encryption on the server. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SmbShare.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SmbShare.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SmbShare.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SmbShare.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SmbShareCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SmbShareCreateParams.md similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SmbShareCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SmbShareCreateParams.md index 2d5f7dd3f..cc32b4660 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SmbShareCreateParams.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SmbShareCreateParams.md @@ -43,6 +43,7 @@ Name | Type | Description | Notes **strict_ca_lockout** | **bool** | Specifies if persistent opens would do strict lockout on the share. | [optional] **strict_flush** | **bool** | Handle SMB flush operations. | [optional] **strict_locking** | **bool** | Specifies whether byte range locks contend against SMB I/O. | [optional] +**zone** | **str** | Name of the access zone to which to move this SMB share. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SmbShareExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SmbShareExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SmbShareExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SmbShareExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSharePermission.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSharePermission.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSharePermission.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSharePermission.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SmbShares.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SmbShares.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SmbShares.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SmbShares.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSharesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSharesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSharesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSharesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSharesSummary.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSharesSummary.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSharesSummary.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSharesSummary.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSharesSummarySummary.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSharesSummarySummary.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SmbSharesSummarySummary.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SmbSharesSummarySummary.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotAlias.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotAlias.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotAlias.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotAlias.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotAliasCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotAliasCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotAliasCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotAliasCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotAliasExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotAliasExtended.md new file mode 100644 index 000000000..3ff7bbef7 --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotAliasExtended.md @@ -0,0 +1,14 @@ +# SnapshotAliasExtended + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**created** | **int** | The Unix Epoch time the snapshot alias was created. | +**id** | **int** | The system ID given to the snapshot alias. | +**name** | **str** | The user or system supplied snapshot alias name. | +**target_id** | **int** | The ID of the snapshot pointed to. | +**target_name** | **str** | The name of the snapshot pointed to. | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotAliases.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotAliases.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotAliases.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotAliases.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotAliasesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotAliasesExtended.md similarity index 78% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotAliasesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotAliasesExtended.md index cf5d04f44..5b9ba6c65 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotAliasesExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotAliasesExtended.md @@ -4,7 +4,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **aliases** | [**list[SnapshotAliasExtended]**](SnapshotAliasExtended.md) | | [optional] -**resume** | **str** | Provide this token as the 'resume' query argument to continue listing results. | [optional] +**resume** | **str** | Resume token value to use in subsequent calls for continuation. | [optional] **total** | **int** | Total number of items available. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotApi.md similarity index 87% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotApi.md index 559c3d002..ab5778c59 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.SnapshotApi +# isilon_sdk.v9_4_0.SnapshotApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -53,18 +53,18 @@ Create a new snapshot alias. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -snapshot_alias = isilon_sdk.v9_11_0.SnapshotAliasCreateParams() # SnapshotAliasCreateParams | +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +snapshot_alias = isilon_sdk.v9_4_0.SnapshotAliasCreateParams() # SnapshotAliasCreateParams | try: api_response = api_instance.create_snapshot_alias(snapshot_alias) @@ -105,18 +105,18 @@ Create a new schedule. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -snapshot_schedule = isilon_sdk.v9_11_0.SnapshotScheduleCreateParams() # SnapshotScheduleCreateParams | +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +snapshot_schedule = isilon_sdk.v9_4_0.SnapshotScheduleCreateParams() # SnapshotScheduleCreateParams | try: api_response = api_instance.create_snapshot_schedule(snapshot_schedule) @@ -147,7 +147,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **create_snapshot_snapshot** -> CreateSnapshotSnapshotResponse create_snapshot_snapshot(snapshot_snapshot) +> SnapshotSnapshotExtended create_snapshot_snapshot(snapshot_snapshot) @@ -157,18 +157,18 @@ Create a new snapshot. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -snapshot_snapshot = isilon_sdk.v9_11_0.SnapshotSnapshotCreateParams() # SnapshotSnapshotCreateParams | +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +snapshot_snapshot = isilon_sdk.v9_4_0.SnapshotSnapshotCreateParams() # SnapshotSnapshotCreateParams | try: api_response = api_instance.create_snapshot_snapshot(snapshot_snapshot) @@ -185,7 +185,7 @@ Name | Type | Description | Notes ### Return type -[**CreateSnapshotSnapshotResponse**](CreateSnapshotSnapshotResponse.md) +[**SnapshotSnapshotExtended**](SnapshotSnapshotExtended.md) ### Authorization @@ -209,18 +209,18 @@ Create a new writable snapshot. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -snapshot_writable_item = isilon_sdk.v9_11_0.SnapshotWritableItem() # SnapshotWritableItem | +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +snapshot_writable_item = isilon_sdk.v9_4_0.SnapshotWritableItem() # SnapshotWritableItem | try: api_response = api_instance.create_snapshot_writable_item(snapshot_writable_item) @@ -261,17 +261,17 @@ Delete the snapshot alias ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) snapshot_alias_id = 'snapshot_alias_id_example' # str | Delete the snapshot alias try: @@ -312,17 +312,17 @@ Delete all or matching snapshot aliases. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_instance.delete_snapshot_aliases() @@ -359,17 +359,17 @@ Delete the specified changelist. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) snapshot_changelist_id = 'snapshot_changelist_id_example' # str | Delete the specified changelist. try: @@ -410,17 +410,17 @@ Delete the specified repstate. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) snapshot_repstate_id = 'snapshot_repstate_id_example' # str | Delete the specified repstate. try: @@ -461,17 +461,17 @@ Delete the schedule. This does not affect already created snapshots. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) snapshot_schedule_id = 'snapshot_schedule_id_example' # str | Delete the schedule. This does not affect already created snapshots. try: @@ -512,17 +512,17 @@ Delete all snapshot schedules. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_instance.delete_snapshot_schedules() @@ -559,17 +559,17 @@ Delete the snapshot. Deleted snapshots will be placed into a deleting state unti ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) snapshot_snapshot_id = 'snapshot_snapshot_id_example' # str | Delete the snapshot. Deleted snapshots will be placed into a deleting state until the system can reclaim the space used by the snapshot. try: @@ -610,17 +610,17 @@ Delete all or matching snapshots. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) schedule = 'schedule_example' # str | Only list snapshots created by this schedule. (optional) type = 'type_example' # str | Only list snapshots matching this type. (optional) @@ -663,17 +663,17 @@ Delete all or matching writable snapshots. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_instance.delete_snapshot_writable() @@ -710,17 +710,17 @@ Delete the writable snapshot. Deleted writable snapshots will be placed into ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) snapshot_writable_wspath = 'snapshot_writable_wspath_example' # str | Delete the writable snapshot. Deleted writable snapshots will be placed into a deleting state until the system can reclaim the space used by the writable snapshot. try: @@ -761,17 +761,17 @@ Get snap diff regions of a file. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) changelists_changelist_diff_region_id = 56 # int | Get snap diff regions of a file. changelist = 'changelist_example' # str | limit = 56 # int | Return no more than this many results at once (see resume). (optional) @@ -821,17 +821,17 @@ Retrieve snapshot alias information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) snapshot_alias_id = 'snapshot_alias_id_example' # str | Retrieve snapshot alias information. try: @@ -873,17 +873,17 @@ Retrieve basic information on a changelist. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) snapshot_changelist_id = 'snapshot_changelist_id_example' # str | Retrieve basic information on a changelist. limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -929,17 +929,17 @@ List all changelists. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -973,7 +973,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_snapshot_license** -> QuotaLicense get_snapshot_license() +> LicenseLicense get_snapshot_license() @@ -983,17 +983,17 @@ Retrieve license information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_snapshot_license() @@ -1007,7 +1007,7 @@ This endpoint does not need any parameter. ### Return type -[**QuotaLicense**](QuotaLicense.md) +[**LicenseLicense**](LicenseLicense.md) ### Authorization @@ -1031,17 +1031,17 @@ Return list of snapshots to be taken. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) begin = 56 # int | Unix Epoch time to start generating matches. Default is now. (optional) end = 56 # int | Unix Epoch time to end generating matches. Default is forever. (optional) limit = 56 # int | Return no more than this many result at once (see resume). (optional) @@ -1091,17 +1091,17 @@ Retrieve basic information on a repstate. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) snapshot_repstate_id = 'snapshot_repstate_id_example' # str | Retrieve basic information on a repstate. limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -1147,17 +1147,17 @@ List all repstates. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -1201,17 +1201,17 @@ Retrieve the schedule. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) snapshot_schedule_id = 'snapshot_schedule_id_example' # str | Retrieve the schedule. try: @@ -1253,17 +1253,17 @@ List all settings ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_snapshot_settings() @@ -1301,17 +1301,17 @@ Retrieve snapshot information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) snapshot_snapshot_id = 'snapshot_snapshot_id_example' # str | Retrieve snapshot information. try: @@ -1353,17 +1353,17 @@ Return summary information about snapshots. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_snapshot_snapshots_summary() @@ -1401,17 +1401,17 @@ Return summary information about writable snapshots. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_snapshot_writable_snapshot_summary() @@ -1449,17 +1449,17 @@ Retrieve writable snapshot information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) snapshot_writable_wspath = 'snapshot_writable_wspath_example' # str | Retrieve writable snapshot information. try: @@ -1501,17 +1501,17 @@ List all or matching snapshot aliases. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -1559,17 +1559,17 @@ List all or matching schedules. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -1617,17 +1617,17 @@ List all or matching snapshots. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -1681,17 +1681,17 @@ List all or matching writable snapshots. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -1741,18 +1741,18 @@ Modify snapshot alias. All input fields are optional, but one or more must be su ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -snapshot_alias = isilon_sdk.v9_11_0.SnapshotAlias() # SnapshotAlias | +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +snapshot_alias = isilon_sdk.v9_4_0.SnapshotAlias() # SnapshotAlias | snapshot_alias_id = 'snapshot_alias_id_example' # str | Modify snapshot alias. All input fields are optional, but one or more must be supplied. try: @@ -1794,18 +1794,18 @@ Modify the schedule. All input fields are optional, but one or more must be supp ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -snapshot_schedule = isilon_sdk.v9_11_0.SnapshotSchedule() # SnapshotSchedule | +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +snapshot_schedule = isilon_sdk.v9_4_0.SnapshotSchedule() # SnapshotSchedule | snapshot_schedule_id = 'snapshot_schedule_id_example' # str | Modify the schedule. All input fields are optional, but one or more must be supplied. try: @@ -1847,18 +1847,18 @@ Modify one or more settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -snapshot_settings = isilon_sdk.v9_11_0.SnapshotSettingsExtended() # SnapshotSettingsExtended | +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +snapshot_settings = isilon_sdk.v9_4_0.SnapshotSettingsExtended() # SnapshotSettingsExtended | try: api_instance.update_snapshot_settings(snapshot_settings) @@ -1898,18 +1898,18 @@ Modify snapshot. All input fields are optional, but one or more must be supplied ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -snapshot_snapshot = isilon_sdk.v9_11_0.SnapshotSnapshot() # SnapshotSnapshot | +api_instance = isilon_sdk.v9_4_0.SnapshotApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +snapshot_snapshot = isilon_sdk.v9_4_0.SnapshotSnapshot() # SnapshotSnapshot | snapshot_snapshot_id = 'snapshot_snapshot_id_example' # str | Modify snapshot. All input fields are optional, but one or more must be supplied. try: diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotChangelists.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotChangelists.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotChangelists.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotChangelists.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotChangelistsApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotChangelistsApi.md similarity index 89% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotChangelistsApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotChangelistsApi.md index e31a75307..071a2455d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotChangelistsApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotChangelistsApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.SnapshotChangelistsApi +# isilon_sdk.v9_4_0.SnapshotChangelistsApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -21,17 +21,17 @@ Get entries from a changelist. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotChangelistsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotChangelistsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) changelist = 'changelist_example' # str | diff_regions = true # bool | Include snapshot diff regions in entry output. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) @@ -79,17 +79,17 @@ Get a single entry from the changelist. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotChangelistsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotChangelistsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) changelist_entry_id = 'changelist_entry_id_example' # str | Get a single entry from the changelist. changelist = 'changelist_example' # str | @@ -133,17 +133,17 @@ Get a single entry from the changelist. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotChangelistsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotChangelistsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) changelist_lin_id = 56 # int | Get a single entry from the changelist. changelist = 'changelist_example' # str | limit = 56 # int | Return no more than this many results at once (see resume). (optional) @@ -191,17 +191,17 @@ Get entries from a changelist. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotChangelistsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotChangelistsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) changelist = 'changelist_example' # str | limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotChangelistsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotChangelistsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotChangelistsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotChangelistsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotLock.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotLock.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotLock.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotLock.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotLockCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotLockCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotLockCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotLockCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotLockExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotLockExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotLockExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotLockExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotLocks.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotLocks.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotLocks.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotLocks.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotLocksExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotLocksExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotLocksExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotLocksExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotPending.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotPending.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotPending.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotPending.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotPendingPendingItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotPendingPendingItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotPendingPendingItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotPendingPendingItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotRepstates.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotRepstates.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotRepstates.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotRepstates.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotRepstatesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotRepstatesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotRepstatesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotRepstatesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSchedule.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSchedule.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSchedule.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSchedule.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotScheduleCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotScheduleCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotScheduleCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotScheduleCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotScheduleExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotScheduleExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotScheduleExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotScheduleExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotScheduleExtendedExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotScheduleExtendedExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotScheduleExtendedExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotScheduleExtendedExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSchedules.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSchedules.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSchedules.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSchedules.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSchedulesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSchedulesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSchedulesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSchedulesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSettingsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSettingsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSettingsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSettingsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSettingsSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSettingsSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSnapshot.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSnapshot.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSnapshot.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSnapshot.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSnapshotCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSnapshotCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSnapshotCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSnapshotCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateSnapshotSnapshotResponse.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSnapshotExtended.md similarity index 91% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/CreateSnapshotSnapshotResponse.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSnapshotExtended.md index 6839c78c3..b32751dd0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/CreateSnapshotSnapshotResponse.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSnapshotExtended.md @@ -1,21 +1,21 @@ -# CreateSnapshotSnapshotResponse +# SnapshotSnapshotExtended ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **alias** | **str** | Alias name to create for this snapshot. If null, remove any alias. | [optional] -**created** | **int** | The Unix Epoch time the snapshot was created. | **expires** | **int** | The Unix Epoch time the snapshot will expire and be eligible for automatic deletion. | [optional] -**has_locks** | **bool** | True if the snapshot has one or more locks present (see the locks subresource of a snapshot for a list of locks). | -**id** | **int** | The system ID given to the snapshot. This is useful for tracking the status of delete pending snapshots. | **name** | **str** | The user or system supplied snapshot name. This will be null for snapshots pending delete. | [optional] +**created** | **int** | The Unix Epoch time the snapshot was created. | +**has_locks** | **bool** | True if the snapshot has one or more locks present see, see the locks subresource of a snapshot for a list of locks. | +**id** | **int** | The system ID given to the snapshot. This is useful for tracking the status of delete pending snapshots. | **path** | **str** | The /ifs path snapshotted. | [optional] **pct_filesystem** | **float** | Percentage of /ifs used for storing this snapshot. | **pct_reserve** | **float** | Percentage of configured snapshot reserved used for storing this snapshot. | **schedule** | **str** | The name of the schedule used to create this snapshot, if applicable. | [optional] **shadow_bytes** | **int** | The amount of shadow bytes referred to by this snapshot. | **size** | **int** | The amount of storage in bytes used to store this snapshot. | -**state** | **str** | The state of this snapshot. | +**state** | **str** | Snapshot state. | **target_id** | **int** | The ID of the snapshot pointed to if this is an alias. 18446744073709551615 (max uint64) is returned for an alias to the live filesystem. | [optional] **target_name** | **str** | The name of the snapshot pointed to if this is an alias. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotAliasExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSnapshotExtendedExtended.md similarity index 91% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotAliasExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSnapshotExtendedExtended.md index 29e917e84..c3d88e402 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotAliasExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSnapshotExtendedExtended.md @@ -1,4 +1,4 @@ -# SnapshotAliasExtended +# SnapshotSnapshotExtendedExtended ## Properties Name | Type | Description | Notes @@ -6,7 +6,7 @@ Name | Type | Description | Notes **alias** | **str** | The name of the alias, none for real snapshots. | [optional] **created** | **int** | The Unix Epoch time the snapshot was created. | **expires** | **int** | The Unix Epoch time the snapshot will expire and be eligible for automatic deletion. | [optional] -**has_locks** | **bool** | True if the snapshot has one or more locks present (see the locks subresource of a snapshot for a list of locks). | +**has_locks** | **bool** | True if the snapshot has one or more locks present see, see the locks subresource of a snapshot for a list of locks. | **id** | **int** | The system ID given to the snapshot. This is useful for tracking the status of delete pending snapshots. | **name** | **str** | The user or system supplied snapshot name. This will be null for snapshots pending delete. | [optional] **path** | **str** | The /ifs path snapshotted. | [optional] @@ -15,7 +15,7 @@ Name | Type | Description | Notes **schedule** | **str** | The name of the schedule used to create this snapshot, if applicable. | [optional] **shadow_bytes** | **int** | The amount of shadow bytes referred to by this snapshot. | **size** | **int** | The amount of storage in bytes used to store this snapshot. | -**state** | **str** | The state of this snapshot. | +**state** | **str** | Snapshot state. | **target_id** | **int** | The ID of the snapshot pointed to if this is an alias. 18446744073709551615 (max uint64) is returned for an alias to the live filesystem. | [optional] **target_name** | **str** | The name of the snapshot pointed to if this is an alias. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSnapshots.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSnapshots.md similarity index 74% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSnapshots.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSnapshots.md index fae3c7e05..003282078 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSnapshots.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSnapshots.md @@ -3,7 +3,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**snapshots** | [**list[SnapshotAliasExtended]**](SnapshotAliasExtended.md) | | [optional] +**snapshots** | [**list[SnapshotSnapshotExtended]**](SnapshotSnapshotExtended.md) | | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSnapshotsApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSnapshotsApi.md similarity index 86% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSnapshotsApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSnapshotsApi.md index 70f7818f8..9baac7d59 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSnapshotsApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSnapshotsApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.SnapshotSnapshotsApi +# isilon_sdk.v9_4_0.SnapshotSnapshotsApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -23,18 +23,18 @@ Create a new lock on this snapshot. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotSnapshotsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -snapshot_lock = isilon_sdk.v9_11_0.SnapshotLockCreateParams() # SnapshotLockCreateParams | +api_instance = isilon_sdk.v9_4_0.SnapshotSnapshotsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +snapshot_lock = isilon_sdk.v9_4_0.SnapshotLockCreateParams() # SnapshotLockCreateParams | sid = 'sid_example' # str | try: @@ -77,17 +77,17 @@ Delete the snapshot lock. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotSnapshotsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotSnapshotsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) snapshot_lock_id = 'snapshot_lock_id_example' # str | Delete the snapshot lock. sid = 'sid_example' # str | @@ -130,17 +130,17 @@ Delete all locks. Will try to drain count of recursively held locks so that the ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotSnapshotsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotSnapshotsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) sid = 'sid_example' # str | try: @@ -181,17 +181,17 @@ Retrieve lock information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotSnapshotsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotSnapshotsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) snapshot_lock_id = 'snapshot_lock_id_example' # str | Retrieve lock information. sid = 'sid_example' # str | @@ -235,17 +235,17 @@ List all locks. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotSnapshotsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SnapshotSnapshotsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) sid = 'sid_example' # str | dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) @@ -295,18 +295,18 @@ Modify lock. All input fields are optional, but one or more must be supplied. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SnapshotSnapshotsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -snapshot_lock = isilon_sdk.v9_11_0.SnapshotLock() # SnapshotLock | +api_instance = isilon_sdk.v9_4_0.SnapshotSnapshotsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +snapshot_lock = isilon_sdk.v9_4_0.SnapshotLock() # SnapshotLock | snapshot_lock_id = 'snapshot_lock_id_example' # str | Modify lock. All input fields are optional, but one or more must be supplied. sid = 'sid_example' # str | diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSnapshotsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSnapshotsExtended.md similarity index 81% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSnapshotsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSnapshotsExtended.md index f1a687703..010765874 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSnapshotsExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSnapshotsExtended.md @@ -4,7 +4,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **resume** | **str** | Provide this token as the 'resume' query argument to continue listing results. | [optional] -**snapshots** | [**list[SnapshotAliasExtended]**](SnapshotAliasExtended.md) | | [optional] +**snapshots** | [**list[SnapshotSnapshotExtendedExtended]**](SnapshotSnapshotExtendedExtended.md) | | [optional] **total** | **int** | Total number of items available. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSnapshotsSummary.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSnapshotsSummary.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSnapshotsSummary.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSnapshotsSummary.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSnapshotsSummarySummary.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSnapshotsSummarySummary.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotSnapshotsSummarySummary.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotSnapshotsSummarySummary.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotWritable.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotWritable.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotWritable.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotWritable.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotWritableExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotWritableExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotWritableExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotWritableExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotWritableItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotWritableItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotWritableItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotWritableItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotWritableSnapshotSummary.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotWritableSnapshotSummary.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotWritableSnapshotSummary.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotWritableSnapshotSummary.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotWritableSnapshotSummarySummary.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotWritableSnapshotSummarySummary.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotWritableSnapshotSummarySummary.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotWritableSnapshotSummarySummary.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotWritableWritableItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotWritableWritableItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnapshotWritableWritableItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnapshotWritableWritableItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnmpSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnmpSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnmpSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnmpSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnmpSettingsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnmpSettingsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnmpSettingsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnmpSettingsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SnmpSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SnmpSettingsSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SnmpSettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SnmpSettingsSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SshSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SshSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SshSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SshSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_4_0/docs/SshSettingsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SshSettingsExtended.md new file mode 100644 index 000000000..4f763612d --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SshSettingsExtended.md @@ -0,0 +1,39 @@ +# SshSettingsExtended + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**auth_settings_template** | **str** | Specifies the configuration template for the supported method by which a user is authenticated. | [optional] +**authentication_methods** | **str** | Specifies the authentication methods that must be successfully completed for a user to be granted access. | [optional] +**banner** | **str** | Specifies file name to be used as SSH warning banner that is shown before the password prompt | [optional] +**ca_signature_algorithms** | **str** | Specifies which algorithms are allowed for signing of certificates by certificate authorities (CAs). | [optional] +**challenge_response_authentication** | **bool** | Specifies whether challenge-response authentication is allowed. | [optional] +**ciphers** | **str** | Specifies the ciphers allowed for protocol version 2. | [optional] +**host_key_algorithms** | **str** | Specifies the protocol version 2 host key algorithms the server offers. | [optional] +**ignore_rhosts** | **bool** | If true, ignores .rhosts and .shosts files. | [optional] +**kex_algorithms** | **str** | Specifies the available KEX algorithms. | [optional] +**keyboard_interactive_authentication** | **bool** | Specifies whether to allow keyboard-interactive authentication. | [optional] +**log_level** | **str** | Specifies the log level when logging messages from sshd(8). | [optional] +**login_grace_time** | **int** | Specifies the length of time in seconds before idle log in fails. If the value is 0, there is no time limit. | [optional] +**macs** | **str** | Specifies the available MAC algorithms. | [optional] +**match** | **str** | Specifies match blocks. | [optional] +**max_auth_tries** | **int** | Specifies the maximum number of authentication attempts per connection. | [optional] +**max_sessions** | **int** | Specifies the maximum number of open sessions permitted per network connection. | [optional] +**max_startups** | **str** | Specifies maximum number of unauthenticated connections. | [optional] +**password_authentication** | **bool** | Specifies whether password authentication is allowed. | [optional] +**permit_empty_passwords** | **bool** | Enable empty passwords if password authentication is allowed. | [optional] +**permit_root_login** | **bool** | Enable root SSH login. | [optional] +**port** | **int** | Specifies the port sshd(8) should listen on | [optional] +**print_motd** | **bool** | Enable printing /etc/motd when a user logs in. | [optional] +**pubkey_accepted_key_types** | **str** | Specifies the accepted public key types. | [optional] +**pubkey_authentication** | **bool** | Specifies whether public key authentication is allowed. | [optional] +**strict_modes** | **bool** | Specifies if sshd(8) should check home directory permissions before accepting login. | [optional] +**subsystem** | **str** | Specifies an external subsystem. | [optional] +**syslog_facility** | **str** | Specifies the facility code when logging messages from sshd(8). | [optional] +**tcp_keep_alive** | **bool** | Enable sending TCP keep alive messages. | [optional] +**use_dns** | **bool** | Specifies whether sshd should look up the remote host name. | [optional] +**use_pam** | **bool** | Enables the Pluggable Authentication Module interface. | [optional] + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SshSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SshSettingsSettings.md similarity index 85% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SshSettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SshSettingsSettings.md index ba7d472fc..30631f7c5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SshSettingsSettings.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SshSettingsSettings.md @@ -9,8 +9,6 @@ Name | Type | Description | Notes **ca_signature_algorithms** | **str** | Specifies which algorithms are allowed for signing of certificates by certificate authorities (CAs). | [optional] **challenge_response_authentication** | **bool** | Specifies whether challenge-response authentication is allowed. | [optional] **ciphers** | **str** | Specifies the ciphers allowed for protocol version 2. | [optional] -**client_alive_count_max** | **int** | Specifies the number of client alive messages which may be sent without sshd receiving any messages back from the client. If this threshold is reached, sshd will disconnect the client, terminating the session. Setting this to zero disables connection termination. | [optional] -**client_alive_interval** | **int** | Specifies a timeout interval in seconds after which if no data has been received from the client, sshd will request a response from the client. Setting this to zero means that these messages will not be sent. | [optional] **host_key_algorithms** | **str** | Specifies the protocol version 2 host key algorithms the server offers. | [optional] **ignore_rhosts** | **bool** | If true, ignores .rhosts and .shosts files. | [optional] **kex_algorithms** | **str** | Specifies the available KEX algorithms. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsApi.md similarity index 93% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsApi.md index a3bd3a56c..956c9f52d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.StatisticsApi +# isilon_sdk.v9_4_0.StatisticsApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -31,17 +31,17 @@ Retrieve stats. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StatisticsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StatisticsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) degraded = true # bool | If true, try to continue even if some stats are unavailable. In this case, errors will be present in the per-key returned data. (optional) desc_info = true # bool | Shows the description for the specified key(s). (optional) devid = ['devid_example'] # list[str] | Node devid to query. Either an or \"all\". Can be used more than one time to query multiple nodes. \"all\" queries all up nodes. 0 means query the local node. For \"cluster\" scoped keys, in any devid including 0 can be used. (optional) @@ -105,17 +105,17 @@ Retrieve stats. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StatisticsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StatisticsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) begin = 56 # int | Earliest time (Unix epoch seconds) of interest. Negative times are interpreted as relative (before) now. (optional) degraded = true # bool | If true, try to continue even if some stats are unavailable. In this case, errors will be present in the per-key returned data. (optional) desc_info = true # bool | Shows the description for the specified key(s). (optional) @@ -189,17 +189,17 @@ List key meta-data. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StatisticsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StatisticsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) statistics_key_id = 'statistics_key_id_example' # str | List key meta-data. try: @@ -241,17 +241,17 @@ List meta-data for matching keys. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StatisticsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StatisticsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) count = true # bool | Only count matching keys, do not return meta-data. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) queryable = true # bool | Only list keys that can/cannot be queries. Default is true. (optional) @@ -299,17 +299,17 @@ Retrieve operations list. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StatisticsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StatisticsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) protocols = ['protocols_example'] # list[str] | A comma separated list. Only report operations for specified protocol(s). Default is all. (optional) try: @@ -351,17 +351,17 @@ Retrieve protocol list. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StatisticsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StatisticsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) type = 'type_example' # str | Specifies whether internal, external, or all protocols should be returned. (optional) try: @@ -403,24 +403,24 @@ Name | Type | Description | Notes ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StatisticsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StatisticsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) classes = 'classes_example' # str | A comma separated list. Default is all. (other | write | read | namespace_read | namespace_write) (optional) degraded = true # bool | Continue to report if some nodes do not respond. (optional) local_addresses = 'local_addresses_example' # str | A comma separated list. Only report statistics for operations handled by the local hosts with dotted-quad IP addresses enumerated. (optional) local_names = 'local_names_example' # str | A comma separated list. Only report statistics for operations handled by the local hosts with resolved names enumerated. (optional) nodes = 'nodes_example' # str | A comma separated list. Specify node(s) for which statistics should be reported. Default is all. Zero (0) should be passed in as the sole argument to indicate local. (optional) numeric = true # bool | Do not resolve hostnames and usernames to their human readable form(s). Default is false. (optional) -protocols = 'protocols_example' # str | A comma separated list. Default is all. (nfs3 | smb1 | nlm | ftp | http | siq | smb2 | nfs4 | nfsrdma | nfs4rdma | papi | jobd | irp | lsass_in | lsass_out | hdfs | s3 | internal | external) (optional) +protocols = 'protocols_example' # str | A comma separated list. Default is all. (nfs3 | smb1 | nlm | ftp | http | siq | smb2 | nfs4 | nfsrdma | papi | jobd | irp | lsass_in | lsass_out | hdfs | s3 | internal | external) (optional) remote_addresses = 'remote_addresses_example' # str | A comma separated list. Only report statistics for operations requested by the remote clients with dotted-quad IP addresses enumerated. (optional) remote_names = 'remote_names_example' # str | A comma separated list. Only report statistics for operations requested by the remote clients with resolved names enumerated. (optional) sort = 'sort_example' # str | Sort data by the specified comma-separated field(s). (num_operations | operation_rate | in_max | in_min | in | in_avg | out_max | out_min | out | out_avg | time_max | time_min | time_avg | node | protocol | class | user_id | user_name | local_addr | local_name | remote_addr | remote_name) Prepend 'asc:' or 'desc:' to a field to change the sort direction. (optional) @@ -446,7 +446,7 @@ Name | Type | Description | Notes **local_names** | **str**| A comma separated list. Only report statistics for operations handled by the local hosts with resolved names enumerated. | [optional] **nodes** | **str**| A comma separated list. Specify node(s) for which statistics should be reported. Default is all. Zero (0) should be passed in as the sole argument to indicate local. | [optional] **numeric** | **bool**| Do not resolve hostnames and usernames to their human readable form(s). Default is false. | [optional] - **protocols** | **str**| A comma separated list. Default is all. (nfs3 | smb1 | nlm | ftp | http | siq | smb2 | nfs4 | nfsrdma | nfs4rdma | papi | jobd | irp | lsass_in | lsass_out | hdfs | s3 | internal | external) | [optional] + **protocols** | **str**| A comma separated list. Default is all. (nfs3 | smb1 | nlm | ftp | http | siq | smb2 | nfs4 | nfsrdma | papi | jobd | irp | lsass_in | lsass_out | hdfs | s3 | internal | external) | [optional] **remote_addresses** | **str**| A comma separated list. Only report statistics for operations requested by the remote clients with dotted-quad IP addresses enumerated. | [optional] **remote_names** | **str**| A comma separated list. Only report statistics for operations requested by the remote clients with resolved names enumerated. | [optional] **sort** | **str**| Sort data by the specified comma-separated field(s). (num_operations | operation_rate | in_max | in_min | in | in_avg | out_max | out_min | out | out_avg | time_max | time_min | time_avg | node | protocol | class | user_id | user_name | local_addr | local_name | remote_addr | remote_name) Prepend 'asc:' or 'desc:' to a field to change the sort direction. | [optional] @@ -481,17 +481,17 @@ List all Cloudpools statistics. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StatisticsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StatisticsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) account = 'account_example' # str | Specify an account for which statistics should be reported. (optional) degraded = true # bool | Continue to report even if some nodes do not respond.Defaults to false. (optional) nodes = 'nodes_example' # str | Specify node(s) for which statistics should be reported. Default is 'all'. Zero (0) should be passed in as the sole argument to indicate local. (optional) @@ -543,17 +543,17 @@ Name | Type | Description | Notes ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StatisticsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StatisticsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) degraded = true # bool | Continue to report if some nodes do not respond. (optional) nodes = 'nodes_example' # str | A comma separated list. Specify node(s) for which statistics should be reported. Default is all. Zero (0) should be passed in as the sole argument to indicate local. (optional) sort = 'sort_example' # str | Sort data by the specified comma-separated field(s). (drive_id | type | xfers_in | bytes_in | xfer_size_in | xfers_out | bytes_out | xfer_size_out | access_latency | access_slow | iosched_latency | iosched_queue | busy | used_bytes_percent | used_inodes). Prepend 'asc:' or 'desc:' to a field to change the sort direction. (optional) @@ -603,17 +603,17 @@ File heat map, i.e. rate of file operations, and the type of operation listed by ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StatisticsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StatisticsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) classes = 'classes_example' # str | A comma separated list. Default is all. (other | write | read | namespace_read | namespace_write). (optional) convertlin = true # bool | Convert lin to hex. Default is true. (optional) degraded = true # bool | Continue to report if some nodes do not respond. (optional) @@ -675,22 +675,22 @@ Name | Type | Description | Notes ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StatisticsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StatisticsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) classes = 'classes_example' # str | A comma separated list. Default is all. (other | write | read | create | delete | namespace_read | namespace_write | file_state | session_state). (optional) degraded = true # bool | Continue to report if some nodes do not respond. (optional) nodes = 'nodes_example' # str | A comma separated list. Specify node(s) for which statistics should be reported. Default is all. Zero (0) should be passed in as the sole argument to indicate local. (optional) operations = 'operations_example' # str | Specify operation(s) for which statistics should be reported (See the cli command: 'isi statistics list operations', for a total list). Default is all. (optional) -protocols = 'protocols_example' # str | A comma separated list. Default is all external protocols. (nfs3 | smb1 | nlm | ftp | http | siq | smb2 | nfs4 | nfsrdma | nfs4rdma | papi | jobd | irp | lsass_in | lsass_out | hdfs | s3 | all | internal | external) (optional) +protocols = 'protocols_example' # str | A comma separated list. Default is all external protocols. (nfs3 | smb1 | nlm | ftp | http | siq | smb2 | nfs4 | nfsrdma | papi | jobd | irp | lsass_in | lsass_out | hdfs | s3 | all | internal | external) (optional) sort = 'sort_example' # str | Sort data by the specified comma-separated field(s). (time | operation_count | operation_rate | in_max | in_min | in | in_avg | in_standard_dev | out_max | out_min | out | out_avg | out_standard_dev | time_max | time_min | time_avg | time_standard_dev | node | protocol | class | operation). Prepend 'asc:' or 'desc:' to a field to change the sort direction. (optional) timeout = 56 # int | Timeout remote commands after NUM seconds, where NUM is the integer passed to the argument. (optional) totalby = 'totalby_example' # str | A comma separated list specifying what should be unique. (node | protocol | class | operation). Aggregation is performed over all the fields not specified in the list. (optional) @@ -711,7 +711,7 @@ Name | Type | Description | Notes **degraded** | **bool**| Continue to report if some nodes do not respond. | [optional] **nodes** | **str**| A comma separated list. Specify node(s) for which statistics should be reported. Default is all. Zero (0) should be passed in as the sole argument to indicate local. | [optional] **operations** | **str**| Specify operation(s) for which statistics should be reported (See the cli command: 'isi statistics list operations', for a total list). Default is all. | [optional] - **protocols** | **str**| A comma separated list. Default is all external protocols. (nfs3 | smb1 | nlm | ftp | http | siq | smb2 | nfs4 | nfsrdma | nfs4rdma | papi | jobd | irp | lsass_in | lsass_out | hdfs | s3 | all | internal | external) | [optional] + **protocols** | **str**| A comma separated list. Default is all external protocols. (nfs3 | smb1 | nlm | ftp | http | siq | smb2 | nfs4 | nfsrdma | papi | jobd | irp | lsass_in | lsass_out | hdfs | s3 | all | internal | external) | [optional] **sort** | **str**| Sort data by the specified comma-separated field(s). (time | operation_count | operation_rate | in_max | in_min | in | in_avg | in_standard_dev | out_max | out_min | out | out_avg | out_standard_dev | time_max | time_min | time_avg | time_standard_dev | node | protocol | class | operation). Prepend 'asc:' or 'desc:' to a field to change the sort direction. | [optional] **timeout** | **int**| Timeout remote commands after NUM seconds, where NUM is the integer passed to the argument. | [optional] **totalby** | **str**| A comma separated list specifying what should be unique. (node | protocol | class | operation). Aggregation is performed over all the fields not specified in the list. | [optional] @@ -743,20 +743,20 @@ Name | Type | Description | Notes ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StatisticsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StatisticsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) degraded = true # bool | Continue to report if some nodes do not respond. (optional) nodes = 'nodes_example' # str | A comma separated list. Specify node(s) for which statistics should be reported. Default is all. Zero (0) should be passed in as the sole argument to indicate local. (optional) -protocol = 'protocol_example' # str | A single protocol. Default is nfs3. (nfs3 | smb1 | nlm | ftp | http | siq | smb2 | nfs4 | nfsrdma | nfs4rdma | papi | jobd | irp | lsass_in | lsass_out | hdfs | s3) (optional) +protocol = 'protocol_example' # str | A single protocol. Default is nfs3. (nfs3 | smb1 | nlm | ftp | http | siq | smb2 | nfs4 | nfsrdma | papi | jobd | irp | lsass_in | lsass_out | hdfs | s3) (optional) timeout = 56 # int | Timeout remote commands after NUM seconds, where NUM is the integer passed to the argument. (optional) try: @@ -772,7 +772,7 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **degraded** | **bool**| Continue to report if some nodes do not respond. | [optional] **nodes** | **str**| A comma separated list. Specify node(s) for which statistics should be reported. Default is all. Zero (0) should be passed in as the sole argument to indicate local. | [optional] - **protocol** | **str**| A single protocol. Default is nfs3. (nfs3 | smb1 | nlm | ftp | http | siq | smb2 | nfs4 | nfsrdma | nfs4rdma | papi | jobd | irp | lsass_in | lsass_out | hdfs | s3) | [optional] + **protocol** | **str**| A single protocol. Default is nfs3. (nfs3 | smb1 | nlm | ftp | http | siq | smb2 | nfs4 | nfsrdma | papi | jobd | irp | lsass_in | lsass_out | hdfs | s3) | [optional] **timeout** | **int**| Timeout remote commands after NUM seconds, where NUM is the integer passed to the argument. | [optional] ### Return type @@ -801,17 +801,17 @@ Name | Type | Description | Notes ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StatisticsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StatisticsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) degraded = true # bool | Continue to report if some nodes do not respond. (optional) nodes = 'nodes_example' # str | A comma separated list. Specify node(s) for which statistics should be reported. Default is all. Zero (0) should be passed in as the sole argument to indicate local. (optional) oprates = true # bool | Display protocol operation rate statistics rather than the default throughput statistics. (optional) @@ -861,17 +861,17 @@ Name | Type | Description | Notes ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StatisticsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StatisticsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dataset = 'dataset_example' # str | Report workload performance metrics for specified dataset. Default is 'System'. (optional) degraded = true # bool | Continue to report if some nodes do not respond. (optional) domain_ids = 'domain_ids_example' # str | A comma separated list. Only report statistics for domains specified by id, if configured. (optional) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsCurrent.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsCurrent.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsCurrent.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsCurrent.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsCurrentStat.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsCurrentStat.md similarity index 91% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsCurrentStat.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsCurrentStat.md index 1147ac99c..389b649c9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsCurrentStat.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsCurrentStat.md @@ -7,7 +7,6 @@ Name | Type | Description | Notes **error** | **str** | Key specific error string, if applicable. | [optional] **error_code** | **int** | Key specific error number, if applicable. | [optional] **key** | **str** | Key name of statistic. | -**node** | **int** | The LNN of node, if requested. | [optional] **time** | **int** | Unix Epoch time in seconds that statistic was collected. | **value** | **str** | Key dependent value. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsHistory.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsHistory.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsHistory.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsHistory.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsHistoryStat.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsHistoryStat.md similarity index 92% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsHistoryStat.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsHistoryStat.md index 3dce511fd..4e5af80b0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsHistoryStat.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsHistoryStat.md @@ -7,7 +7,6 @@ Name | Type | Description | Notes **error** | **str** | Key specific error string, if applicable. | [optional] **error_code** | **int** | Key specific error number, if applicable. | [optional] **key** | **str** | Key name of statistic. | -**node** | **int** | The LNN of node, if requested. | [optional] **resolution** | **int** | The interval for which these results were figured (averaged against.) | **values** | [**list[StatisticsHistoryStatValue]**](StatisticsHistoryStatValue.md) | Time-series values. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsHistoryStatValue.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsHistoryStatValue.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsHistoryStatValue.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsHistoryStatValue.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsKey.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsKey.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsKey.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsKey.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsKeyPolicy.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsKeyPolicy.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsKeyPolicy.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsKeyPolicy.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsKeys.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsKeys.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsKeys.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsKeys.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsKeysExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsKeysExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsKeysExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsKeysExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsOperation.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsOperation.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsOperation.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsOperation.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsOperations.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsOperations.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsOperations.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsOperations.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsProtocol.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsProtocol.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsProtocol.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsProtocol.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsProtocols.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsProtocols.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StatisticsProtocols.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StatisticsProtocols.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolApi.md similarity index 81% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolApi.md index b3a2f9270..e63244581 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolApi.md @@ -1,29 +1,29 @@ -# isilon_sdk.v9_11_0.StoragepoolApi +# isilon_sdk.v9_4_0.StoragepoolApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* Method | HTTP request | Description ------------- | ------------- | ------------- -[**create_storagepool_nodepool**](StoragepoolApi.md#create_storagepool_nodepool) | **POST** /platform/22/storagepool/nodepools | -[**create_storagepool_tier**](StoragepoolApi.md#create_storagepool_tier) | **POST** /platform/16/storagepool/tiers | -[**delete_storagepool_nodepool**](StoragepoolApi.md#delete_storagepool_nodepool) | **DELETE** /platform/22/storagepool/nodepools/{StoragepoolNodepoolId} | -[**delete_storagepool_nodepools**](StoragepoolApi.md#delete_storagepool_nodepools) | **DELETE** /platform/22/storagepool/nodepools | -[**delete_storagepool_tier**](StoragepoolApi.md#delete_storagepool_tier) | **DELETE** /platform/16/storagepool/tiers/{StoragepoolTierId} | -[**delete_storagepool_tiers**](StoragepoolApi.md#delete_storagepool_tiers) | **DELETE** /platform/16/storagepool/tiers | -[**get_storagepool_nodepool**](StoragepoolApi.md#get_storagepool_nodepool) | **GET** /platform/22/storagepool/nodepools/{StoragepoolNodepoolId} | -[**get_storagepool_nodetype**](StoragepoolApi.md#get_storagepool_nodetype) | **GET** /platform/22/storagepool/nodetypes/{StoragepoolNodetypeId} | -[**get_storagepool_nodetypes**](StoragepoolApi.md#get_storagepool_nodetypes) | **GET** /platform/22/storagepool/nodetypes | -[**get_storagepool_settings**](StoragepoolApi.md#get_storagepool_settings) | **GET** /platform/18/storagepool/settings | +[**create_storagepool_nodepool**](StoragepoolApi.md#create_storagepool_nodepool) | **POST** /platform/9/storagepool/nodepools | +[**create_storagepool_tier**](StoragepoolApi.md#create_storagepool_tier) | **POST** /platform/1/storagepool/tiers | +[**delete_storagepool_nodepool**](StoragepoolApi.md#delete_storagepool_nodepool) | **DELETE** /platform/9/storagepool/nodepools/{StoragepoolNodepoolId} | +[**delete_storagepool_nodepools**](StoragepoolApi.md#delete_storagepool_nodepools) | **DELETE** /platform/9/storagepool/nodepools | +[**delete_storagepool_tier**](StoragepoolApi.md#delete_storagepool_tier) | **DELETE** /platform/1/storagepool/tiers/{StoragepoolTierId} | +[**delete_storagepool_tiers**](StoragepoolApi.md#delete_storagepool_tiers) | **DELETE** /platform/1/storagepool/tiers | +[**get_storagepool_nodepool**](StoragepoolApi.md#get_storagepool_nodepool) | **GET** /platform/9/storagepool/nodepools/{StoragepoolNodepoolId} | +[**get_storagepool_nodetype**](StoragepoolApi.md#get_storagepool_nodetype) | **GET** /platform/12/storagepool/nodetypes/{StoragepoolNodetypeId} | +[**get_storagepool_nodetypes**](StoragepoolApi.md#get_storagepool_nodetypes) | **GET** /platform/12/storagepool/nodetypes | +[**get_storagepool_settings**](StoragepoolApi.md#get_storagepool_settings) | **GET** /platform/5/storagepool/settings | [**get_storagepool_status**](StoragepoolApi.md#get_storagepool_status) | **GET** /platform/1/storagepool/status | -[**get_storagepool_storagepools**](StoragepoolApi.md#get_storagepool_storagepools) | **GET** /platform/16/storagepool/storagepools | +[**get_storagepool_storagepools**](StoragepoolApi.md#get_storagepool_storagepools) | **GET** /platform/9/storagepool/storagepools | [**get_storagepool_suggested_protection_nid**](StoragepoolApi.md#get_storagepool_suggested_protection_nid) | **GET** /platform/3/storagepool/suggested-protection/{StoragepoolSuggestedProtectionNid} | -[**get_storagepool_tier**](StoragepoolApi.md#get_storagepool_tier) | **GET** /platform/16/storagepool/tiers/{StoragepoolTierId} | +[**get_storagepool_tier**](StoragepoolApi.md#get_storagepool_tier) | **GET** /platform/1/storagepool/tiers/{StoragepoolTierId} | [**get_storagepool_unprovisioned**](StoragepoolApi.md#get_storagepool_unprovisioned) | **GET** /platform/1/storagepool/unprovisioned | -[**list_storagepool_nodepools**](StoragepoolApi.md#list_storagepool_nodepools) | **GET** /platform/22/storagepool/nodepools | -[**list_storagepool_tiers**](StoragepoolApi.md#list_storagepool_tiers) | **GET** /platform/16/storagepool/tiers | -[**update_storagepool_nodepool**](StoragepoolApi.md#update_storagepool_nodepool) | **PUT** /platform/22/storagepool/nodepools/{StoragepoolNodepoolId} | -[**update_storagepool_settings**](StoragepoolApi.md#update_storagepool_settings) | **PUT** /platform/18/storagepool/settings | -[**update_storagepool_tier**](StoragepoolApi.md#update_storagepool_tier) | **PUT** /platform/16/storagepool/tiers/{StoragepoolTierId} | +[**list_storagepool_nodepools**](StoragepoolApi.md#list_storagepool_nodepools) | **GET** /platform/9/storagepool/nodepools | +[**list_storagepool_tiers**](StoragepoolApi.md#list_storagepool_tiers) | **GET** /platform/1/storagepool/tiers | +[**update_storagepool_nodepool**](StoragepoolApi.md#update_storagepool_nodepool) | **PUT** /platform/9/storagepool/nodepools/{StoragepoolNodepoolId} | +[**update_storagepool_settings**](StoragepoolApi.md#update_storagepool_settings) | **PUT** /platform/5/storagepool/settings | +[**update_storagepool_tier**](StoragepoolApi.md#update_storagepool_tier) | **PUT** /platform/1/storagepool/tiers/{StoragepoolTierId} | # **create_storagepool_nodepool** @@ -37,18 +37,18 @@ Create a new node pool. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StoragepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -storagepool_nodepool = isilon_sdk.v9_11_0.StoragepoolNodepoolCreateParams() # StoragepoolNodepoolCreateParams | +api_instance = isilon_sdk.v9_4_0.StoragepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +storagepool_nodepool = isilon_sdk.v9_4_0.StoragepoolNodepoolCreateParams() # StoragepoolNodepoolCreateParams | try: api_response = api_instance.create_storagepool_nodepool(storagepool_nodepool) @@ -89,18 +89,18 @@ Create a new tier. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StoragepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -storagepool_tier = isilon_sdk.v9_11_0.StoragepoolTierCreateParams() # StoragepoolTierCreateParams | +api_instance = isilon_sdk.v9_4_0.StoragepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +storagepool_tier = isilon_sdk.v9_4_0.StoragepoolTierCreateParams() # StoragepoolTierCreateParams | try: api_response = api_instance.create_storagepool_tier(storagepool_tier) @@ -141,17 +141,17 @@ Delete node pool. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StoragepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StoragepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) storagepool_nodepool_id = 'storagepool_nodepool_id_example' # str | Delete node pool. try: @@ -192,17 +192,17 @@ Delete node pool. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StoragepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StoragepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_instance.delete_storagepool_nodepools() @@ -239,17 +239,17 @@ Delete tier. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StoragepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StoragepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) storagepool_tier_id = 'storagepool_tier_id_example' # str | Delete tier. try: @@ -290,17 +290,17 @@ Delete all tiers. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StoragepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StoragepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_instance.delete_storagepool_tiers() @@ -337,17 +337,17 @@ Retrieve node pool information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StoragepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StoragepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) storagepool_nodepool_id = 'storagepool_nodepool_id_example' # str | Retrieve node pool information. try: @@ -389,17 +389,17 @@ Retrieve node type information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StoragepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StoragepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) storagepool_nodetype_id = 'storagepool_nodetype_id_example' # str | Retrieve node type information. try: @@ -441,17 +441,17 @@ List all node types. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StoragepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StoragepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_storagepool_nodetypes() @@ -489,17 +489,17 @@ List all storagepool settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StoragepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StoragepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_storagepool_settings() @@ -537,17 +537,17 @@ List any health conditions detected. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StoragepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StoragepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_storagepool_status() @@ -585,17 +585,17 @@ List all storage pools. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StoragepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StoragepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) sort = 'sort_example' # str | The field that will be used for sorting. (optional) toplevels = 'toplevels_example' # str | If true, node pools contained within tiers will be filtered out of results. (optional) @@ -641,17 +641,17 @@ Retrieve the suggested protection policy. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StoragepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StoragepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) storagepool_suggested_protection_nid = 'storagepool_suggested_protection_nid_example' # str | Retrieve the suggested protection policy. try: @@ -693,17 +693,17 @@ Retrieve tier information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StoragepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StoragepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) storagepool_tier_id = 'storagepool_tier_id_example' # str | Retrieve tier information. try: @@ -745,17 +745,17 @@ Get the unprovisioned nodes and drives ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StoragepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StoragepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_storagepool_unprovisioned() @@ -793,17 +793,17 @@ List all node pools. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StoragepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StoragepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.list_storagepool_nodepools() @@ -841,17 +841,17 @@ List all tiers. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StoragepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StoragepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.list_storagepool_tiers() @@ -889,18 +889,18 @@ Modify node pool. All input fields are optional, but one or more must be supplie ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StoragepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -storagepool_nodepool = isilon_sdk.v9_11_0.StoragepoolNodepool() # StoragepoolNodepool | +api_instance = isilon_sdk.v9_4_0.StoragepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +storagepool_nodepool = isilon_sdk.v9_4_0.StoragepoolNodepool() # StoragepoolNodepool | storagepool_nodepool_id = 'storagepool_nodepool_id_example' # str | Modify node pool. All input fields are optional, but one or more must be supplied. try: @@ -942,18 +942,18 @@ Modify one or more settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StoragepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -storagepool_settings = isilon_sdk.v9_11_0.StoragepoolSettingsExtended() # StoragepoolSettingsExtended | +api_instance = isilon_sdk.v9_4_0.StoragepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +storagepool_settings = isilon_sdk.v9_4_0.StoragepoolSettingsExtended() # StoragepoolSettingsExtended | try: api_instance.update_storagepool_settings(storagepool_settings) @@ -993,18 +993,18 @@ Modify tier. All input fields are optional, but one or more must be supplied. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StoragepoolApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -storagepool_tier = isilon_sdk.v9_11_0.StoragepoolTier() # StoragepoolTier | +api_instance = isilon_sdk.v9_4_0.StoragepoolApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +storagepool_tier = isilon_sdk.v9_4_0.StoragepoolTier() # StoragepoolTier | storagepool_tier_id = 'storagepool_tier_id_example' # str | Modify tier. All input fields are optional, but one or more must be supplied. try: diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolNodepool.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolNodepool.md similarity index 76% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolNodepool.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolNodepool.md index aaeeda72d..9a925765e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolNodepool.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolNodepool.md @@ -9,10 +9,7 @@ Name | Type | Description | Notes **name** | **str** | The node pool name. | [optional] **node_type_ids** | **list[int]** | The node types that are part of this pool. | [optional] **protection_policy** | **str** | The node pool protection policy. | [optional] -**sjm_enabled** | **bool** | SJM enabled on nodepool | [optional] **tier** | **str** | The name or ID of the node pool's tier, if it is in a tier. | [optional] -**transfer_limit_pct** | **int** | Stop moving files to this nodepool when this limit is met | [optional] -**transfer_limit_state** | **str** | How the transfer limit value is being applied | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolNodepoolCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolNodepoolCreateParams.md similarity index 71% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolNodepoolCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolNodepoolCreateParams.md index adab422c3..db50a8d2e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolNodepoolCreateParams.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolNodepoolCreateParams.md @@ -3,14 +3,13 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- +**assess** | **bool** | Test that the action is possible | [optional] **l3** | **bool** | Use SSDs in this node pool for L3 cache. | [optional] **lnns** | **list[int]** | The node membership change requested for this node pool. | **name** | **str** | The node pool name. | +**node_type_ids** | **list[int]** | The node types that are part of this pool. | [optional] **protection_policy** | **str** | The node pool protection policy. | [optional] -**sjm_enabled** | **bool** | SJM enabled on nodepool | [optional] **tier** | **str** | The name or ID of the node pool's tier, if it is in a tier. | [optional] -**transfer_limit_pct** | **int** | Stop moving files to this nodepool when this limit is met | [optional] -**transfer_limit_state** | **str** | How the transfer limit value is being applied | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolNodepoolExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolNodepoolExtended.md similarity index 78% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolNodepoolExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolNodepoolExtended.md index cbd3cfaff..274d01f93 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolNodepoolExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolNodepoolExtended.md @@ -14,11 +14,8 @@ Name | Type | Description | Notes **name** | **str** | The node pool name. | **node_type_ids** | **list[int]** | The node types that are part of this pool. | **protection_policy** | **str** | The underlying protection policy. | [optional] -**sjm_enabled** | **bool** | Indicates if SJM is currently enabled on this node pool | **tier** | **str** | The name (if named) or system ID of the node pool's tier, if it is in a tier. Otherwise null. | [optional] -**transfer_limit_pct** | **int** | Stop moving files to this nodepool when this limit is met | [optional] -**transfer_limit_state** | **str** | How the transfer limit value is being applied | [optional] -**usage** | [**StoragepoolStoragepoolUsage**](StoragepoolStoragepoolUsage.md) | Total pool usage. | [optional] +**usage** | [**StoragepoolTierUsage**](StoragepoolTierUsage.md) | Total pool usage. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolNodepools.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolNodepools.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolNodepools.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolNodepools.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolNodepoolsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolNodepoolsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolNodepoolsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolNodepoolsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolNodetype.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolNodetype.md similarity index 88% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolNodetype.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolNodetype.md index 490dd98b3..5d2072270 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolNodetype.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolNodetype.md @@ -7,7 +7,6 @@ Name | Type | Description | Notes **manual** | **bool** | Whether or not the nodetype is in a manually managed node pool. | **nodes** | **list[int]** | The nodes that are part of this nodetype. | **product_name** | **str** | The product name of the node type. | -**sjm_capable** | **bool** | Whether SJM is supported by this nodetype | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolNodetypes.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolNodetypes.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolNodetypes.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolNodetypes.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolNodetypesApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolNodetypesApi.md similarity index 84% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolNodetypesApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolNodetypesApi.md index cfdf2155b..cceecdf02 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolNodetypesApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolNodetypesApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.StoragepoolNodetypesApi +# isilon_sdk.v9_4_0.StoragepoolNodetypesApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -18,17 +18,17 @@ Assess nodepools for modifying node type. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.StoragepoolNodetypesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.StoragepoolNodetypesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) nid = 'nid_example' # str | try: diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolNodetypesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolNodetypesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolNodetypesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolNodetypesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolSettingsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolSettingsExtended.md similarity index 87% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolSettingsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolSettingsExtended.md index 732f9ec80..102d6a044 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolSettingsExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolSettingsExtended.md @@ -5,8 +5,6 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **automatically_manage_io_optimization** | **str** | Automatically manage IO optimization settings on files. | [optional] **automatically_manage_protection** | **str** | Automatically manage protection settings on files. | [optional] -**default_transfer_limit_pct** | **int** | Applies to all storagepools that fall back on the default transfer limit. Stop moving files to this pool when this limit is met | [optional] -**default_transfer_limit_state** | **str** | How the default transfer limit value is applied | [optional] **global_namespace_acceleration_enabled** | **bool** | Optimize namespace operations by storing metadata on SSDs. | [optional] **protect_directories_one_level_higher** | **bool** | Automatically add additional protection level to all directories. | [optional] **spillover_enabled** | **bool** | Spill writes into other pools as needed. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolSettingsSettings.md similarity index 87% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolSettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolSettingsSettings.md index bb82e7666..618615931 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolSettingsSettings.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolSettingsSettings.md @@ -5,8 +5,6 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **automatically_manage_io_optimization** | **str** | Automatically manage IO optimization settings on files. | **automatically_manage_protection** | **str** | Automatically manage protection settings on files. | -**default_transfer_limit_pct** | **int** | Applies to all storagepools that fall back on the default transfer limit. Stop moving files to this pool when this limit is met | [optional] -**default_transfer_limit_state** | **str** | How the default transfer limit value is applied | [optional] **global_namespace_acceleration_enabled** | **bool** | Optimize namespace operations by storing metadata on SSDs. | **global_namespace_acceleration_state** | **str** | Whether or not namespace operation optimizations are currently in effect. | **protect_directories_one_level_higher** | **bool** | Automatically add additional protection level to all directories. | diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolSettingsSettingsSpilloverTarget.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolSettingsSettingsSpilloverTarget.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolSettingsSettingsSpilloverTarget.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolSettingsSettingsSpilloverTarget.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolSettingsSpilloverTarget.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolSettingsSpilloverTarget.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolSettingsSpilloverTarget.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolSettingsSpilloverTarget.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolStatus.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolStatus.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolStatus.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolStatus.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolStatusUnhealthyItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolStatusUnhealthyItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolStatusUnhealthyItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolStatusUnhealthyItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolStatusUnhealthyItemAffectedItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolStatusUnhealthyItemAffectedItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolStatusUnhealthyItemAffectedItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolStatusUnhealthyItemAffectedItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolStatusUnhealthyItemAffectedItemDevice.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolStatusUnhealthyItemAffectedItemDevice.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolStatusUnhealthyItemAffectedItemDevice.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolStatusUnhealthyItemAffectedItemDevice.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolStatusUnhealthyItemDiskpool.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolStatusUnhealthyItemDiskpool.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolStatusUnhealthyItemDiskpool.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolStatusUnhealthyItemDiskpool.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolStoragepool.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolStoragepool.md similarity index 83% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolStoragepool.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolStoragepool.md index c31bb589f..f1457d6ab 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolStoragepool.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolStoragepool.md @@ -15,10 +15,8 @@ Name | Type | Description | Notes **name** | **str** | The pool name. | **node_type_ids** | **list[int]** | The node types that are part of this pool. | **protection_policy** | **str** | The underlying protection policy. | [optional] -**transfer_limit_pct** | **int** | Stop moving files to this pool when this limit is met | [optional] -**transfer_limit_state** | **str** | How the transfer limit value is being applied | [optional] **type** | **str** | The pool type. | -**usage** | [**StoragepoolStoragepoolUsage**](StoragepoolStoragepoolUsage.md) | Total pool usage. | [optional] +**usage** | [**StoragepoolTierUsage**](StoragepoolTierUsage.md) | Total pool usage. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolStoragepools.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolStoragepools.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolStoragepools.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolStoragepools.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolSuggestedProtection.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolSuggestedProtection.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolSuggestedProtection.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolSuggestedProtection.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolTier.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolTier.md similarity index 68% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolTier.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolTier.md index 76b9ab42f..28d07f66e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolTier.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolTier.md @@ -5,8 +5,6 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **children** | **list[str]** | The names or IDs of the tier's children. | [optional] **name** | **str** | The tier name. | [optional] -**transfer_limit_pct** | **int** | Stop moving files to this tier when this limit is met | [optional] -**transfer_limit_state** | **str** | How the transfer limit value is being applied | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolTierCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolTierCreateParams.md similarity index 68% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolTierCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolTierCreateParams.md index 9383cc213..a8b3bcc0e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolTierCreateParams.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolTierCreateParams.md @@ -5,8 +5,6 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **children** | **list[str]** | The names or IDs of the tier's children. | [optional] **name** | **str** | The tier name. | -**transfer_limit_pct** | **int** | Stop moving files to this tier when this limit is met | [optional] -**transfer_limit_state** | **str** | How the transfer limit value is being applied | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolTierExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolTierExtended.md similarity index 58% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolTierExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolTierExtended.md index 30b5b1ed3..63eb76ae4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolTierExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolTierExtended.md @@ -4,13 +4,10 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **children** | **list[str]** | The names or IDs of the tier's children. | [optional] +**name** | **str** | The tier name. | **id** | **int** | The system ID given to the tier. | **lnns** | **list[int]** | The nodes that are part of this tier. | -**name** | **str** | The tier name. | -**node_type_ids** | **list[int]** | The node types that are part of this pool. | -**transfer_limit_pct** | **int** | Stop moving files to this tier when this limit is met | [optional] -**transfer_limit_state** | **str** | How the transfer limit value is being applied | [optional] -**usage** | [**StoragepoolStoragepoolUsage**](StoragepoolStoragepoolUsage.md) | Total pool usage. | [optional] +**usage** | [**StoragepoolTierUsage**](StoragepoolTierUsage.md) | Total pool usage. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolStoragepoolUsage.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolTierUsage.md similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolStoragepoolUsage.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolTierUsage.md index 30fe31f62..bd030d602 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolStoragepoolUsage.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolTierUsage.md @@ -1,4 +1,4 @@ -# StoragepoolStoragepoolUsage +# StoragepoolTierUsage ## Properties Name | Type | Description | Notes diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolTiers.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolTiers.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolTiers.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolTiers.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolTiersExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolTiersExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolTiersExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolTiersExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolUnprovisioned.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolUnprovisioned.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolUnprovisioned.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolUnprovisioned.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolUnprovisionedUnprovisioned.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolUnprovisionedUnprovisioned.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/StoragepoolUnprovisionedUnprovisioned.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/StoragepoolUnprovisionedUnprovisioned.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SubnetsSubnetPool.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SubnetsSubnetPool.md similarity index 74% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SubnetsSubnetPool.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SubnetsSubnetPool.md index a28eec6b1..063d7ff1a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SubnetsSubnetPool.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SubnetsSubnetPool.md @@ -4,22 +4,22 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **access_zone** | **str** | Name of a valid access zone to map IP address pool to the zone. | [optional] -**aggregation_mode** | **str** | OneFS supports the following NIC aggregation modes. 'fec' was renamed to 'loadbalance' in OneFS 9.7. | [optional] +**aggregation_mode** | **str** | OneFS supports the following NIC aggregation modes. | [optional] **alloc_method** | **str** | Specifies how IP address allocation is done among pool members. | [optional] **description** | **str** | A description of the pool. | [optional] **ifaces** | [**list[SubnetsSubnetPoolIface]**](SubnetsSubnetPoolIface.md) | List of interface members in this pool. | [optional] -**ipv6_perform_dad** | **bool** | Indicates if the Network Pool should perform IPv6 Duplicate Address Detection when configuring the IPs. Only applies to IPv6 Network Pools. | [optional] **name** | **str** | The name of the pool. It must be unique throughout the given subnet.It's a required field with POST method. | [optional] -**nfs_rroce_only** | **bool** | Indicates that pool contains only RDMA RRoCE capable interfaces. | [optional] +**nfsv3_rroce_only** | **bool** | Indicates that pool contains only RDMA RRoCE capable interfaces. | [optional] **ranges** | [**list[SubnetsSubnetPoolRange]**](SubnetsSubnetPoolRange.md) | List of IP address ranges in this pool. | [optional] -**rebalance_policy** | **str** | Rebalance policy. | [optional] +**rebalance_policy** | **str** | Rebalance policy.. | [optional] +**sc_auto_unsuspend_delay** | **int** | Time delay in seconds before a node which has been automatically unsuspended becomes usable in SmartConnect responses for pool zones. | [optional] **sc_connect_policy** | **str** | SmartConnect client connection balancing policy. | [optional] **sc_dns_zone** | **str** | SmartConnect zone name for the pool. | [optional] **sc_dns_zone_aliases** | **list[str]** | List of SmartConnect zone aliases (DNS names) to the pool. | [optional] **sc_failover_policy** | **str** | SmartConnect IP failover policy. | [optional] **sc_subnet** | **str** | Name of SmartConnect service subnet for this pool. | [optional] **sc_ttl** | **int** | Time to live value for SmartConnect DNS query responses in seconds. | [optional] -**static_routes** | [**list[SubnetsSubnetPoolStaticRoute]**](SubnetsSubnetPoolStaticRoute.md) | List of configured static routes in this network pool | [optional] +**static_routes** | [**list[SubnetsSubnetPoolStaticRoute]**](SubnetsSubnetPoolStaticRoute.md) | List of interface members in this pool. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SubnetsSubnetPoolCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SubnetsSubnetPoolCreateParams.md similarity index 74% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SubnetsSubnetPoolCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SubnetsSubnetPoolCreateParams.md index a324e66cc..ebdbd701b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SubnetsSubnetPoolCreateParams.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SubnetsSubnetPoolCreateParams.md @@ -4,22 +4,22 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **access_zone** | **str** | Name of a valid access zone to map IP address pool to the zone. | [optional] -**aggregation_mode** | **str** | OneFS supports the following NIC aggregation modes. 'fec' was renamed to 'loadbalance' in OneFS 9.7. | [optional] +**aggregation_mode** | **str** | OneFS supports the following NIC aggregation modes. | [optional] **alloc_method** | **str** | Specifies how IP address allocation is done among pool members. | [optional] **description** | **str** | A description of the pool. | [optional] **ifaces** | [**list[SubnetsSubnetPoolIface]**](SubnetsSubnetPoolIface.md) | List of interface members in this pool. | [optional] -**ipv6_perform_dad** | **bool** | Indicates if the Network Pool should perform IPv6 Duplicate Address Detection when configuring the IPs. Only applies to IPv6 Network Pools. | [optional] **name** | **str** | The name of the pool. It must be unique throughout the given subnet.It's a required field with POST method. | -**nfs_rroce_only** | **bool** | Indicates that pool contains only RDMA RRoCE capable interfaces. | [optional] +**nfsv3_rroce_only** | **bool** | Indicates that pool contains only RDMA RRoCE capable interfaces. | [optional] **ranges** | [**list[SubnetsSubnetPoolRange]**](SubnetsSubnetPoolRange.md) | List of IP address ranges in this pool. | [optional] -**rebalance_policy** | **str** | Rebalance policy. | [optional] +**rebalance_policy** | **str** | Rebalance policy.. | [optional] +**sc_auto_unsuspend_delay** | **int** | Time delay in seconds before a node which has been automatically unsuspended becomes usable in SmartConnect responses for pool zones. | [optional] **sc_connect_policy** | **str** | SmartConnect client connection balancing policy. | [optional] **sc_dns_zone** | **str** | SmartConnect zone name for the pool. | [optional] **sc_dns_zone_aliases** | **list[str]** | List of SmartConnect zone aliases (DNS names) to the pool. | [optional] **sc_failover_policy** | **str** | SmartConnect IP failover policy. | [optional] **sc_subnet** | **str** | Name of SmartConnect service subnet for this pool. | [optional] **sc_ttl** | **int** | Time to live value for SmartConnect DNS query responses in seconds. | [optional] -**static_routes** | [**list[SubnetsSubnetPoolStaticRoute]**](SubnetsSubnetPoolStaticRoute.md) | List of configured static routes in this network pool | [optional] +**static_routes** | [**list[SubnetsSubnetPoolStaticRoute]**](SubnetsSubnetPoolStaticRoute.md) | List of interface members in this pool. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SubnetsSubnetPoolIface.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SubnetsSubnetPoolIface.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SubnetsSubnetPoolIface.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SubnetsSubnetPoolIface.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SubnetsSubnetPoolRange.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SubnetsSubnetPoolRange.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SubnetsSubnetPoolRange.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SubnetsSubnetPoolRange.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SubnetsSubnetPoolStaticRoute.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SubnetsSubnetPoolStaticRoute.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SubnetsSubnetPoolStaticRoute.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SubnetsSubnetPoolStaticRoute.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SubnetsSubnetPools.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SubnetsSubnetPools.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SubnetsSubnetPools.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SubnetsSubnetPools.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SubnetsSubnetPoolsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SubnetsSubnetPoolsExtended.md similarity index 82% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SubnetsSubnetPoolsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SubnetsSubnetPoolsExtended.md index a404735df..07e49dfd0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SubnetsSubnetPoolsExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SubnetsSubnetPoolsExtended.md @@ -3,7 +3,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**pools** | [**list[SubnetsSubnetPoolsPoolExtended]**](SubnetsSubnetPoolsPoolExtended.md) | | [optional] +**pools** | [**list[SubnetsSubnetPoolsPool]**](SubnetsSubnetPoolsPool.md) | | [optional] **resume** | **str** | Provide this token as the 'resume' query argument to continue listing results. | [optional] **total** | **int** | Total number of items available. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SubnetsSubnetPoolsPool.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SubnetsSubnetPoolsPool.md similarity index 70% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SubnetsSubnetPoolsPool.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SubnetsSubnetPoolsPool.md index 097a2e850..9c7d99bb4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SubnetsSubnetPoolsPool.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SubnetsSubnetPoolsPool.md @@ -5,21 +5,18 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **access_zone** | **str** | Name of a valid access zone to map IP address pool to the zone. | **addr_family** | **str** | IP address format. | -**aggregation_mode** | **str** | OneFS supports the following NIC aggregation modes. 'fec' was renamed to 'loadbalance' in OneFS 9.7. | +**aggregation_mode** | **str** | OneFS supports the following NIC aggregation modes. | **alloc_method** | **str** | Specifies how IP address allocation is done among pool members. | **description** | **str** | A description of the pool. | -**external_manager** | **str** | Name of the system allocating the IPs for this Network Pool. | [optional] -**firewall_policy** | **str** | Name of the Firewall Policy associated with this Network Pool. | **groupnet** | **str** | Name of the groupnet this pool belongs to. | **id** | **str** | Unique Pool ID. | **ifaces** | [**list[SubnetsSubnetPoolIface]**](SubnetsSubnetPoolIface.md) | List of interface members in this pool. | -**ipv6_perform_dad** | **bool** | Indicates if the Network Pool should perform IPv6 Duplicate Address Detection when configuring the IPs. Only applies to IPv6 Network Pools. | -**linklayer** | **str** | Specifies the type of network linklayer this Network Pool uses. | **name** | **str** | The name of the pool. It must be unique throughout the given subnet.It's a required field with POST method. | -**nfs_rroce_only** | **bool** | Indicates that pool contains only RDMA RRoCE capable interfaces. | +**nfsv3_rroce_only** | **bool** | Indicates that pool contains only RDMA RRoCE capable interfaces. | **ranges** | [**list[SubnetsSubnetPoolRange]**](SubnetsSubnetPoolRange.md) | List of IP address ranges in this pool. | -**rebalance_policy** | **str** | Rebalance policy. | +**rebalance_policy** | **str** | Rebalance policy.. | **rules** | **list[str]** | Names of the rules in this pool. | +**sc_auto_unsuspend_delay** | **int** | Time delay in seconds before a node which has been automatically unsuspended becomes usable in SmartConnect responses for pool zones. | **sc_connect_policy** | **str** | SmartConnect client connection balancing policy. | **sc_dns_zone** | **str** | SmartConnect zone name for the pool. | **sc_dns_zone_aliases** | **list[str]** | List of SmartConnect zone aliases (DNS names) to the pool. | @@ -27,7 +24,7 @@ Name | Type | Description | Notes **sc_subnet** | **str** | Name of SmartConnect service subnet for this pool. | **sc_suspended_nodes** | **list[int]** | List of LNNs showing currently suspended nodes in SmartConnect. | **sc_ttl** | **int** | Time to live value for SmartConnect DNS query responses in seconds. | -**static_routes** | [**list[SubnetsSubnetPoolStaticRoute]**](SubnetsSubnetPoolStaticRoute.md) | List of configured static routes in this network pool | +**static_routes** | [**list[SubnetsSubnetPoolStaticRoute]**](SubnetsSubnetPoolStaticRoute.md) | List of interface members in this pool. | **subnet** | **str** | The name of the subnet. | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryClient.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryClient.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryClient.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryClient.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryClientClientItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryClientClientItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryClientClientItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryClientClientItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryCloud.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryCloud.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryCloud.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryCloud.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryCloudCloudItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryCloudCloudItem.md similarity index 89% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryCloudCloudItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryCloudCloudItem.md index d3b9f5a2a..351a5ebce 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryCloudCloudItem.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryCloudCloudItem.md @@ -4,7 +4,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **account** | **str** | Account name | [optional] -**account_key** | **int** | Key used along with cluster GUID, to uniquely identify an account | [optional] +**account_key** | **str** | Key for account | [optional] **cloud** | **str** | Name of cloud provider | [optional] **deletes** | **int** | Number of delete operations | [optional] **guid** | **str** | Cluster GUID | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryDrive.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryDrive.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryDrive.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryDrive.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryDriveDriveItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryDriveDriveItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryDriveDriveItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryDriveDriveItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryHeat.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryHeat.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryHeat.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryHeat.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryHeatHeatItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryHeatHeatItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryHeatHeatItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryHeatHeatItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryProtocol.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryProtocol.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryProtocol.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryProtocol.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryProtocolProtocolItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryProtocolProtocolItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryProtocolProtocolItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryProtocolProtocolItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryProtocolStats.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryProtocolStats.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryProtocolStats.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryProtocolStats.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryProtocolStatsProtocolStats.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryProtocolStatsProtocolStats.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryProtocolStatsProtocolStats.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryProtocolStatsProtocolStats.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryProtocolStatsProtocolStatsCpu.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryProtocolStatsProtocolStatsCpu.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryProtocolStatsProtocolStatsCpu.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryProtocolStatsProtocolStatsCpu.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryProtocolStatsProtocolStatsDisk.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryProtocolStatsProtocolStatsDisk.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryProtocolStatsProtocolStatsDisk.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryProtocolStatsProtocolStatsDisk.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryProtocolStatsProtocolStatsNetwork.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryProtocolStatsProtocolStatsNetwork.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryProtocolStatsProtocolStatsNetwork.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryProtocolStatsProtocolStatsNetwork.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryProtocolStatsProtocolStatsNetworkIn.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryProtocolStatsProtocolStatsNetworkIn.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryProtocolStatsProtocolStatsNetworkIn.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryProtocolStatsProtocolStatsNetworkIn.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryProtocolStatsProtocolStatsNetworkOut.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryProtocolStatsProtocolStatsNetworkOut.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryProtocolStatsProtocolStatsNetworkOut.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryProtocolStatsProtocolStatsNetworkOut.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryProtocolStatsProtocolStatsOnefs.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryProtocolStatsProtocolStatsOnefs.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryProtocolStatsProtocolStatsOnefs.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryProtocolStatsProtocolStatsOnefs.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryProtocolStatsProtocolStatsProtocol.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryProtocolStatsProtocolStatsProtocol.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryProtocolStatsProtocolStatsProtocol.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryProtocolStatsProtocolStatsProtocol.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryProtocolStatsProtocolStatsProtocolDataItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryProtocolStatsProtocolStatsProtocolDataItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryProtocolStatsProtocolStatsProtocolDataItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryProtocolStatsProtocolStatsProtocolDataItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SummarySystem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SummarySystem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SummarySystem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SummarySystem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SummarySystemSystemItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SummarySystemSystemItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SummarySystemSystemItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SummarySystemSystemItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryWorkload.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryWorkload.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryWorkload.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryWorkload.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryWorkloadWorkloadItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryWorkloadWorkloadItem.md similarity index 91% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryWorkloadWorkloadItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryWorkloadWorkloadItem.md index 1717c90f3..e2af725f6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SummaryWorkloadWorkloadItem.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SummaryWorkloadWorkloadItem.md @@ -15,14 +15,11 @@ Name | Type | Description | Notes **job_type** | **str** | The canonical name for the job followed by phase in brackets, ie. 'AVscan[1]', etc... | [optional] **l2** | **float** | L2 cache hits per second. | **l3** | **float** | L3 cache hits per second. | -**latency_other** | **float** | Latency on other operations. | -**latency_read** | **float** | Latency on disk read operations. | -**latency_write** | **float** | Latency on disk write operations. | **local_address** | **str** | The IP address of the host receiving the operation request. | [optional] **local_name** | **str** | The resolved text name of the LocalAddr, if resolution can be performed. | [optional] **node** | **float** | The node on which the operation was performed or 0 for cluster scoped statistics. | **ops** | **float** | Operations per second. | -**path** | **str** | The path which the operation was requested on. | [optional] +**path** | **str** | The path which the operation was requestion on. | [optional] **protocol** | **str** | The protocol of the operation. | [optional] **reads** | **float** | Disk read operations per second. | **remote_address** | **str** | The IP address of the host sending the operation request. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_4_0/docs/SwiftAccount.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SwiftAccount.md new file mode 100644 index 000000000..d7547000f --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SwiftAccount.md @@ -0,0 +1,15 @@ +# SwiftAccount + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **str** | Unique id of swift account | [optional] +**name** | **str** | Name of Swift account | +**swiftgroup** | **str** | Group with filesystem ownership of this account | [optional] +**swiftuser** | **str** | User with filesystem ownership of this account | [optional] +**users** | **list[str]** | Users who are allowed to access Swift account | [optional] +**zone** | **str** | Name of access zone for account | [optional] + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/isilon_sdk/isilon_sdk/v9_4_0/docs/SwiftAccountExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SwiftAccountExtended.md new file mode 100644 index 000000000..b19ffac10 --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SwiftAccountExtended.md @@ -0,0 +1,16 @@ +# SwiftAccountExtended + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**id** | **str** | Unique id of swift account | [optional] +**name** | **str** | Name of Swift account | [optional] +**path** | **str** | Path to root of Swift account | [optional] +**swiftgroup** | **str** | Group with filesystem ownership of this account | [optional] +**swiftuser** | **str** | User with filesystem ownership of this account | [optional] +**users** | **list[str]** | Users who are allowed to access Swift account | [optional] +**zone** | **str** | Name of access zone for account | [optional] + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterMixedMode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SwiftAccounts.md similarity index 72% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterMixedMode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SwiftAccounts.md index f2a91e9c5..05c6b9bb8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterMixedMode.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SwiftAccounts.md @@ -1,9 +1,9 @@ -# ClusterMixedMode +# SwiftAccounts ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**mixed_mode** | **bool** | In upgrade and mixed mode | +**accounts** | [**list[SwiftAccountExtended]**](SwiftAccountExtended.md) | | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterStatus.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SwiftAccountsExtended.md similarity index 80% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterStatus.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SwiftAccountsExtended.md index a2e1f0367..90b7029ed 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ClusterStatus.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SwiftAccountsExtended.md @@ -1,9 +1,9 @@ -# ClusterStatus +# SwiftAccountsExtended ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**domains** | [**list[ClusterStatusDomain]**](ClusterStatusDomain.md) | | [optional] +**accounts** | [**list[SwiftAccountExtended]**](SwiftAccountExtended.md) | | [optional] **resume** | **str** | Provide this token as the 'resume' query argument to continue listing results. | [optional] **total** | **int** | Total number of items available. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncApi.md similarity index 85% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncApi.md index 91ff0f56e..1ceb14048 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.SyncApi +# isilon_sdk.v9_4_0.SyncApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -7,8 +7,8 @@ Method | HTTP request | Description [**create_certificates_peer_item**](SyncApi.md#create_certificates_peer_item) | **POST** /platform/7/sync/certificates/peer | [**create_certificates_server_item**](SyncApi.md#create_certificates_server_item) | **POST** /platform/7/sync/certificates/server | [**create_service_policy**](SyncApi.md#create_service_policy) | **POST** /platform/7/sync/service/policies | -[**create_sync_job**](SyncApi.md#create_sync_job) | **POST** /platform/22/sync/jobs | -[**create_sync_policy**](SyncApi.md#create_sync_policy) | **POST** /platform/18/sync/policies | +[**create_sync_job**](SyncApi.md#create_sync_job) | **POST** /platform/15/sync/jobs | +[**create_sync_policy**](SyncApi.md#create_sync_policy) | **POST** /platform/14/sync/policies | [**create_sync_reports_rotate_item**](SyncApi.md#create_sync_reports_rotate_item) | **POST** /platform/1/sync/reports-rotate | [**create_sync_rule**](SyncApi.md#create_sync_rule) | **POST** /platform/3/sync/rules | [**delete_certificates_peer_by_id**](SyncApi.md#delete_certificates_peer_by_id) | **DELETE** /platform/7/sync/certificates/peer/{CertificatesPeerId} | @@ -16,12 +16,12 @@ Method | HTTP request | Description [**delete_service_policies**](SyncApi.md#delete_service_policies) | **DELETE** /platform/7/sync/service/policies | [**delete_service_policy**](SyncApi.md#delete_service_policy) | **DELETE** /platform/7/sync/service/policies/{ServicePolicyId} | [**delete_service_target_policy**](SyncApi.md#delete_service_target_policy) | **DELETE** /platform/7/sync/service/target/policies/{ServiceTargetPolicyId} | -[**delete_sync_jobs**](SyncApi.md#delete_sync_jobs) | **DELETE** /platform/22/sync/jobs | -[**delete_sync_policies**](SyncApi.md#delete_sync_policies) | **DELETE** /platform/18/sync/policies | -[**delete_sync_policy**](SyncApi.md#delete_sync_policy) | **DELETE** /platform/18/sync/policies/{SyncPolicyId} | +[**delete_sync_jobs**](SyncApi.md#delete_sync_jobs) | **DELETE** /platform/15/sync/jobs | +[**delete_sync_policies**](SyncApi.md#delete_sync_policies) | **DELETE** /platform/14/sync/policies | +[**delete_sync_policy**](SyncApi.md#delete_sync_policy) | **DELETE** /platform/14/sync/policies/{SyncPolicyId} | [**delete_sync_rule**](SyncApi.md#delete_sync_rule) | **DELETE** /platform/3/sync/rules/{SyncRuleId} | [**delete_sync_rules**](SyncApi.md#delete_sync_rules) | **DELETE** /platform/3/sync/rules | -[**delete_target_policy**](SyncApi.md#delete_target_policy) | **DELETE** /platform/18/sync/target/policies/{TargetPolicyId} | +[**delete_target_policy**](SyncApi.md#delete_target_policy) | **DELETE** /platform/1/sync/target/policies/{TargetPolicyId} | [**get_certificates_peer_by_id**](SyncApi.md#get_certificates_peer_by_id) | **GET** /platform/7/sync/certificates/peer/{CertificatesPeerId} | [**get_certificates_server_by_id**](SyncApi.md#get_certificates_server_by_id) | **GET** /platform/7/sync/certificates/server/{CertificatesServerId} | [**get_history_cpu**](SyncApi.md#get_history_cpu) | **GET** /platform/3/sync/history/cpu | @@ -31,31 +31,31 @@ Method | HTTP request | Description [**get_service_policy**](SyncApi.md#get_service_policy) | **GET** /platform/7/sync/service/policies/{ServicePolicyId} | [**get_service_target_policies**](SyncApi.md#get_service_target_policies) | **GET** /platform/7/sync/service/target/policies | [**get_service_target_policy**](SyncApi.md#get_service_target_policy) | **GET** /platform/7/sync/service/target/policies/{ServiceTargetPolicyId} | -[**get_sync_job**](SyncApi.md#get_sync_job) | **GET** /platform/22/sync/jobs/{SyncJobId} | +[**get_sync_job**](SyncApi.md#get_sync_job) | **GET** /platform/15/sync/jobs/{SyncJobId} | [**get_sync_license**](SyncApi.md#get_sync_license) | **GET** /platform/5/sync/license | -[**get_sync_policy**](SyncApi.md#get_sync_policy) | **GET** /platform/18/sync/policies/{SyncPolicyId} | -[**get_sync_report**](SyncApi.md#get_sync_report) | **GET** /platform/22/sync/reports/{SyncReportId} | -[**get_sync_reports**](SyncApi.md#get_sync_reports) | **GET** /platform/22/sync/reports | +[**get_sync_policy**](SyncApi.md#get_sync_policy) | **GET** /platform/14/sync/policies/{SyncPolicyId} | +[**get_sync_report**](SyncApi.md#get_sync_report) | **GET** /platform/15/sync/reports/{SyncReportId} | +[**get_sync_reports**](SyncApi.md#get_sync_reports) | **GET** /platform/15/sync/reports | [**get_sync_rule**](SyncApi.md#get_sync_rule) | **GET** /platform/3/sync/rules/{SyncRuleId} | -[**get_sync_settings**](SyncApi.md#get_sync_settings) | **GET** /platform/22/sync/settings | -[**get_target_policies**](SyncApi.md#get_target_policies) | **GET** /platform/18/sync/target/policies | -[**get_target_policy**](SyncApi.md#get_target_policy) | **GET** /platform/18/sync/target/policies/{TargetPolicyId} | -[**get_target_report**](SyncApi.md#get_target_report) | **GET** /platform/22/sync/target/reports/{TargetReportId} | -[**get_target_reports**](SyncApi.md#get_target_reports) | **GET** /platform/22/sync/target/reports | +[**get_sync_settings**](SyncApi.md#get_sync_settings) | **GET** /platform/14/sync/settings | +[**get_target_policies**](SyncApi.md#get_target_policies) | **GET** /platform/1/sync/target/policies | +[**get_target_policy**](SyncApi.md#get_target_policy) | **GET** /platform/1/sync/target/policies/{TargetPolicyId} | +[**get_target_report**](SyncApi.md#get_target_report) | **GET** /platform/15/sync/target/reports/{TargetReportId} | +[**get_target_reports**](SyncApi.md#get_target_reports) | **GET** /platform/15/sync/target/reports | [**list_certificates_peer**](SyncApi.md#list_certificates_peer) | **GET** /platform/7/sync/certificates/peer | [**list_certificates_server**](SyncApi.md#list_certificates_server) | **GET** /platform/7/sync/certificates/server | [**list_service_policies**](SyncApi.md#list_service_policies) | **GET** /platform/7/sync/service/policies | -[**list_sync_jobs**](SyncApi.md#list_sync_jobs) | **GET** /platform/22/sync/jobs | -[**list_sync_policies**](SyncApi.md#list_sync_policies) | **GET** /platform/18/sync/policies | +[**list_sync_jobs**](SyncApi.md#list_sync_jobs) | **GET** /platform/15/sync/jobs | +[**list_sync_policies**](SyncApi.md#list_sync_policies) | **GET** /platform/14/sync/policies | [**list_sync_reports_rotate**](SyncApi.md#list_sync_reports_rotate) | **GET** /platform/1/sync/reports-rotate | [**list_sync_rules**](SyncApi.md#list_sync_rules) | **GET** /platform/3/sync/rules | [**update_certificates_peer_by_id**](SyncApi.md#update_certificates_peer_by_id) | **PUT** /platform/7/sync/certificates/peer/{CertificatesPeerId} | [**update_certificates_server_by_id**](SyncApi.md#update_certificates_server_by_id) | **PUT** /platform/7/sync/certificates/server/{CertificatesServerId} | [**update_service_policy**](SyncApi.md#update_service_policy) | **PUT** /platform/7/sync/service/policies/{ServicePolicyId} | -[**update_sync_job**](SyncApi.md#update_sync_job) | **PUT** /platform/22/sync/jobs/{SyncJobId} | -[**update_sync_policy**](SyncApi.md#update_sync_policy) | **PUT** /platform/18/sync/policies/{SyncPolicyId} | +[**update_sync_job**](SyncApi.md#update_sync_job) | **PUT** /platform/15/sync/jobs/{SyncJobId} | +[**update_sync_policy**](SyncApi.md#update_sync_policy) | **PUT** /platform/14/sync/policies/{SyncPolicyId} | [**update_sync_rule**](SyncApi.md#update_sync_rule) | **PUT** /platform/3/sync/rules/{SyncRuleId} | -[**update_sync_settings**](SyncApi.md#update_sync_settings) | **PUT** /platform/22/sync/settings | +[**update_sync_settings**](SyncApi.md#update_sync_settings) | **PUT** /platform/14/sync/settings | # **create_certificates_peer_item** @@ -69,18 +69,18 @@ Import a trusted SyncIQ TLS certificate. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -certificates_peer_item = isilon_sdk.v9_11_0.CertificateAuthorityItem() # CertificateAuthorityItem | +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +certificates_peer_item = isilon_sdk.v9_4_0.CertificateAuthorityItem() # CertificateAuthorityItem | try: api_response = api_instance.create_certificates_peer_item(certificates_peer_item) @@ -121,18 +121,18 @@ Import a SyncIQ TLS server certificate. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -certificates_server_item = isilon_sdk.v9_11_0.CertificatesSyslogItem() # CertificatesSyslogItem | +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +certificates_server_item = isilon_sdk.v9_4_0.CertificateServerItem() # CertificateServerItem | try: api_response = api_instance.create_certificates_server_item(certificates_server_item) @@ -145,7 +145,7 @@ except ApiException as e: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **certificates_server_item** | [**CertificatesSyslogItem**](CertificatesSyslogItem.md)| | + **certificates_server_item** | [**CertificateServerItem**](CertificateServerItem.md)| | ### Return type @@ -173,18 +173,18 @@ Create a SyncIQ service replication policy. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -service_policy = isilon_sdk.v9_11_0.ServicePolicyCreateParams() # ServicePolicyCreateParams | +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +service_policy = isilon_sdk.v9_4_0.ServicePolicyCreateParams() # ServicePolicyCreateParams | try: api_response = api_instance.create_service_policy(service_policy) @@ -225,18 +225,18 @@ Start a SyncIQ job. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -sync_job = isilon_sdk.v9_11_0.SyncJobCreateParams() # SyncJobCreateParams | +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +sync_job = isilon_sdk.v9_4_0.SyncJobCreateParams() # SyncJobCreateParams | try: api_response = api_instance.create_sync_job(sync_job) @@ -277,18 +277,18 @@ Create a SyncIQ policy. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -sync_policy = isilon_sdk.v9_11_0.SyncPolicyCreateParams() # SyncPolicyCreateParams | +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +sync_policy = isilon_sdk.v9_4_0.SyncPolicyCreateParams() # SyncPolicyCreateParams | try: api_response = api_instance.create_sync_policy(sync_policy) @@ -329,18 +329,18 @@ Rotate the records in the database(s). ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -sync_reports_rotate_item = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +sync_reports_rotate_item = isilon_sdk.v9_4_0.Empty() # Empty | try: api_response = api_instance.create_sync_reports_rotate_item(sync_reports_rotate_item) @@ -381,18 +381,18 @@ Create a new SyncIQ performance rule. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -sync_rule = isilon_sdk.v9_11_0.SyncRuleCreateParams() # SyncRuleCreateParams | +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +sync_rule = isilon_sdk.v9_4_0.SyncRuleCreateParams() # SyncRuleCreateParams | try: api_response = api_instance.create_sync_rule(sync_rule) @@ -433,17 +433,17 @@ Delete a trusted SyncIQ TLS certificate. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) certificates_peer_id = 'certificates_peer_id_example' # str | Delete a trusted SyncIQ TLS certificate. try: @@ -484,17 +484,17 @@ Delete a SyncIQ TLS server certificate. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) certificates_server_id = 'certificates_server_id_example' # str | Delete a SyncIQ TLS server certificate. try: @@ -535,17 +535,17 @@ Delete all SyncIQ service replication policies. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) force = true # bool | Ignore any running jobs when preparing to delete a policy. (optional) local_only = true # bool | Skip deleting the policy association on the target. (optional) @@ -588,17 +588,17 @@ Delete a single SyncIQ service replication policy. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) service_policy_id = 'service_policy_id_example' # str | Delete a single SyncIQ service replication policy. force = true # bool | Ignore any running jobs when preparing to delete a policy. (optional) local_only = true # bool | Skip deleting the policy association on the target. (optional) @@ -643,17 +643,17 @@ Break the target association with this cluster for this policy. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) service_target_policy_id = 'service_target_policy_id_example' # str | Break the target association with this cluster for this policy. force = true # bool | Ignore any running jobs when preparing to delete the policy target association. (optional) @@ -696,17 +696,17 @@ Cancel all SyncIQ jobs. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_instance.delete_sync_jobs() @@ -743,17 +743,17 @@ Delete all SyncIQ policies. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) force = true # bool | Ignore any running jobs when preparing to delete a policy. (optional) local_only = true # bool | Skip deleting the policy association on the target. (optional) @@ -796,17 +796,17 @@ Delete a single SyncIQ policy. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) sync_policy_id = 'sync_policy_id_example' # str | Delete a single SyncIQ policy. force = true # bool | Ignore any running jobs when preparing to delete a policy. (optional) local_only = true # bool | Skip deleting the policy association on the target. (optional) @@ -851,17 +851,17 @@ Delete a single SyncIQ performance rule. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) sync_rule_id = 'sync_rule_id_example' # str | Delete a single SyncIQ performance rule. try: @@ -902,17 +902,17 @@ Delete all SyncIQ performance rules or all rules of a specified type. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) type = 'type_example' # str | Delete all rules of the specified rule type only. (optional) try: @@ -953,17 +953,17 @@ Break the target association with this cluster for this policy. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) target_policy_id = 'target_policy_id_example' # str | Break the target association with this cluster for this policy. force = true # bool | Ignore any running jobs when preparing to delete the policy target association. (optional) @@ -996,7 +996,7 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_certificates_peer_by_id** -> CertificatesSyslog get_certificates_peer_by_id(certificates_peer_id) +> CertificatesCa get_certificates_peer_by_id(certificates_peer_id) @@ -1006,17 +1006,17 @@ Retrieve a single trusted SyncIQ TLS certificate. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) certificates_peer_id = 'certificates_peer_id_example' # str | Retrieve a single trusted SyncIQ TLS certificate. try: @@ -1034,7 +1034,7 @@ Name | Type | Description | Notes ### Return type -[**CertificatesSyslog**](CertificatesSyslog.md) +[**CertificatesCa**](CertificatesCa.md) ### Authorization @@ -1058,17 +1058,17 @@ Retrieve a SyncIQ TLS server certificate. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) certificates_server_id = 'certificates_server_id_example' # str | Retrieve a SyncIQ TLS server certificate. try: @@ -1110,17 +1110,17 @@ List cpu performance data. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) begin = 56 # int | Begin timestamp for time-series report. (optional) end = 56 # int | End timestamp for time-series report. (optional) @@ -1164,17 +1164,17 @@ List file operations performance data. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) begin = 56 # int | Begin timestamp for time-series report. (optional) end = 56 # int | End timestamp for time-series report. (optional) @@ -1218,17 +1218,17 @@ List network operations performance data. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) end = 56 # int | End timestamp for time-series report. (optional) policy_id = 'policy_id_example' # str | Receive network history for only the given policy. (optional) running_jobs = true # bool | Receive network history for all currently running SyncIQ jobs. (optional) @@ -1276,17 +1276,17 @@ List worker performance data. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) begin = 56 # int | Begin timestamp for time-series report. (optional) end = 56 # int | End timestamp for time-series report. (optional) @@ -1330,17 +1330,17 @@ View a single SyncIQ service replication policy. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) service_policy_id = 'service_policy_id_example' # str | View a single SyncIQ service replication policy. try: @@ -1372,7 +1372,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_service_target_policies** -> ServiceTargetPoliciesExtended get_service_target_policies(dir=dir, limit=limit, resume=resume, sort=sort, target_path=target_path) +> ServiceTargetPolicies get_service_target_policies(dir=dir, limit=limit, resume=resume, sort=sort, target_path=target_path) @@ -1382,17 +1382,17 @@ List all SyncIQ target service replication policies. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -1418,7 +1418,7 @@ Name | Type | Description | Notes ### Return type -[**ServiceTargetPoliciesExtended**](ServiceTargetPoliciesExtended.md) +[**ServiceTargetPolicies**](ServiceTargetPolicies.md) ### Authorization @@ -1432,7 +1432,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_service_target_policy** -> ServiceTargetPolicies get_service_target_policy(service_target_policy_id) +> TargetPolicies get_service_target_policy(service_target_policy_id) @@ -1442,17 +1442,17 @@ View a single SyncIQ target service replication policy. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) service_target_policy_id = 'service_target_policy_id_example' # str | View a single SyncIQ target service replication policy. try: @@ -1470,7 +1470,7 @@ Name | Type | Description | Notes ### Return type -[**ServiceTargetPolicies**](ServiceTargetPolicies.md) +[**TargetPolicies**](TargetPolicies.md) ### Authorization @@ -1494,17 +1494,17 @@ View a single SyncIQ job. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) sync_job_id = 'sync_job_id_example' # str | View a single SyncIQ job. try: @@ -1536,7 +1536,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_sync_license** -> QuotaLicense get_sync_license() +> LicenseLicense get_sync_license() @@ -1546,17 +1546,17 @@ Retrieve license information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_sync_license() @@ -1570,7 +1570,7 @@ This endpoint does not need any parameter. ### Return type -[**QuotaLicense**](QuotaLicense.md) +[**LicenseLicense**](LicenseLicense.md) ### Authorization @@ -1594,17 +1594,17 @@ View a single SyncIQ policy. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) sync_policy_id = 'sync_policy_id_example' # str | View a single SyncIQ policy. try: @@ -1646,17 +1646,17 @@ View a single SyncIQ report. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) sync_report_id = 'sync_report_id_example' # str | View a single SyncIQ report. try: @@ -1698,17 +1698,17 @@ Get a list of SyncIQ reports. By default 1 report is returned per policy, unles ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) newer_than = 56 # int | Filter the returned reports to include only those whose jobs started more recently than the specified number of days ago. (optional) @@ -1766,17 +1766,17 @@ View a single SyncIQ performance rule. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) sync_rule_id = 'sync_rule_id_example' # str | View a single SyncIQ performance rule. try: @@ -1818,17 +1818,17 @@ Retrieve the global SyncIQ settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_sync_settings() @@ -1866,17 +1866,17 @@ List all SyncIQ target policies. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -1926,17 +1926,17 @@ View a single SyncIQ target policy. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) target_policy_id = 'target_policy_id_example' # str | View a single SyncIQ target policy. try: @@ -1978,17 +1978,17 @@ View a single SyncIQ target report. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) target_report_id = 'target_report_id_example' # str | View a single SyncIQ target report. try: @@ -2030,17 +2030,17 @@ Get a list of SyncIQ target reports. By default 1 report is returned per policy ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) newer_than = 56 # int | Filter the returned reports to include only those whose jobs started more recently than the specified number of days ago. (optional) @@ -2098,17 +2098,17 @@ Retrieve a list of all trusted SyncIQ peer TLS certificates. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -2156,17 +2156,17 @@ Retrieve a list of all SyncIQ TLS server certificates. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -2214,17 +2214,17 @@ List all SyncIQ service replication policies. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -2276,17 +2276,17 @@ Get a list of SyncIQ jobs. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -2326,7 +2326,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **list_sync_policies** -> SyncPoliciesExtended list_sync_policies(dir=dir, limit=limit, resume=resume, scope=scope, sort=sort, state=state, summary=summary) +> SyncPoliciesExtended list_sync_policies(dir=dir, limit=limit, resume=resume, scope=scope, sort=sort, summary=summary) @@ -2336,27 +2336,26 @@ List all SyncIQ policies. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) scope = 'scope_example' # str | If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. (optional) sort = 'sort_example' # str | The field that will be used for sorting. (optional) -state = 'state_example' # str | Returned policies in active and/or deleting state. Default is 'all' (optional) summary = true # bool | Return a summary rather than entire objects. (optional) try: - api_response = api_instance.list_sync_policies(dir=dir, limit=limit, resume=resume, scope=scope, sort=sort, state=state, summary=summary) + api_response = api_instance.list_sync_policies(dir=dir, limit=limit, resume=resume, scope=scope, sort=sort, summary=summary) pprint(api_response) except ApiException as e: print("Exception when calling SyncApi->list_sync_policies: %s\n" % e) @@ -2371,7 +2370,6 @@ Name | Type | Description | Notes **resume** | **str**| Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] **scope** | **str**| If specified as \"effective\" or not specified, all fields are returned. If specified as \"user\", only fields with non-default values are shown. If specified as \"default\", the original values are returned. | [optional] **sort** | **str**| The field that will be used for sorting. | [optional] - **state** | **str**| Returned policies in active and/or deleting state. Default is 'all' | [optional] **summary** | **bool**| Return a summary rather than entire objects. | [optional] ### Return type @@ -2400,17 +2398,17 @@ Whether the rotation is still running or not. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.list_sync_reports_rotate() @@ -2448,17 +2446,17 @@ List all SyncIQ performance rules. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -2508,18 +2506,18 @@ Modify a trusted SyncIQ TLS certificate. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -certificates_peer_id_params = isilon_sdk.v9_11_0.CertificatesSyslogIdParams() # CertificatesSyslogIdParams | +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +certificates_peer_id_params = isilon_sdk.v9_4_0.CertificateServerIdParams() # CertificateServerIdParams | certificates_peer_id = 'certificates_peer_id_example' # str | Modify a trusted SyncIQ TLS certificate. try: @@ -2532,7 +2530,7 @@ except ApiException as e: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **certificates_peer_id_params** | [**CertificatesSyslogIdParams**](CertificatesSyslogIdParams.md)| | + **certificates_peer_id_params** | [**CertificateServerIdParams**](CertificateServerIdParams.md)| | **certificates_peer_id** | **str**| Modify a trusted SyncIQ TLS certificate. | ### Return type @@ -2561,18 +2559,18 @@ Modify a SyncIQ TLS server certificate. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -certificates_server_id_params = isilon_sdk.v9_11_0.CertificatesSyslogIdParams() # CertificatesSyslogIdParams | +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +certificates_server_id_params = isilon_sdk.v9_4_0.CertificateServerIdParams() # CertificateServerIdParams | certificates_server_id = 'certificates_server_id_example' # str | Modify a SyncIQ TLS server certificate. try: @@ -2585,7 +2583,7 @@ except ApiException as e: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **certificates_server_id_params** | [**CertificatesSyslogIdParams**](CertificatesSyslogIdParams.md)| | + **certificates_server_id_params** | [**CertificateServerIdParams**](CertificateServerIdParams.md)| | **certificates_server_id** | **str**| Modify a SyncIQ TLS server certificate. | ### Return type @@ -2614,18 +2612,18 @@ Modify a single SyncIQ service replication policy. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -service_policy = isilon_sdk.v9_11_0.ServicePolicy() # ServicePolicy | +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +service_policy = isilon_sdk.v9_4_0.ServicePolicy() # ServicePolicy | service_policy_id = 'service_policy_id_example' # str | Modify a single SyncIQ service replication policy. try: @@ -2667,18 +2665,18 @@ Perform an action (pause, cancel, etc...) on a single job. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -sync_job = isilon_sdk.v9_11_0.SyncJob() # SyncJob | +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +sync_job = isilon_sdk.v9_4_0.SyncJob() # SyncJob | sync_job_id = 'sync_job_id_example' # str | Perform an action (pause, cancel, etc...) on a single job. try: @@ -2720,18 +2718,18 @@ Modify a single SyncIQ policy. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -sync_policy = isilon_sdk.v9_11_0.SyncPolicy() # SyncPolicy | +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +sync_policy = isilon_sdk.v9_4_0.SyncPolicy() # SyncPolicy | sync_policy_id = 'sync_policy_id_example' # str | Modify a single SyncIQ policy. try: @@ -2773,18 +2771,18 @@ Modify a single SyncIQ performance rule. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -sync_rule = isilon_sdk.v9_11_0.SyncRule() # SyncRule | +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +sync_rule = isilon_sdk.v9_4_0.SyncRule() # SyncRule | sync_rule_id = 'sync_rule_id_example' # str | Modify a single SyncIQ performance rule. try: @@ -2826,18 +2824,18 @@ Modify the global SyncIQ settings. All input fields are optional, but one or mo ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -sync_settings = isilon_sdk.v9_11_0.SyncSettingsExtended() # SyncSettingsExtended | +api_instance = isilon_sdk.v9_4_0.SyncApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +sync_settings = isilon_sdk.v9_4_0.SyncSettingsExtended() # SyncSettingsExtended | try: api_instance.update_sync_settings(sync_settings) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncJob.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncJob.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncJob.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncJob.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncJobCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncJobCreateParams.md similarity index 55% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncJobCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncJobCreateParams.md index 72e715d1c..262c50a1d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncJobCreateParams.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncJobCreateParams.md @@ -6,7 +6,13 @@ Name | Type | Description | Notes **action** | **str** | The action to be taken by this job. | [optional] **id** | **str** | The ID or Name of the policy | **log_level** | **str** | Only valid for allow_write, and allow_write_revert; specify the desired logging level, will be stored in the logs for isi_migrate, defaults to 'info'. | [optional] +**service_policy** | **bool** | If true, this is a service replication policy. | [optional] +**skip_copy** | **bool** | Skips the copy phase of the service replication allow-write operation. | [optional] +**skip_failover** | **bool** | Skips the data failover phase of the service replication allow-write operation. | [optional] +**skip_map** | **bool** | Skips the mapping phase of the service replication allow-write operation. | [optional] **source_snapshot** | **str** | An optional snapshot to copy/sync from. | [optional] +**tgt_path** | **str** | Specifies the directory to output the service replication files for restoration. | [optional] +**timestamp** | **int** | Specifies the timestamp of a service replication policy backup to restore from. | [optional] **workers_per_node** | **int** | Only valid for allow_write, and allow_write_revert; specify the desired workers per node, defaults to 3. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncJobExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncJobExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncJobExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncJobExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncJobPhase.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncJobPhase.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncJobPhase.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncJobPhase.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncJobPhaseStatistics.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncJobPhaseStatistics.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncJobPhaseStatistics.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncJobPhaseStatistics.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncJobPolicy.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncJobPolicy.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncJobPolicy.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncJobPolicy.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncJobServiceReportItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncJobServiceReportItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncJobServiceReportItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncJobServiceReportItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncJobWorker.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncJobWorker.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncJobWorker.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncJobWorker.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncJobs.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncJobs.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncJobs.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncJobs.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncJobsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncJobsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncJobsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncJobsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncPolicies.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncPolicies.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncPolicies.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncPolicies.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncPoliciesApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncPoliciesApi.md similarity index 83% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncPoliciesApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncPoliciesApi.md index d1b0e0031..ee402a259 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncPoliciesApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncPoliciesApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.SyncPoliciesApi +# isilon_sdk.v9_4_0.SyncPoliciesApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -18,18 +18,18 @@ Reset a SyncIQ policy incremental state and force a full sync/copy. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncPoliciesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -policy_reset_item = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.SyncPoliciesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +policy_reset_item = isilon_sdk.v9_4_0.Empty() # Empty | policy = 'policy_example' # str | try: diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncPoliciesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncPoliciesExtended.md similarity index 82% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncPoliciesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncPoliciesExtended.md index dc098c7b7..3c03a1337 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncPoliciesExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncPoliciesExtended.md @@ -3,7 +3,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**policies** | [**list[SyncPolicyExtended]**](SyncPolicyExtended.md) | | [optional] +**policies** | [**list[SyncPolicyExtendedExtended]**](SyncPolicyExtendedExtended.md) | | [optional] **resume** | **str** | Provide this token as the 'resume' query argument to continue listing results. | [optional] **total** | **int** | Total number of items available. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncPolicy.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncPolicy.md similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncPolicy.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncPolicy.md index cc229966a..935ee4e8d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncPolicy.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncPolicy.md @@ -17,7 +17,6 @@ Name | Type | Description | Notes **disable_fofb** | **bool** | NOTE: This field should not be changed without the help of PowerScale support. Enable/disable sync failover/failback. | [optional] **disable_quota_tmp_dir** | **bool** | If set to true, SyncIQ will not create temporary quota directories to aid in replication to target paths which contain quotas. | [optional] **disable_stf** | **bool** | NOTE: This field should not be changed without the help of PowerScale support. Enable/disable the 6.5+ STF based data transfer and uses only treewalk. | [optional] -**elliptic_curve_list** | **str** | The elliptic curve list being used with encryption. For SyncIQ targets, this list serves as a list of supported elliptic curves. For SyncIQ sources, the list of elliptic curves will be attempted to be used in order. | [optional] **enable_hash_tmpdir** | **bool** | If true, syncs will use temporary working directory subdirectories to reduce lock contention. | [optional] **enabled** | **bool** | If true, jobs will be automatically run based on this policy, according to its schedule. | [optional] **encryption_cipher_list** | **str** | The cipher list being used with encryption. For SyncIQ targets, this list serves as a list of supported ciphers. For SyncIQ sources, the list of ciphers will be attempted to be used in order. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncPolicyCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncPolicyCreateParams.md similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncPolicyCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncPolicyCreateParams.md index b42eedb43..d7c28f490 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncPolicyCreateParams.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncPolicyCreateParams.md @@ -16,7 +16,6 @@ Name | Type | Description | Notes **disable_fofb** | **bool** | NOTE: This field should not be changed without the help of PowerScale support. Enable/disable sync failover/failback. | [optional] **disable_quota_tmp_dir** | **bool** | If set to true, SyncIQ will not create temporary quota directories to aid in replication to target paths which contain quotas. | [optional] **disable_stf** | **bool** | NOTE: This field should not be changed without the help of PowerScale support. Enable/disable the 6.5+ STF based data transfer and uses only treewalk. | [optional] -**elliptic_curve_list** | **str** | The elliptic curve list being used with encryption. For SyncIQ targets, this list serves as a list of supported elliptic curves. For SyncIQ sources, the list of elliptic curves will be attempted to be used in order. | [optional] **enable_hash_tmpdir** | **bool** | If true, syncs will use temporary working directory subdirectories to reduce lock contention. | [optional] **enabled** | **bool** | If true, jobs will be automatically run based on this policy, according to its schedule. | [optional] **encryption_cipher_list** | **str** | The cipher list being used with encryption. For SyncIQ targets, this list serves as a list of supported ciphers. For SyncIQ sources, the list of ciphers will be attempted to be used in order. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncPolicyExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncPolicyExtended.md similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncPolicyExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncPolicyExtended.md index f4f1d1983..6a7393f0f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncPolicyExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncPolicyExtended.md @@ -18,7 +18,6 @@ Name | Type | Description | Notes **disable_fofb** | **bool** | NOTE: This field should not be changed without the help of PowerScale support. Enable/disable sync failover/failback. | [optional] **disable_quota_tmp_dir** | **bool** | If set to true, SyncIQ will not create temporary quota directories to aid in replication to target paths which contain quotas. | [optional] **disable_stf** | **bool** | NOTE: This field should not be changed without the help of PowerScale support. Enable/disable the 6.5+ STF based data transfer and uses only treewalk. | [optional] -**elliptic_curve_list** | **str** | The elliptic curve list being used with encryption. For SyncIQ targets, this list serves as a list of supported elliptic curves. For SyncIQ sources, the list of elliptic curves will be attempted to be used in order. | [optional] **enable_hash_tmpdir** | **bool** | If true, syncs will use temporary working directory subdirectories to reduce lock contention. | [optional] **enabled** | **bool** | If true, jobs will be automatically run based on this policy, according to its schedule. | **encrypted** | **bool** | If true, syncs will be encrypted. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncPolicyExtendedExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncPolicyExtendedExtended.md new file mode 100644 index 000000000..44b8d7669 --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncPolicyExtendedExtended.md @@ -0,0 +1,78 @@ +# SyncPolicyExtendedExtended + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**accelerated_failback** | **bool** | If set to true, SyncIQ will perform failback configuration tasks during the next job run, rather than waiting to perform those tasks during the failback process. Performing these tasks ahead of time will increase the speed of failback operations. | [optional] +**action** | **str** | If 'copy', source files will be copied to the target cluster. If 'sync', the target directory will be made an image of the source directory: Files and directories that have been deleted on the source, have been moved within the target directory, or no longer match the selection criteria will be deleted from the target directory. | [optional] +**allow_copy_fb** | **bool** | If set to true, SyncIQ will allow a policy with copy action failback which is not supported by default. | [optional] +**bandwidth_reservation** | **int** | The desired bandwidth reservation for this policy in kb/s. This feature will not activate unless a SyncIQ bandwidth rule is in effect. | [optional] +**changelist** | **bool** | If true, retain previous source snapshot and incremental repstate, both of which are required for changelist creation. | [optional] +**check_integrity** | **bool** | If true, the sync target performs cyclic redundancy checks (CRC) on the data as it is received. | [optional] +**cloud_deep_copy** | **str** | If set to deny, replicates all CloudPools smartlinks to the target cluster as smartlinks; if the target cluster does not support the smartlinks, the job will fail. If set to force, replicates all smartlinks to the target cluster as regular files. If set to allow, SyncIQ will attempt to replicate smartlinks to the target cluster as smartlinks; if the target cluster does not support the smartlinks, SyncIQ will replicate the smartlinks as regular files. | [optional] +**conflicted** | **bool** | NOTE: This field should not be changed without the help of PowerScale support. If true, the most recent run of this policy encountered an error and this policy will not start any more scheduled jobs until this field is manually set back to 'false'. | [optional] +**database_mirrored** | **bool** | If true, SyncIQ databases have been mirrored. | +**delete_quotas** | **bool** | If true, forcibly remove quotas on the target after they have been removed on the source. | [optional] +**description** | **str** | User-assigned description of this sync policy. | [optional] +**disable_file_split** | **bool** | NOTE: This field should not be changed without the help of PowerScale support. If true, the 7.2+ file splitting capability will be disabled. | [optional] +**disable_fofb** | **bool** | NOTE: This field should not be changed without the help of PowerScale support. Enable/disable sync failover/failback. | [optional] +**disable_quota_tmp_dir** | **bool** | If set to true, SyncIQ will not create temporary quota directories to aid in replication to target paths which contain quotas. | [optional] +**disable_stf** | **bool** | NOTE: This field should not be changed without the help of PowerScale support. Enable/disable the 6.5+ STF based data transfer and uses only treewalk. | [optional] +**enable_hash_tmpdir** | **bool** | If true, syncs will use temporary working directory subdirectories to reduce lock contention. | [optional] +**enabled** | **bool** | If true, jobs will be automatically run based on this policy, according to its schedule. | +**encrypted** | **bool** | If true, syncs will be encrypted. | +**encryption_cipher_list** | **str** | The cipher list being used with encryption. For SyncIQ targets, this list serves as a list of supported ciphers. For SyncIQ sources, the list of ciphers will be attempted to be used in order. | [optional] +**expected_dataloss** | **bool** | NOTE: This field should not be changed without the help of PowerScale support. Continue sending files even with the corrupted filesystem. | [optional] +**file_matching_pattern** | [**SyncPolicyFileMatchingPattern**](SyncPolicyFileMatchingPattern.md) | A file matching pattern, organized as an OR'ed set of AND'ed file criteria, for example ((a AND b) OR (x AND y)) used to define a set of files with specific properties. Policies of type 'sync' cannot use 'path' or time criteria in their matching patterns, but policies of type 'copy' can use all listed criteria. | [optional] +**force_interface** | **bool** | NOTE: This field should not be changed without the help of PowerScale support. Determines whether data is sent only through the subnet and pool specified in the \"source_network\" field. This option can be useful if there are multiple interfaces for the given source subnet. If you enable this option, the net.inet.ip.choose_ifa_by_ipsrc sysctl should be set. | [optional] +**has_sync_state** | **bool** | This field is false if the policy is in its initial sync state and true otherwise. Setting this field to false will reset the policy's sync state. | [optional] +**id** | **str** | The system ID given to this sync policy. | +**ignore_recursive_quota** | **bool** | If set to true, SyncIQ will not check the recursive quota in target paths to aid in replication to target paths which contain no quota but target cluster has lots of quotas. | [optional] +**job_delay** | **int** | If --schedule is set to When-Source-Modified, the duration to wait after a modification is made before starting a job (default is 0 seconds). | [optional] +**last_job_state** | **str** | This is the state of the most recent job for this policy. | [optional] +**last_started** | **int** | The most recent time a job was started for this policy. Value is null if the policy has never been run. | [optional] +**last_success** | **int** | Timestamp of last known successfully completed synchronization. Value is null if the policy has never completed successfully. | [optional] +**linked_service_policies** | **list[str]** | A list of service replication policies that this data replication policy will be associated with. | [optional] +**log_level** | **str** | Severity an event must reach before it is logged. | [optional] +**log_removed_files** | **bool** | If true, the system will log any files or directories that are deleted due to a sync. | [optional] +**name** | **str** | User-assigned name of this sync policy. | +**next_run** | **int** | This is the next time a job is scheduled to run for this policy in Unix epoch seconds. This field is null if the job is not scheduled. | [optional] +**ocsp_address** | **str** | The address of the OCSP responder to which to connect. | [optional] +**ocsp_issuer_certificate_id** | **str** | The ID of the certificate authority that issued the certificate whose revocation status is being checked. | [optional] +**password_set** | **bool** | Indicates if a password is set for accessing the target cluster. Password value is not shown with GET. | [optional] +**priority** | **int** | Determines the priority level of a policy. Policies with higher priority will have precedence to run over lower priority policies. Valid range is [0, 1]. Default is 0. | [optional] +**report_max_age** | **int** | Length of time (in seconds) a policy report will be stored. | [optional] +**report_max_count** | **int** | Maximum number of policy reports that will be stored on the system. | [optional] +**restrict_target_network** | **bool** | If you specify true, and you specify a SmartConnect zone in the \"target_host\" field, replication policies will connect only to nodes in the specified SmartConnect zone. If you specify false, replication policies are not restricted to specific nodes on the target cluster. | [optional] +**rpo_alert** | **int** | If --schedule is set to a time/date, an alert is created if the specified RPO for this policy is exceeded. The default value is 0, which will not generate RPO alerts. | [optional] +**schedule** | **str** | The schedule on which new jobs will be run for this policy. | +**service_policy** | **bool** | If true, this is a service replication policy. | [optional] +**skip_lookup** | **bool** | Skip DNS lookup of target IPs. | [optional] +**skip_when_source_unmodified** | **bool** | If true and --schedule is set to a time/date, the policy will not run if no changes have been made to the contents of the source directory since the last job successfully completed. | [optional] +**snapshot_sync_existing** | **bool** | If true, snapshot-triggered syncs will include snapshots taken before policy creation time (requires --schedule when-snapshot-taken). | [optional] +**snapshot_sync_pattern** | **str** | The naming pattern that a snapshot must match to trigger a sync when the schedule is when-snapshot-taken (default is \"*\"). | [optional] +**source_certificate_id** | **str** | The ID of the source cluster certificate being used for encryption. | +**source_domain_marked** | **bool** | If true, the source root path has been domain marked with a SyncIQ domain. | +**source_exclude_directories** | **list[str]** | Directories that will be excluded from the sync. Modifying this field will result in a full synchronization of all data. | [optional] +**source_include_directories** | **list[str]** | Directories that will be included in the sync. Modifying this field will result in a full synchronization of all data. | [optional] +**source_network** | [**SyncPolicySourceNetwork**](SyncPolicySourceNetwork.md) | Restricts replication policies on the local cluster to running on the specified subnet and pool. | [optional] +**source_root_path** | **str** | The root directory on the source cluster the files will be synced from. Modifying this field will result in a full synchronization of all data. | +**source_snapshot_archive** | **bool** | If true, archival snapshots of the source data will be taken on the source cluster before a sync. | [optional] +**source_snapshot_expiration** | **int** | The length of time in seconds to keep snapshots on the source cluster. | [optional] +**source_snapshot_pattern** | **str** | The name pattern for snapshots taken on the source cluster before a sync. | [optional] +**sync_existing_snapshot_expiration** | **bool** | If set to true, the expire duration for target archival snapshot is the remaining expire duration of source snapshot, requires --sync-existing-snapshot=true | [optional] +**sync_existing_target_snapshot_pattern** | **str** | The naming pattern for snapshot on the destination cluster when --sync-existing-snapshot is true | [optional] +**target_certificate_id** | **str** | The ID of the target cluster certificate being used for encryption. | [optional] +**target_compare_initial_sync** | **bool** | If true, the target creates diffs against the original sync. | [optional] +**target_detect_modifications** | **bool** | If true, target cluster will detect if files have been changed on the target by legacy tree walk syncs. | [optional] +**target_host** | **str** | Hostname or IP address of sync target cluster. Modifying the target cluster host can result in the policy being unrunnable if the new target does not match the current target association. | +**target_path** | **str** | Absolute filesystem path on the target cluster for the sync destination. | +**target_snapshot_alias** | **str** | The alias of the snapshot taken on the target cluster after the sync completes. A value of @DEFAULT will reset this field to the default creation value. | [optional] +**target_snapshot_archive** | **bool** | If true, archival snapshots of the target data will be taken on the target cluster after successful sync completions. | [optional] +**target_snapshot_expiration** | **int** | The length of time in seconds to keep snapshots on the target cluster. | [optional] +**target_snapshot_pattern** | **str** | The name pattern for snapshots taken on the target cluster after the sync completes. A value of @DEFAULT will reset this field to the default creation value. | [optional] +**workers_per_node** | **int** | The number of worker threads on a node performing a sync. | [optional] + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncPolicyFileMatchingPattern.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncPolicyFileMatchingPattern.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncPolicyFileMatchingPattern.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncPolicyFileMatchingPattern.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncPolicyFileMatchingPatternOrCriteriaItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncPolicyFileMatchingPatternOrCriteriaItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncPolicyFileMatchingPatternOrCriteriaItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncPolicyFileMatchingPatternOrCriteriaItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncPolicySourceNetwork.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncPolicySourceNetwork.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncPolicySourceNetwork.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncPolicySourceNetwork.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncReport.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncReport.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncReport.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncReport.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncReports.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncReports.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncReports.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncReports.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncReportsApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncReportsApi.md similarity index 88% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncReportsApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncReportsApi.md index 153a980af..e73e99bd2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncReportsApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncReportsApi.md @@ -1,11 +1,11 @@ -# isilon_sdk.v9_11_0.SyncReportsApi +# isilon_sdk.v9_4_0.SyncReportsApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* Method | HTTP request | Description ------------- | ------------- | ------------- -[**get_report_subreport**](SyncReportsApi.md#get_report_subreport) | **GET** /platform/22/sync/reports/{Rid}/subreports/{ReportSubreportId} | -[**get_report_subreports**](SyncReportsApi.md#get_report_subreports) | **GET** /platform/22/sync/reports/{Rid}/subreports | +[**get_report_subreport**](SyncReportsApi.md#get_report_subreport) | **GET** /platform/15/sync/reports/{Rid}/subreports/{ReportSubreportId} | +[**get_report_subreports**](SyncReportsApi.md#get_report_subreports) | **GET** /platform/15/sync/reports/{Rid}/subreports | # **get_report_subreport** @@ -19,17 +19,17 @@ View a single SyncIQ subreport. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncReportsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncReportsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) report_subreport_id = 'report_subreport_id_example' # str | View a single SyncIQ subreport. rid = 'rid_example' # str | @@ -73,17 +73,17 @@ Get a list of SyncIQ subreports for a report. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncReportsApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncReportsApi(isilon_sdk.v9_4_0.ApiClient(configuration)) rid = 'rid_example' # str | dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncReportsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncReportsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncReportsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncReportsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncReportsRotate.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncReportsRotate.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncReportsRotate.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncReportsRotate.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncRule.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncRule.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncRule.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncRule.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncRuleCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncRuleCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncRuleCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncRuleCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncRuleExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncRuleExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncRuleExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncRuleExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncRuleExtendedExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncRuleExtendedExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncRuleExtendedExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncRuleExtendedExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncRuleSchedule.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncRuleSchedule.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncRuleSchedule.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncRuleSchedule.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncRules.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncRules.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncRules.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncRules.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncRulesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncRulesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncRulesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncRulesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncServiceApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncServiceApi.md similarity index 83% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncServiceApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncServiceApi.md index 4da26ab3d..45d61fb02 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncServiceApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncServiceApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.SyncServiceApi +# isilon_sdk.v9_4_0.SyncServiceApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -18,18 +18,18 @@ Reset a SyncIQ service replication policy incremental state and force a full syn ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncServiceApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -policies_policy_reset_item = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.SyncServiceApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +policies_policy_reset_item = isilon_sdk.v9_4_0.Empty() # Empty | policy = 'policy_example' # str | try: diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncServiceTargetApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncServiceTargetApi.md similarity index 83% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncServiceTargetApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncServiceTargetApi.md index fb36c1bf9..15ad00156 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncServiceTargetApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncServiceTargetApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.SyncServiceTargetApi +# isilon_sdk.v9_4_0.SyncServiceTargetApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -18,18 +18,18 @@ Cancel the most recent SyncIQ job for this service replication policy from the t ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncServiceTargetApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -policies_policy_cancel_item = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.SyncServiceTargetApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +policies_policy_cancel_item = isilon_sdk.v9_4_0.Empty() # Empty | policy = 'policy_example' # str | try: diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncSettingsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncSettingsExtended.md similarity index 88% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncSettingsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncSettingsExtended.md index 38ad3c8e3..eef33e832 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncSettingsExtended.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncSettingsExtended.md @@ -6,15 +6,12 @@ Name | Type | Description | Notes **bandwidth_reservation_reserve_absolute** | **int** | The amount of SyncIQ bandwidth to reserve in kb/s for policies that did not specify a bandwidth reservation. This field takes precedence over bandwidth_reservation_reserve_percentage. | [optional] **bandwidth_reservation_reserve_percentage** | **int** | The percentage of SyncIQ bandwidth to reserve for policies that did not specify a bandwidth reservation. | [optional] **cluster_certificate_id** | **str** | The ID of this cluster's certificate being used for encryption. | [optional] -**elliptic_curve_list** | **str** | The elliptic curve list being used with encryption. For SyncIQ targets, this list serves as a list of supported elliptic curves. For SyncIQ sources, the list of elliptic curves will be attempted to be used in order. | [optional] **encryption_cipher_list** | **str** | The cipher list being used with encryption. For SyncIQ targets, this list serves as a list of supported ciphers. For SyncIQ sources, the list of ciphers will be attempted to be used in order. | [optional] **encryption_required** | **bool** | If true, requires all SyncIQ policies to utilize encrypted communications. | [optional] **force_interface** | **bool** | NOTE: This field should not be changed without the help of PowerScale support. Default for the \"force_interface\" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation. Determines whether data is sent only through the subnet and pool specified in the \"source_network\" field. This option can be useful if there are multiple interfaces for the given source subnet. | [optional] **ocsp_address** | **str** | The address of the OCSP responder to which to connect. | [optional] **ocsp_issuer_certificate_id** | **str** | The ID of the certificate authority that issued the certificate whose revocation status is being checked. | [optional] -**password** | **str** | The password for cluster authentication | [optional] **preferred_rpo_alert** | **int** | If specified, display as default RPO Alert value for new policy creation via WebUI | [optional] -**renegotiation_bytes** | **int** | Default for the number of bytes that are passed before a new TLS connection is 1TB. Setting to 0 will disable renegotiations based on bytes. | [optional] **renegotiation_period** | **int** | If specified, the duration to persist encrypted connection before forcing a renegotiation. | [optional] **report_email** | **list[str]** | Email sync reports to these addresses. | [optional] **report_max_age** | **int** | The default length of time (in seconds) a policy report will be stored. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncSettingsSettings.md similarity index 87% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncSettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncSettingsSettings.md index ddd342808..f312d1503 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncSettingsSettings.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncSettingsSettings.md @@ -6,16 +6,13 @@ Name | Type | Description | Notes **bandwidth_reservation_reserve_absolute** | **int** | The amount of SyncIQ bandwidth to reserve in kb/s for policies that did not specify a bandwidth reservation. This field takes precedence over bandwidth_reservation_reserve_percentage. | [optional] **bandwidth_reservation_reserve_percentage** | **int** | The percentage of SyncIQ bandwidth to reserve for policies that did not specify a bandwidth reservation. | [optional] **cluster_certificate_id** | **str** | The ID of this cluster's certificate being used for encryption. | [optional] -**elliptic_curve_list** | **str** | The elliptic curve list being used with encryption. For SyncIQ targets, this list serves as a list of supported elliptic curves. For SyncIQ sources, the list of elliptic curves will be attempted to be used in order. | [optional] **encryption_cipher_list** | **str** | The cipher list being used with encryption. For SyncIQ targets, this list serves as a list of supported ciphers. For SyncIQ sources, the list of ciphers will be attempted to be used in order. | [optional] **encryption_required** | **bool** | If true, requires all SyncIQ policies to utilize encrypted communications. | [optional] **force_interface** | **bool** | NOTE: This field should not be changed without the help of PowerScale support. Default for the \"force_interface\" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation. Determines whether data is sent only through the subnet and pool specified in the \"source_network\" field. This option can be useful if there are multiple interfaces for the given source subnet. | [optional] **max_concurrent_jobs** | **int** | The max concurrent jobs that SyncIQ can support. This number is based on the size of the current cluster and the current SyncIQ worker throttle rule. | [optional] **ocsp_address** | **str** | The address of the OCSP responder to which to connect. | [optional] **ocsp_issuer_certificate_id** | **str** | The ID of the certificate authority that issued the certificate whose revocation status is being checked. | [optional] -**password_set** | **bool** | Indicates if a password is set for authentication. Password value is not shown with GET. | [optional] **preferred_rpo_alert** | **int** | If specified, display as default RPO Alert value for new policy creation via WebUI | [optional] -**renegotiation_bytes** | **int** | Default for the number of bytes that are passed before a new TLS connection is 1TB. Setting to 0 will disable renegotiations based on bytes. | [optional] **renegotiation_period** | **int** | If specified, the duration to persist encrypted connection before forcing a renegotiation. | [optional] **report_email** | **list[str]** | Email sync reports to these addresses. | [optional] **report_max_age** | **int** | The default length of time (in seconds) a policy report will be stored. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncTargetApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncTargetApi.md similarity index 87% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/SyncTargetApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/SyncTargetApi.md index 212aeb8cd..64b77101e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/SyncTargetApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/SyncTargetApi.md @@ -1,12 +1,12 @@ -# isilon_sdk.v9_11_0.SyncTargetApi +# isilon_sdk.v9_4_0.SyncTargetApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* Method | HTTP request | Description ------------- | ------------- | ------------- [**create_policies_policy_cancel_item**](SyncTargetApi.md#create_policies_policy_cancel_item) | **POST** /platform/1/sync/target/policies/{Policy}/cancel | -[**get_reports_report_subreport**](SyncTargetApi.md#get_reports_report_subreport) | **GET** /platform/22/sync/target/reports/{Rid}/subreports/{ReportsReportSubreportId} | -[**get_reports_report_subreports**](SyncTargetApi.md#get_reports_report_subreports) | **GET** /platform/22/sync/target/reports/{Rid}/subreports | +[**get_reports_report_subreport**](SyncTargetApi.md#get_reports_report_subreport) | **GET** /platform/15/sync/target/reports/{Rid}/subreports/{ReportsReportSubreportId} | +[**get_reports_report_subreports**](SyncTargetApi.md#get_reports_report_subreports) | **GET** /platform/15/sync/target/reports/{Rid}/subreports | # **create_policies_policy_cancel_item** @@ -20,18 +20,18 @@ Cancel the most recent SyncIQ job for this policy from the target side. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncTargetApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -policies_policy_cancel_item = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.SyncTargetApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +policies_policy_cancel_item = isilon_sdk.v9_4_0.Empty() # Empty | policy = 'policy_example' # str | try: @@ -74,17 +74,17 @@ View a single SyncIQ target subreport. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncTargetApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncTargetApi(isilon_sdk.v9_4_0.ApiClient(configuration)) reports_report_subreport_id = 'reports_report_subreport_id_example' # str | View a single SyncIQ target subreport. rid = 'rid_example' # str | @@ -128,17 +128,17 @@ Get a list of SyncIQ target subreports for a report. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.SyncTargetApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.SyncTargetApi(isilon_sdk.v9_4_0.ApiClient(configuration)) rid = 'rid_example' # str | dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/TargetPolicies.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/TargetPolicies.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/TargetPolicies.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/TargetPolicies.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/TargetPoliciesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/TargetPoliciesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/TargetPoliciesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/TargetPoliciesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/TargetPolicy.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/TargetPolicy.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/TargetPolicy.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/TargetPolicy.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/TargetReport.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/TargetReport.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/TargetReport.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/TargetReport.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/TargetReports.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/TargetReports.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/TargetReports.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/TargetReports.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/TargetReportsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/TargetReportsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/TargetReportsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/TargetReportsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ThrottlingBwRule.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ThrottlingBwRule.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ThrottlingBwRule.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ThrottlingBwRule.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ThrottlingBwRuleCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ThrottlingBwRuleCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ThrottlingBwRuleCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ThrottlingBwRuleCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ThrottlingBwRules.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ThrottlingBwRules.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ThrottlingBwRules.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ThrottlingBwRules.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ThrottlingBwRulesBandwidthRule.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ThrottlingBwRulesBandwidthRule.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ThrottlingBwRulesBandwidthRule.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ThrottlingBwRulesBandwidthRule.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ThrottlingBwRulesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ThrottlingBwRulesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ThrottlingBwRulesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ThrottlingBwRulesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ThrottlingSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ThrottlingSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ThrottlingSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ThrottlingSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ThrottlingSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ThrottlingSettingsSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ThrottlingSettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ThrottlingSettingsSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/TimezoneRegion.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/TimezoneRegion.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/TimezoneRegion.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/TimezoneRegion.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/TimezoneRegionTimezone.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/TimezoneRegionTimezone.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/TimezoneRegionTimezone.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/TimezoneRegionTimezone.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/TimezoneRegions.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/TimezoneRegions.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/TimezoneRegions.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/TimezoneRegions.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/TimezoneSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/TimezoneSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/TimezoneSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/TimezoneSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/UpgradeApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/UpgradeApi.md similarity index 77% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/UpgradeApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/UpgradeApi.md index ddca4938b..05cbaa143 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/UpgradeApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/UpgradeApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.UpgradeApi +# isilon_sdk.v9_4_0.UpgradeApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -6,34 +6,31 @@ Method | HTTP request | Description ------------- | ------------- | ------------- [**create_cluster_add_remaining_node**](UpgradeApi.md#create_cluster_add_remaining_node) | **POST** /platform/3/upgrade/cluster/add_remaining_nodes | [**create_cluster_archive_item**](UpgradeApi.md#create_cluster_archive_item) | **POST** /platform/3/upgrade/cluster/archive | -[**create_cluster_assess_item**](UpgradeApi.md#create_cluster_assess_item) | **POST** /platform/20/upgrade/cluster/assess | +[**create_cluster_assess_item**](UpgradeApi.md#create_cluster_assess_item) | **POST** /platform/5/upgrade/cluster/assess | [**create_cluster_commit_item**](UpgradeApi.md#create_cluster_commit_item) | **POST** /platform/3/upgrade/cluster/commit | [**create_cluster_firmware_assess_item**](UpgradeApi.md#create_cluster_firmware_assess_item) | **POST** /platform/10/upgrade/cluster/firmware/assess | [**create_cluster_firmware_upgrade_item**](UpgradeApi.md#create_cluster_firmware_upgrade_item) | **POST** /platform/12/upgrade/cluster/firmware/upgrade | [**create_cluster_patch_abort_item**](UpgradeApi.md#create_cluster_patch_abort_item) | **POST** /platform/3/upgrade/cluster/patch/abort | -[**create_cluster_patch_patch**](UpgradeApi.md#create_cluster_patch_patch) | **POST** /platform/16/upgrade/cluster/patch/patches | +[**create_cluster_patch_patch**](UpgradeApi.md#create_cluster_patch_patch) | **POST** /platform/14/upgrade/cluster/patch/patches | [**create_cluster_pause_item**](UpgradeApi.md#create_cluster_pause_item) | **POST** /platform/7/upgrade/cluster/pause | [**create_cluster_resume_item**](UpgradeApi.md#create_cluster_resume_item) | **POST** /platform/7/upgrade/cluster/resume | [**create_cluster_retry_last_action_item**](UpgradeApi.md#create_cluster_retry_last_action_item) | **POST** /platform/3/upgrade/cluster/retry_last_action | [**create_cluster_rollback_item**](UpgradeApi.md#create_cluster_rollback_item) | **POST** /platform/3/upgrade/cluster/rollback | [**create_cluster_upgrade_item**](UpgradeApi.md#create_cluster_upgrade_item) | **POST** /platform/12/upgrade/cluster/upgrade | -[**delete_cluster_patch_patch**](UpgradeApi.md#delete_cluster_patch_patch) | **DELETE** /platform/16/upgrade/cluster/patch/patches/{ClusterPatchPatchId} | +[**delete_cluster_patch_patch**](UpgradeApi.md#delete_cluster_patch_patch) | **DELETE** /platform/14/upgrade/cluster/patch/patches/{ClusterPatchPatchId} | [**get_cluster_drain_list**](UpgradeApi.md#get_cluster_drain_list) | **GET** /platform/12/upgrade/cluster/drain/list | [**get_cluster_drain_timeout**](UpgradeApi.md#get_cluster_drain_timeout) | **GET** /platform/12/upgrade/cluster/drain/timeout | [**get_cluster_firmware_device**](UpgradeApi.md#get_cluster_firmware_device) | **GET** /platform/10/upgrade/cluster/firmware/device | [**get_cluster_firmware_progress**](UpgradeApi.md#get_cluster_firmware_progress) | **GET** /platform/3/upgrade/cluster/firmware/progress | [**get_cluster_firmware_status**](UpgradeApi.md#get_cluster_firmware_status) | **GET** /platform/10/upgrade/cluster/firmware/status | -[**get_cluster_mixed_mode**](UpgradeApi.md#get_cluster_mixed_mode) | **GET** /platform/16/upgrade/cluster/mixed-mode | [**get_cluster_node**](UpgradeApi.md#get_cluster_node) | **GET** /platform/12/upgrade/cluster/nodes/{ClusterNodeId} | [**get_cluster_nodes**](UpgradeApi.md#get_cluster_nodes) | **GET** /platform/12/upgrade/cluster/nodes | -[**get_cluster_patch_patch**](UpgradeApi.md#get_cluster_patch_patch) | **GET** /platform/16/upgrade/cluster/patch/patches/{ClusterPatchPatchId} | -[**get_upgrade_cluster**](UpgradeApi.md#get_upgrade_cluster) | **GET** /platform/20/upgrade/cluster | -[**list_cluster_assess**](UpgradeApi.md#list_cluster_assess) | **GET** /platform/20/upgrade/cluster/assess | -[**list_cluster_patch_patches**](UpgradeApi.md#list_cluster_patch_patches) | **GET** /platform/16/upgrade/cluster/patch/patches | +[**get_cluster_patch_patch**](UpgradeApi.md#get_cluster_patch_patch) | **GET** /platform/14/upgrade/cluster/patch/patches/{ClusterPatchPatchId} | +[**get_upgrade_cluster**](UpgradeApi.md#get_upgrade_cluster) | **GET** /platform/12/upgrade/cluster | +[**list_cluster_patch_patches**](UpgradeApi.md#list_cluster_patch_patches) | **GET** /platform/14/upgrade/cluster/patch/patches | [**update_cluster_drain**](UpgradeApi.md#update_cluster_drain) | **PUT** /platform/12/upgrade/cluster/drain | [**update_cluster_drain_timeout**](UpgradeApi.md#update_cluster_drain_timeout) | **PUT** /platform/12/upgrade/cluster/drain/timeout | -[**update_cluster_skip_optional**](UpgradeApi.md#update_cluster_skip_optional) | **PUT** /platform/20/upgrade/cluster/skip-optional | -[**update_cluster_unblock**](UpgradeApi.md#update_cluster_unblock) | **PUT** /platform/22/upgrade/cluster/unblock | +[**update_cluster_unblock**](UpgradeApi.md#update_cluster_unblock) | **PUT** /platform/9/upgrade/cluster/unblock | [**update_cluster_upgrade**](UpgradeApi.md#update_cluster_upgrade) | **PUT** /platform/12/upgrade/cluster/upgrade | @@ -48,18 +45,18 @@ Let system absorb any remaining or new nodes inside the existing upgrade. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_add_remaining_node = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.UpgradeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cluster_add_remaining_node = isilon_sdk.v9_4_0.Empty() # Empty | try: api_response = api_instance.create_cluster_add_remaining_node(cluster_add_remaining_node) @@ -100,18 +97,18 @@ Start an archive of an upgrade. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_archive_item = isilon_sdk.v9_11_0.ClusterArchiveItem() # ClusterArchiveItem | +api_instance = isilon_sdk.v9_4_0.UpgradeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cluster_archive_item = isilon_sdk.v9_4_0.ClusterArchiveItem() # ClusterArchiveItem | try: api_response = api_instance.create_cluster_archive_item(cluster_archive_item) @@ -152,18 +149,18 @@ Start upgrade assessment on cluster. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_assess_item = isilon_sdk.v9_11_0.ClusterAssessItem() # ClusterAssessItem | +api_instance = isilon_sdk.v9_4_0.UpgradeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cluster_assess_item = isilon_sdk.v9_4_0.ClusterAssessItem() # ClusterAssessItem | try: api_response = api_instance.create_cluster_assess_item(cluster_assess_item) @@ -204,18 +201,18 @@ Commit the upgrade of a cluster. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_commit_item = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.UpgradeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cluster_commit_item = isilon_sdk.v9_4_0.Empty() # Empty | try: api_response = api_instance.create_cluster_commit_item(cluster_commit_item) @@ -256,18 +253,18 @@ Start firmware upgrade assessment on cluster. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_firmware_assess_item = isilon_sdk.v9_11_0.ClusterFirmwareAssessItem() # ClusterFirmwareAssessItem | +api_instance = isilon_sdk.v9_4_0.UpgradeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cluster_firmware_assess_item = isilon_sdk.v9_4_0.ClusterFirmwareAssessItem() # ClusterFirmwareAssessItem | try: api_response = api_instance.create_cluster_firmware_assess_item(cluster_firmware_assess_item) @@ -308,18 +305,18 @@ The settings necessary to start a firmware upgrade. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_firmware_upgrade_item = isilon_sdk.v9_11_0.ClusterFirmwareUpgradeItem() # ClusterFirmwareUpgradeItem | +api_instance = isilon_sdk.v9_4_0.UpgradeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cluster_firmware_upgrade_item = isilon_sdk.v9_4_0.ClusterFirmwareUpgradeItem() # ClusterFirmwareUpgradeItem | try: api_response = api_instance.create_cluster_firmware_upgrade_item(cluster_firmware_upgrade_item) @@ -360,18 +357,18 @@ Abort the previous action performed by the patch system. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_patch_abort_item = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.UpgradeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cluster_patch_abort_item = isilon_sdk.v9_4_0.Empty() # Empty | try: api_response = api_instance.create_cluster_patch_abort_item(cluster_patch_abort_item) @@ -412,18 +409,18 @@ Install a patch. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_patch_patch = isilon_sdk.v9_11_0.ClusterPatchPatch() # ClusterPatchPatch | +api_instance = isilon_sdk.v9_4_0.UpgradeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cluster_patch_patch = isilon_sdk.v9_4_0.ClusterPatchPatch() # ClusterPatchPatch | alert_timeout = 56 # int | The duration in seconds after drain begins that an alert will be raised. An alert timeout must be set to a smaller value than the drain timeout to be used. If not specified, an alert will not be raised (legacy behavior). (optional) drain_timeout = 56 # int | The duration in seconds that upgrade waits for all SMB clients to disconnect from a node before rebooting it. A value of 0 means wait indefinitely. If not specified, upgrade proceeds with reboots regardless of SMB client connections (legacy behavior). (optional) skip_conflict_check = true # bool | Bypass conflict checks. Defaults to false. (optional) @@ -476,18 +473,18 @@ Pause a running upgrade process. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_pause_item = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.UpgradeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cluster_pause_item = isilon_sdk.v9_4_0.Empty() # Empty | try: api_response = api_instance.create_cluster_pause_item(cluster_pause_item) @@ -528,18 +525,18 @@ Resume a paused upgrade process. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_resume_item = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.UpgradeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cluster_resume_item = isilon_sdk.v9_4_0.Empty() # Empty | try: api_response = api_instance.create_cluster_resume_item(cluster_resume_item) @@ -580,18 +577,18 @@ Retry the last upgrade action, in-case the previous attempt failed. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_retry_last_action_item = isilon_sdk.v9_11_0.ClusterRetryLastActionItem() # ClusterRetryLastActionItem | +api_instance = isilon_sdk.v9_4_0.UpgradeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cluster_retry_last_action_item = isilon_sdk.v9_4_0.ClusterRetryLastActionItem() # ClusterRetryLastActionItem | try: api_response = api_instance.create_cluster_retry_last_action_item(cluster_retry_last_action_item) @@ -632,18 +629,18 @@ Rollback the upgrade of a cluster. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_rollback_item = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.UpgradeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cluster_rollback_item = isilon_sdk.v9_4_0.Empty() # Empty | try: api_response = api_instance.create_cluster_rollback_item(cluster_rollback_item) @@ -684,18 +681,18 @@ The settings necessary to start an upgrade. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_upgrade_item = isilon_sdk.v9_11_0.ClusterUpgradeItem() # ClusterUpgradeItem | +api_instance = isilon_sdk.v9_4_0.UpgradeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cluster_upgrade_item = isilon_sdk.v9_4_0.ClusterUpgradeItem() # ClusterUpgradeItem | try: api_response = api_instance.create_cluster_upgrade_item(cluster_upgrade_item) @@ -736,17 +733,17 @@ Uninstall a patch. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.UpgradeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) cluster_patch_patch_id = 'cluster_patch_patch_id_example' # str | Uninstall a patch. alert_timeout = 56 # int | The duration in seconds after drain begins that an alert will be raised. An alert timeout must be set to a smaller value than the drain timeout to be used. If not specified, an alert will not be raised (legacy behavior). (optional) drain_timeout = 56 # int | The duration in seconds that upgrade waits for all SMB clients to disconnect from a node before rebooting it. A value of 0 means wait indefinitely. If not specified, upgrade proceeds with reboots regardless of SMB client connections (legacy behavior). (optional) @@ -801,17 +798,17 @@ View Drain delay/skip lists. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.UpgradeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) drain_list = 'drain_list_example' # str | Delay or Skip list. try: @@ -853,17 +850,17 @@ View or modify drain timeouts. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.UpgradeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_cluster_drain_timeout() @@ -891,7 +888,7 @@ This endpoint does not need any parameter. [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_cluster_firmware_device** -> ClusterFirmwareDevice get_cluster_firmware_device(devices=devices, refresh=refresh) +> ClusterFirmwareDevice get_cluster_firmware_device(devices=devices, package=package, refresh=refresh) @@ -901,22 +898,23 @@ The firmware status for the cluster. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.UpgradeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) devices = true # bool | Show devices. If false, this returns an empty list. Default is false. (optional) +package = true # bool | Show package. If false, this returns an empty list. Default is false. (optional) refresh = true # bool | Re-gather firmware status. Default is false. (optional) try: - api_response = api_instance.get_cluster_firmware_device(devices=devices, refresh=refresh) + api_response = api_instance.get_cluster_firmware_device(devices=devices, package=package, refresh=refresh) pprint(api_response) except ApiException as e: print("Exception when calling UpgradeApi->get_cluster_firmware_device: %s\n" % e) @@ -927,6 +925,7 @@ except ApiException as e: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **devices** | **bool**| Show devices. If false, this returns an empty list. Default is false. | [optional] + **package** | **bool**| Show package. If false, this returns an empty list. Default is false. | [optional] **refresh** | **bool**| Re-gather firmware status. Default is false. | [optional] ### Return type @@ -955,17 +954,17 @@ Cluster wide firmware upgrade status info. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.UpgradeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_cluster_firmware_progress() @@ -1003,17 +1002,17 @@ The firmware status for the cluster. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.UpgradeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) devices = true # bool | Show devices. If false, this returns an empty list. Default is false. (optional) refresh = true # bool | Re-gather firmware status. Default is false. (optional) @@ -1046,54 +1045,6 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **get_cluster_mixed_mode** -> ClusterMixedMode get_cluster_mixed_mode() - - - -View mixed mode state. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) - -try: - api_response = api_instance.get_cluster_mixed_mode() - pprint(api_response) -except ApiException as e: - print("Exception when calling UpgradeApi->get_cluster_mixed_mode: %s\n" % e) -``` - -### Parameters -This endpoint does not need any parameter. - -### Return type - -[**ClusterMixedMode**](ClusterMixedMode.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **get_cluster_node** > ClusterNodes get_cluster_node(cluster_node_id) @@ -1105,17 +1056,17 @@ The node details useful during an upgrade or assessment. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.UpgradeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) cluster_node_id = 56 # int | The node details useful during an upgrade or assessment. try: @@ -1157,17 +1108,17 @@ View information about nodes during an upgrade, rollback, or pre-upgrade assessm ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.UpgradeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) by_domain = false # bool | If true, tag nodes that are assigned to like-failure domains (optional) (default to false) try: @@ -1209,17 +1160,17 @@ View a single patch. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.UpgradeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) cluster_patch_patch_id = 'cluster_patch_patch_id_example' # str | View a single patch. local = true # bool | View patch information on local node only. (optional) location = 'location_example' # str | Path location of patch file. (optional) @@ -1265,17 +1216,17 @@ Cluster wide upgrade status info. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.UpgradeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_upgrade_cluster() @@ -1302,60 +1253,6 @@ This endpoint does not need any parameter. [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **list_cluster_assess** -> Empty list_cluster_assess(latest=latest, success=success) - - - -Assessment result. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -latest = 'latest_example' # str | query for the latest report. (optional) -success = 'success_example' # str | query for the passed/failed checks (optional) - -try: - api_response = api_instance.list_cluster_assess(latest=latest, success=success) - pprint(api_response) -except ApiException as e: - print("Exception when calling UpgradeApi->list_cluster_assess: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **latest** | **str**| query for the latest report. | [optional] - **success** | **str**| query for the passed/failed checks | [optional] - -### Return type - -[**Empty**](Empty.md) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **list_cluster_patch_patches** > ClusterPatchPatchesExtended list_cluster_patch_patches(dir=dir, limit=limit, local=local, location=location, resume=resume, sort=sort) @@ -1367,17 +1264,17 @@ List all patches. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.UpgradeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) local = true # bool | View patches on the local node only. (optional) @@ -1429,18 +1326,18 @@ Alter drain action. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_drain = isilon_sdk.v9_11_0.ClusterDrain() # ClusterDrain | +api_instance = isilon_sdk.v9_4_0.UpgradeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cluster_drain = isilon_sdk.v9_4_0.ClusterDrain() # ClusterDrain | try: api_instance.update_cluster_drain(cluster_drain) @@ -1480,18 +1377,18 @@ View or modify drain timeouts. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_drain_timeout = isilon_sdk.v9_11_0.ClusterDrainTimeoutExtended() # ClusterDrainTimeoutExtended | +api_instance = isilon_sdk.v9_4_0.UpgradeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cluster_drain_timeout = isilon_sdk.v9_4_0.ClusterDrainTimeoutExtended() # ClusterDrainTimeoutExtended | try: api_instance.update_cluster_drain_timeout(cluster_drain_timeout) @@ -1520,57 +1417,6 @@ void (empty response body) [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **update_cluster_skip_optional** -> update_cluster_skip_optional(cluster_skip_optional) - - - - The option to indicate if the optional pre-upgrade checks should be skipped. - -### Example -```python -from __future__ import print_function -import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException -from pprint import pprint - -# Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() -configuration.username = 'YOUR_USERNAME' -configuration.password = 'YOUR_PASSWORD' - -# create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_skip_optional = isilon_sdk.v9_11_0.ClusterSkipOptional() # ClusterSkipOptional | - -try: - api_instance.update_cluster_skip_optional(cluster_skip_optional) -except ApiException as e: - print("Exception when calling UpgradeApi->update_cluster_skip_optional: %s\n" % e) -``` - -### Parameters - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **cluster_skip_optional** | [**ClusterSkipOptional**](ClusterSkipOptional.md)| | - -### Return type - -void (empty response body) - -### Authorization - -[basicAuth](../README.md#basicAuth) - -### HTTP request headers - - - **Content-Type**: application/json - - **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **update_cluster_unblock** > update_cluster_unblock(cluster_unblock) @@ -1582,18 +1428,18 @@ Unblock parallel upgrade. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_unblock = isilon_sdk.v9_11_0.ClusterUnblock() # ClusterUnblock | +api_instance = isilon_sdk.v9_4_0.UpgradeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cluster_unblock = isilon_sdk.v9_4_0.ClusterUnblock() # ClusterUnblock | try: api_instance.update_cluster_unblock(cluster_unblock) @@ -1633,18 +1479,18 @@ Add nodes to a running upgrade. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -cluster_upgrade = isilon_sdk.v9_11_0.ClusterUpgrade() # ClusterUpgrade | +api_instance = isilon_sdk.v9_4_0.UpgradeApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +cluster_upgrade = isilon_sdk.v9_4_0.ClusterUpgrade() # ClusterUpgrade | try: api_instance.update_cluster_upgrade(cluster_upgrade) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/UpgradeCluster.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/UpgradeCluster.md similarity index 94% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/UpgradeCluster.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/UpgradeCluster.md index 472c2d12d..6c802dce8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/UpgradeCluster.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/UpgradeCluster.md @@ -3,8 +3,6 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**assessment_progress** | **int** | Progress of active upgrade assessment. | [optional] -**assessment_status** | **str** | Status of active upgrade assessment. | [optional] **cluster_overview** | [**UpgradeClusterClusterOverview**](UpgradeClusterClusterOverview.md) | The cluster overview of an upgrade process. | [optional] **cluster_state** | **str** | The different states of an upgrade, rollback, or assessment. One of the following values: 'committed', 'upgraded', 'partially upgraded', 'upgrading', 'rolling back', 'assessing', 'error' | [optional] **committed_features** | [**UpgradeClusterCommittedFeatures**](UpgradeClusterCommittedFeatures.md) | The feature set supported as of the most recent upgrade commit. | [optional] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/UpgradeClusterApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/UpgradeClusterApi.md similarity index 86% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/UpgradeClusterApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/UpgradeClusterApi.md index 691a9e911..c7b9b5f0f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/UpgradeClusterApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/UpgradeClusterApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.UpgradeClusterApi +# isilon_sdk.v9_4_0.UpgradeClusterApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -20,18 +20,18 @@ Retry any pending patch sync operations. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -nodes_node_patch_sync_item = isilon_sdk.v9_11_0.Empty() # Empty | +api_instance = isilon_sdk.v9_4_0.UpgradeClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +nodes_node_patch_sync_item = isilon_sdk.v9_4_0.Empty() # Empty | lnn = 56 # int | try: @@ -74,17 +74,17 @@ The firmware status for the node. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.UpgradeClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) lnn = 56 # int | devices = true # bool | Show devices. If false, this returns an empty list. Default is false. (optional) @@ -128,17 +128,17 @@ The firmware status for the node. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.UpgradeClusterApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.UpgradeClusterApi(isilon_sdk.v9_4_0.ApiClient(configuration)) lnn = 56 # int | devices = true # bool | Show devices. If false, this returns an empty list. Default is false. (optional) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/UpgradeClusterClusterOverview.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/UpgradeClusterClusterOverview.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/UpgradeClusterClusterOverview.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/UpgradeClusterClusterOverview.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/UpgradeClusterCommittedFeatures.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/UpgradeClusterCommittedFeatures.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/UpgradeClusterCommittedFeatures.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/UpgradeClusterCommittedFeatures.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/UpgradeClusterCommittedFeaturesGenBit.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/UpgradeClusterCommittedFeaturesGenBit.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/UpgradeClusterCommittedFeaturesGenBit.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/UpgradeClusterCommittedFeaturesGenBit.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/UpgradeClusterFirmwareDevice.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/UpgradeClusterFirmwareDevice.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/UpgradeClusterFirmwareDevice.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/UpgradeClusterFirmwareDevice.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/UpgradeClusterFirmwareDeviceNode.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/UpgradeClusterFirmwareDeviceNode.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/UpgradeClusterFirmwareDeviceNode.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/UpgradeClusterFirmwareDeviceNode.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/UpgradeClusterFirmwareDeviceNodeDevice.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/UpgradeClusterFirmwareDeviceNodeDevice.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/UpgradeClusterFirmwareDeviceNodeDevice.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/UpgradeClusterFirmwareDeviceNodeDevice.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/UpgradeClusterFirmwareDeviceNodePackageItem.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/UpgradeClusterFirmwareDeviceNodePackageItem.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/UpgradeClusterFirmwareDeviceNodePackageItem.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/UpgradeClusterFirmwareDeviceNodePackageItem.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/UpgradeClusterUpgradeSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/UpgradeClusterUpgradeSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/UpgradeClusterUpgradeSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/UpgradeClusterUpgradeSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/UserChangePassword.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/UserChangePassword.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/UserChangePassword.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/UserChangePassword.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/UserMemberOf.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/UserMemberOf.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/UserMemberOf.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/UserMemberOf.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/WormApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/WormApi.md similarity index 83% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/WormApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/WormApi.md index 09d38a0e4..a9994cdb0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/WormApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/WormApi.md @@ -1,14 +1,14 @@ -# isilon_sdk.v9_11_0.WormApi +# isilon_sdk.v9_4_0.WormApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* Method | HTTP request | Description ------------- | ------------- | ------------- -[**create_worm_domain**](WormApi.md#create_worm_domain) | **POST** /platform/20/worm/domains | -[**get_worm_domain**](WormApi.md#get_worm_domain) | **GET** /platform/20/worm/domains/{WormDomainId} | +[**create_worm_domain**](WormApi.md#create_worm_domain) | **POST** /platform/7/worm/domains | +[**get_worm_domain**](WormApi.md#get_worm_domain) | **GET** /platform/7/worm/domains/{WormDomainId} | [**get_worm_settings**](WormApi.md#get_worm_settings) | **GET** /platform/1/worm/settings | -[**list_worm_domains**](WormApi.md#list_worm_domains) | **GET** /platform/20/worm/domains | -[**update_worm_domain**](WormApi.md#update_worm_domain) | **PUT** /platform/20/worm/domains/{WormDomainId} | +[**list_worm_domains**](WormApi.md#list_worm_domains) | **GET** /platform/7/worm/domains | +[**update_worm_domain**](WormApi.md#update_worm_domain) | **PUT** /platform/7/worm/domains/{WormDomainId} | [**update_worm_settings**](WormApi.md#update_worm_settings) | **PUT** /platform/1/worm/settings | @@ -23,18 +23,18 @@ Create a WORM domain. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.WormApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -worm_domain = isilon_sdk.v9_11_0.WormDomainCreateParams() # WormDomainCreateParams | +api_instance = isilon_sdk.v9_4_0.WormApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +worm_domain = isilon_sdk.v9_4_0.WormDomainCreateParams() # WormDomainCreateParams | try: api_response = api_instance.create_worm_domain(worm_domain) @@ -75,17 +75,17 @@ View a single WORM domain. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.WormApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.WormApi(isilon_sdk.v9_4_0.ApiClient(configuration)) worm_domain_id = 'worm_domain_id_example' # str | View a single WORM domain. try: @@ -127,17 +127,17 @@ Get the global WORM settings. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.WormApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.WormApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.get_worm_settings() @@ -175,17 +175,17 @@ List all WORM domains. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.WormApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.WormApi(isilon_sdk.v9_4_0.ApiClient(configuration)) dir = 'dir_example' # str | The direction of the sort. (optional) limit = 56 # int | Return no more than this many results at once (see resume). (optional) resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional) @@ -233,18 +233,18 @@ Modify a single WORM domain. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.WormApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -worm_domain = isilon_sdk.v9_11_0.WormDomain() # WormDomain | +api_instance = isilon_sdk.v9_4_0.WormApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +worm_domain = isilon_sdk.v9_4_0.WormDomain() # WormDomain | worm_domain_id = 'worm_domain_id_example' # str | Modify a single WORM domain. try: @@ -286,18 +286,18 @@ Modify the global WORM settings. All input fields are optional, but one or more ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.WormApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -worm_settings = isilon_sdk.v9_11_0.WormSettingsExtended() # WormSettingsExtended | +api_instance = isilon_sdk.v9_4_0.WormApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +worm_settings = isilon_sdk.v9_4_0.WormSettingsExtended() # WormSettingsExtended | try: api_instance.update_worm_settings(worm_settings) diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/WormCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/WormCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/WormCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/WormCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/WormDomain.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/WormDomain.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/WormDomain.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/WormDomain.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/WormDomainCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/WormDomainCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/WormDomainCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/WormDomainCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/WormDomainExclusion.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/WormDomainExclusion.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/WormDomainExclusion.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/WormDomainExclusion.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/WormDomainExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/WormDomainExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/WormDomainExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/WormDomainExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/WormDomains.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/WormDomains.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/WormDomains.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/WormDomains.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/WormDomainsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/WormDomainsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/WormDomainsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/WormDomainsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/WormProperties.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/WormProperties.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/WormProperties.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/WormProperties.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/WormSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/WormSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/WormSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/WormSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/WormSettingsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/WormSettingsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/WormSettingsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/WormSettingsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/WormSettingsSettings.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/WormSettingsSettings.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/WormSettingsSettings.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/WormSettingsSettings.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/Zone.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/Zone.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/Zone.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/Zone.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ZoneCreateParams.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ZoneCreateParams.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ZoneCreateParams.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ZoneCreateParams.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ZoneExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ZoneExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ZoneExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ZoneExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ZoneExtendedExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ZoneExtendedExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ZoneExtendedExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ZoneExtendedExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ZoneGroup.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ZoneGroup.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ZoneGroup.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ZoneGroup.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ZoneGroups.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ZoneGroups.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ZoneGroups.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ZoneGroups.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ZoneGroupsExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ZoneGroupsExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ZoneGroupsExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ZoneGroupsExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ZoneUser.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ZoneUser.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ZoneUser.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ZoneUser.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ZoneUsers.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ZoneUsers.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ZoneUsers.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ZoneUsers.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ZoneUsersExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ZoneUsersExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ZoneUsersExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ZoneUsersExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/Zones.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/Zones.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/Zones.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/Zones.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ZonesApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ZonesApi.md similarity index 83% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ZonesApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ZonesApi.md index 8da995820..9260eca35 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ZonesApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ZonesApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.ZonesApi +# isilon_sdk.v9_4_0.ZonesApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -22,18 +22,18 @@ Create a new access zone. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ZonesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -zone = isilon_sdk.v9_11_0.ZoneCreateParams() # ZoneCreateParams | +api_instance = isilon_sdk.v9_4_0.ZonesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +zone = isilon_sdk.v9_4_0.ZoneCreateParams() # ZoneCreateParams | try: api_response = api_instance.create_zone(zone) @@ -74,17 +74,17 @@ Delete the access zone. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ZonesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ZonesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) zone_id = 56 # int | Delete the access zone. try: @@ -125,17 +125,17 @@ Retrieve the access zone information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ZonesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ZonesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) zone_id = 56 # int | Retrieve the access zone information. try: @@ -177,17 +177,17 @@ List all access zones. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ZonesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ZonesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) try: api_response = api_instance.list_zones() @@ -225,18 +225,18 @@ Modify the access zone. All input fields are optional, but one or more must be s ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ZonesApi(isilon_sdk.v9_11_0.ApiClient(configuration)) -zone = isilon_sdk.v9_11_0.Zone() # Zone | +api_instance = isilon_sdk.v9_4_0.ZonesApi(isilon_sdk.v9_4_0.ApiClient(configuration)) +zone = isilon_sdk.v9_4_0.Zone() # Zone | zone_id = 56 # int | Modify the access zone. All input fields are optional, but one or more must be supplied. try: diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ZonesExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ZonesExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ZonesExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ZonesExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ZonesSummary.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ZonesSummary.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ZonesSummary.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ZonesSummary.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ZonesSummaryApi.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ZonesSummaryApi.md similarity index 86% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ZonesSummaryApi.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ZonesSummaryApi.md index 4c2ba9c1a..8cdfa8d7e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/docs/ZonesSummaryApi.md +++ b/isilon_sdk/isilon_sdk/v9_4_0/docs/ZonesSummaryApi.md @@ -1,4 +1,4 @@ -# isilon_sdk.v9_11_0.ZonesSummaryApi +# isilon_sdk.v9_4_0.ZonesSummaryApi All URIs are relative to *https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080* @@ -19,17 +19,17 @@ Retrieve access zone summary information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ZonesSummaryApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ZonesSummaryApi(isilon_sdk.v9_4_0.ApiClient(configuration)) groupnet = 'groupnet_example' # str | Name of groupnet in which to list zones. (optional) try: @@ -71,17 +71,17 @@ Retrieve non-privileged access zone information. ```python from __future__ import print_function import time -import isilon_sdk.v9_11_0 -from isilon_sdk.v9_11_0.rest import ApiException +import isilon_sdk.v9_4_0 +from isilon_sdk.v9_4_0.rest import ApiException from pprint import pprint # Configure HTTP basic authorization: basicAuth -configuration = isilon_sdk.v9_11_0.Configuration() +configuration = isilon_sdk.v9_4_0.Configuration() configuration.username = 'YOUR_USERNAME' configuration.password = 'YOUR_PASSWORD' # create an instance of the API class -api_instance = isilon_sdk.v9_11_0.ZonesSummaryApi(isilon_sdk.v9_11_0.ApiClient(configuration)) +api_instance = isilon_sdk.v9_4_0.ZonesSummaryApi(isilon_sdk.v9_4_0.ApiClient(configuration)) zones_summary_zone = 56 # int | Retrieve non-privileged access zone information. try: diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ZonesSummaryExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ZonesSummaryExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ZonesSummaryExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ZonesSummaryExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ZonesSummarySummary.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ZonesSummarySummary.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ZonesSummarySummary.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ZonesSummarySummary.md diff --git a/isilon_sdk/isilon_sdk/v9_11_0/docs/ZonesSummarySummaryExtended.md b/isilon_sdk/isilon_sdk/v9_4_0/docs/ZonesSummarySummaryExtended.md similarity index 100% rename from isilon_sdk/isilon_sdk/v9_11_0/docs/ZonesSummarySummaryExtended.md rename to isilon_sdk/isilon_sdk/v9_4_0/docs/ZonesSummarySummaryExtended.md diff --git a/isilon_sdk/isilon_sdk/v9_4_0/models/__init__.py b/isilon_sdk/isilon_sdk/v9_4_0/models/__init__.py new file mode 100644 index 000000000..326f9c31c --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/__init__.py @@ -0,0 +1,1333 @@ +# coding: utf-8 + +# flake8: noqa +""" + Isilon SDK + + Isilon SDK - Language bindings for the OneFS API # noqa: E501 + + OpenAPI spec version: 15 + Contact: sdk@isilon.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +from __future__ import absolute_import + +# import models into model package +from isilon_sdk.v9_4_0.models.access_point_create_params import AccessPointCreateParams +from isilon_sdk.v9_4_0.models.acl_object import AclObject +from isilon_sdk.v9_4_0.models.ads_provider_controllers import AdsProviderControllers +from isilon_sdk.v9_4_0.models.ads_provider_controllers_controller import AdsProviderControllersController +from isilon_sdk.v9_4_0.models.ads_provider_domains import AdsProviderDomains +from isilon_sdk.v9_4_0.models.ads_provider_domains_domain import AdsProviderDomainsDomain +from isilon_sdk.v9_4_0.models.ads_provider_search_item import AdsProviderSearchItem +from isilon_sdk.v9_4_0.models.antivirus_policies import AntivirusPolicies +from isilon_sdk.v9_4_0.models.antivirus_policy import AntivirusPolicy +from isilon_sdk.v9_4_0.models.antivirus_quarantine import AntivirusQuarantine +from isilon_sdk.v9_4_0.models.antivirus_quarantine_path_params import AntivirusQuarantinePathParams +from isilon_sdk.v9_4_0.models.antivirus_scan_item import AntivirusScanItem +from isilon_sdk.v9_4_0.models.antivirus_server import AntivirusServer +from isilon_sdk.v9_4_0.models.antivirus_servers import AntivirusServers +from isilon_sdk.v9_4_0.models.antivirus_settings import AntivirusSettings +from isilon_sdk.v9_4_0.models.antivirus_settings_extended import AntivirusSettingsExtended +from isilon_sdk.v9_4_0.models.antivirus_settings_settings import AntivirusSettingsSettings +from isilon_sdk.v9_4_0.models.audit_logs import AuditLogs +from isilon_sdk.v9_4_0.models.audit_logs_blocker_item import AuditLogsBlockerItem +from isilon_sdk.v9_4_0.models.audit_logs_deletion_item import AuditLogsDeletionItem +from isilon_sdk.v9_4_0.models.audit_progress import AuditProgress +from isilon_sdk.v9_4_0.models.audit_progress_progress import AuditProgressProgress +from isilon_sdk.v9_4_0.models.audit_settings import AuditSettings +from isilon_sdk.v9_4_0.models.audit_settings_settings import AuditSettingsSettings +from isilon_sdk.v9_4_0.models.audit_topic import AuditTopic +from isilon_sdk.v9_4_0.models.audit_topic_create_params import AuditTopicCreateParams +from isilon_sdk.v9_4_0.models.audit_topics import AuditTopics +from isilon_sdk.v9_4_0.models.auth_access import AuthAccess +from isilon_sdk.v9_4_0.models.auth_access_access_item import AuthAccessAccessItem +from isilon_sdk.v9_4_0.models.auth_access_access_item_file import AuthAccessAccessItemFile +from isilon_sdk.v9_4_0.models.auth_access_access_item_file_file_permissions import AuthAccessAccessItemFileFilePermissions +from isilon_sdk.v9_4_0.models.auth_access_access_item_file_file_permissions_relevant_ace import AuthAccessAccessItemFileFilePermissionsRelevantAce +from isilon_sdk.v9_4_0.models.auth_access_access_item_file_group import AuthAccessAccessItemFileGroup +from isilon_sdk.v9_4_0.models.auth_access_access_item_share import AuthAccessAccessItemShare +from isilon_sdk.v9_4_0.models.auth_access_access_item_share_effective_user import AuthAccessAccessItemShareEffectiveUser +from isilon_sdk.v9_4_0.models.auth_access_access_item_share_share_permissions import AuthAccessAccessItemShareSharePermissions +from isilon_sdk.v9_4_0.models.auth_cache_item import AuthCacheItem +from isilon_sdk.v9_4_0.models.auth_error import AuthError +from isilon_sdk.v9_4_0.models.auth_group import AuthGroup +from isilon_sdk.v9_4_0.models.auth_group_extended import AuthGroupExtended +from isilon_sdk.v9_4_0.models.auth_group_object_history_item import AuthGroupObjectHistoryItem +from isilon_sdk.v9_4_0.models.auth_groups import AuthGroups +from isilon_sdk.v9_4_0.models.auth_groups_extended import AuthGroupsExtended +from isilon_sdk.v9_4_0.models.auth_id import AuthId +from isilon_sdk.v9_4_0.models.auth_id_ntoken import AuthIdNtoken +from isilon_sdk.v9_4_0.models.auth_id_ntoken_privilege_item import AuthIdNtokenPrivilegeItem +from isilon_sdk.v9_4_0.models.auth_ldap_templates import AuthLdapTemplates +from isilon_sdk.v9_4_0.models.auth_ldap_templates_extended import AuthLdapTemplatesExtended +from isilon_sdk.v9_4_0.models.auth_ldap_templates_ldap_configuration_template import AuthLdapTemplatesLdapConfigurationTemplate +from isilon_sdk.v9_4_0.models.auth_ldap_templates_ldap_configuration_template_extended import AuthLdapTemplatesLdapConfigurationTemplateExtended +from isilon_sdk.v9_4_0.models.auth_log_level import AuthLogLevel +from isilon_sdk.v9_4_0.models.auth_log_level_extended import AuthLogLevelExtended +from isilon_sdk.v9_4_0.models.auth_log_level_level import AuthLogLevelLevel +from isilon_sdk.v9_4_0.models.auth_netgroup import AuthNetgroup +from isilon_sdk.v9_4_0.models.auth_netgroups import AuthNetgroups +from isilon_sdk.v9_4_0.models.auth_privilege import AuthPrivilege +from isilon_sdk.v9_4_0.models.auth_privileges import AuthPrivileges +from isilon_sdk.v9_4_0.models.auth_role import AuthRole +from isilon_sdk.v9_4_0.models.auth_roles import AuthRoles +from isilon_sdk.v9_4_0.models.auth_shells import AuthShells +from isilon_sdk.v9_4_0.models.auth_user import AuthUser +from isilon_sdk.v9_4_0.models.auth_user_extended import AuthUserExtended +from isilon_sdk.v9_4_0.models.auth_users import AuthUsers +from isilon_sdk.v9_4_0.models.auth_users_extended import AuthUsersExtended +from isilon_sdk.v9_4_0.models.auth_wellknowns import AuthWellknowns +from isilon_sdk.v9_4_0.models.avscan_filter import AvscanFilter +from isilon_sdk.v9_4_0.models.avscan_filter_extended import AvscanFilterExtended +from isilon_sdk.v9_4_0.models.avscan_filter_extended_extended import AvscanFilterExtendedExtended +from isilon_sdk.v9_4_0.models.avscan_filters import AvscanFilters +from isilon_sdk.v9_4_0.models.avscan_filters_extended import AvscanFiltersExtended +from isilon_sdk.v9_4_0.models.avscan_job import AvscanJob +from isilon_sdk.v9_4_0.models.avscan_job_create_params import AvscanJobCreateParams +from isilon_sdk.v9_4_0.models.avscan_job_extended import AvscanJobExtended +from isilon_sdk.v9_4_0.models.avscan_jobs import AvscanJobs +from isilon_sdk.v9_4_0.models.avscan_server import AvscanServer +from isilon_sdk.v9_4_0.models.avscan_server_create_params import AvscanServerCreateParams +from isilon_sdk.v9_4_0.models.avscan_server_extended import AvscanServerExtended +from isilon_sdk.v9_4_0.models.avscan_servers import AvscanServers +from isilon_sdk.v9_4_0.models.avscan_settings import AvscanSettings +from isilon_sdk.v9_4_0.models.avscan_settings_settings import AvscanSettingsSettings +from isilon_sdk.v9_4_0.models.catalog_export import CatalogExport +from isilon_sdk.v9_4_0.models.catalog_import import CatalogImport +from isilon_sdk.v9_4_0.models.catalog_list import CatalogList +from isilon_sdk.v9_4_0.models.catalog_list_artifact import CatalogListArtifact +from isilon_sdk.v9_4_0.models.catalog_readme import CatalogReadme +from isilon_sdk.v9_4_0.models.catalog_remove import CatalogRemove +from isilon_sdk.v9_4_0.models.catalog_verify import CatalogVerify +from isilon_sdk.v9_4_0.models.catalog_verify_artifact import CatalogVerifyArtifact +from isilon_sdk.v9_4_0.models.certificate_authority_item import CertificateAuthorityItem +from isilon_sdk.v9_4_0.models.certificate_server_id_params import CertificateServerIdParams +from isilon_sdk.v9_4_0.models.certificate_server_item import CertificateServerItem +from isilon_sdk.v9_4_0.models.certificate_settings import CertificateSettings +from isilon_sdk.v9_4_0.models.certificate_settings_extended import CertificateSettingsExtended +from isilon_sdk.v9_4_0.models.certificate_settings_settings import CertificateSettingsSettings +from isilon_sdk.v9_4_0.models.certificates_ca import CertificatesCa +from isilon_sdk.v9_4_0.models.certificates_ca_certificate import CertificatesCaCertificate +from isilon_sdk.v9_4_0.models.certificates_ca_certificate_fingerprint import CertificatesCaCertificateFingerprint +from isilon_sdk.v9_4_0.models.certificates_ca_id_params import CertificatesCaIdParams +from isilon_sdk.v9_4_0.models.certificates_ca_item import CertificatesCaItem +from isilon_sdk.v9_4_0.models.certificates_identity import CertificatesIdentity +from isilon_sdk.v9_4_0.models.certificates_identity_certificate import CertificatesIdentityCertificate +from isilon_sdk.v9_4_0.models.certificates_identity_item import CertificatesIdentityItem +from isilon_sdk.v9_4_0.models.certificates_peer import CertificatesPeer +from isilon_sdk.v9_4_0.models.certificates_server import CertificatesServer +from isilon_sdk.v9_4_0.models.changelist_entries import ChangelistEntries +from isilon_sdk.v9_4_0.models.changelist_entries_extended import ChangelistEntriesExtended +from isilon_sdk.v9_4_0.models.changelist_entry import ChangelistEntry +from isilon_sdk.v9_4_0.models.changelist_entry_atime import ChangelistEntryAtime +from isilon_sdk.v9_4_0.models.changelist_lins import ChangelistLins +from isilon_sdk.v9_4_0.models.changelist_lins_atime import ChangelistLinsAtime +from isilon_sdk.v9_4_0.models.changelist_lins_extended import ChangelistLinsExtended +from isilon_sdk.v9_4_0.models.changelists_changelist_diff_regions import ChangelistsChangelistDiffRegions +from isilon_sdk.v9_4_0.models.changelists_changelist_diff_regions_diff_region import ChangelistsChangelistDiffRegionsDiffRegion +from isilon_sdk.v9_4_0.models.check_report import CheckReport +from isilon_sdk.v9_4_0.models.check_report_report_item import CheckReportReportItem +from isilon_sdk.v9_4_0.models.check_settings import CheckSettings +from isilon_sdk.v9_4_0.models.check_settings_extended import CheckSettingsExtended +from isilon_sdk.v9_4_0.models.check_settings_settings import CheckSettingsSettings +from isilon_sdk.v9_4_0.models.cloud_access import CloudAccess +from isilon_sdk.v9_4_0.models.cloud_access_cluster import CloudAccessCluster +from isilon_sdk.v9_4_0.models.cloud_access_item import CloudAccessItem +from isilon_sdk.v9_4_0.models.cloud_account import CloudAccount +from isilon_sdk.v9_4_0.models.cloud_account_create_params import CloudAccountCreateParams +from isilon_sdk.v9_4_0.models.cloud_account_credential_provider import CloudAccountCredentialProvider +from isilon_sdk.v9_4_0.models.cloud_accounts import CloudAccounts +from isilon_sdk.v9_4_0.models.cloud_accounts_extended import CloudAccountsExtended +from isilon_sdk.v9_4_0.models.cloud_certificates import CloudCertificates +from isilon_sdk.v9_4_0.models.cloud_job import CloudJob +from isilon_sdk.v9_4_0.models.cloud_job_create_params import CloudJobCreateParams +from isilon_sdk.v9_4_0.models.cloud_job_extended import CloudJobExtended +from isilon_sdk.v9_4_0.models.cloud_job_files import CloudJobFiles +from isilon_sdk.v9_4_0.models.cloud_job_files_name import CloudJobFilesName +from isilon_sdk.v9_4_0.models.cloud_job_job_engine_job import CloudJobJobEngineJob +from isilon_sdk.v9_4_0.models.cloud_jobs import CloudJobs +from isilon_sdk.v9_4_0.models.cloud_jobs_files import CloudJobsFiles +from isilon_sdk.v9_4_0.models.cloud_jobs_files_file import CloudJobsFilesFile +from isilon_sdk.v9_4_0.models.cloud_pool import CloudPool +from isilon_sdk.v9_4_0.models.cloud_pools import CloudPools +from isilon_sdk.v9_4_0.models.cloud_pools_extended import CloudPoolsExtended +from isilon_sdk.v9_4_0.models.cloud_proxies import CloudProxies +from isilon_sdk.v9_4_0.models.cloud_proxies_extended import CloudProxiesExtended +from isilon_sdk.v9_4_0.models.cloud_proxy import CloudProxy +from isilon_sdk.v9_4_0.models.cloud_settings import CloudSettings +from isilon_sdk.v9_4_0.models.cloud_settings_settings import CloudSettingsSettings +from isilon_sdk.v9_4_0.models.cloud_settings_settings_cloud_policy_defaults import CloudSettingsSettingsCloudPolicyDefaults +from isilon_sdk.v9_4_0.models.cloud_settings_settings_cloud_policy_defaults_cache import CloudSettingsSettingsCloudPolicyDefaultsCache +from isilon_sdk.v9_4_0.models.cloud_settings_settings_sleep_timeout_archive import CloudSettingsSettingsSleepTimeoutArchive +from isilon_sdk.v9_4_0.models.cluster_ac import ClusterAc +from isilon_sdk.v9_4_0.models.cluster_acs import ClusterAcs +from isilon_sdk.v9_4_0.models.cluster_add_node_item import ClusterAddNodeItem +from isilon_sdk.v9_4_0.models.cluster_archive_item import ClusterArchiveItem +from isilon_sdk.v9_4_0.models.cluster_assess_item import ClusterAssessItem +from isilon_sdk.v9_4_0.models.cluster_config import ClusterConfig +from isilon_sdk.v9_4_0.models.cluster_config_device import ClusterConfigDevice +from isilon_sdk.v9_4_0.models.cluster_config_onefs_version import ClusterConfigOnefsVersion +from isilon_sdk.v9_4_0.models.cluster_config_timezone import ClusterConfigTimezone +from isilon_sdk.v9_4_0.models.cluster_drain import ClusterDrain +from isilon_sdk.v9_4_0.models.cluster_drain_list import ClusterDrainList +from isilon_sdk.v9_4_0.models.cluster_drain_timeout import ClusterDrainTimeout +from isilon_sdk.v9_4_0.models.cluster_drain_timeout_extended import ClusterDrainTimeoutExtended +from isilon_sdk.v9_4_0.models.cluster_email import ClusterEmail +from isilon_sdk.v9_4_0.models.cluster_email_extended import ClusterEmailExtended +from isilon_sdk.v9_4_0.models.cluster_email_settings import ClusterEmailSettings +from isilon_sdk.v9_4_0.models.cluster_firmware_assess_item import ClusterFirmwareAssessItem +from isilon_sdk.v9_4_0.models.cluster_firmware_device import ClusterFirmwareDevice +from isilon_sdk.v9_4_0.models.cluster_firmware_device_node import ClusterFirmwareDeviceNode +from isilon_sdk.v9_4_0.models.cluster_firmware_progress import ClusterFirmwareProgress +from isilon_sdk.v9_4_0.models.cluster_firmware_status import ClusterFirmwareStatus +from isilon_sdk.v9_4_0.models.cluster_firmware_status_node import ClusterFirmwareStatusNode +from isilon_sdk.v9_4_0.models.cluster_firmware_upgrade_item import ClusterFirmwareUpgradeItem +from isilon_sdk.v9_4_0.models.cluster_identity import ClusterIdentity +from isilon_sdk.v9_4_0.models.cluster_identity_extended import ClusterIdentityExtended +from isilon_sdk.v9_4_0.models.cluster_identity_logon import ClusterIdentityLogon +from isilon_sdk.v9_4_0.models.cluster_identity_logon_extended import ClusterIdentityLogonExtended +from isilon_sdk.v9_4_0.models.cluster_internal_networks import ClusterInternalNetworks +from isilon_sdk.v9_4_0.models.cluster_internal_networks_extended import ClusterInternalNetworksExtended +from isilon_sdk.v9_4_0.models.cluster_mode_settings import ClusterModeSettings +from isilon_sdk.v9_4_0.models.cluster_mode_settings_extended import ClusterModeSettingsExtended +from isilon_sdk.v9_4_0.models.cluster_node import ClusterNode +from isilon_sdk.v9_4_0.models.cluster_node_drive_d_config import ClusterNodeDriveDConfig +from isilon_sdk.v9_4_0.models.cluster_node_extended import ClusterNodeExtended +from isilon_sdk.v9_4_0.models.cluster_node_hardware import ClusterNodeHardware +from isilon_sdk.v9_4_0.models.cluster_node_partition import ClusterNodePartition +from isilon_sdk.v9_4_0.models.cluster_node_partition_statfs import ClusterNodePartitionStatfs +from isilon_sdk.v9_4_0.models.cluster_node_partitions import ClusterNodePartitions +from isilon_sdk.v9_4_0.models.cluster_node_sensor import ClusterNodeSensor +from isilon_sdk.v9_4_0.models.cluster_node_sensor_value import ClusterNodeSensorValue +from isilon_sdk.v9_4_0.models.cluster_node_sensors import ClusterNodeSensors +from isilon_sdk.v9_4_0.models.cluster_node_sled import ClusterNodeSled +from isilon_sdk.v9_4_0.models.cluster_node_state import ClusterNodeState +from isilon_sdk.v9_4_0.models.cluster_node_state_extended import ClusterNodeStateExtended +from isilon_sdk.v9_4_0.models.cluster_node_status import ClusterNodeStatus +from isilon_sdk.v9_4_0.models.cluster_nodes import ClusterNodes +from isilon_sdk.v9_4_0.models.cluster_nodes_available import ClusterNodesAvailable +from isilon_sdk.v9_4_0.models.cluster_nodes_available_node import ClusterNodesAvailableNode +from isilon_sdk.v9_4_0.models.cluster_nodes_error import ClusterNodesError +from isilon_sdk.v9_4_0.models.cluster_nodes_extended import ClusterNodesExtended +from isilon_sdk.v9_4_0.models.cluster_nodes_extended_extended import ClusterNodesExtendedExtended +from isilon_sdk.v9_4_0.models.cluster_nodes_extended_extended_extended import ClusterNodesExtendedExtendedExtended +from isilon_sdk.v9_4_0.models.cluster_nodes_onefs_version import ClusterNodesOnefsVersion +from isilon_sdk.v9_4_0.models.cluster_owner import ClusterOwner +from isilon_sdk.v9_4_0.models.cluster_patch_patch import ClusterPatchPatch +from isilon_sdk.v9_4_0.models.cluster_patch_patches import ClusterPatchPatches +from isilon_sdk.v9_4_0.models.cluster_patch_patches_patch import ClusterPatchPatchesPatch +from isilon_sdk.v9_4_0.models.cluster_patch_patches_patch_file import ClusterPatchPatchesPatchFile +from isilon_sdk.v9_4_0.models.cluster_patch_patches_patch_service import ClusterPatchPatchesPatchService +from isilon_sdk.v9_4_0.models.cluster_retry_last_action_item import ClusterRetryLastActionItem +from isilon_sdk.v9_4_0.models.cluster_services import ClusterServices +from isilon_sdk.v9_4_0.models.cluster_services_node import ClusterServicesNode +from isilon_sdk.v9_4_0.models.cluster_services_node_service import ClusterServicesNodeService +from isilon_sdk.v9_4_0.models.cluster_statfs import ClusterStatfs +from isilon_sdk.v9_4_0.models.cluster_time import ClusterTime +from isilon_sdk.v9_4_0.models.cluster_time_extended import ClusterTimeExtended +from isilon_sdk.v9_4_0.models.cluster_time_extended_extended import ClusterTimeExtendedExtended +from isilon_sdk.v9_4_0.models.cluster_time_node import ClusterTimeNode +from isilon_sdk.v9_4_0.models.cluster_timezone import ClusterTimezone +from isilon_sdk.v9_4_0.models.cluster_timezone_extended import ClusterTimezoneExtended +from isilon_sdk.v9_4_0.models.cluster_timezone_settings import ClusterTimezoneSettings +from isilon_sdk.v9_4_0.models.cluster_timezone_settings_extended import ClusterTimezoneSettingsExtended +from isilon_sdk.v9_4_0.models.cluster_unblock import ClusterUnblock +from isilon_sdk.v9_4_0.models.cluster_update_lnns import ClusterUpdateLnns +from isilon_sdk.v9_4_0.models.cluster_update_lnns_lnn import ClusterUpdateLnnsLnn +from isilon_sdk.v9_4_0.models.cluster_upgrade import ClusterUpgrade +from isilon_sdk.v9_4_0.models.cluster_upgrade_item import ClusterUpgradeItem +from isilon_sdk.v9_4_0.models.cluster_version import ClusterVersion +from isilon_sdk.v9_4_0.models.cluster_version_node import ClusterVersionNode +from isilon_sdk.v9_4_0.models.config_export import ConfigExport +from isilon_sdk.v9_4_0.models.config_export_create_params import ConfigExportCreateParams +from isilon_sdk.v9_4_0.models.config_exports import ConfigExports +from isilon_sdk.v9_4_0.models.config_feature import ConfigFeature +from isilon_sdk.v9_4_0.models.config_features import ConfigFeatures +from isilon_sdk.v9_4_0.models.config_features_extended import ConfigFeaturesExtended +from isilon_sdk.v9_4_0.models.config_import import ConfigImport +from isilon_sdk.v9_4_0.models.config_import_create_params import ConfigImportCreateParams +from isilon_sdk.v9_4_0.models.config_imports import ConfigImports +from isilon_sdk.v9_4_0.models.config_network import ConfigNetwork +from isilon_sdk.v9_4_0.models.config_network_network import ConfigNetworkNetwork +from isilon_sdk.v9_4_0.models.config_network_network_range import ConfigNetworkNetworkRange +from isilon_sdk.v9_4_0.models.config_node import ConfigNode +from isilon_sdk.v9_4_0.models.config_nodes import ConfigNodes +from isilon_sdk.v9_4_0.models.config_nodes_extended import ConfigNodesExtended +from isilon_sdk.v9_4_0.models.config_settings import ConfigSettings +from isilon_sdk.v9_4_0.models.config_settings_settings import ConfigSettingsSettings +from isilon_sdk.v9_4_0.models.config_user import ConfigUser +from isilon_sdk.v9_4_0.models.config_user_user import ConfigUserUser +from isilon_sdk.v9_4_0.models.copy_errors import CopyErrors +from isilon_sdk.v9_4_0.models.copy_errors_copy_errors import CopyErrorsCopyErrors +from isilon_sdk.v9_4_0.models.create_ads_provider_search_item_response import CreateAdsProviderSearchItemResponse +from isilon_sdk.v9_4_0.models.create_ads_provider_search_item_response_object import CreateAdsProviderSearchItemResponseObject +from isilon_sdk.v9_4_0.models.create_antivirus_scan_item_response import CreateAntivirusScanItemResponse +from isilon_sdk.v9_4_0.models.create_cloud_account_response import CreateCloudAccountResponse +from isilon_sdk.v9_4_0.models.create_cloud_job_response import CreateCloudJobResponse +from isilon_sdk.v9_4_0.models.create_cloud_pool_response import CreateCloudPoolResponse +from isilon_sdk.v9_4_0.models.create_cloud_proxy_response import CreateCloudProxyResponse +from isilon_sdk.v9_4_0.models.create_config_export_response import CreateConfigExportResponse +from isilon_sdk.v9_4_0.models.create_config_import_response import CreateConfigImportResponse +from isilon_sdk.v9_4_0.models.create_datamover_account_response import CreateDatamoverAccountResponse +from isilon_sdk.v9_4_0.models.create_datamover_base_policy_response import CreateDatamoverBasePolicyResponse +from isilon_sdk.v9_4_0.models.create_dataset_filter_response import CreateDatasetFilterResponse +from isilon_sdk.v9_4_0.models.create_dataset_workload_response import CreateDatasetWorkloadResponse +from isilon_sdk.v9_4_0.models.create_filepool_policy_response import CreateFilepoolPolicyResponse +from isilon_sdk.v9_4_0.models.create_hardening_apply_item_response import CreateHardeningApplyItemResponse +from isilon_sdk.v9_4_0.models.create_hardening_resolve_item_response import CreateHardeningResolveItemResponse +from isilon_sdk.v9_4_0.models.create_hardening_revert_item_response import CreateHardeningRevertItemResponse +from isilon_sdk.v9_4_0.models.create_hardware_tape_name_response import CreateHardwareTapeNameResponse +from isilon_sdk.v9_4_0.models.create_hardware_tape_name_response_node import CreateHardwareTapeNameResponseNode +from isilon_sdk.v9_4_0.models.create_hardware_tape_name_response_node_rescan_report_item import CreateHardwareTapeNameResponseNodeRescanReportItem +from isilon_sdk.v9_4_0.models.create_job_job_response import CreateJobJobResponse +from isilon_sdk.v9_4_0.models.create_kmip_server_verify_item_response import CreateKmipServerVerifyItemResponse +from isilon_sdk.v9_4_0.models.create_kmip_server_verify_item_response_node import CreateKmipServerVerifyItemResponseNode +from isilon_sdk.v9_4_0.models.create_nfs_alias_response import CreateNfsAliasResponse +from isilon_sdk.v9_4_0.models.create_nfs_nlm_sessions_check_item_response import CreateNfsNlmSessionsCheckItemResponse +from isilon_sdk.v9_4_0.models.create_performance_dataset_response import CreatePerformanceDatasetResponse +from isilon_sdk.v9_4_0.models.create_quota_report_response import CreateQuotaReportResponse +from isilon_sdk.v9_4_0.models.create_response import CreateResponse +from isilon_sdk.v9_4_0.models.create_s3_key_response import CreateS3KeyResponse +from isilon_sdk.v9_4_0.models.create_s3_key_response_keys import CreateS3KeyResponseKeys +from isilon_sdk.v9_4_0.models.create_sed_migrate_item_response import CreateSedMigrateItemResponse +from isilon_sdk.v9_4_0.models.create_sed_migrate_item_response_settings import CreateSedMigrateItemResponseSettings +from isilon_sdk.v9_4_0.models.create_smb_log_level_filter_response import CreateSmbLogLevelFilterResponse +from isilon_sdk.v9_4_0.models.create_smb_share_response import CreateSmbShareResponse +from isilon_sdk.v9_4_0.models.create_snapshot_alias_response import CreateSnapshotAliasResponse +from isilon_sdk.v9_4_0.models.create_snapshot_lock_response import CreateSnapshotLockResponse +from isilon_sdk.v9_4_0.models.create_snapshot_schedule_response import CreateSnapshotScheduleResponse +from isilon_sdk.v9_4_0.models.create_storagepool_tier_response import CreateStoragepoolTierResponse +from isilon_sdk.v9_4_0.models.create_sync_reports_rotate_item_response import CreateSyncReportsRotateItemResponse +from isilon_sdk.v9_4_0.models.create_throttling_bw_rule_response import CreateThrottlingBwRuleResponse +from isilon_sdk.v9_4_0.models.datamover_account import DatamoverAccount +from isilon_sdk.v9_4_0.models.datamover_account_create_params import DatamoverAccountCreateParams +from isilon_sdk.v9_4_0.models.datamover_account_credentials import DatamoverAccountCredentials +from isilon_sdk.v9_4_0.models.datamover_account_credentials_certificate import DatamoverAccountCredentialsCertificate +from isilon_sdk.v9_4_0.models.datamover_account_credentials_certificate_extended import DatamoverAccountCredentialsCertificateExtended +from isilon_sdk.v9_4_0.models.datamover_account_credentials_cloud import DatamoverAccountCredentialsCloud +from isilon_sdk.v9_4_0.models.datamover_account_credentials_cloud_extended import DatamoverAccountCredentialsCloudExtended +from isilon_sdk.v9_4_0.models.datamover_account_credentials_cloud_proxy import DatamoverAccountCredentialsCloudProxy +from isilon_sdk.v9_4_0.models.datamover_account_credentials_cloud_proxy_extended import DatamoverAccountCredentialsCloudProxyExtended +from isilon_sdk.v9_4_0.models.datamover_account_credentials_extended import DatamoverAccountCredentialsExtended +from isilon_sdk.v9_4_0.models.datamover_account_extended import DatamoverAccountExtended +from isilon_sdk.v9_4_0.models.datamover_accounts import DatamoverAccounts +from isilon_sdk.v9_4_0.models.datamover_base_policies import DatamoverBasePolicies +from isilon_sdk.v9_4_0.models.datamover_base_policies_policy import DatamoverBasePoliciesPolicy +from isilon_sdk.v9_4_0.models.datamover_base_policies_policy_schedule import DatamoverBasePoliciesPolicySchedule +from isilon_sdk.v9_4_0.models.datamover_base_policy import DatamoverBasePolicy +from isilon_sdk.v9_4_0.models.datamover_base_policy_schedule import DatamoverBasePolicySchedule +from isilon_sdk.v9_4_0.models.datamover_base_policy_src_dataset_retention import DatamoverBasePolicySrcDatasetRetention +from isilon_sdk.v9_4_0.models.datamover_dataset import DatamoverDataset +from isilon_sdk.v9_4_0.models.datamover_dataset_dataset_global_id import DatamoverDatasetDatasetGlobalId +from isilon_sdk.v9_4_0.models.datamover_dataset_dataset_global_id_dataset_revision import DatamoverDatasetDatasetGlobalIdDatasetRevision +from isilon_sdk.v9_4_0.models.datamover_dataset_extended import DatamoverDatasetExtended +from isilon_sdk.v9_4_0.models.datamover_datasets import DatamoverDatasets +from isilon_sdk.v9_4_0.models.datamover_datasets_extended import DatamoverDatasetsExtended +from isilon_sdk.v9_4_0.models.datamover_historical_jobs import DatamoverHistoricalJobs +from isilon_sdk.v9_4_0.models.datamover_historical_jobs_job import DatamoverHistoricalJobsJob +from isilon_sdk.v9_4_0.models.datamover_historical_jobs_job_job_type_specific_attrs import DatamoverHistoricalJobsJobJobTypeSpecificAttrs +from isilon_sdk.v9_4_0.models.datamover_historical_jobs_job_job_type_specific_attrs_dataset_baseline_copy_job import DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJob +from isilon_sdk.v9_4_0.models.datamover_historical_jobs_job_job_type_specific_attrs_dataset_creation_job import DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJob +from isilon_sdk.v9_4_0.models.datamover_historical_jobs_job_job_type_specific_attrs_dataset_creation_job_statistics import DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJobStatistics +from isilon_sdk.v9_4_0.models.datamover_historical_jobs_job_job_type_specific_attrs_dataset_expiration_job import DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJob +from isilon_sdk.v9_4_0.models.datamover_historical_jobs_job_job_type_specific_attrs_dataset_incremental_copy_job import DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJob +from isilon_sdk.v9_4_0.models.datamover_job import DatamoverJob +from isilon_sdk.v9_4_0.models.datamover_job_job_type_specific_attrs import DatamoverJobJobTypeSpecificAttrs +from isilon_sdk.v9_4_0.models.datamover_job_job_type_specific_attrs_dataset_baseline_copy_job import DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob +from isilon_sdk.v9_4_0.models.datamover_job_job_type_specific_attrs_dataset_baseline_copy_job_statistics import DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics +from isilon_sdk.v9_4_0.models.datamover_job_job_type_specific_attrs_dataset_incremental_copy_job import DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob +from isilon_sdk.v9_4_0.models.datamover_job_job_type_specific_attrs_dataset_incremental_copy_job_statistics import DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics +from isilon_sdk.v9_4_0.models.datamover_jobs import DatamoverJobs +from isilon_sdk.v9_4_0.models.datamover_policies import DatamoverPolicies +from isilon_sdk.v9_4_0.models.datamover_policy import DatamoverPolicy +from isilon_sdk.v9_4_0.models.datamover_policy_create_params import DatamoverPolicyCreateParams +from isilon_sdk.v9_4_0.models.datamover_policy_extended import DatamoverPolicyExtended +from isilon_sdk.v9_4_0.models.datamover_policy_policy_specific_attr import DatamoverPolicyPolicySpecificAttr +from isilon_sdk.v9_4_0.models.datamover_policy_policy_specific_attr_copy_policy import DatamoverPolicyPolicySpecificAttrCopyPolicy +from isilon_sdk.v9_4_0.models.datamover_policy_policy_specific_attr_copy_policy_dataset_copy_policy_base import DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBase +from isilon_sdk.v9_4_0.models.datamover_policy_policy_specific_attr_copy_policy_extended import DatamoverPolicyPolicySpecificAttrCopyPolicyExtended +from isilon_sdk.v9_4_0.models.datamover_policy_policy_specific_attr_creation_policy import DatamoverPolicyPolicySpecificAttrCreationPolicy +from isilon_sdk.v9_4_0.models.datamover_policy_policy_specific_attr_expiration_policy import DatamoverPolicyPolicySpecificAttrExpirationPolicy +from isilon_sdk.v9_4_0.models.datamover_policy_policy_specific_attr_extended import DatamoverPolicyPolicySpecificAttrExtended +from isilon_sdk.v9_4_0.models.datamover_policy_policy_specific_attr_repeat_copy_policy import DatamoverPolicyPolicySpecificAttrRepeatCopyPolicy +from isilon_sdk.v9_4_0.models.dataset_filter import DatasetFilter +from isilon_sdk.v9_4_0.models.dataset_filter_metric_values import DatasetFilterMetricValues +from isilon_sdk.v9_4_0.models.dataset_filter_metric_values_create_params import DatasetFilterMetricValuesCreateParams +from isilon_sdk.v9_4_0.models.dataset_filters import DatasetFilters +from isilon_sdk.v9_4_0.models.dataset_filters_extended import DatasetFiltersExtended +from isilon_sdk.v9_4_0.models.dataset_workload import DatasetWorkload +from isilon_sdk.v9_4_0.models.dataset_workloads import DatasetWorkloads +from isilon_sdk.v9_4_0.models.dataset_workloads_extended import DatasetWorkloadsExtended +from isilon_sdk.v9_4_0.models.debug_stats import DebugStats +from isilon_sdk.v9_4_0.models.debug_stats_describe import DebugStatsDescribe +from isilon_sdk.v9_4_0.models.debug_stats_handler import DebugStatsHandler +from isilon_sdk.v9_4_0.models.dedupe_dedupe_summary import DedupeDedupeSummary +from isilon_sdk.v9_4_0.models.dedupe_dedupe_summary_summary import DedupeDedupeSummarySummary +from isilon_sdk.v9_4_0.models.dedupe_report import DedupeReport +from isilon_sdk.v9_4_0.models.dedupe_report_extended import DedupeReportExtended +from isilon_sdk.v9_4_0.models.dedupe_reports import DedupeReports +from isilon_sdk.v9_4_0.models.dedupe_settings import DedupeSettings +from isilon_sdk.v9_4_0.models.dedupe_settings_extended import DedupeSettingsExtended +from isilon_sdk.v9_4_0.models.dedupe_settings_settings import DedupeSettingsSettings +from isilon_sdk.v9_4_0.models.diagnostics_gather_settings import DiagnosticsGatherSettings +from isilon_sdk.v9_4_0.models.diagnostics_gather_settings_extended import DiagnosticsGatherSettingsExtended +from isilon_sdk.v9_4_0.models.diagnostics_gather_settings_settings import DiagnosticsGatherSettingsSettings +from isilon_sdk.v9_4_0.models.diagnostics_gather_status import DiagnosticsGatherStatus +from isilon_sdk.v9_4_0.models.diagnostics_gather_status_gather import DiagnosticsGatherStatusGather +from isilon_sdk.v9_4_0.models.diagnostics_gather_status_gather_status import DiagnosticsGatherStatusGatherStatus +from isilon_sdk.v9_4_0.models.diagnostics_netlogger_settings import DiagnosticsNetloggerSettings +from isilon_sdk.v9_4_0.models.diagnostics_netlogger_settings_settings import DiagnosticsNetloggerSettingsSettings +from isilon_sdk.v9_4_0.models.diagnostics_netlogger_status import DiagnosticsNetloggerStatus +from isilon_sdk.v9_4_0.models.directory_query import DirectoryQuery +from isilon_sdk.v9_4_0.models.directory_query_scope import DirectoryQueryScope +from isilon_sdk.v9_4_0.models.directory_query_scope_conditions import DirectoryQueryScopeConditions +from isilon_sdk.v9_4_0.models.drives_drive_firmware import DrivesDriveFirmware +from isilon_sdk.v9_4_0.models.drives_drive_firmware_node import DrivesDriveFirmwareNode +from isilon_sdk.v9_4_0.models.drives_drive_firmware_node_drive import DrivesDriveFirmwareNodeDrive +from isilon_sdk.v9_4_0.models.drives_drive_firmware_update import DrivesDriveFirmwareUpdate +from isilon_sdk.v9_4_0.models.drives_drive_firmware_update_item import DrivesDriveFirmwareUpdateItem +from isilon_sdk.v9_4_0.models.drives_drive_firmware_update_node import DrivesDriveFirmwareUpdateNode +from isilon_sdk.v9_4_0.models.drives_drive_firmware_update_node_status import DrivesDriveFirmwareUpdateNodeStatus +from isilon_sdk.v9_4_0.models.drives_drive_format_item import DrivesDriveFormatItem +from isilon_sdk.v9_4_0.models.drives_drive_purpose_item import DrivesDrivePurposeItem +from isilon_sdk.v9_4_0.models.empty import Empty +from isilon_sdk.v9_4_0.models.error import Error +from isilon_sdk.v9_4_0.models.event_alert_condition import EventAlertCondition +from isilon_sdk.v9_4_0.models.event_alert_conditions import EventAlertConditions +from isilon_sdk.v9_4_0.models.event_alert_conditions_alert_condition import EventAlertConditionsAlertCondition +from isilon_sdk.v9_4_0.models.event_categories import EventCategories +from isilon_sdk.v9_4_0.models.event_category import EventCategory +from isilon_sdk.v9_4_0.models.event_channel import EventChannel +from isilon_sdk.v9_4_0.models.event_channel_parameters import EventChannelParameters +from isilon_sdk.v9_4_0.models.event_channels import EventChannels +from isilon_sdk.v9_4_0.models.event_event import EventEvent +from isilon_sdk.v9_4_0.models.event_eventgroup_definitions import EventEventgroupDefinitions +from isilon_sdk.v9_4_0.models.event_eventgroup_definitions_eventgroup_definition import EventEventgroupDefinitionsEventgroupDefinition +from isilon_sdk.v9_4_0.models.event_eventgroup_occurrence import EventEventgroupOccurrence +from isilon_sdk.v9_4_0.models.event_eventgroup_occurrences import EventEventgroupOccurrences +from isilon_sdk.v9_4_0.models.event_eventgroup_occurrences_eventgroup import EventEventgroupOccurrencesEventgroup +from isilon_sdk.v9_4_0.models.event_eventlist import EventEventlist +from isilon_sdk.v9_4_0.models.event_eventlist_event import EventEventlistEvent +from isilon_sdk.v9_4_0.models.event_eventlists import EventEventlists +from isilon_sdk.v9_4_0.models.event_maintenance import EventMaintenance +from isilon_sdk.v9_4_0.models.event_maintenance_extended import EventMaintenanceExtended +from isilon_sdk.v9_4_0.models.event_settings import EventSettings +from isilon_sdk.v9_4_0.models.event_settings_settings import EventSettingsSettings +from isilon_sdk.v9_4_0.models.event_suppress import EventSuppress +from isilon_sdk.v9_4_0.models.event_suppress_id_params import EventSuppressIdParams +from isilon_sdk.v9_4_0.models.event_suppress_suppression import EventSuppressSuppression +from isilon_sdk.v9_4_0.models.event_threshold import EventThreshold +from isilon_sdk.v9_4_0.models.event_threshold_defaults import EventThresholdDefaults +from isilon_sdk.v9_4_0.models.event_threshold_defaults_crit import EventThresholdDefaultsCrit +from isilon_sdk.v9_4_0.models.event_thresholds import EventThresholds +from isilon_sdk.v9_4_0.models.file_filter_settings import FileFilterSettings +from isilon_sdk.v9_4_0.models.file_filter_settings_extended import FileFilterSettingsExtended +from isilon_sdk.v9_4_0.models.file_filter_settings_settings import FileFilterSettingsSettings +from isilon_sdk.v9_4_0.models.filepool_default_policy import FilepoolDefaultPolicy +from isilon_sdk.v9_4_0.models.filepool_default_policy_default_policy import FilepoolDefaultPolicyDefaultPolicy +from isilon_sdk.v9_4_0.models.filepool_default_policy_default_policy_action import FilepoolDefaultPolicyDefaultPolicyAction +from isilon_sdk.v9_4_0.models.filepool_default_policy_extended import FilepoolDefaultPolicyExtended +from isilon_sdk.v9_4_0.models.filepool_policies import FilepoolPolicies +from isilon_sdk.v9_4_0.models.filepool_policies_extended import FilepoolPoliciesExtended +from isilon_sdk.v9_4_0.models.filepool_policy import FilepoolPolicy +from isilon_sdk.v9_4_0.models.filepool_policy_action import FilepoolPolicyAction +from isilon_sdk.v9_4_0.models.filepool_policy_action_extended import FilepoolPolicyActionExtended +from isilon_sdk.v9_4_0.models.filepool_policy_action_extended_extended import FilepoolPolicyActionExtendedExtended +from isilon_sdk.v9_4_0.models.filepool_policy_extended import FilepoolPolicyExtended +from isilon_sdk.v9_4_0.models.filepool_policy_extended_extended import FilepoolPolicyExtendedExtended +from isilon_sdk.v9_4_0.models.filepool_policy_file_matching_pattern import FilepoolPolicyFileMatchingPattern +from isilon_sdk.v9_4_0.models.filepool_policy_file_matching_pattern_or_criteria_item import FilepoolPolicyFileMatchingPatternOrCriteriaItem +from isilon_sdk.v9_4_0.models.filepool_policy_file_matching_pattern_or_criteria_item_and_criteria_item import FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem +from isilon_sdk.v9_4_0.models.filepool_template import FilepoolTemplate +from isilon_sdk.v9_4_0.models.filepool_template_action import FilepoolTemplateAction +from isilon_sdk.v9_4_0.models.filepool_template_action_extended import FilepoolTemplateActionExtended +from isilon_sdk.v9_4_0.models.filepool_template_extended import FilepoolTemplateExtended +from isilon_sdk.v9_4_0.models.filepool_templates import FilepoolTemplates +from isilon_sdk.v9_4_0.models.filepool_templates_extended import FilepoolTemplatesExtended +from isilon_sdk.v9_4_0.models.fsa_index import FsaIndex +from isilon_sdk.v9_4_0.models.fsa_result import FsaResult +from isilon_sdk.v9_4_0.models.fsa_results import FsaResults +from isilon_sdk.v9_4_0.models.fsa_settings import FsaSettings +from isilon_sdk.v9_4_0.models.fsa_settings_settings import FsaSettingsSettings +from isilon_sdk.v9_4_0.models.ftp_settings import FtpSettings +from isilon_sdk.v9_4_0.models.ftp_settings_extended import FtpSettingsExtended +from isilon_sdk.v9_4_0.models.ftp_settings_settings import FtpSettingsSettings +from isilon_sdk.v9_4_0.models.group_members import GroupMembers +from isilon_sdk.v9_4_0.models.groupnet_subnet import GroupnetSubnet +from isilon_sdk.v9_4_0.models.groupnet_subnets import GroupnetSubnets +from isilon_sdk.v9_4_0.models.groupnets_summary import GroupnetsSummary +from isilon_sdk.v9_4_0.models.groupnets_summary_summary import GroupnetsSummarySummary +from isilon_sdk.v9_4_0.models.groupnets_summary_summary_list_item import GroupnetsSummarySummaryListItem +from isilon_sdk.v9_4_0.models.hardening_apply_item import HardeningApplyItem +from isilon_sdk.v9_4_0.models.hardening_resolve_item import HardeningResolveItem +from isilon_sdk.v9_4_0.models.hardening_state import HardeningState +from isilon_sdk.v9_4_0.models.hardening_state_state import HardeningStateState +from isilon_sdk.v9_4_0.models.hardening_status import HardeningStatus +from isilon_sdk.v9_4_0.models.hardening_status_status import HardeningStatusStatus +from isilon_sdk.v9_4_0.models.hardware_fcport import HardwareFcport +from isilon_sdk.v9_4_0.models.hardware_fcports import HardwareFcports +from isilon_sdk.v9_4_0.models.hardware_fcports_node import HardwareFcportsNode +from isilon_sdk.v9_4_0.models.hardware_fcports_node_fcport import HardwareFcportsNodeFcport +from isilon_sdk.v9_4_0.models.hardware_tape_name_params import HardwareTapeNameParams +from isilon_sdk.v9_4_0.models.hardware_tapes import HardwareTapes +from isilon_sdk.v9_4_0.models.hardware_tapes_devices import HardwareTapesDevices +from isilon_sdk.v9_4_0.models.hardware_tapes_devices_media_changer import HardwareTapesDevicesMediaChanger +from isilon_sdk.v9_4_0.models.hardware_tapes_devices_media_changer_path import HardwareTapesDevicesMediaChangerPath +from isilon_sdk.v9_4_0.models.hdfs_crypto_encryption_zone import HdfsCryptoEncryptionZone +from isilon_sdk.v9_4_0.models.hdfs_crypto_encryption_zones import HdfsCryptoEncryptionZones +from isilon_sdk.v9_4_0.models.hdfs_crypto_encryption_zones_encryption_zone import HdfsCryptoEncryptionZonesEncryptionZone +from isilon_sdk.v9_4_0.models.hdfs_crypto_settings import HdfsCryptoSettings +from isilon_sdk.v9_4_0.models.hdfs_crypto_settings_settings import HdfsCryptoSettingsSettings +from isilon_sdk.v9_4_0.models.hdfs_fsimage_job import HdfsFsimageJob +from isilon_sdk.v9_4_0.models.hdfs_fsimage_job_job import HdfsFsimageJobJob +from isilon_sdk.v9_4_0.models.hdfs_fsimage_job_settings import HdfsFsimageJobSettings +from isilon_sdk.v9_4_0.models.hdfs_fsimage_job_settings_settings import HdfsFsimageJobSettingsSettings +from isilon_sdk.v9_4_0.models.hdfs_fsimage_latest import HdfsFsimageLatest +from isilon_sdk.v9_4_0.models.hdfs_fsimage_latest_latest import HdfsFsimageLatestLatest +from isilon_sdk.v9_4_0.models.hdfs_fsimage_settings import HdfsFsimageSettings +from isilon_sdk.v9_4_0.models.hdfs_fsimage_settings_settings import HdfsFsimageSettingsSettings +from isilon_sdk.v9_4_0.models.hdfs_inotify_settings import HdfsInotifySettings +from isilon_sdk.v9_4_0.models.hdfs_inotify_settings_settings import HdfsInotifySettingsSettings +from isilon_sdk.v9_4_0.models.hdfs_inotify_stream import HdfsInotifyStream +from isilon_sdk.v9_4_0.models.hdfs_inotify_stream_stream import HdfsInotifyStreamStream +from isilon_sdk.v9_4_0.models.hdfs_log_level import HdfsLogLevel +from isilon_sdk.v9_4_0.models.hdfs_proxyuser import HdfsProxyuser +from isilon_sdk.v9_4_0.models.hdfs_proxyuser_create_params import HdfsProxyuserCreateParams +from isilon_sdk.v9_4_0.models.hdfs_proxyusers import HdfsProxyusers +from isilon_sdk.v9_4_0.models.hdfs_proxyusers_extended import HdfsProxyusersExtended +from isilon_sdk.v9_4_0.models.hdfs_rack import HdfsRack +from isilon_sdk.v9_4_0.models.hdfs_racks import HdfsRacks +from isilon_sdk.v9_4_0.models.hdfs_racks_extended import HdfsRacksExtended +from isilon_sdk.v9_4_0.models.hdfs_ranger_plugin_settings import HdfsRangerPluginSettings +from isilon_sdk.v9_4_0.models.hdfs_ranger_plugin_settings_settings import HdfsRangerPluginSettingsSettings +from isilon_sdk.v9_4_0.models.hdfs_settings import HdfsSettings +from isilon_sdk.v9_4_0.models.hdfs_settings_global import HdfsSettingsGlobal +from isilon_sdk.v9_4_0.models.hdfs_settings_global_global_settings import HdfsSettingsGlobalGlobalSettings +from isilon_sdk.v9_4_0.models.hdfs_settings_settings import HdfsSettingsSettings +from isilon_sdk.v9_4_0.models.healthcheck_autoupdate import HealthcheckAutoupdate +from isilon_sdk.v9_4_0.models.healthcheck_autoupdate_autoupdate import HealthcheckAutoupdateAutoupdate +from isilon_sdk.v9_4_0.models.healthcheck_checklist import HealthcheckChecklist +from isilon_sdk.v9_4_0.models.healthcheck_checklist_delivery_item import HealthcheckChecklistDeliveryItem +from isilon_sdk.v9_4_0.models.healthcheck_checklist_item import HealthcheckChecklistItem +from isilon_sdk.v9_4_0.models.healthcheck_checklist_item_thresholds import HealthcheckChecklistItemThresholds +from isilon_sdk.v9_4_0.models.healthcheck_checklists import HealthcheckChecklists +from isilon_sdk.v9_4_0.models.healthcheck_evaluation import HealthcheckEvaluation +from isilon_sdk.v9_4_0.models.healthcheck_evaluation_create_params import HealthcheckEvaluationCreateParams +from isilon_sdk.v9_4_0.models.healthcheck_evaluation_detail import HealthcheckEvaluationDetail +from isilon_sdk.v9_4_0.models.healthcheck_evaluation_extended import HealthcheckEvaluationExtended +from isilon_sdk.v9_4_0.models.healthcheck_evaluation_override import HealthcheckEvaluationOverride +from isilon_sdk.v9_4_0.models.healthcheck_evaluations import HealthcheckEvaluations +from isilon_sdk.v9_4_0.models.healthcheck_item import HealthcheckItem +from isilon_sdk.v9_4_0.models.healthcheck_item_parameter import HealthcheckItemParameter +from isilon_sdk.v9_4_0.models.healthcheck_items import HealthcheckItems +from isilon_sdk.v9_4_0.models.healthcheck_parameter import HealthcheckParameter +from isilon_sdk.v9_4_0.models.healthcheck_parameters import HealthcheckParameters +from isilon_sdk.v9_4_0.models.healthcheck_schedule import HealthcheckSchedule +from isilon_sdk.v9_4_0.models.healthcheck_schedule_create_params import HealthcheckScheduleCreateParams +from isilon_sdk.v9_4_0.models.healthcheck_schedule_extended import HealthcheckScheduleExtended +from isilon_sdk.v9_4_0.models.healthcheck_schedules import HealthcheckSchedules +from isilon_sdk.v9_4_0.models.healthcheck_version import HealthcheckVersion +from isilon_sdk.v9_4_0.models.histogram_stat_by import HistogramStatBy +from isilon_sdk.v9_4_0.models.histogram_stat_by_breakout import HistogramStatByBreakout +from isilon_sdk.v9_4_0.models.history_file import HistoryFile +from isilon_sdk.v9_4_0.models.history_file_statistic import HistoryFileStatistic +from isilon_sdk.v9_4_0.models.http_service import HttpService +from isilon_sdk.v9_4_0.models.http_services import HttpServices +from isilon_sdk.v9_4_0.models.http_services_extended import HttpServicesExtended +from isilon_sdk.v9_4_0.models.http_settings import HttpSettings +from isilon_sdk.v9_4_0.models.http_settings_settings import HttpSettingsSettings +from isilon_sdk.v9_4_0.models.id_resolution_domains import IdResolutionDomains +from isilon_sdk.v9_4_0.models.id_resolution_domains_error import IdResolutionDomainsError +from isilon_sdk.v9_4_0.models.id_resolution_domains_path import IdResolutionDomainsPath +from isilon_sdk.v9_4_0.models.id_resolution_lins import IdResolutionLins +from isilon_sdk.v9_4_0.models.id_resolution_lins_path import IdResolutionLinsPath +from isilon_sdk.v9_4_0.models.id_resolution_zone import IdResolutionZone +from isilon_sdk.v9_4_0.models.id_resolution_zones import IdResolutionZones +from isilon_sdk.v9_4_0.models.inline_settings import InlineSettings +from isilon_sdk.v9_4_0.models.inline_settings_settings import InlineSettingsSettings +from isilon_sdk.v9_4_0.models.internal_networks_preferred_network import InternalNetworksPreferredNetwork +from isilon_sdk.v9_4_0.models.internal_networks_settings import InternalNetworksSettings +from isilon_sdk.v9_4_0.models.internal_networks_settings_extended import InternalNetworksSettingsExtended +from isilon_sdk.v9_4_0.models.internal_networks_settings_internal_networks_settings import InternalNetworksSettingsInternalNetworksSettings +from isilon_sdk.v9_4_0.models.internal_networks_settings_internal_networks_settings_network_item import InternalNetworksSettingsInternalNetworksSettingsNetworkItem +from isilon_sdk.v9_4_0.models.internal_networks_settings_internal_networks_settings_network_item_backend_config import InternalNetworksSettingsInternalNetworksSettingsNetworkItemBackendConfig +from isilon_sdk.v9_4_0.models.internal_networks_settings_network import InternalNetworksSettingsNetwork +from isilon_sdk.v9_4_0.models.internal_networks_settings_network_backend_config import InternalNetworksSettingsNetworkBackendConfig +from isilon_sdk.v9_4_0.models.job_event import JobEvent +from isilon_sdk.v9_4_0.models.job_events import JobEvents +from isilon_sdk.v9_4_0.models.job_job import JobJob +from isilon_sdk.v9_4_0.models.job_job_avscan_params import JobJobAvscanParams +from isilon_sdk.v9_4_0.models.job_job_changelistcreate_params import JobJobChangelistcreateParams +from isilon_sdk.v9_4_0.models.job_job_create_params import JobJobCreateParams +from isilon_sdk.v9_4_0.models.job_job_domainmark_params import JobJobDomainmarkParams +from isilon_sdk.v9_4_0.models.job_job_esrsmftdownload_params import JobJobEsrsmftdownloadParams +from isilon_sdk.v9_4_0.models.job_job_extended import JobJobExtended +from isilon_sdk.v9_4_0.models.job_job_filepolicy_params import JobJobFilepolicyParams +from isilon_sdk.v9_4_0.models.job_job_prepair_params import JobJobPrepairParams +from isilon_sdk.v9_4_0.models.job_job_smartpoolstree_params import JobJobSmartpoolstreeParams +from isilon_sdk.v9_4_0.models.job_job_snaprevert_params import JobJobSnaprevertParams +from isilon_sdk.v9_4_0.models.job_job_summary import JobJobSummary +from isilon_sdk.v9_4_0.models.job_job_summary_summary import JobJobSummarySummary +from isilon_sdk.v9_4_0.models.job_job_treedelete_params import JobJobTreedeleteParams +from isilon_sdk.v9_4_0.models.job_jobs import JobJobs +from isilon_sdk.v9_4_0.models.job_policies import JobPolicies +from isilon_sdk.v9_4_0.models.job_policy import JobPolicy +from isilon_sdk.v9_4_0.models.job_policy_interval import JobPolicyInterval +from isilon_sdk.v9_4_0.models.job_recent import JobRecent +from isilon_sdk.v9_4_0.models.job_recent_recent_job import JobRecentRecentJob +from isilon_sdk.v9_4_0.models.job_report import JobReport +from isilon_sdk.v9_4_0.models.job_reports import JobReports +from isilon_sdk.v9_4_0.models.job_statistics import JobStatistics +from isilon_sdk.v9_4_0.models.job_statistics_job import JobStatisticsJob +from isilon_sdk.v9_4_0.models.job_statistics_job_node import JobStatisticsJobNode +from isilon_sdk.v9_4_0.models.job_statistics_job_node_cpu import JobStatisticsJobNodeCpu +from isilon_sdk.v9_4_0.models.job_statistics_job_node_io import JobStatisticsJobNodeIo +from isilon_sdk.v9_4_0.models.job_statistics_job_node_io_read import JobStatisticsJobNodeIoRead +from isilon_sdk.v9_4_0.models.job_statistics_job_node_io_write import JobStatisticsJobNodeIoWrite +from isilon_sdk.v9_4_0.models.job_statistics_job_node_memory import JobStatisticsJobNodeMemory +from isilon_sdk.v9_4_0.models.job_statistics_job_node_memory_physical import JobStatisticsJobNodeMemoryPhysical +from isilon_sdk.v9_4_0.models.job_statistics_job_node_memory_virtual import JobStatisticsJobNodeMemoryVirtual +from isilon_sdk.v9_4_0.models.job_statistics_job_node_worker import JobStatisticsJobNodeWorker +from isilon_sdk.v9_4_0.models.job_type import JobType +from isilon_sdk.v9_4_0.models.job_types import JobTypes +from isilon_sdk.v9_4_0.models.kmip_server import KmipServer +from isilon_sdk.v9_4_0.models.kmip_server_ca_cert import KmipServerCaCert +from isilon_sdk.v9_4_0.models.kmip_server_client_cert import KmipServerClientCert +from isilon_sdk.v9_4_0.models.kmip_server_extended import KmipServerExtended +from isilon_sdk.v9_4_0.models.kmip_server_verify_item import KmipServerVerifyItem +from isilon_sdk.v9_4_0.models.kmip_servers import KmipServers +from isilon_sdk.v9_4_0.models.kmip_servers_extended import KmipServersExtended +from isilon_sdk.v9_4_0.models.lfn import Lfn +from isilon_sdk.v9_4_0.models.lfn_domain import LfnDomain +from isilon_sdk.v9_4_0.models.lfn_path_params import LfnPathParams +from isilon_sdk.v9_4_0.models.license_activation import LicenseActivation +from isilon_sdk.v9_4_0.models.license_activation_elms_error import LicenseActivationElmsError +from isilon_sdk.v9_4_0.models.license_activation_item import LicenseActivationItem +from isilon_sdk.v9_4_0.models.license_generate import LicenseGenerate +from isilon_sdk.v9_4_0.models.license_generate_hardware_item import LicenseGenerateHardwareItem +from isilon_sdk.v9_4_0.models.license_license import LicenseLicense +from isilon_sdk.v9_4_0.models.license_license_create_params import LicenseLicenseCreateParams +from isilon_sdk.v9_4_0.models.license_license_tier import LicenseLicenseTier +from isilon_sdk.v9_4_0.models.license_license_tier_entitlements_exceeded_alert import LicenseLicenseTierEntitlementsExceededAlert +from isilon_sdk.v9_4_0.models.license_licenses import LicenseLicenses +from isilon_sdk.v9_4_0.models.mapping_dump import MappingDump +from isilon_sdk.v9_4_0.models.mapping_identities import MappingIdentities +from isilon_sdk.v9_4_0.models.mapping_identities_create_params import MappingIdentitiesCreateParams +from isilon_sdk.v9_4_0.models.mapping_identities_target import MappingIdentitiesTarget +from isilon_sdk.v9_4_0.models.mapping_identity import MappingIdentity +from isilon_sdk.v9_4_0.models.mapping_identity_target import MappingIdentityTarget +from isilon_sdk.v9_4_0.models.mapping_users_lookup import MappingUsersLookup +from isilon_sdk.v9_4_0.models.mapping_users_lookup_mapping_item import MappingUsersLookupMappingItem +from isilon_sdk.v9_4_0.models.mapping_users_lookup_mapping_item_group import MappingUsersLookupMappingItemGroup +from isilon_sdk.v9_4_0.models.mapping_users_lookup_mapping_item_privilege import MappingUsersLookupMappingItemPrivilege +from isilon_sdk.v9_4_0.models.mapping_users_lookup_mapping_item_user import MappingUsersLookupMappingItemUser +from isilon_sdk.v9_4_0.models.mapping_users_rules import MappingUsersRules +from isilon_sdk.v9_4_0.models.mapping_users_rules_extended import MappingUsersRulesExtended +from isilon_sdk.v9_4_0.models.mapping_users_rules_parameters import MappingUsersRulesParameters +from isilon_sdk.v9_4_0.models.mapping_users_rules_rule import MappingUsersRulesRule +from isilon_sdk.v9_4_0.models.mapping_users_rules_rule_extended import MappingUsersRulesRuleExtended +from isilon_sdk.v9_4_0.models.mapping_users_rules_rule_options import MappingUsersRulesRuleOptions +from isilon_sdk.v9_4_0.models.mapping_users_rules_rule_options_extended import MappingUsersRulesRuleOptionsExtended +from isilon_sdk.v9_4_0.models.mapping_users_rules_rules import MappingUsersRulesRules +from isilon_sdk.v9_4_0.models.mapping_users_rules_rules_parameters import MappingUsersRulesRulesParameters +from isilon_sdk.v9_4_0.models.mapping_users_rules_rules_parameters_default_unix_user import MappingUsersRulesRulesParametersDefaultUnixUser +from isilon_sdk.v9_4_0.models.member_object import MemberObject +from isilon_sdk.v9_4_0.models.name_lin import NameLin +from isilon_sdk.v9_4_0.models.name_lins import NameLins +from isilon_sdk.v9_4_0.models.name_lins_extended import NameLinsExtended +from isilon_sdk.v9_4_0.models.namespace_access_points import NamespaceAccessPoints +from isilon_sdk.v9_4_0.models.namespace_access_points_namespaces import NamespaceAccessPointsNamespaces +from isilon_sdk.v9_4_0.models.namespace_acl import NamespaceAcl +from isilon_sdk.v9_4_0.models.namespace_metadata import NamespaceMetadata +from isilon_sdk.v9_4_0.models.namespace_metadata_attrs import NamespaceMetadataAttrs +from isilon_sdk.v9_4_0.models.namespace_metadata_list import NamespaceMetadataList +from isilon_sdk.v9_4_0.models.namespace_metadata_list_attrs import NamespaceMetadataListAttrs +from isilon_sdk.v9_4_0.models.namespace_object import NamespaceObject +from isilon_sdk.v9_4_0.models.namespace_objects import NamespaceObjects +from isilon_sdk.v9_4_0.models.ndmp_contexts_backup import NdmpContextsBackup +from isilon_sdk.v9_4_0.models.ndmp_contexts_backup_context import NdmpContextsBackupContext +from isilon_sdk.v9_4_0.models.ndmp_contexts_backup_context_extended import NdmpContextsBackupContextExtended +from isilon_sdk.v9_4_0.models.ndmp_contexts_backup_context_session import NdmpContextsBackupContextSession +from isilon_sdk.v9_4_0.models.ndmp_contexts_backup_extended import NdmpContextsBackupExtended +from isilon_sdk.v9_4_0.models.ndmp_contexts_bre import NdmpContextsBre +from isilon_sdk.v9_4_0.models.ndmp_contexts_bre_context import NdmpContextsBreContext +from isilon_sdk.v9_4_0.models.ndmp_contexts_bre_context_env_variable import NdmpContextsBreContextEnvVariable +from isilon_sdk.v9_4_0.models.ndmp_contexts_bre_context_extended import NdmpContextsBreContextExtended +from isilon_sdk.v9_4_0.models.ndmp_contexts_bre_extended import NdmpContextsBreExtended +from isilon_sdk.v9_4_0.models.ndmp_diagnostics import NdmpDiagnostics +from isilon_sdk.v9_4_0.models.ndmp_diagnostics_diagnostics import NdmpDiagnosticsDiagnostics +from isilon_sdk.v9_4_0.models.ndmp_dumpdate import NdmpDumpdate +from isilon_sdk.v9_4_0.models.ndmp_dumpdates import NdmpDumpdates +from isilon_sdk.v9_4_0.models.ndmp_logs import NdmpLogs +from isilon_sdk.v9_4_0.models.ndmp_logs_node import NdmpLogsNode +from isilon_sdk.v9_4_0.models.ndmp_session import NdmpSession +from isilon_sdk.v9_4_0.models.ndmp_sessions import NdmpSessions +from isilon_sdk.v9_4_0.models.ndmp_sessions_extended import NdmpSessionsExtended +from isilon_sdk.v9_4_0.models.ndmp_sessions_node import NdmpSessionsNode +from isilon_sdk.v9_4_0.models.ndmp_sessions_node_session import NdmpSessionsNodeSession +from isilon_sdk.v9_4_0.models.ndmp_settings_dmas import NdmpSettingsDmas +from isilon_sdk.v9_4_0.models.ndmp_settings_dmas_dmavendor import NdmpSettingsDmasDmavendor +from isilon_sdk.v9_4_0.models.ndmp_settings_global import NdmpSettingsGlobal +from isilon_sdk.v9_4_0.models.ndmp_settings_global_global import NdmpSettingsGlobalGlobal +from isilon_sdk.v9_4_0.models.ndmp_settings_preferred_ip import NdmpSettingsPreferredIp +from isilon_sdk.v9_4_0.models.ndmp_settings_preferred_ip_data_subnet import NdmpSettingsPreferredIpDataSubnet +from isilon_sdk.v9_4_0.models.ndmp_settings_preferred_ips import NdmpSettingsPreferredIps +from isilon_sdk.v9_4_0.models.ndmp_settings_preferred_ips_preference import NdmpSettingsPreferredIpsPreference +from isilon_sdk.v9_4_0.models.ndmp_settings_variable import NdmpSettingsVariable +from isilon_sdk.v9_4_0.models.ndmp_settings_variables import NdmpSettingsVariables +from isilon_sdk.v9_4_0.models.ndmp_settings_variables_variable import NdmpSettingsVariablesVariable +from isilon_sdk.v9_4_0.models.ndmp_settings_variables_variable_path_variable import NdmpSettingsVariablesVariablePathVariable +from isilon_sdk.v9_4_0.models.ndmp_user import NdmpUser +from isilon_sdk.v9_4_0.models.ndmp_user_extended import NdmpUserExtended +from isilon_sdk.v9_4_0.models.ndmp_users import NdmpUsers +from isilon_sdk.v9_4_0.models.network_dnscache import NetworkDnscache +from isilon_sdk.v9_4_0.models.network_dnscache_extended import NetworkDnscacheExtended +from isilon_sdk.v9_4_0.models.network_dnscache_settings import NetworkDnscacheSettings +from isilon_sdk.v9_4_0.models.network_external import NetworkExternal +from isilon_sdk.v9_4_0.models.network_external_extended import NetworkExternalExtended +from isilon_sdk.v9_4_0.models.network_external_settings import NetworkExternalSettings +from isilon_sdk.v9_4_0.models.network_groupnet import NetworkGroupnet +from isilon_sdk.v9_4_0.models.network_groupnets import NetworkGroupnets +from isilon_sdk.v9_4_0.models.network_interface import NetworkInterface +from isilon_sdk.v9_4_0.models.network_interface_owner import NetworkInterfaceOwner +from isilon_sdk.v9_4_0.models.network_interface_vlan import NetworkInterfaceVlan +from isilon_sdk.v9_4_0.models.network_interfaces import NetworkInterfaces +from isilon_sdk.v9_4_0.models.network_pool import NetworkPool +from isilon_sdk.v9_4_0.models.network_pools import NetworkPools +from isilon_sdk.v9_4_0.models.nfs_alias import NfsAlias +from isilon_sdk.v9_4_0.models.nfs_alias_create_params import NfsAliasCreateParams +from isilon_sdk.v9_4_0.models.nfs_aliases import NfsAliases +from isilon_sdk.v9_4_0.models.nfs_aliases_extended import NfsAliasesExtended +from isilon_sdk.v9_4_0.models.nfs_check import NfsCheck +from isilon_sdk.v9_4_0.models.nfs_check_extended import NfsCheckExtended +from isilon_sdk.v9_4_0.models.nfs_export import NfsExport +from isilon_sdk.v9_4_0.models.nfs_export_create_params import NfsExportCreateParams +from isilon_sdk.v9_4_0.models.nfs_export_extended_extended import NfsExportExtendedExtended +from isilon_sdk.v9_4_0.models.nfs_export_map_all import NfsExportMapAll +from isilon_sdk.v9_4_0.models.nfs_export_map_all_secondary_groups import NfsExportMapAllSecondaryGroups +from isilon_sdk.v9_4_0.models.nfs_exports import NfsExports +from isilon_sdk.v9_4_0.models.nfs_exports_extended import NfsExportsExtended +from isilon_sdk.v9_4_0.models.nfs_exports_summary import NfsExportsSummary +from isilon_sdk.v9_4_0.models.nfs_exports_summary_summary import NfsExportsSummarySummary +from isilon_sdk.v9_4_0.models.nfs_log_level import NfsLogLevel +from isilon_sdk.v9_4_0.models.nfs_netgroup import NfsNetgroup +from isilon_sdk.v9_4_0.models.nfs_netgroup_settings import NfsNetgroupSettings +from isilon_sdk.v9_4_0.models.nfs_nlm_locks import NfsNlmLocks +from isilon_sdk.v9_4_0.models.nfs_nlm_locks_lock import NfsNlmLocksLock +from isilon_sdk.v9_4_0.models.nfs_nlm_sessions import NfsNlmSessions +from isilon_sdk.v9_4_0.models.nfs_nlm_sessions_extended import NfsNlmSessionsExtended +from isilon_sdk.v9_4_0.models.nfs_nlm_sessions_session import NfsNlmSessionsSession +from isilon_sdk.v9_4_0.models.nfs_nlm_waiters import NfsNlmWaiters +from isilon_sdk.v9_4_0.models.nfs_settings_export import NfsSettingsExport +from isilon_sdk.v9_4_0.models.nfs_settings_export_settings import NfsSettingsExportSettings +from isilon_sdk.v9_4_0.models.nfs_settings_export_settings_map_all import NfsSettingsExportSettingsMapAll +from isilon_sdk.v9_4_0.models.nfs_settings_global import NfsSettingsGlobal +from isilon_sdk.v9_4_0.models.nfs_settings_global_settings import NfsSettingsGlobalSettings +from isilon_sdk.v9_4_0.models.nfs_settings_zone import NfsSettingsZone +from isilon_sdk.v9_4_0.models.nfs_settings_zone_settings import NfsSettingsZoneSettings +from isilon_sdk.v9_4_0.models.node_driveconfig import NodeDriveconfig +from isilon_sdk.v9_4_0.models.node_driveconfig_extended import NodeDriveconfigExtended +from isilon_sdk.v9_4_0.models.node_driveconfig_node import NodeDriveconfigNode +from isilon_sdk.v9_4_0.models.node_driveconfig_node_alert import NodeDriveconfigNodeAlert +from isilon_sdk.v9_4_0.models.node_driveconfig_node_allow import NodeDriveconfigNodeAllow +from isilon_sdk.v9_4_0.models.node_driveconfig_node_automatic_replacement_recognition import NodeDriveconfigNodeAutomaticReplacementRecognition +from isilon_sdk.v9_4_0.models.node_driveconfig_node_instant_secure_erase import NodeDriveconfigNodeInstantSecureErase +from isilon_sdk.v9_4_0.models.node_driveconfig_node_log import NodeDriveconfigNodeLog +from isilon_sdk.v9_4_0.models.node_driveconfig_node_reboot import NodeDriveconfigNodeReboot +from isilon_sdk.v9_4_0.models.node_driveconfig_node_spin_wait import NodeDriveconfigNodeSpinWait +from isilon_sdk.v9_4_0.models.node_driveconfig_node_stall import NodeDriveconfigNodeStall +from isilon_sdk.v9_4_0.models.node_driveconfig_stall import NodeDriveconfigStall +from isilon_sdk.v9_4_0.models.node_drives import NodeDrives +from isilon_sdk.v9_4_0.models.node_drives_node import NodeDrivesNode +from isilon_sdk.v9_4_0.models.node_drives_node_drive import NodeDrivesNodeDrive +from isilon_sdk.v9_4_0.models.node_drives_node_drive_firmware import NodeDrivesNodeDriveFirmware +from isilon_sdk.v9_4_0.models.node_drives_purposelist import NodeDrivesPurposelist +from isilon_sdk.v9_4_0.models.node_drives_purposelist_node import NodeDrivesPurposelistNode +from isilon_sdk.v9_4_0.models.node_drives_purposelist_node_purpose import NodeDrivesPurposelistNodePurpose +from isilon_sdk.v9_4_0.models.node_hardware import NodeHardware +from isilon_sdk.v9_4_0.models.node_hardware_fast import NodeHardwareFast +from isilon_sdk.v9_4_0.models.node_hardware_fast_node import NodeHardwareFastNode +from isilon_sdk.v9_4_0.models.node_hardware_node import NodeHardwareNode +from isilon_sdk.v9_4_0.models.node_internal_ip_address import NodeInternalIpAddress +from isilon_sdk.v9_4_0.models.node_internal_ip_address_node import NodeInternalIpAddressNode +from isilon_sdk.v9_4_0.models.node_partitions import NodePartitions +from isilon_sdk.v9_4_0.models.node_partitions_node import NodePartitionsNode +from isilon_sdk.v9_4_0.models.node_sensors import NodeSensors +from isilon_sdk.v9_4_0.models.node_sensors_node import NodeSensorsNode +from isilon_sdk.v9_4_0.models.node_sleds import NodeSleds +from isilon_sdk.v9_4_0.models.node_sleds_node import NodeSledsNode +from isilon_sdk.v9_4_0.models.node_state import NodeState +from isilon_sdk.v9_4_0.models.node_state_node import NodeStateNode +from isilon_sdk.v9_4_0.models.node_state_node_readonly import NodeStateNodeReadonly +from isilon_sdk.v9_4_0.models.node_state_node_smartfail import NodeStateNodeSmartfail +from isilon_sdk.v9_4_0.models.node_state_readonly import NodeStateReadonly +from isilon_sdk.v9_4_0.models.node_state_readonly_node import NodeStateReadonlyNode +from isilon_sdk.v9_4_0.models.node_state_servicelight import NodeStateServicelight +from isilon_sdk.v9_4_0.models.node_state_servicelight_extended import NodeStateServicelightExtended +from isilon_sdk.v9_4_0.models.node_state_servicelight_node import NodeStateServicelightNode +from isilon_sdk.v9_4_0.models.node_state_smartfail import NodeStateSmartfail +from isilon_sdk.v9_4_0.models.node_state_smartfail_node import NodeStateSmartfailNode +from isilon_sdk.v9_4_0.models.node_status import NodeStatus +from isilon_sdk.v9_4_0.models.node_status_batterystatus import NodeStatusBatterystatus +from isilon_sdk.v9_4_0.models.node_status_batterystatus_node import NodeStatusBatterystatusNode +from isilon_sdk.v9_4_0.models.node_status_cpu import NodeStatusCpu +from isilon_sdk.v9_4_0.models.node_status_cpu_error import NodeStatusCpuError +from isilon_sdk.v9_4_0.models.node_status_cpu_node import NodeStatusCpuNode +from isilon_sdk.v9_4_0.models.node_status_extended import NodeStatusExtended +from isilon_sdk.v9_4_0.models.node_status_node import NodeStatusNode +from isilon_sdk.v9_4_0.models.node_status_node_batterystatus import NodeStatusNodeBatterystatus +from isilon_sdk.v9_4_0.models.node_status_node_capacity_item import NodeStatusNodeCapacityItem +from isilon_sdk.v9_4_0.models.node_status_node_cpu import NodeStatusNodeCpu +from isilon_sdk.v9_4_0.models.node_status_node_extended import NodeStatusNodeExtended +from isilon_sdk.v9_4_0.models.node_status_node_nvram import NodeStatusNodeNvram +from isilon_sdk.v9_4_0.models.node_status_node_powersupplies import NodeStatusNodePowersupplies +from isilon_sdk.v9_4_0.models.node_status_node_status import NodeStatusNodeStatus +from isilon_sdk.v9_4_0.models.node_status_node_status_server_status_item import NodeStatusNodeStatusServerStatusItem +from isilon_sdk.v9_4_0.models.node_status_node_status_system_stats import NodeStatusNodeStatusSystemStats +from isilon_sdk.v9_4_0.models.node_status_nvram import NodeStatusNvram +from isilon_sdk.v9_4_0.models.node_status_nvram_node import NodeStatusNvramNode +from isilon_sdk.v9_4_0.models.node_status_nvram_node_battery import NodeStatusNvramNodeBattery +from isilon_sdk.v9_4_0.models.node_status_powersupplies import NodeStatusPowersupplies +from isilon_sdk.v9_4_0.models.node_status_powersupplies_node import NodeStatusPowersuppliesNode +from isilon_sdk.v9_4_0.models.node_status_powersupplies_node_supply import NodeStatusPowersuppliesNodeSupply +from isilon_sdk.v9_4_0.models.nodes_node_firmware_device import NodesNodeFirmwareDevice +from isilon_sdk.v9_4_0.models.nodes_node_internal_ip_address import NodesNodeInternalIpAddress +from isilon_sdk.v9_4_0.models.nodetype_assess import NodetypeAssess +from isilon_sdk.v9_4_0.models.nodetype_assess_from_nodepool import NodetypeAssessFromNodepool +from isilon_sdk.v9_4_0.models.ntp_server import NtpServer +from isilon_sdk.v9_4_0.models.ntp_server_create_params import NtpServerCreateParams +from isilon_sdk.v9_4_0.models.ntp_server_extended import NtpServerExtended +from isilon_sdk.v9_4_0.models.ntp_servers import NtpServers +from isilon_sdk.v9_4_0.models.ntp_settings import NtpSettings +from isilon_sdk.v9_4_0.models.ntp_settings_settings import NtpSettingsSettings +from isilon_sdk.v9_4_0.models.papi_settings import PapiSettings +from isilon_sdk.v9_4_0.models.papi_settings_papi_settings import PapiSettingsPapiSettings +from isilon_sdk.v9_4_0.models.papi_settings_papi_settings_child_settings import PapiSettingsPapiSettingsChildSettings +from isilon_sdk.v9_4_0.models.performance_dataset import PerformanceDataset +from isilon_sdk.v9_4_0.models.performance_datasets import PerformanceDatasets +from isilon_sdk.v9_4_0.models.performance_datasets_extended import PerformanceDatasetsExtended +from isilon_sdk.v9_4_0.models.performance_metric import PerformanceMetric +from isilon_sdk.v9_4_0.models.performance_metrics import PerformanceMetrics +from isilon_sdk.v9_4_0.models.performance_metrics_extended import PerformanceMetricsExtended +from isilon_sdk.v9_4_0.models.performance_settings import PerformanceSettings +from isilon_sdk.v9_4_0.models.performance_settings_extended import PerformanceSettingsExtended +from isilon_sdk.v9_4_0.models.performance_settings_settings import PerformanceSettingsSettings +from isilon_sdk.v9_4_0.models.pools_pool_interfaces import PoolsPoolInterfaces +from isilon_sdk.v9_4_0.models.pools_pool_interfaces_interface import PoolsPoolInterfacesInterface +from isilon_sdk.v9_4_0.models.pools_pool_interfaces_interface_owner import PoolsPoolInterfacesInterfaceOwner +from isilon_sdk.v9_4_0.models.pools_pool_rule import PoolsPoolRule +from isilon_sdk.v9_4_0.models.pools_pool_rule_create_params import PoolsPoolRuleCreateParams +from isilon_sdk.v9_4_0.models.pools_pool_rules import PoolsPoolRules +from isilon_sdk.v9_4_0.models.pools_pool_rules_rule import PoolsPoolRulesRule +from isilon_sdk.v9_4_0.models.pools_pool_sc_resume_node import PoolsPoolScResumeNode +from isilon_sdk.v9_4_0.models.pools_pool_status import PoolsPoolStatus +from isilon_sdk.v9_4_0.models.pools_pool_status_settings import PoolsPoolStatusSettings +from isilon_sdk.v9_4_0.models.pools_pool_status_settings_node import PoolsPoolStatusSettingsNode +from isilon_sdk.v9_4_0.models.pools_pool_status_settings_node_interface_status import PoolsPoolStatusSettingsNodeInterfaceStatus +from isilon_sdk.v9_4_0.models.pools_pool_status_settings_sc_dns_overview import PoolsPoolStatusSettingsScDnsOverview +from isilon_sdk.v9_4_0.models.progress_global import ProgressGlobal +from isilon_sdk.v9_4_0.models.progress_global_progress import ProgressGlobalProgress +from isilon_sdk.v9_4_0.models.protocols_smb_sessions import ProtocolsSmbSessions +from isilon_sdk.v9_4_0.models.protocols_smb_sessions_session import ProtocolsSmbSessionsSession +from isilon_sdk.v9_4_0.models.providers_ads import ProvidersAds +from isilon_sdk.v9_4_0.models.providers_ads_ads_item import ProvidersAdsAdsItem +from isilon_sdk.v9_4_0.models.providers_ads_ads_item_extended import ProvidersAdsAdsItemExtended +from isilon_sdk.v9_4_0.models.providers_ads_extended import ProvidersAdsExtended +from isilon_sdk.v9_4_0.models.providers_ads_id_params import ProvidersAdsIdParams +from isilon_sdk.v9_4_0.models.providers_ads_item import ProvidersAdsItem +from isilon_sdk.v9_4_0.models.providers_duo import ProvidersDuo +from isilon_sdk.v9_4_0.models.providers_duo_extended import ProvidersDuoExtended +from isilon_sdk.v9_4_0.models.providers_duo_settings import ProvidersDuoSettings +from isilon_sdk.v9_4_0.models.providers_file import ProvidersFile +from isilon_sdk.v9_4_0.models.providers_file_file_item import ProvidersFileFileItem +from isilon_sdk.v9_4_0.models.providers_file_id_params import ProvidersFileIdParams +from isilon_sdk.v9_4_0.models.providers_file_item import ProvidersFileItem +from isilon_sdk.v9_4_0.models.providers_krb5 import ProvidersKrb5 +from isilon_sdk.v9_4_0.models.providers_krb5_extended import ProvidersKrb5Extended +from isilon_sdk.v9_4_0.models.providers_krb5_id_params import ProvidersKrb5IdParams +from isilon_sdk.v9_4_0.models.providers_krb5_id_params_keytab_entry import ProvidersKrb5IdParamsKeytabEntry +from isilon_sdk.v9_4_0.models.providers_krb5_item import ProvidersKrb5Item +from isilon_sdk.v9_4_0.models.providers_krb5_krb5_item import ProvidersKrb5Krb5Item +from isilon_sdk.v9_4_0.models.providers_ldap import ProvidersLdap +from isilon_sdk.v9_4_0.models.providers_ldap_id_params import ProvidersLdapIdParams +from isilon_sdk.v9_4_0.models.providers_ldap_item import ProvidersLdapItem +from isilon_sdk.v9_4_0.models.providers_ldap_ldap_item import ProvidersLdapLdapItem +from isilon_sdk.v9_4_0.models.providers_local import ProvidersLocal +from isilon_sdk.v9_4_0.models.providers_local_id_params import ProvidersLocalIdParams +from isilon_sdk.v9_4_0.models.providers_local_local_item import ProvidersLocalLocalItem +from isilon_sdk.v9_4_0.models.providers_nis import ProvidersNis +from isilon_sdk.v9_4_0.models.providers_nis_id_params import ProvidersNisIdParams +from isilon_sdk.v9_4_0.models.providers_nis_item import ProvidersNisItem +from isilon_sdk.v9_4_0.models.providers_nis_nis_item import ProvidersNisNisItem +from isilon_sdk.v9_4_0.models.providers_summary import ProvidersSummary +from isilon_sdk.v9_4_0.models.providers_summary_provider_instance import ProvidersSummaryProviderInstance +from isilon_sdk.v9_4_0.models.providers_summary_provider_instance_connection import ProvidersSummaryProviderInstanceConnection +from isilon_sdk.v9_4_0.models.proxyusers_name_members import ProxyusersNameMembers +from isilon_sdk.v9_4_0.models.quota_notification import QuotaNotification +from isilon_sdk.v9_4_0.models.quota_notifications import QuotaNotifications +from isilon_sdk.v9_4_0.models.quota_quota import QuotaQuota +from isilon_sdk.v9_4_0.models.quota_quota_create_params import QuotaQuotaCreateParams +from isilon_sdk.v9_4_0.models.quota_quota_extended import QuotaQuotaExtended +from isilon_sdk.v9_4_0.models.quota_quota_thresholds import QuotaQuotaThresholds +from isilon_sdk.v9_4_0.models.quota_quota_thresholds_extended import QuotaQuotaThresholdsExtended +from isilon_sdk.v9_4_0.models.quota_quota_usage import QuotaQuotaUsage +from isilon_sdk.v9_4_0.models.quota_quotas import QuotaQuotas +from isilon_sdk.v9_4_0.models.quota_quotas_extended import QuotaQuotasExtended +from isilon_sdk.v9_4_0.models.quota_quotas_summary import QuotaQuotasSummary +from isilon_sdk.v9_4_0.models.quota_quotas_summary_summary import QuotaQuotasSummarySummary +from isilon_sdk.v9_4_0.models.quota_reports import QuotaReports +from isilon_sdk.v9_4_0.models.report_about import ReportAbout +from isilon_sdk.v9_4_0.models.report_about_report import ReportAboutReport +from isilon_sdk.v9_4_0.models.report_subreport import ReportSubreport +from isilon_sdk.v9_4_0.models.report_subreports import ReportSubreports +from isilon_sdk.v9_4_0.models.reports_report_subreports import ReportsReportSubreports +from isilon_sdk.v9_4_0.models.reports_report_subreports_subreport import ReportsReportSubreportsSubreport +from isilon_sdk.v9_4_0.models.reports_scans import ReportsScans +from isilon_sdk.v9_4_0.models.reports_scans_report import ReportsScansReport +from isilon_sdk.v9_4_0.models.reports_threats import ReportsThreats +from isilon_sdk.v9_4_0.models.reports_threats_report import ReportsThreatsReport +from isilon_sdk.v9_4_0.models.result_dir_pools_usage import ResultDirPoolsUsage +from isilon_sdk.v9_4_0.models.result_dir_pools_usage_usage_data import ResultDirPoolsUsageUsageData +from isilon_sdk.v9_4_0.models.result_directories import ResultDirectories +from isilon_sdk.v9_4_0.models.result_directories_dir_usage import ResultDirectoriesDirUsage +from isilon_sdk.v9_4_0.models.result_directories_extended import ResultDirectoriesExtended +from isilon_sdk.v9_4_0.models.result_directories_usage_data_item import ResultDirectoriesUsageDataItem +from isilon_sdk.v9_4_0.models.result_histogram import ResultHistogram +from isilon_sdk.v9_4_0.models.result_histogram_histogram_item import ResultHistogramHistogramItem +from isilon_sdk.v9_4_0.models.result_top_dirs import ResultTopDirs +from isilon_sdk.v9_4_0.models.result_top_dirs_dir import ResultTopDirsDir +from isilon_sdk.v9_4_0.models.result_top_files import ResultTopFiles +from isilon_sdk.v9_4_0.models.result_top_files_file import ResultTopFilesFile +from isilon_sdk.v9_4_0.models.role_members import RoleMembers +from isilon_sdk.v9_4_0.models.role_privileges import RolePrivileges +from isilon_sdk.v9_4_0.models.s3_bucket import S3Bucket +from isilon_sdk.v9_4_0.models.s3_bucket_acl_item import S3BucketAclItem +from isilon_sdk.v9_4_0.models.s3_buckets import S3Buckets +from isilon_sdk.v9_4_0.models.s3_buckets_extended import S3BucketsExtended +from isilon_sdk.v9_4_0.models.s3_key import S3Key +from isilon_sdk.v9_4_0.models.s3_keys import S3Keys +from isilon_sdk.v9_4_0.models.s3_keys_keys import S3KeysKeys +from isilon_sdk.v9_4_0.models.s3_log_level import S3LogLevel +from isilon_sdk.v9_4_0.models.s3_settings_global import S3SettingsGlobal +from isilon_sdk.v9_4_0.models.s3_settings_global_settings import S3SettingsGlobalSettings +from isilon_sdk.v9_4_0.models.s3_settings_zone import S3SettingsZone +from isilon_sdk.v9_4_0.models.s3_settings_zone_settings import S3SettingsZoneSettings +from isilon_sdk.v9_4_0.models.security_check import SecurityCheck +from isilon_sdk.v9_4_0.models.security_check_item import SecurityCheckItem +from isilon_sdk.v9_4_0.models.security_check_settings import SecurityCheckSettings +from isilon_sdk.v9_4_0.models.security_settings import SecuritySettings +from isilon_sdk.v9_4_0.models.security_settings_settings import SecuritySettingsSettings +from isilon_sdk.v9_4_0.models.sed_migrate_item import SedMigrateItem +from isilon_sdk.v9_4_0.models.sed_settings import SedSettings +from isilon_sdk.v9_4_0.models.sed_settings_extended import SedSettingsExtended +from isilon_sdk.v9_4_0.models.sed_settings_settings import SedSettingsSettings +from isilon_sdk.v9_4_0.models.sed_status import SedStatus +from isilon_sdk.v9_4_0.models.sed_status_extended import SedStatusExtended +from isilon_sdk.v9_4_0.models.sed_status_node import SedStatusNode +from isilon_sdk.v9_4_0.models.service_policies import ServicePolicies +from isilon_sdk.v9_4_0.models.service_policies_extended import ServicePoliciesExtended +from isilon_sdk.v9_4_0.models.service_policy import ServicePolicy +from isilon_sdk.v9_4_0.models.service_policy_create_params import ServicePolicyCreateParams +from isilon_sdk.v9_4_0.models.service_policy_extended import ServicePolicyExtended +from isilon_sdk.v9_4_0.models.service_target_policies import ServiceTargetPolicies +from isilon_sdk.v9_4_0.models.sessions_invalidation import SessionsInvalidation +from isilon_sdk.v9_4_0.models.sessions_invalidation_extended import SessionsInvalidationExtended +from isilon_sdk.v9_4_0.models.sessions_invalidations import SessionsInvalidations +from isilon_sdk.v9_4_0.models.settings_access_time import SettingsAccessTime +from isilon_sdk.v9_4_0.models.settings_access_time_extended import SettingsAccessTimeExtended +from isilon_sdk.v9_4_0.models.settings_access_time_settings import SettingsAccessTimeSettings +from isilon_sdk.v9_4_0.models.settings_acls import SettingsAcls +from isilon_sdk.v9_4_0.models.settings_acls_acl_policy_settings import SettingsAclsAclPolicySettings +from isilon_sdk.v9_4_0.models.settings_acls_extended import SettingsAclsExtended +from isilon_sdk.v9_4_0.models.settings_character_encodings import SettingsCharacterEncodings +from isilon_sdk.v9_4_0.models.settings_character_encodings_extended import SettingsCharacterEncodingsExtended +from isilon_sdk.v9_4_0.models.settings_character_encodings_settings import SettingsCharacterEncodingsSettings +from isilon_sdk.v9_4_0.models.settings_compression import SettingsCompression +from isilon_sdk.v9_4_0.models.settings_compression_extended import SettingsCompressionExtended +from isilon_sdk.v9_4_0.models.settings_compression_settings import SettingsCompressionSettings +from isilon_sdk.v9_4_0.models.settings_global import SettingsGlobal +from isilon_sdk.v9_4_0.models.settings_global_extended import SettingsGlobalExtended +from isilon_sdk.v9_4_0.models.settings_global_global_settings import SettingsGlobalGlobalSettings +from isilon_sdk.v9_4_0.models.settings_global_settings import SettingsGlobalSettings +from isilon_sdk.v9_4_0.models.settings_krb5_defaults import SettingsKrb5Defaults +from isilon_sdk.v9_4_0.models.settings_krb5_defaults_krb5_settings import SettingsKrb5DefaultsKrb5Settings +from isilon_sdk.v9_4_0.models.settings_krb5_domain import SettingsKrb5Domain +from isilon_sdk.v9_4_0.models.settings_krb5_domains import SettingsKrb5Domains +from isilon_sdk.v9_4_0.models.settings_krb5_domains_domain_item import SettingsKrb5DomainsDomainItem +from isilon_sdk.v9_4_0.models.settings_krb5_realm import SettingsKrb5Realm +from isilon_sdk.v9_4_0.models.settings_krb5_realms import SettingsKrb5Realms +from isilon_sdk.v9_4_0.models.settings_krb5_realms_realm_item import SettingsKrb5RealmsRealmItem +from isilon_sdk.v9_4_0.models.settings_mapping import SettingsMapping +from isilon_sdk.v9_4_0.models.settings_mapping_create_params import SettingsMappingCreateParams +from isilon_sdk.v9_4_0.models.settings_mapping_extended import SettingsMappingExtended +from isilon_sdk.v9_4_0.models.settings_mapping_extended_extended import SettingsMappingExtendedExtended +from isilon_sdk.v9_4_0.models.settings_mapping_mapping_settings import SettingsMappingMappingSettings +from isilon_sdk.v9_4_0.models.settings_mappings import SettingsMappings +from isilon_sdk.v9_4_0.models.settings_mappings_extended import SettingsMappingsExtended +from isilon_sdk.v9_4_0.models.settings_notifications import SettingsNotifications +from isilon_sdk.v9_4_0.models.settings_reporting_eula import SettingsReportingEula +from isilon_sdk.v9_4_0.models.settings_reporting_eula_eula import SettingsReportingEulaEula +from isilon_sdk.v9_4_0.models.settings_reports import SettingsReports +from isilon_sdk.v9_4_0.models.settings_reports_extended import SettingsReportsExtended +from isilon_sdk.v9_4_0.models.settings_reports_settings import SettingsReportsSettings +from isilon_sdk.v9_4_0.models.settings_sessions import SettingsSessions +from isilon_sdk.v9_4_0.models.settings_sessions_settings import SettingsSessionsSettings +from isilon_sdk.v9_4_0.models.smb_log_level import SmbLogLevel +from isilon_sdk.v9_4_0.models.smb_log_level_filter import SmbLogLevelFilter +from isilon_sdk.v9_4_0.models.smb_log_level_filters import SmbLogLevelFilters +from isilon_sdk.v9_4_0.models.smb_log_level_filters_filter import SmbLogLevelFiltersFilter +from isilon_sdk.v9_4_0.models.smb_openfile import SmbOpenfile +from isilon_sdk.v9_4_0.models.smb_openfiles import SmbOpenfiles +from isilon_sdk.v9_4_0.models.smb_sessions import SmbSessions +from isilon_sdk.v9_4_0.models.smb_sessions_node import SmbSessionsNode +from isilon_sdk.v9_4_0.models.smb_settings_global import SmbSettingsGlobal +from isilon_sdk.v9_4_0.models.smb_settings_global_extended import SmbSettingsGlobalExtended +from isilon_sdk.v9_4_0.models.smb_settings_global_settings import SmbSettingsGlobalSettings +from isilon_sdk.v9_4_0.models.smb_settings_share import SmbSettingsShare +from isilon_sdk.v9_4_0.models.smb_settings_share_extended import SmbSettingsShareExtended +from isilon_sdk.v9_4_0.models.smb_settings_share_settings import SmbSettingsShareSettings +from isilon_sdk.v9_4_0.models.smb_settings_zone import SmbSettingsZone +from isilon_sdk.v9_4_0.models.smb_settings_zone_settings import SmbSettingsZoneSettings +from isilon_sdk.v9_4_0.models.smb_share import SmbShare +from isilon_sdk.v9_4_0.models.smb_share_create_params import SmbShareCreateParams +from isilon_sdk.v9_4_0.models.smb_share_extended import SmbShareExtended +from isilon_sdk.v9_4_0.models.smb_share_permission import SmbSharePermission +from isilon_sdk.v9_4_0.models.smb_shares import SmbShares +from isilon_sdk.v9_4_0.models.smb_shares_summary import SmbSharesSummary +from isilon_sdk.v9_4_0.models.smb_shares_summary_summary import SmbSharesSummarySummary +from isilon_sdk.v9_4_0.models.snapshot_alias import SnapshotAlias +from isilon_sdk.v9_4_0.models.snapshot_alias_create_params import SnapshotAliasCreateParams +from isilon_sdk.v9_4_0.models.snapshot_alias_extended import SnapshotAliasExtended +from isilon_sdk.v9_4_0.models.snapshot_aliases import SnapshotAliases +from isilon_sdk.v9_4_0.models.snapshot_aliases_extended import SnapshotAliasesExtended +from isilon_sdk.v9_4_0.models.snapshot_changelists import SnapshotChangelists +from isilon_sdk.v9_4_0.models.snapshot_changelists_extended import SnapshotChangelistsExtended +from isilon_sdk.v9_4_0.models.snapshot_lock import SnapshotLock +from isilon_sdk.v9_4_0.models.snapshot_lock_extended import SnapshotLockExtended +from isilon_sdk.v9_4_0.models.snapshot_locks import SnapshotLocks +from isilon_sdk.v9_4_0.models.snapshot_locks_extended import SnapshotLocksExtended +from isilon_sdk.v9_4_0.models.snapshot_pending import SnapshotPending +from isilon_sdk.v9_4_0.models.snapshot_pending_pending_item import SnapshotPendingPendingItem +from isilon_sdk.v9_4_0.models.snapshot_repstates import SnapshotRepstates +from isilon_sdk.v9_4_0.models.snapshot_repstates_extended import SnapshotRepstatesExtended +from isilon_sdk.v9_4_0.models.snapshot_schedule import SnapshotSchedule +from isilon_sdk.v9_4_0.models.snapshot_schedule_extended import SnapshotScheduleExtended +from isilon_sdk.v9_4_0.models.snapshot_schedule_extended_extended import SnapshotScheduleExtendedExtended +from isilon_sdk.v9_4_0.models.snapshot_schedules import SnapshotSchedules +from isilon_sdk.v9_4_0.models.snapshot_schedules_extended import SnapshotSchedulesExtended +from isilon_sdk.v9_4_0.models.snapshot_settings import SnapshotSettings +from isilon_sdk.v9_4_0.models.snapshot_settings_extended import SnapshotSettingsExtended +from isilon_sdk.v9_4_0.models.snapshot_settings_settings import SnapshotSettingsSettings +from isilon_sdk.v9_4_0.models.snapshot_snapshot import SnapshotSnapshot +from isilon_sdk.v9_4_0.models.snapshot_snapshot_extended_extended import SnapshotSnapshotExtendedExtended +from isilon_sdk.v9_4_0.models.snapshot_snapshots import SnapshotSnapshots +from isilon_sdk.v9_4_0.models.snapshot_snapshots_extended import SnapshotSnapshotsExtended +from isilon_sdk.v9_4_0.models.snapshot_snapshots_summary import SnapshotSnapshotsSummary +from isilon_sdk.v9_4_0.models.snapshot_snapshots_summary_summary import SnapshotSnapshotsSummarySummary +from isilon_sdk.v9_4_0.models.snapshot_writable import SnapshotWritable +from isilon_sdk.v9_4_0.models.snapshot_writable_item import SnapshotWritableItem +from isilon_sdk.v9_4_0.models.snapshot_writable_snapshot_summary import SnapshotWritableSnapshotSummary +from isilon_sdk.v9_4_0.models.snapshot_writable_snapshot_summary_summary import SnapshotWritableSnapshotSummarySummary +from isilon_sdk.v9_4_0.models.snapshot_writable_writable_item import SnapshotWritableWritableItem +from isilon_sdk.v9_4_0.models.snmp_settings import SnmpSettings +from isilon_sdk.v9_4_0.models.snmp_settings_extended import SnmpSettingsExtended +from isilon_sdk.v9_4_0.models.snmp_settings_settings import SnmpSettingsSettings +from isilon_sdk.v9_4_0.models.ssh_settings import SshSettings +from isilon_sdk.v9_4_0.models.ssh_settings_extended import SshSettingsExtended +from isilon_sdk.v9_4_0.models.ssh_settings_settings import SshSettingsSettings +from isilon_sdk.v9_4_0.models.statistics_current import StatisticsCurrent +from isilon_sdk.v9_4_0.models.statistics_current_stat import StatisticsCurrentStat +from isilon_sdk.v9_4_0.models.statistics_history import StatisticsHistory +from isilon_sdk.v9_4_0.models.statistics_history_stat import StatisticsHistoryStat +from isilon_sdk.v9_4_0.models.statistics_history_stat_value import StatisticsHistoryStatValue +from isilon_sdk.v9_4_0.models.statistics_key import StatisticsKey +from isilon_sdk.v9_4_0.models.statistics_key_policy import StatisticsKeyPolicy +from isilon_sdk.v9_4_0.models.statistics_keys import StatisticsKeys +from isilon_sdk.v9_4_0.models.statistics_operation import StatisticsOperation +from isilon_sdk.v9_4_0.models.statistics_operations import StatisticsOperations +from isilon_sdk.v9_4_0.models.statistics_protocol import StatisticsProtocol +from isilon_sdk.v9_4_0.models.statistics_protocols import StatisticsProtocols +from isilon_sdk.v9_4_0.models.storagepool_nodepool import StoragepoolNodepool +from isilon_sdk.v9_4_0.models.storagepool_nodepool_extended import StoragepoolNodepoolExtended +from isilon_sdk.v9_4_0.models.storagepool_nodepools import StoragepoolNodepools +from isilon_sdk.v9_4_0.models.storagepool_nodepools_extended import StoragepoolNodepoolsExtended +from isilon_sdk.v9_4_0.models.storagepool_nodetype import StoragepoolNodetype +from isilon_sdk.v9_4_0.models.storagepool_nodetypes import StoragepoolNodetypes +from isilon_sdk.v9_4_0.models.storagepool_nodetypes_extended import StoragepoolNodetypesExtended +from isilon_sdk.v9_4_0.models.storagepool_settings import StoragepoolSettings +from isilon_sdk.v9_4_0.models.storagepool_settings_extended import StoragepoolSettingsExtended +from isilon_sdk.v9_4_0.models.storagepool_settings_settings import StoragepoolSettingsSettings +from isilon_sdk.v9_4_0.models.storagepool_settings_settings_spillover_target import StoragepoolSettingsSettingsSpilloverTarget +from isilon_sdk.v9_4_0.models.storagepool_settings_spillover_target import StoragepoolSettingsSpilloverTarget +from isilon_sdk.v9_4_0.models.storagepool_status import StoragepoolStatus +from isilon_sdk.v9_4_0.models.storagepool_status_unhealthy_item import StoragepoolStatusUnhealthyItem +from isilon_sdk.v9_4_0.models.storagepool_status_unhealthy_item_affected_item import StoragepoolStatusUnhealthyItemAffectedItem +from isilon_sdk.v9_4_0.models.storagepool_status_unhealthy_item_affected_item_device import StoragepoolStatusUnhealthyItemAffectedItemDevice +from isilon_sdk.v9_4_0.models.storagepool_status_unhealthy_item_diskpool import StoragepoolStatusUnhealthyItemDiskpool +from isilon_sdk.v9_4_0.models.storagepool_storagepool import StoragepoolStoragepool +from isilon_sdk.v9_4_0.models.storagepool_storagepools import StoragepoolStoragepools +from isilon_sdk.v9_4_0.models.storagepool_suggested_protection import StoragepoolSuggestedProtection +from isilon_sdk.v9_4_0.models.storagepool_tier import StoragepoolTier +from isilon_sdk.v9_4_0.models.storagepool_tier_usage import StoragepoolTierUsage +from isilon_sdk.v9_4_0.models.storagepool_tiers import StoragepoolTiers +from isilon_sdk.v9_4_0.models.storagepool_tiers_extended import StoragepoolTiersExtended +from isilon_sdk.v9_4_0.models.storagepool_unprovisioned import StoragepoolUnprovisioned +from isilon_sdk.v9_4_0.models.storagepool_unprovisioned_unprovisioned import StoragepoolUnprovisionedUnprovisioned +from isilon_sdk.v9_4_0.models.subnets_subnet_pool import SubnetsSubnetPool +from isilon_sdk.v9_4_0.models.subnets_subnet_pool_create_params import SubnetsSubnetPoolCreateParams +from isilon_sdk.v9_4_0.models.subnets_subnet_pool_iface import SubnetsSubnetPoolIface +from isilon_sdk.v9_4_0.models.subnets_subnet_pool_range import SubnetsSubnetPoolRange +from isilon_sdk.v9_4_0.models.subnets_subnet_pool_static_route import SubnetsSubnetPoolStaticRoute +from isilon_sdk.v9_4_0.models.subnets_subnet_pools import SubnetsSubnetPools +from isilon_sdk.v9_4_0.models.subnets_subnet_pools_pool import SubnetsSubnetPoolsPool +from isilon_sdk.v9_4_0.models.summary_client import SummaryClient +from isilon_sdk.v9_4_0.models.summary_client_client_item import SummaryClientClientItem +from isilon_sdk.v9_4_0.models.summary_cloud import SummaryCloud +from isilon_sdk.v9_4_0.models.summary_cloud_cloud_item import SummaryCloudCloudItem +from isilon_sdk.v9_4_0.models.summary_drive import SummaryDrive +from isilon_sdk.v9_4_0.models.summary_drive_drive_item import SummaryDriveDriveItem +from isilon_sdk.v9_4_0.models.summary_heat import SummaryHeat +from isilon_sdk.v9_4_0.models.summary_heat_heat_item import SummaryHeatHeatItem +from isilon_sdk.v9_4_0.models.summary_protocol import SummaryProtocol +from isilon_sdk.v9_4_0.models.summary_protocol_protocol_item import SummaryProtocolProtocolItem +from isilon_sdk.v9_4_0.models.summary_protocol_stats import SummaryProtocolStats +from isilon_sdk.v9_4_0.models.summary_protocol_stats_protocol_stats import SummaryProtocolStatsProtocolStats +from isilon_sdk.v9_4_0.models.summary_protocol_stats_protocol_stats_cpu import SummaryProtocolStatsProtocolStatsCpu +from isilon_sdk.v9_4_0.models.summary_protocol_stats_protocol_stats_disk import SummaryProtocolStatsProtocolStatsDisk +from isilon_sdk.v9_4_0.models.summary_protocol_stats_protocol_stats_network import SummaryProtocolStatsProtocolStatsNetwork +from isilon_sdk.v9_4_0.models.summary_protocol_stats_protocol_stats_network_in import SummaryProtocolStatsProtocolStatsNetworkIn +from isilon_sdk.v9_4_0.models.summary_protocol_stats_protocol_stats_network_out import SummaryProtocolStatsProtocolStatsNetworkOut +from isilon_sdk.v9_4_0.models.summary_protocol_stats_protocol_stats_onefs import SummaryProtocolStatsProtocolStatsOnefs +from isilon_sdk.v9_4_0.models.summary_protocol_stats_protocol_stats_protocol import SummaryProtocolStatsProtocolStatsProtocol +from isilon_sdk.v9_4_0.models.summary_protocol_stats_protocol_stats_protocol_data_item import SummaryProtocolStatsProtocolStatsProtocolDataItem +from isilon_sdk.v9_4_0.models.summary_system import SummarySystem +from isilon_sdk.v9_4_0.models.summary_system_system_item import SummarySystemSystemItem +from isilon_sdk.v9_4_0.models.summary_workload import SummaryWorkload +from isilon_sdk.v9_4_0.models.summary_workload_workload_item import SummaryWorkloadWorkloadItem +from isilon_sdk.v9_4_0.models.swift_account import SwiftAccount +from isilon_sdk.v9_4_0.models.swift_account_extended import SwiftAccountExtended +from isilon_sdk.v9_4_0.models.swift_accounts import SwiftAccounts +from isilon_sdk.v9_4_0.models.sync_job import SyncJob +from isilon_sdk.v9_4_0.models.sync_job_create_params import SyncJobCreateParams +from isilon_sdk.v9_4_0.models.sync_job_extended import SyncJobExtended +from isilon_sdk.v9_4_0.models.sync_job_phase import SyncJobPhase +from isilon_sdk.v9_4_0.models.sync_job_phase_statistics import SyncJobPhaseStatistics +from isilon_sdk.v9_4_0.models.sync_job_policy import SyncJobPolicy +from isilon_sdk.v9_4_0.models.sync_job_service_report_item import SyncJobServiceReportItem +from isilon_sdk.v9_4_0.models.sync_job_worker import SyncJobWorker +from isilon_sdk.v9_4_0.models.sync_jobs import SyncJobs +from isilon_sdk.v9_4_0.models.sync_jobs_extended import SyncJobsExtended +from isilon_sdk.v9_4_0.models.sync_policies import SyncPolicies +from isilon_sdk.v9_4_0.models.sync_policies_extended import SyncPoliciesExtended +from isilon_sdk.v9_4_0.models.sync_policy import SyncPolicy +from isilon_sdk.v9_4_0.models.sync_policy_create_params import SyncPolicyCreateParams +from isilon_sdk.v9_4_0.models.sync_policy_extended import SyncPolicyExtended +from isilon_sdk.v9_4_0.models.sync_policy_file_matching_pattern import SyncPolicyFileMatchingPattern +from isilon_sdk.v9_4_0.models.sync_policy_file_matching_pattern_or_criteria_item import SyncPolicyFileMatchingPatternOrCriteriaItem +from isilon_sdk.v9_4_0.models.sync_policy_file_matching_pattern_or_criteria_item_and_criteria_item import SyncPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem +from isilon_sdk.v9_4_0.models.sync_policy_source_network import SyncPolicySourceNetwork +from isilon_sdk.v9_4_0.models.sync_report import SyncReport +from isilon_sdk.v9_4_0.models.sync_reports import SyncReports +from isilon_sdk.v9_4_0.models.sync_reports_extended import SyncReportsExtended +from isilon_sdk.v9_4_0.models.sync_reports_rotate import SyncReportsRotate +from isilon_sdk.v9_4_0.models.sync_rule import SyncRule +from isilon_sdk.v9_4_0.models.sync_rule_extended_extended import SyncRuleExtendedExtended +from isilon_sdk.v9_4_0.models.sync_rule_schedule import SyncRuleSchedule +from isilon_sdk.v9_4_0.models.sync_rules import SyncRules +from isilon_sdk.v9_4_0.models.sync_rules_extended import SyncRulesExtended +from isilon_sdk.v9_4_0.models.sync_settings import SyncSettings +from isilon_sdk.v9_4_0.models.sync_settings_extended import SyncSettingsExtended +from isilon_sdk.v9_4_0.models.sync_settings_settings import SyncSettingsSettings +from isilon_sdk.v9_4_0.models.target_policies import TargetPolicies +from isilon_sdk.v9_4_0.models.target_policies_extended import TargetPoliciesExtended +from isilon_sdk.v9_4_0.models.target_policy import TargetPolicy +from isilon_sdk.v9_4_0.models.target_report import TargetReport +from isilon_sdk.v9_4_0.models.target_reports import TargetReports +from isilon_sdk.v9_4_0.models.target_reports_extended import TargetReportsExtended +from isilon_sdk.v9_4_0.models.throttling_bw_rule import ThrottlingBwRule +from isilon_sdk.v9_4_0.models.throttling_bw_rules import ThrottlingBwRules +from isilon_sdk.v9_4_0.models.throttling_bw_rules_bandwidth_rule import ThrottlingBwRulesBandwidthRule +from isilon_sdk.v9_4_0.models.throttling_settings import ThrottlingSettings +from isilon_sdk.v9_4_0.models.throttling_settings_settings import ThrottlingSettingsSettings +from isilon_sdk.v9_4_0.models.timezone_region import TimezoneRegion +from isilon_sdk.v9_4_0.models.timezone_region_timezone import TimezoneRegionTimezone +from isilon_sdk.v9_4_0.models.timezone_regions import TimezoneRegions +from isilon_sdk.v9_4_0.models.timezone_settings import TimezoneSettings +from isilon_sdk.v9_4_0.models.upgrade_cluster import UpgradeCluster +from isilon_sdk.v9_4_0.models.upgrade_cluster_cluster_overview import UpgradeClusterClusterOverview +from isilon_sdk.v9_4_0.models.upgrade_cluster_committed_features import UpgradeClusterCommittedFeatures +from isilon_sdk.v9_4_0.models.upgrade_cluster_committed_features_gen_bit import UpgradeClusterCommittedFeaturesGenBit +from isilon_sdk.v9_4_0.models.upgrade_cluster_firmware_device import UpgradeClusterFirmwareDevice +from isilon_sdk.v9_4_0.models.upgrade_cluster_firmware_device_node import UpgradeClusterFirmwareDeviceNode +from isilon_sdk.v9_4_0.models.upgrade_cluster_firmware_device_node_device import UpgradeClusterFirmwareDeviceNodeDevice +from isilon_sdk.v9_4_0.models.upgrade_cluster_firmware_device_node_package_item import UpgradeClusterFirmwareDeviceNodePackageItem +from isilon_sdk.v9_4_0.models.upgrade_cluster_upgrade_settings import UpgradeClusterUpgradeSettings +from isilon_sdk.v9_4_0.models.user_change_password import UserChangePassword +from isilon_sdk.v9_4_0.models.user_member_of import UserMemberOf +from isilon_sdk.v9_4_0.models.worm_create_params import WormCreateParams +from isilon_sdk.v9_4_0.models.worm_domain import WormDomain +from isilon_sdk.v9_4_0.models.worm_domain_exclusion import WormDomainExclusion +from isilon_sdk.v9_4_0.models.worm_domains import WormDomains +from isilon_sdk.v9_4_0.models.worm_properties import WormProperties +from isilon_sdk.v9_4_0.models.worm_settings import WormSettings +from isilon_sdk.v9_4_0.models.worm_settings_extended import WormSettingsExtended +from isilon_sdk.v9_4_0.models.worm_settings_settings import WormSettingsSettings +from isilon_sdk.v9_4_0.models.zone import Zone +from isilon_sdk.v9_4_0.models.zone_extended_extended import ZoneExtendedExtended +from isilon_sdk.v9_4_0.models.zone_group import ZoneGroup +from isilon_sdk.v9_4_0.models.zone_groups import ZoneGroups +from isilon_sdk.v9_4_0.models.zone_user import ZoneUser +from isilon_sdk.v9_4_0.models.zone_users import ZoneUsers +from isilon_sdk.v9_4_0.models.zones import Zones +from isilon_sdk.v9_4_0.models.zones_extended import ZonesExtended +from isilon_sdk.v9_4_0.models.zones_summary import ZonesSummary +from isilon_sdk.v9_4_0.models.zones_summary_extended import ZonesSummaryExtended +from isilon_sdk.v9_4_0.models.zones_summary_summary import ZonesSummarySummary +from isilon_sdk.v9_4_0.models.zones_summary_summary_extended import ZonesSummarySummaryExtended +from isilon_sdk.v9_4_0.models.antivirus_policies_extended import AntivirusPoliciesExtended +from isilon_sdk.v9_4_0.models.antivirus_policy_create_params import AntivirusPolicyCreateParams +from isilon_sdk.v9_4_0.models.antivirus_policy_extended import AntivirusPolicyExtended +from isilon_sdk.v9_4_0.models.antivirus_server_create_params import AntivirusServerCreateParams +from isilon_sdk.v9_4_0.models.antivirus_server_extended import AntivirusServerExtended +from isilon_sdk.v9_4_0.models.antivirus_servers_extended import AntivirusServersExtended +from isilon_sdk.v9_4_0.models.audit_topic_extended import AuditTopicExtended +from isilon_sdk.v9_4_0.models.auth_group_create_params import AuthGroupCreateParams +from isilon_sdk.v9_4_0.models.auth_role_create_params import AuthRoleCreateParams +from isilon_sdk.v9_4_0.models.auth_role_extended import AuthRoleExtended +from isilon_sdk.v9_4_0.models.auth_roles_extended import AuthRolesExtended +from isilon_sdk.v9_4_0.models.auth_user_create_params import AuthUserCreateParams +from isilon_sdk.v9_4_0.models.avscan_jobs_extended import AvscanJobsExtended +from isilon_sdk.v9_4_0.models.avscan_servers_extended import AvscanServersExtended +from isilon_sdk.v9_4_0.models.certificates_ca_extended import CertificatesCaExtended +from isilon_sdk.v9_4_0.models.certificates_identity_extended import CertificatesIdentityExtended +from isilon_sdk.v9_4_0.models.cloud_access_extended import CloudAccessExtended +from isilon_sdk.v9_4_0.models.cloud_account_extended import CloudAccountExtended +from isilon_sdk.v9_4_0.models.cloud_jobs_extended import CloudJobsExtended +from isilon_sdk.v9_4_0.models.cloud_pool_create_params import CloudPoolCreateParams +from isilon_sdk.v9_4_0.models.cloud_pool_extended import CloudPoolExtended +from isilon_sdk.v9_4_0.models.cloud_proxy_create_params import CloudProxyCreateParams +from isilon_sdk.v9_4_0.models.cloud_proxy_extended import CloudProxyExtended +from isilon_sdk.v9_4_0.models.cluster_internal_networks_failover_ip_addresse import ClusterInternalNetworksFailoverIpAddresse +from isilon_sdk.v9_4_0.models.cluster_internal_networks_failover_ip_addresse_extended import ClusterInternalNetworksFailoverIpAddresseExtended +from isilon_sdk.v9_4_0.models.cluster_internal_networks_int_a_ip_addresse import ClusterInternalNetworksIntAIpAddresse +from isilon_sdk.v9_4_0.models.cluster_internal_networks_int_a_ip_addresse_extended import ClusterInternalNetworksIntAIpAddresseExtended +from isilon_sdk.v9_4_0.models.cluster_internal_networks_int_b_ip_addresse import ClusterInternalNetworksIntBIpAddresse +from isilon_sdk.v9_4_0.models.cluster_internal_networks_int_b_ip_addresse_extended import ClusterInternalNetworksIntBIpAddresseExtended +from isilon_sdk.v9_4_0.models.cluster_node_state_servicelight import ClusterNodeStateServicelight +from isilon_sdk.v9_4_0.models.cluster_node_state_servicelight_extended import ClusterNodeStateServicelightExtended +from isilon_sdk.v9_4_0.models.cluster_patch_patches_extended import ClusterPatchPatchesExtended +from isilon_sdk.v9_4_0.models.config_feature_extended import ConfigFeatureExtended +from isilon_sdk.v9_4_0.models.datamover_accounts_extended import DatamoverAccountsExtended +from isilon_sdk.v9_4_0.models.datamover_base_policies_extended import DatamoverBasePoliciesExtended +from isilon_sdk.v9_4_0.models.datamover_base_policy_create_params import DatamoverBasePolicyCreateParams +from isilon_sdk.v9_4_0.models.datamover_policies_extended import DatamoverPoliciesExtended +from isilon_sdk.v9_4_0.models.datamover_policy_policy_specific_attr_create_params import DatamoverPolicyPolicySpecificAttrCreateParams +from isilon_sdk.v9_4_0.models.dataset_filter_create_params import DatasetFilterCreateParams +from isilon_sdk.v9_4_0.models.dataset_filter_extended import DatasetFilterExtended +from isilon_sdk.v9_4_0.models.dataset_workload_create_params import DatasetWorkloadCreateParams +from isilon_sdk.v9_4_0.models.dataset_workload_extended import DatasetWorkloadExtended +from isilon_sdk.v9_4_0.models.dedupe_reports_extended import DedupeReportsExtended +from isilon_sdk.v9_4_0.models.event_alert_condition_create_params import EventAlertConditionCreateParams +from isilon_sdk.v9_4_0.models.event_alert_conditions_extended import EventAlertConditionsExtended +from isilon_sdk.v9_4_0.models.event_categories_extended import EventCategoriesExtended +from isilon_sdk.v9_4_0.models.event_channel_create_params import EventChannelCreateParams +from isilon_sdk.v9_4_0.models.event_channel_extended import EventChannelExtended +from isilon_sdk.v9_4_0.models.event_channels_extended import EventChannelsExtended +from isilon_sdk.v9_4_0.models.event_eventgroup_definitions_extended import EventEventgroupDefinitionsExtended +from isilon_sdk.v9_4_0.models.event_eventgroup_occurrences_extended import EventEventgroupOccurrencesExtended +from isilon_sdk.v9_4_0.models.event_eventlists_extended import EventEventlistsExtended +from isilon_sdk.v9_4_0.models.event_threshold_extended import EventThresholdExtended +from isilon_sdk.v9_4_0.models.filepool_policy_create_params import FilepoolPolicyCreateParams +from isilon_sdk.v9_4_0.models.fsa_result_extended import FsaResultExtended +from isilon_sdk.v9_4_0.models.fsa_results_extended import FsaResultsExtended +from isilon_sdk.v9_4_0.models.groupnet_subnet_create_params import GroupnetSubnetCreateParams +from isilon_sdk.v9_4_0.models.groupnet_subnet_extended import GroupnetSubnetExtended +from isilon_sdk.v9_4_0.models.groupnet_subnets_extended import GroupnetSubnetsExtended +from isilon_sdk.v9_4_0.models.hdfs_rack_create_params import HdfsRackCreateParams +from isilon_sdk.v9_4_0.models.hdfs_rack_extended import HdfsRackExtended +from isilon_sdk.v9_4_0.models.healthcheck_checklist_extended import HealthcheckChecklistExtended +from isilon_sdk.v9_4_0.models.healthcheck_checklists_extended import HealthcheckChecklistsExtended +from isilon_sdk.v9_4_0.models.healthcheck_evaluations_extended import HealthcheckEvaluationsExtended +from isilon_sdk.v9_4_0.models.healthcheck_items_extended import HealthcheckItemsExtended +from isilon_sdk.v9_4_0.models.healthcheck_parameter_create_params import HealthcheckParameterCreateParams +from isilon_sdk.v9_4_0.models.healthcheck_parameters_extended import HealthcheckParametersExtended +from isilon_sdk.v9_4_0.models.healthcheck_schedules_extended import HealthcheckSchedulesExtended +from isilon_sdk.v9_4_0.models.http_service_extended import HttpServiceExtended +from isilon_sdk.v9_4_0.models.id_resolution_domains_extended import IdResolutionDomainsExtended +from isilon_sdk.v9_4_0.models.id_resolution_lins_extended import IdResolutionLinsExtended +from isilon_sdk.v9_4_0.models.id_resolution_zones_extended import IdResolutionZonesExtended +from isilon_sdk.v9_4_0.models.job_jobs_extended import JobJobsExtended +from isilon_sdk.v9_4_0.models.job_policies_extended import JobPoliciesExtended +from isilon_sdk.v9_4_0.models.job_policy_create_params import JobPolicyCreateParams +from isilon_sdk.v9_4_0.models.job_policy_extended import JobPolicyExtended +from isilon_sdk.v9_4_0.models.job_type_extended import JobTypeExtended +from isilon_sdk.v9_4_0.models.job_types_extended import JobTypesExtended +from isilon_sdk.v9_4_0.models.kmip_server_create_params import KmipServerCreateParams +from isilon_sdk.v9_4_0.models.kmip_server_extended_extended import KmipServerExtendedExtended +from isilon_sdk.v9_4_0.models.lfn_extended import LfnExtended +from isilon_sdk.v9_4_0.models.lfn_item import LfnItem +from isilon_sdk.v9_4_0.models.license_licenses_extended import LicenseLicensesExtended +from isilon_sdk.v9_4_0.models.mapping_users_rules_parameters_default_unix_user import MappingUsersRulesParametersDefaultUnixUser +from isilon_sdk.v9_4_0.models.mapping_users_rules_rule_options_default_user import MappingUsersRulesRuleOptionsDefaultUser +from isilon_sdk.v9_4_0.models.mapping_users_rules_rule_user1 import MappingUsersRulesRuleUser1 +from isilon_sdk.v9_4_0.models.mapping_users_rules_rule_user2 import MappingUsersRulesRuleUser2 +from isilon_sdk.v9_4_0.models.ndmp_settings_preferred_ip_create_params import NdmpSettingsPreferredIpCreateParams +from isilon_sdk.v9_4_0.models.ndmp_settings_preferred_ips_extended import NdmpSettingsPreferredIpsExtended +from isilon_sdk.v9_4_0.models.ndmp_settings_variable_create_params import NdmpSettingsVariableCreateParams +from isilon_sdk.v9_4_0.models.ndmp_user_create_params import NdmpUserCreateParams +from isilon_sdk.v9_4_0.models.ndmp_users_extended import NdmpUsersExtended +from isilon_sdk.v9_4_0.models.network_groupnet_create_params import NetworkGroupnetCreateParams +from isilon_sdk.v9_4_0.models.network_groupnet_extended import NetworkGroupnetExtended +from isilon_sdk.v9_4_0.models.network_groupnets_extended import NetworkGroupnetsExtended +from isilon_sdk.v9_4_0.models.network_interfaces_extended import NetworkInterfacesExtended +from isilon_sdk.v9_4_0.models.nfs_alias_extended import NfsAliasExtended +from isilon_sdk.v9_4_0.models.nfs_export_extended import NfsExportExtended +from isilon_sdk.v9_4_0.models.node_state_node_servicelight import NodeStateNodeServicelight +from isilon_sdk.v9_4_0.models.ntp_servers_extended import NtpServersExtended +from isilon_sdk.v9_4_0.models.performance_dataset_create_params import PerformanceDatasetCreateParams +from isilon_sdk.v9_4_0.models.performance_dataset_extended import PerformanceDatasetExtended +from isilon_sdk.v9_4_0.models.pools_pool_rules_extended import PoolsPoolRulesExtended +from isilon_sdk.v9_4_0.models.providers_krb5_krb5_item_extended import ProvidersKrb5Krb5ItemExtended +from isilon_sdk.v9_4_0.models.quota_notification_create_params import QuotaNotificationCreateParams +from isilon_sdk.v9_4_0.models.quota_notification_extended import QuotaNotificationExtended +from isilon_sdk.v9_4_0.models.quota_notifications_extended import QuotaNotificationsExtended +from isilon_sdk.v9_4_0.models.report_subreports_extended import ReportSubreportsExtended +from isilon_sdk.v9_4_0.models.reports_report_subreports_extended import ReportsReportSubreportsExtended +from isilon_sdk.v9_4_0.models.reports_scans_extended import ReportsScansExtended +from isilon_sdk.v9_4_0.models.reports_threats_extended import ReportsThreatsExtended +from isilon_sdk.v9_4_0.models.result_directories_total_usage import ResultDirectoriesTotalUsage +from isilon_sdk.v9_4_0.models.result_directories_total_usage_extended import ResultDirectoriesTotalUsageExtended +from isilon_sdk.v9_4_0.models.s3_bucket_create_params import S3BucketCreateParams +from isilon_sdk.v9_4_0.models.s3_bucket_extended import S3BucketExtended +from isilon_sdk.v9_4_0.models.sed_status_node_extended import SedStatusNodeExtended +from isilon_sdk.v9_4_0.models.service_policy_extended_extended import ServicePolicyExtendedExtended +from isilon_sdk.v9_4_0.models.sessions_invalidation_create_params import SessionsInvalidationCreateParams +from isilon_sdk.v9_4_0.models.settings_krb5_domain_create_params import SettingsKrb5DomainCreateParams +from isilon_sdk.v9_4_0.models.settings_krb5_realm_create_params import SettingsKrb5RealmCreateParams +from isilon_sdk.v9_4_0.models.smb_shares_extended import SmbSharesExtended +from isilon_sdk.v9_4_0.models.snapshot_lock_create_params import SnapshotLockCreateParams +from isilon_sdk.v9_4_0.models.snapshot_schedule_create_params import SnapshotScheduleCreateParams +from isilon_sdk.v9_4_0.models.snapshot_snapshot_create_params import SnapshotSnapshotCreateParams +from isilon_sdk.v9_4_0.models.snapshot_snapshot_extended import SnapshotSnapshotExtended +from isilon_sdk.v9_4_0.models.snapshot_writable_extended import SnapshotWritableExtended +from isilon_sdk.v9_4_0.models.statistics_keys_extended import StatisticsKeysExtended +from isilon_sdk.v9_4_0.models.storagepool_nodepool_create_params import StoragepoolNodepoolCreateParams +from isilon_sdk.v9_4_0.models.storagepool_tier_create_params import StoragepoolTierCreateParams +from isilon_sdk.v9_4_0.models.storagepool_tier_extended import StoragepoolTierExtended +from isilon_sdk.v9_4_0.models.subnets_subnet_pools_extended import SubnetsSubnetPoolsExtended +from isilon_sdk.v9_4_0.models.swift_accounts_extended import SwiftAccountsExtended +from isilon_sdk.v9_4_0.models.sync_policy_extended_extended import SyncPolicyExtendedExtended +from isilon_sdk.v9_4_0.models.sync_rule_create_params import SyncRuleCreateParams +from isilon_sdk.v9_4_0.models.sync_rule_extended import SyncRuleExtended +from isilon_sdk.v9_4_0.models.throttling_bw_rule_create_params import ThrottlingBwRuleCreateParams +from isilon_sdk.v9_4_0.models.throttling_bw_rules_extended import ThrottlingBwRulesExtended +from isilon_sdk.v9_4_0.models.worm_domain_create_params import WormDomainCreateParams +from isilon_sdk.v9_4_0.models.worm_domain_extended import WormDomainExtended +from isilon_sdk.v9_4_0.models.worm_domains_extended import WormDomainsExtended +from isilon_sdk.v9_4_0.models.zone_create_params import ZoneCreateParams +from isilon_sdk.v9_4_0.models.zone_extended import ZoneExtended +from isilon_sdk.v9_4_0.models.zone_groups_extended import ZoneGroupsExtended +from isilon_sdk.v9_4_0.models.zone_users_extended import ZoneUsersExtended diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/access_point_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/access_point_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/access_point_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/access_point_create_params.py index 2f2059730..f03ec3a5a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/access_point_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/access_point_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/acl_object.py b/isilon_sdk/isilon_sdk/v9_4_0/models/acl_object.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/acl_object.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/acl_object.py index a6fcdbe46..00a06b58e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/acl_object.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/acl_object.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ads_provider_controllers.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ads_provider_controllers.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ads_provider_controllers.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ads_provider_controllers.py index b52eda092..680c490d9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ads_provider_controllers.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ads_provider_controllers.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ads_provider_controllers_controller.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ads_provider_controllers_controller.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ads_provider_controllers_controller.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ads_provider_controllers_controller.py index d036742c5..c876fd6c5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ads_provider_controllers_controller.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ads_provider_controllers_controller.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ads_provider_domains.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ads_provider_domains.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ads_provider_domains.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ads_provider_domains.py index 0e9b8a807..8af1bef39 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ads_provider_domains.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ads_provider_domains.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ads_provider_domains_domain.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ads_provider_domains_domain.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ads_provider_domains_domain.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ads_provider_domains_domain.py index 0acbe986c..ae1db06c5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ads_provider_domains_domain.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ads_provider_domains_domain.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ads_provider_search_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ads_provider_search_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ads_provider_search_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ads_provider_search_item.py index b3e24b016..2a45ecf99 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ads_provider_search_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ads_provider_search_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_policies.py b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_policies.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_policies.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_policies.py index 95719f6a5..d43516869 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_policies.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_policies.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_policies_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_policies_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_policies_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_policies_extended.py index fd6aede12..1a3873d8b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_policies_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_policies_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_policy.py b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_policy.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_policy.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_policy.py index 7e24467db..e2583f98f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_policy.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_policy.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_policy_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_policy_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_policy_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_policy_create_params.py index 926c6fb01..a90c1b815 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_policy_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_policy_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_policy_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_policy_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_policy_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_policy_extended.py index 668457a52..3cc284fb3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_policy_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_policy_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_quarantine.py b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_quarantine.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_quarantine.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_quarantine.py index 016f05085..e0ddb33e3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_quarantine.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_quarantine.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -90,8 +90,8 @@ def file(self, file): """ if file is None: raise ValueError("Invalid value for `file`, must not be `None`") # noqa: E501 - if file is not None and len(file) > 4096: - raise ValueError("Invalid value for `file`, length must be less than or equal to `4096`") # noqa: E501 + if file is not None and len(file) > 255: + raise ValueError("Invalid value for `file`, length must be less than or equal to `255`") # noqa: E501 if file is not None and len(file) < 0: raise ValueError("Invalid value for `file`, length must be greater than or equal to `0`") # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_quarantine_path_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_quarantine_path_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_quarantine_path_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_quarantine_path_params.py index ad4022ef1..75f7eac81 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_quarantine_path_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_quarantine_path_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_scan_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_scan_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_scan_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_scan_item.py index e2c553fef..3d7c5bdcb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_scan_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_scan_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_server.py b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_server.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_server.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_server.py index cdded4d5d..87341dca6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_server.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_server.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_server_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_server_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_server_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_server_create_params.py index 16eb412a6..ca20edcd9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_server_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_server_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_server_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_server_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_server_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_server_extended.py index 5070ca1df..52fd2a90a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_server_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_server_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_servers.py b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_servers.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_servers.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_servers.py index e3a50462e..437f569e9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_servers.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_servers.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_servers_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_servers_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_servers_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_servers_extended.py index b0d264376..43418e575 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_servers_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_servers_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_settings.py index 2d426a3a0..3522f2f2f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_settings_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_settings_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_settings_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_settings_extended.py index f02330820..b128ae94f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_settings_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_settings_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_settings_settings.py index 7ce753895..8c4ab3ae9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/antivirus_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/antivirus_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/audit_logs.py b/isilon_sdk/isilon_sdk/v9_4_0/models/audit_logs.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/audit_logs.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/audit_logs.py index d088c0f3d..e812b7e33 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/audit_logs.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/audit_logs.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/audit_logs_blocker_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/audit_logs_blocker_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/audit_logs_blocker_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/audit_logs_blocker_item.py index 5a4d313e0..6be6a3ab3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/audit_logs_blocker_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/audit_logs_blocker_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/audit_logs_deletion_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/audit_logs_deletion_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/audit_logs_deletion_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/audit_logs_deletion_item.py index 7eb49e025..f385a829b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/audit_logs_deletion_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/audit_logs_deletion_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/audit_progress.py b/isilon_sdk/isilon_sdk/v9_4_0/models/audit_progress.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/audit_progress.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/audit_progress.py index 08b153b27..f66a848e7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/audit_progress.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/audit_progress.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/audit_progress_progress.py b/isilon_sdk/isilon_sdk/v9_4_0/models/audit_progress_progress.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/audit_progress_progress.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/audit_progress_progress.py index 8e359d938..f04b34745 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/audit_progress_progress.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/audit_progress_progress.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/audit_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/audit_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/audit_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/audit_settings.py index 08d9bdec8..113cf0d5e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/audit_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/audit_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/audit_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/audit_settings_settings.py similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/models/audit_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/audit_settings_settings.py index 71a76d8bd..90d2fa035 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/audit_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/audit_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -82,7 +82,7 @@ def audit_failure(self, audit_failure): :param audit_failure: The audit_failure of this AuditSettingsSettings. # noqa: E501 :type: list[str] """ - allowed_values = ["close", "close_directory", "close_file", "close_file_modified", "close_file_unmodified", "create", "create_directory", "create_file", "delete", "delete_directory", "delete_file", "get_security", "get_security_directory", "get_security_file", "logoff", "logon", "open", "open_directory", "open_file", "open_file_noaccess", "open_file_read", "open_file_write", "read", "read_file", "rename", "rename_directory", "rename_file", "set_security", "set_security_directory", "set_security_file", "tree_connect", "write", "write_file", "share_access_check"] # noqa: E501 + allowed_values = ["close", "close_directory", "close_file", "close_file_modified", "close_file_unmodified", "create", "create_directory", "create_file", "delete", "delete_directory", "delete_file", "get_security", "get_security_directory", "get_security_file", "logoff", "logon", "open", "open_directory", "open_file", "open_file_noaccess", "open_file_read", "open_file_write", "read", "read_file", "rename", "rename_directory", "rename_file", "set_security", "set_security_directory", "set_security_file", "tree_connect", "write", "write_file"] # noqa: E501 if not set(audit_failure).issubset(set(allowed_values)): raise ValueError( "Invalid values for `audit_failure` [{0}], must be a subset of [{1}]" # noqa: E501 @@ -112,7 +112,7 @@ def audit_success(self, audit_success): :param audit_success: The audit_success of this AuditSettingsSettings. # noqa: E501 :type: list[str] """ - allowed_values = ["close", "close_directory", "close_file", "close_file_modified", "close_file_unmodified", "create", "create_directory", "create_file", "delete", "delete_directory", "delete_file", "get_security", "get_security_directory", "get_security_file", "logoff", "logon", "open", "open_directory", "open_file", "open_file_noaccess", "open_file_read", "open_file_write", "read", "read_file", "rename", "rename_directory", "rename_file", "set_security", "set_security_directory", "set_security_file", "tree_connect", "write", "write_file", "share_access_check"] # noqa: E501 + allowed_values = ["close", "close_directory", "close_file", "close_file_modified", "close_file_unmodified", "create", "create_directory", "create_file", "delete", "delete_directory", "delete_file", "get_security", "get_security_directory", "get_security_file", "logoff", "logon", "open", "open_directory", "open_file", "open_file_noaccess", "open_file_read", "open_file_write", "read", "read_file", "rename", "rename_directory", "rename_file", "set_security", "set_security_directory", "set_security_file", "tree_connect", "write", "write_file"] # noqa: E501 if not set(audit_success).issubset(set(allowed_values)): raise ValueError( "Invalid values for `audit_success` [{0}], must be a subset of [{1}]" # noqa: E501 @@ -142,7 +142,7 @@ def syslog_audit_events(self, syslog_audit_events): :param syslog_audit_events: The syslog_audit_events of this AuditSettingsSettings. # noqa: E501 :type: list[str] """ - allowed_values = ["close", "close_directory", "close_file", "close_file_modified", "close_file_unmodified", "create", "create_directory", "create_file", "delete", "delete_directory", "delete_file", "get_security", "get_security_directory", "get_security_file", "logoff", "logon", "open", "open_directory", "open_file", "open_file_noaccess", "open_file_read", "open_file_write", "read", "read_file", "rename", "rename_directory", "rename_file", "set_security", "set_security_directory", "set_security_file", "tree_connect", "write", "write_file", "share_access_check"] # noqa: E501 + allowed_values = ["close", "close_directory", "close_file", "close_file_modified", "close_file_unmodified", "create", "create_directory", "create_file", "delete", "delete_directory", "delete_file", "get_security", "get_security_directory", "get_security_file", "logoff", "logon", "open", "open_directory", "open_file", "open_file_noaccess", "open_file_read", "open_file_write", "read", "read_file", "rename", "rename_directory", "rename_file", "set_security", "set_security_directory", "set_security_file", "tree_connect", "write", "write_file"] # noqa: E501 if not set(syslog_audit_events).issubset(set(allowed_values)): raise ValueError( "Invalid values for `syslog_audit_events` [{0}], must be a subset of [{1}]" # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/audit_topic.py b/isilon_sdk/isilon_sdk/v9_4_0/models/audit_topic.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/audit_topic.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/audit_topic.py index 0e3aef285..282845674 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/audit_topic.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/audit_topic.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/audit_topic_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/audit_topic_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/audit_topic_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/audit_topic_create_params.py index b978a3aac..2ebc884f8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/audit_topic_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/audit_topic_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/audit_topic_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/audit_topic_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/audit_topic_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/audit_topic_extended.py index 9f3c98cf6..8a3a38ace 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/audit_topic_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/audit_topic_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/audit_topics.py b/isilon_sdk/isilon_sdk/v9_4_0/models/audit_topics.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/audit_topics.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/audit_topics.py index 16dc385fc..cc1081155 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/audit_topics.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/audit_topics.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_access.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_access.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_access.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_access.py index ff5f888ac..ce87262b7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_access.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_access.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_access_access_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_access_access_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_access_access_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_access_access_item.py index 5d2bd74d7..5ac497ca2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_access_access_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_access_access_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_access_access_item_file.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_access_access_item_file.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_access_access_item_file.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_access_access_item_file.py index 189a31f88..a9da2571e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_access_access_item_file.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_access_access_item_file.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_access_access_item_file_file_permissions.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_access_access_item_file_file_permissions.py similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_access_access_item_file_file_permissions.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_access_access_item_file_file_permissions.py index dc785317a..42f18d122 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_access_access_item_file_file_permissions.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_access_access_item_file_file_permissions.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -35,7 +35,7 @@ class AuthAccessAccessItemFileFilePermissions(object): 'expected': 'str', 'mode': 'str', 'ownership': 'bool', - 'relevant_aces': 'list[str]', + 'relevant_aces': 'list[AuthAccessAccessItemFileFilePermissionsRelevantAce]', 'relevant_mode': 'str', 'sticky': 'bool' } @@ -184,7 +184,7 @@ def relevant_aces(self): Specifies a list of the relevant Access Control Entrieswith respect to the user in the share. # noqa: E501 :return: The relevant_aces of this AuthAccessAccessItemFileFilePermissions. # noqa: E501 - :rtype: list[str] + :rtype: list[AuthAccessAccessItemFileFilePermissionsRelevantAce] """ return self._relevant_aces @@ -195,7 +195,7 @@ def relevant_aces(self, relevant_aces): Specifies a list of the relevant Access Control Entrieswith respect to the user in the share. # noqa: E501 :param relevant_aces: The relevant_aces of this AuthAccessAccessItemFileFilePermissions. # noqa: E501 - :type: list[str] + :type: list[AuthAccessAccessItemFileFilePermissionsRelevantAce] """ self._relevant_aces = relevant_aces diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_oauth_certificate_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_access_access_item_file_file_permissions_relevant_ace.py similarity index 60% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_oauth_certificate_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_access_access_item_file_file_permissions_relevant_ace.py index 8fa012b02..4de8b9e82 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_oauth_certificate_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_access_access_item_file_file_permissions_relevant_ace.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class CreateOauthCertificateResponse(object): +class AuthAccessAccessItemFileFilePermissionsRelevantAce(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -31,48 +31,48 @@ class CreateOauthCertificateResponse(object): and the value is json key in definition. """ swagger_types = { - 'id': 'str' + 'ace': 'str' } attribute_map = { - 'id': 'id' + 'ace': 'ace' } - def __init__(self, id=None): # noqa: E501 - """CreateOauthCertificateResponse - a model defined in Swagger""" # noqa: E501 + def __init__(self, ace=None): # noqa: E501 + """AuthAccessAccessItemFileFilePermissionsRelevantAce - a model defined in Swagger""" # noqa: E501 - self._id = None + self._ace = None self.discriminator = None - if id is not None: - self.id = id + if ace is not None: + self.ace = ace @property - def id(self): - """Gets the id of this CreateOauthCertificateResponse. # noqa: E501 + def ace(self): + """Gets the ace of this AuthAccessAccessItemFileFilePermissionsRelevantAce. # noqa: E501 - Unique identifier of the certificate. # noqa: E501 + Specifies properties for an Access Control Entry # noqa: E501 - :return: The id of this CreateOauthCertificateResponse. # noqa: E501 + :return: The ace of this AuthAccessAccessItemFileFilePermissionsRelevantAce. # noqa: E501 :rtype: str """ - return self._id + return self._ace - @id.setter - def id(self, id): - """Sets the id of this CreateOauthCertificateResponse. + @ace.setter + def ace(self, ace): + """Sets the ace of this AuthAccessAccessItemFileFilePermissionsRelevantAce. - Unique identifier of the certificate. # noqa: E501 + Specifies properties for an Access Control Entry # noqa: E501 - :param id: The id of this CreateOauthCertificateResponse. # noqa: E501 + :param ace: The ace of this AuthAccessAccessItemFileFilePermissionsRelevantAce. # noqa: E501 :type: str """ - if id is not None and len(id) > 255: - raise ValueError("Invalid value for `id`, length must be less than or equal to `255`") # noqa: E501 - if id is not None and len(id) < 1: - raise ValueError("Invalid value for `id`, length must be greater than or equal to `1`") # noqa: E501 + if ace is not None and len(ace) > 255: + raise ValueError("Invalid value for `ace`, length must be less than or equal to `255`") # noqa: E501 + if ace is not None and len(ace) < 0: + raise ValueError("Invalid value for `ace`, length must be greater than or equal to `0`") # noqa: E501 - self._id = id + self._ace = ace def to_dict(self): """Returns the model properties as a dict""" @@ -95,7 +95,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(CreateOauthCertificateResponse, dict): + if issubclass(AuthAccessAccessItemFileFilePermissionsRelevantAce, dict): for key, value in self.items(): result[key] = value @@ -111,7 +111,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, CreateOauthCertificateResponse): + if not isinstance(other, AuthAccessAccessItemFileFilePermissionsRelevantAce): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_access_access_item_file_group.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_access_access_item_file_group.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_access_access_item_file_group.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_access_access_item_file_group.py index da6d32999..a1ed0e3bd 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_access_access_item_file_group.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_access_access_item_file_group.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_access_access_item_share.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_access_access_item_share.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_access_access_item_share.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_access_access_item_share.py index 90fa8d412..d779c6bc0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_access_access_item_share.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_access_access_item_share.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_access_access_item_share_effective_user.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_access_access_item_share_effective_user.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_access_access_item_share_effective_user.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_access_access_item_share_effective_user.py index e7c26073b..393bb1b5b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_access_access_item_share_effective_user.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_access_access_item_share_effective_user.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_access_access_item_share_share_permissions.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_access_access_item_share_share_permissions.py similarity index 87% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_access_access_item_share_share_permissions.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_access_access_item_share_share_permissions.py index f647578a8..b9558c9e5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_access_access_item_share_share_permissions.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_access_access_item_share_share_permissions.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -34,26 +34,26 @@ class AuthAccessAccessItemShareSharePermissions(object): 'expected_permissions': 'str', 'impersonate_guest': 'bool', 'impersonate_user': 'bool', - 'relevant_share_aces': 'list[str]', - 'run_as_root': 'bool' + 'run_as_root': 'bool', + 'share_relevant_aces': 'list[AuthAccessAccessItemFileFilePermissionsRelevantAce]' } attribute_map = { 'expected_permissions': 'expected_permissions', 'impersonate_guest': 'impersonate_guest', 'impersonate_user': 'impersonate_user', - 'relevant_share_aces': 'relevant_share_aces', - 'run_as_root': 'run_as_root' + 'run_as_root': 'run_as_root', + 'share_relevant_aces': 'share_relevant_aces' } - def __init__(self, expected_permissions=None, impersonate_guest=None, impersonate_user=None, relevant_share_aces=None, run_as_root=None): # noqa: E501 + def __init__(self, expected_permissions=None, impersonate_guest=None, impersonate_user=None, run_as_root=None, share_relevant_aces=None): # noqa: E501 """AuthAccessAccessItemShareSharePermissions - a model defined in Swagger""" # noqa: E501 self._expected_permissions = None self._impersonate_guest = None self._impersonate_user = None - self._relevant_share_aces = None self._run_as_root = None + self._share_relevant_aces = None self.discriminator = None if expected_permissions is not None: @@ -62,10 +62,10 @@ def __init__(self, expected_permissions=None, impersonate_guest=None, impersonat self.impersonate_guest = impersonate_guest if impersonate_user is not None: self.impersonate_user = impersonate_user - if relevant_share_aces is not None: - self.relevant_share_aces = relevant_share_aces if run_as_root is not None: self.run_as_root = run_as_root + if share_relevant_aces is not None: + self.share_relevant_aces = share_relevant_aces @property def expected_permissions(self): @@ -140,29 +140,6 @@ def impersonate_user(self, impersonate_user): self._impersonate_user = impersonate_user - @property - def relevant_share_aces(self): - """Gets the relevant_share_aces of this AuthAccessAccessItemShareSharePermissions. # noqa: E501 - - Specifies a list of the relevant Access Control Entries withrespect to the user in the share. # noqa: E501 - - :return: The relevant_share_aces of this AuthAccessAccessItemShareSharePermissions. # noqa: E501 - :rtype: list[str] - """ - return self._relevant_share_aces - - @relevant_share_aces.setter - def relevant_share_aces(self, relevant_share_aces): - """Sets the relevant_share_aces of this AuthAccessAccessItemShareSharePermissions. - - Specifies a list of the relevant Access Control Entries withrespect to the user in the share. # noqa: E501 - - :param relevant_share_aces: The relevant_share_aces of this AuthAccessAccessItemShareSharePermissions. # noqa: E501 - :type: list[str] - """ - - self._relevant_share_aces = relevant_share_aces - @property def run_as_root(self): """Gets the run_as_root of this AuthAccessAccessItemShareSharePermissions. # noqa: E501 @@ -186,6 +163,29 @@ def run_as_root(self, run_as_root): self._run_as_root = run_as_root + @property + def share_relevant_aces(self): + """Gets the share_relevant_aces of this AuthAccessAccessItemShareSharePermissions. # noqa: E501 + + Specifies a list of the relevant Access Control Entries withrespect to the user in the share. # noqa: E501 + + :return: The share_relevant_aces of this AuthAccessAccessItemShareSharePermissions. # noqa: E501 + :rtype: list[AuthAccessAccessItemFileFilePermissionsRelevantAce] + """ + return self._share_relevant_aces + + @share_relevant_aces.setter + def share_relevant_aces(self, share_relevant_aces): + """Sets the share_relevant_aces of this AuthAccessAccessItemShareSharePermissions. + + Specifies a list of the relevant Access Control Entries withrespect to the user in the share. # noqa: E501 + + :param share_relevant_aces: The share_relevant_aces of this AuthAccessAccessItemShareSharePermissions. # noqa: E501 + :type: list[AuthAccessAccessItemFileFilePermissionsRelevantAce] + """ + + self._share_relevant_aces = share_relevant_aces + def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_cache_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_cache_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_cache_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_cache_item.py index 4018f2987..8b8f3ff12 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_cache_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_cache_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_error.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_error.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_error.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_error.py index 34086a509..3d637e7a7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_error.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_error.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_group.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_group.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_group.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_group.py index ca7b078a4..690ddfb0d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_group.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_group.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_group_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_group_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_group_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_group_create_params.py index 7dfede70b..2473ccfc3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_group_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_group_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_group_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_group_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_group_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_group_extended.py index 9cf5bc9d7..25d5b8699 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_group_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_group_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_group_object_history_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_group_object_history_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_group_object_history_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_group_object_history_item.py index af1f1212e..5a942455f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_group_object_history_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_group_object_history_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_groups.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_groups.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_groups.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_groups.py index c93008705..a9140ed9a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_groups.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_groups.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_groups_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_groups_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_groups_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_groups_extended.py index c346290e4..f97cb76ef 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_groups_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_groups_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_id.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_id.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_id.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_id.py index e4a0f5861..7348fd3d0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_id.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_id.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_id_ntoken.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_id_ntoken.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_id_ntoken.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_id_ntoken.py index f35ea9278..ac8246d29 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_id_ntoken.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_id_ntoken.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_id_ntoken_privilege_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_id_ntoken_privilege_item.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_id_ntoken_privilege_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_id_ntoken_privilege_item.py index 57e3d4f66..f67b49bfb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_id_ntoken_privilege_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_id_ntoken_privilege_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -132,7 +132,7 @@ def permission(self, permission): :param permission: The permission of this AuthIdNtokenPrivilegeItem. # noqa: E501 :type: str """ - allowed_values = ["+", "r", "w", "x", "-"] # noqa: E501 + allowed_values = ["r", "w", "x", "-"] # noqa: E501 if permission not in allowed_values: raise ValueError( "Invalid value for `permission` ({0}), must be one of {1}" # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_ldap_templates.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_ldap_templates.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_ldap_templates.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_ldap_templates.py index 27f77ffbb..8feba426f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_ldap_templates.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_ldap_templates.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_ldap_templates_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_ldap_templates_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_ldap_templates_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_ldap_templates_extended.py index fe7de8c15..4d98ebfe5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_ldap_templates_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_ldap_templates_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_ldap_templates_ldap_configuration_template.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_ldap_templates_ldap_configuration_template.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_ldap_templates_ldap_configuration_template.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_ldap_templates_ldap_configuration_template.py index 768b9b3dd..e505d5c6c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_ldap_templates_ldap_configuration_template.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_ldap_templates_ldap_configuration_template.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_ldap_templates_ldap_configuration_template_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_ldap_templates_ldap_configuration_template_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_ldap_templates_ldap_configuration_template_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_ldap_templates_ldap_configuration_template_extended.py index d6f89053d..2e3bfeb6e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_ldap_templates_ldap_configuration_template_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_ldap_templates_ldap_configuration_template_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_log_level.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_log_level.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_log_level.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_log_level.py index f1c37a870..31b59dbc1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_log_level.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_log_level.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_log_level_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_log_level_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_log_level_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_log_level_extended.py index 0975d9c19..655655b1b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_log_level_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_log_level_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_log_level_level.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_log_level_level.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_log_level_level.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_log_level_level.py index e0f619f13..52cdaf543 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_log_level_level.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_log_level_level.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_netgroup.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_netgroup.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_netgroup.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_netgroup.py index 1e1e50439..8e851184b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_netgroup.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_netgroup.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_netgroups.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_netgroups.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_netgroups.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_netgroups.py index e2d0a1516..435dab6f8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_netgroups.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_netgroups.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_privilege.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_privilege.py similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_privilege.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_privilege.py index bfe96ee4e..41490bf17 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_privilege.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_privilege.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -224,7 +224,7 @@ def parent_id(self, parent_id): def permission(self): """Gets the permission of this AuthPrivilege. # noqa: E501 - Permissions the privilege has: r=unary (on/off only) , x=read-execute, w=read-execute-write. # noqa: E501 + Permissions the privilege has r=read , x=read-execute, w=read-execute-write. # noqa: E501 :return: The permission of this AuthPrivilege. # noqa: E501 :rtype: str @@ -235,7 +235,7 @@ def permission(self): def permission(self, permission): """Sets the permission of this AuthPrivilege. - Permissions the privilege has: r=unary (on/off only) , x=read-execute, w=read-execute-write. # noqa: E501 + Permissions the privilege has r=read , x=read-execute, w=read-execute-write. # noqa: E501 :param permission: The permission of this AuthPrivilege. # noqa: E501 :type: str diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_privileges.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_privileges.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_privileges.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_privileges.py index 81ab6d099..2b4ff7684 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_privileges.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_privileges.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_role.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_role.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_role.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_role.py index fb183c032..4398bb787 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_role.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_role.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_role_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_role_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_role_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_role_create_params.py index 92398e6e6..ab26d7cf1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_role_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_role_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_role_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_role_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_role_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_role_extended.py index 4287c8fa4..8ee080946 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_role_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_role_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_roles.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_roles.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_roles.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_roles.py index 76ff45057..03bf6cbda 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_roles.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_roles.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_roles_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_roles_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_roles_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_roles_extended.py index d1775c6b6..4454b10d0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_roles_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_roles_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_shells.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_shells.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_shells.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_shells.py index e75e070bb..21a2a64ee 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_shells.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_shells.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_user.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_user.py similarity index 91% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_user.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_user.py index fd6e698c3..e57ac31ce 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_user.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_user.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,12 +31,12 @@ class AuthUser(object): and the value is json key in definition. """ swagger_types = { - 'disable_when_inactive': 'bool', 'email': 'str', 'enabled': 'bool', 'expiry': 'int', 'gecos': 'str', 'home_directory': 'str', + 'password': 'str', 'password_expires': 'bool', 'primary_group': 'AuthAccessAccessItemFileGroup', 'prompt_password_change': 'bool', @@ -47,12 +47,12 @@ class AuthUser(object): } attribute_map = { - 'disable_when_inactive': 'disable_when_inactive', 'email': 'email', 'enabled': 'enabled', 'expiry': 'expiry', 'gecos': 'gecos', 'home_directory': 'home_directory', + 'password': 'password', 'password_expires': 'password_expires', 'primary_group': 'primary_group', 'prompt_password_change': 'prompt_password_change', @@ -62,15 +62,15 @@ class AuthUser(object): 'unlock': 'unlock' } - def __init__(self, disable_when_inactive=None, email=None, enabled=None, expiry=None, gecos=None, home_directory=None, password_expires=None, primary_group=None, prompt_password_change=None, shell=None, sid=None, uid=None, unlock=None): # noqa: E501 + def __init__(self, email=None, enabled=None, expiry=None, gecos=None, home_directory=None, password=None, password_expires=None, primary_group=None, prompt_password_change=None, shell=None, sid=None, uid=None, unlock=None): # noqa: E501 """AuthUser - a model defined in Swagger""" # noqa: E501 - self._disable_when_inactive = None self._email = None self._enabled = None self._expiry = None self._gecos = None self._home_directory = None + self._password = None self._password_expires = None self._primary_group = None self._prompt_password_change = None @@ -80,8 +80,6 @@ def __init__(self, disable_when_inactive=None, email=None, enabled=None, expiry= self._unlock = None self.discriminator = None - if disable_when_inactive is not None: - self.disable_when_inactive = disable_when_inactive if email is not None: self.email = email if enabled is not None: @@ -92,6 +90,8 @@ def __init__(self, disable_when_inactive=None, email=None, enabled=None, expiry= self.gecos = gecos if home_directory is not None: self.home_directory = home_directory + if password is not None: + self.password = password if password_expires is not None: self.password_expires = password_expires if primary_group is not None: @@ -107,29 +107,6 @@ def __init__(self, disable_when_inactive=None, email=None, enabled=None, expiry= if unlock is not None: self.unlock = unlock - @property - def disable_when_inactive(self): - """Gets the disable_when_inactive of this AuthUser. # noqa: E501 - - The user account will be disabled when inactive beyond a period of time. # noqa: E501 - - :return: The disable_when_inactive of this AuthUser. # noqa: E501 - :rtype: bool - """ - return self._disable_when_inactive - - @disable_when_inactive.setter - def disable_when_inactive(self, disable_when_inactive): - """Sets the disable_when_inactive of this AuthUser. - - The user account will be disabled when inactive beyond a period of time. # noqa: E501 - - :param disable_when_inactive: The disable_when_inactive of this AuthUser. # noqa: E501 - :type: bool - """ - - self._disable_when_inactive = disable_when_inactive - @property def email(self): """Gets the email of this AuthUser. # noqa: E501 @@ -261,6 +238,33 @@ def home_directory(self, home_directory): self._home_directory = home_directory + @property + def password(self): + """Gets the password of this AuthUser. # noqa: E501 + + Changes the password for the user. # noqa: E501 + + :return: The password of this AuthUser. # noqa: E501 + :rtype: str + """ + return self._password + + @password.setter + def password(self, password): + """Sets the password of this AuthUser. + + Changes the password for the user. # noqa: E501 + + :param password: The password of this AuthUser. # noqa: E501 + :type: str + """ + if password is not None and len(password) > 255: + raise ValueError("Invalid value for `password`, length must be less than or equal to `255`") # noqa: E501 + if password is not None and len(password) < 0: + raise ValueError("Invalid value for `password`, length must be greater than or equal to `0`") # noqa: E501 + + self._password = password + @property def password_expires(self): """Gets the password_expires of this AuthUser. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_user_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_user_create_params.py similarity index 91% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_user_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_user_create_params.py index 0e273fbef..5f0df6dba 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_user_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_user_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,12 +31,12 @@ class AuthUserCreateParams(object): and the value is json key in definition. """ swagger_types = { - 'disable_when_inactive': 'bool', 'email': 'str', 'enabled': 'bool', 'expiry': 'int', 'gecos': 'str', 'home_directory': 'str', + 'password': 'str', 'password_expires': 'bool', 'primary_group': 'AuthAccessAccessItemFileGroup', 'prompt_password_change': 'bool', @@ -44,17 +44,16 @@ class AuthUserCreateParams(object): 'sid': 'str', 'uid': 'int', 'unlock': 'bool', - 'name': 'str', - 'password': 'str' + 'name': 'str' } attribute_map = { - 'disable_when_inactive': 'disable_when_inactive', 'email': 'email', 'enabled': 'enabled', 'expiry': 'expiry', 'gecos': 'gecos', 'home_directory': 'home_directory', + 'password': 'password', 'password_expires': 'password_expires', 'primary_group': 'primary_group', 'prompt_password_change': 'prompt_password_change', @@ -62,19 +61,18 @@ class AuthUserCreateParams(object): 'sid': 'sid', 'uid': 'uid', 'unlock': 'unlock', - 'name': 'name', - 'password': 'password' + 'name': 'name' } - def __init__(self, disable_when_inactive=None, email=None, enabled=None, expiry=None, gecos=None, home_directory=None, password_expires=None, primary_group=None, prompt_password_change=None, shell=None, sid=None, uid=None, unlock=None, name=None, password=None): # noqa: E501 + def __init__(self, email=None, enabled=None, expiry=None, gecos=None, home_directory=None, password=None, password_expires=None, primary_group=None, prompt_password_change=None, shell=None, sid=None, uid=None, unlock=None, name=None): # noqa: E501 """AuthUserCreateParams - a model defined in Swagger""" # noqa: E501 - self._disable_when_inactive = None self._email = None self._enabled = None self._expiry = None self._gecos = None self._home_directory = None + self._password = None self._password_expires = None self._primary_group = None self._prompt_password_change = None @@ -83,11 +81,8 @@ def __init__(self, disable_when_inactive=None, email=None, enabled=None, expiry= self._uid = None self._unlock = None self._name = None - self._password = None self.discriminator = None - if disable_when_inactive is not None: - self.disable_when_inactive = disable_when_inactive if email is not None: self.email = email if enabled is not None: @@ -98,6 +93,8 @@ def __init__(self, disable_when_inactive=None, email=None, enabled=None, expiry= self.gecos = gecos if home_directory is not None: self.home_directory = home_directory + if password is not None: + self.password = password if password_expires is not None: self.password_expires = password_expires if primary_group is not None: @@ -113,31 +110,6 @@ def __init__(self, disable_when_inactive=None, email=None, enabled=None, expiry= if unlock is not None: self.unlock = unlock self.name = name - if password is not None: - self.password = password - - @property - def disable_when_inactive(self): - """Gets the disable_when_inactive of this AuthUserCreateParams. # noqa: E501 - - The user account will be disabled when inactive beyond a period of time. # noqa: E501 - - :return: The disable_when_inactive of this AuthUserCreateParams. # noqa: E501 - :rtype: bool - """ - return self._disable_when_inactive - - @disable_when_inactive.setter - def disable_when_inactive(self, disable_when_inactive): - """Sets the disable_when_inactive of this AuthUserCreateParams. - - The user account will be disabled when inactive beyond a period of time. # noqa: E501 - - :param disable_when_inactive: The disable_when_inactive of this AuthUserCreateParams. # noqa: E501 - :type: bool - """ - - self._disable_when_inactive = disable_when_inactive @property def email(self): @@ -270,6 +242,33 @@ def home_directory(self, home_directory): self._home_directory = home_directory + @property + def password(self): + """Gets the password of this AuthUserCreateParams. # noqa: E501 + + Changes the password for the user. # noqa: E501 + + :return: The password of this AuthUserCreateParams. # noqa: E501 + :rtype: str + """ + return self._password + + @password.setter + def password(self, password): + """Sets the password of this AuthUserCreateParams. + + Changes the password for the user. # noqa: E501 + + :param password: The password of this AuthUserCreateParams. # noqa: E501 + :type: str + """ + if password is not None and len(password) > 255: + raise ValueError("Invalid value for `password`, length must be less than or equal to `255`") # noqa: E501 + if password is not None and len(password) < 0: + raise ValueError("Invalid value for `password`, length must be greater than or equal to `0`") # noqa: E501 + + self._password = password + @property def password_expires(self): """Gets the password_expires of this AuthUserCreateParams. # noqa: E501 @@ -472,33 +471,6 @@ def name(self, name): self._name = name - @property - def password(self): - """Gets the password of this AuthUserCreateParams. # noqa: E501 - - Changes the password for the user. # noqa: E501 - - :return: The password of this AuthUserCreateParams. # noqa: E501 - :rtype: str - """ - return self._password - - @password.setter - def password(self, password): - """Sets the password of this AuthUserCreateParams. - - Changes the password for the user. # noqa: E501 - - :param password: The password of this AuthUserCreateParams. # noqa: E501 - :type: str - """ - if password is not None and len(password) > 255: - raise ValueError("Invalid value for `password`, length must be less than or equal to `255`") # noqa: E501 - if password is not None and len(password) < 0: - raise ValueError("Invalid value for `password`, length must be greater than or equal to `0`") # noqa: E501 - - self._password = password - def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_user_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_user_extended.py similarity index 92% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_user_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_user_extended.py index 3939e288c..d1fab74da 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_user_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_user_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,7 +31,6 @@ class AuthUserExtended(object): and the value is json key in definition. """ swagger_types = { - 'disable_when_inactive': 'bool', 'dn': 'str', 'dns_domain': 'str', 'domain': 'str', @@ -46,7 +45,6 @@ class AuthUserExtended(object): 'gid': 'AuthAccessAccessItemFileGroup', 'home_directory': 'str', 'id': 'str', - 'last_logon': 'int', 'locked': 'bool', 'max_password_age': 'int', 'member_of': 'list[AuthAccessAccessItemFileGroup]', @@ -72,7 +70,6 @@ class AuthUserExtended(object): } attribute_map = { - 'disable_when_inactive': 'disable_when_inactive', 'dn': 'dn', 'dns_domain': 'dns_domain', 'domain': 'domain', @@ -87,7 +84,6 @@ class AuthUserExtended(object): 'gid': 'gid', 'home_directory': 'home_directory', 'id': 'id', - 'last_logon': 'last_logon', 'locked': 'locked', 'max_password_age': 'max_password_age', 'member_of': 'member_of', @@ -112,10 +108,9 @@ class AuthUserExtended(object): 'user_can_change_password': 'user_can_change_password' } - def __init__(self, disable_when_inactive=None, dn=None, dns_domain=None, domain=None, email=None, enabled=None, expired=None, expiry=None, gecos=None, generated_gid=None, generated_uid=None, generated_upn=None, gid=None, home_directory=None, id=None, last_logon=None, locked=None, max_password_age=None, member_of=None, name=None, object_history=None, on_disk_group_identity=None, on_disk_user_identity=None, password_expired=None, password_expires=None, password_expiry=None, password_last_set=None, primary_group_sid=None, prompt_password_change=None, provider=None, sam_account_name=None, shell=None, sid=None, ssh_public_keys=None, type=None, uid=None, upn=None, user_can_change_password=None): # noqa: E501 + def __init__(self, dn=None, dns_domain=None, domain=None, email=None, enabled=None, expired=None, expiry=None, gecos=None, generated_gid=None, generated_uid=None, generated_upn=None, gid=None, home_directory=None, id=None, locked=None, max_password_age=None, member_of=None, name=None, object_history=None, on_disk_group_identity=None, on_disk_user_identity=None, password_expired=None, password_expires=None, password_expiry=None, password_last_set=None, primary_group_sid=None, prompt_password_change=None, provider=None, sam_account_name=None, shell=None, sid=None, ssh_public_keys=None, type=None, uid=None, upn=None, user_can_change_password=None): # noqa: E501 """AuthUserExtended - a model defined in Swagger""" # noqa: E501 - self._disable_when_inactive = None self._dn = None self._dns_domain = None self._domain = None @@ -130,7 +125,6 @@ def __init__(self, disable_when_inactive=None, dn=None, dns_domain=None, domain= self._gid = None self._home_directory = None self._id = None - self._last_logon = None self._locked = None self._max_password_age = None self._member_of = None @@ -155,8 +149,6 @@ def __init__(self, disable_when_inactive=None, dn=None, dns_domain=None, domain= self._user_can_change_password = None self.discriminator = None - if disable_when_inactive is not None: - self.disable_when_inactive = disable_when_inactive if dn is not None: self.dn = dn if dns_domain is not None: @@ -182,8 +174,6 @@ def __init__(self, disable_when_inactive=None, dn=None, dns_domain=None, domain= if home_directory is not None: self.home_directory = home_directory self.id = id - if last_logon is not None: - self.last_logon = last_logon self.locked = locked if max_password_age is not None: self.max_password_age = max_password_age @@ -222,29 +212,6 @@ def __init__(self, disable_when_inactive=None, dn=None, dns_domain=None, domain= self.upn = upn self.user_can_change_password = user_can_change_password - @property - def disable_when_inactive(self): - """Gets the disable_when_inactive of this AuthUserExtended. # noqa: E501 - - The user account will be disabled when inactive beyond a period of time. # noqa: E501 - - :return: The disable_when_inactive of this AuthUserExtended. # noqa: E501 - :rtype: bool - """ - return self._disable_when_inactive - - @disable_when_inactive.setter - def disable_when_inactive(self, disable_when_inactive): - """Sets the disable_when_inactive of this AuthUserExtended. - - The user account will be disabled when inactive beyond a period of time. # noqa: E501 - - :param disable_when_inactive: The disable_when_inactive of this AuthUserExtended. # noqa: E501 - :type: bool - """ - - self._disable_when_inactive = disable_when_inactive - @property def dn(self): """Gets the dn of this AuthUserExtended. # noqa: E501 @@ -591,31 +558,6 @@ def id(self, id): self._id = id - @property - def last_logon(self): - """Gets the last_logon of this AuthUserExtended. # noqa: E501 - - - :return: The last_logon of this AuthUserExtended. # noqa: E501 - :rtype: int - """ - return self._last_logon - - @last_logon.setter - def last_logon(self, last_logon): - """Sets the last_logon of this AuthUserExtended. - - - :param last_logon: The last_logon of this AuthUserExtended. # noqa: E501 - :type: int - """ - if last_logon is not None and last_logon > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `last_logon`, must be a value less than or equal to `4294967295`") # noqa: E501 - if last_logon is not None and last_logon < 0: # noqa: E501 - raise ValueError("Invalid value for `last_logon`, must be a value greater than or equal to `0`") # noqa: E501 - - self._last_logon = last_logon - @property def locked(self): """Gets the locked of this AuthUserExtended. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_users.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_users.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_users.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_users.py index a75ca9897..fe1c1ca14 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_users.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_users.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_users_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_users_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_users_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_users_extended.py index e1c1405c8..8e6ec748f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_users_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_users_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_wellknowns.py b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_wellknowns.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/auth_wellknowns.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/auth_wellknowns.py index 430140ce5..75f8a9c2e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/auth_wellknowns.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/auth_wellknowns.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_filter.py b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_filter.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/avscan_filter.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/avscan_filter.py index 7c43d89c3..dbe10b45a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_filter.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_filter.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_filter_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_filter_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/avscan_filter_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/avscan_filter_extended.py index dc5498928..b894067a2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_filter_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_filter_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_filter_extended_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_filter_extended_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/avscan_filter_extended_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/avscan_filter_extended_extended.py index cf7087ad1..d0e40de71 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_filter_extended_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_filter_extended_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_filters.py b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_filters.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/avscan_filters.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/avscan_filters.py index 987f88b5e..9e23a835e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_filters.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_filters.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_filters_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_filters_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/avscan_filters_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/avscan_filters_extended.py index 0f7a4505a..cc04db3d9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_filters_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_filters_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_job.py b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_job.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/avscan_job.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/avscan_job.py index a0ecc709c..3e2a99e04 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_job.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_job.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_job_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_job_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/avscan_job_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/avscan_job_create_params.py index 6261ee687..1ad907397 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_job_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_job_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_job_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_job_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/avscan_job_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/avscan_job_extended.py index d449f5873..55ad8f998 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_job_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_job_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_jobs.py b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_jobs.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/avscan_jobs.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/avscan_jobs.py index 8c83211a7..943a1dd1c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_jobs.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_jobs.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_jobs_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_jobs_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/avscan_jobs_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/avscan_jobs_extended.py index 83fa3bed7..ced04d556 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_jobs_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_jobs_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_server.py b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_server.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/avscan_server.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/avscan_server.py index 92d7eb34e..0284fda58 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_server.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_server.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_server_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_server_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/avscan_server_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/avscan_server_create_params.py index 9738a55f8..a65510840 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_server_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_server_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_server_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_server_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/avscan_server_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/avscan_server_extended.py index 3a54a8335..38e684d27 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_server_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_server_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_servers.py b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_servers.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/avscan_servers.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/avscan_servers.py index e9231b6d6..cd80e6763 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_servers.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_servers.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_servers_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_servers_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/avscan_servers_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/avscan_servers_extended.py index 2bc786afd..d92c11ad2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_servers_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_servers_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/avscan_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/avscan_settings.py index f48383e3c..2d7e9f711 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_settings_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/avscan_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/avscan_settings_settings.py index ac263bbde..1231e9714 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/avscan_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/avscan_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/catalog_export.py b/isilon_sdk/isilon_sdk/v9_4_0/models/catalog_export.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/catalog_export.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/catalog_export.py index 99a0044f6..306461b72 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/catalog_export.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/catalog_export.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/catalog_import.py b/isilon_sdk/isilon_sdk/v9_4_0/models/catalog_import.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/catalog_import.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/catalog_import.py index 691bbd1bc..cf525c6b0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/catalog_import.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/catalog_import.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/catalog_list.py b/isilon_sdk/isilon_sdk/v9_4_0/models/catalog_list.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/catalog_list.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/catalog_list.py index c38f6d0f7..2cfd1c6ee 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/catalog_list.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/catalog_list.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/catalog_list_artifact.py b/isilon_sdk/isilon_sdk/v9_4_0/models/catalog_list_artifact.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/models/catalog_list_artifact.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/catalog_list_artifact.py index 4978f40ef..b4cae8001 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/catalog_list_artifact.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/catalog_list_artifact.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -103,7 +103,7 @@ def content_type(self, content_type): def desc(self): """Gets the desc of this CatalogListArtifact. # noqa: E501 - description of package # noqa: E501 + description of pacakge # noqa: E501 :return: The desc of this CatalogListArtifact. # noqa: E501 :rtype: str @@ -114,7 +114,7 @@ def desc(self): def desc(self, desc): """Sets the desc of this CatalogListArtifact. - description of package # noqa: E501 + description of pacakge # noqa: E501 :param desc: The desc of this CatalogListArtifact. # noqa: E501 :type: str diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/catalog_readme.py b/isilon_sdk/isilon_sdk/v9_4_0/models/catalog_readme.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/catalog_readme.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/catalog_readme.py index fa1d37f10..31b38bffe 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/catalog_readme.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/catalog_readme.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/catalog_remove.py b/isilon_sdk/isilon_sdk/v9_4_0/models/catalog_remove.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/catalog_remove.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/catalog_remove.py index 0eaea9002..07e5a0458 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/catalog_remove.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/catalog_remove.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/catalog_verify.py b/isilon_sdk/isilon_sdk/v9_4_0/models/catalog_verify.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/catalog_verify.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/catalog_verify.py index 05ab92fd3..af12749f1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/catalog_verify.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/catalog_verify.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/catalog_verify_artifact.py b/isilon_sdk/isilon_sdk/v9_4_0/models/catalog_verify_artifact.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/catalog_verify_artifact.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/catalog_verify_artifact.py index a4aea7331..3143529b2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/catalog_verify_artifact.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/catalog_verify_artifact.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/certificate_authority_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/certificate_authority_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/certificate_authority_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/certificate_authority_item.py index 506ebbf10..b1508c966 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/certificate_authority_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/certificate_authority_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_syslog_id_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/certificate_server_id_params.py similarity index 83% rename from isilon_sdk/isilon_sdk/v9_11_0/models/certificates_syslog_id_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/certificate_server_id_params.py index 9a48daaa6..14eaf59c1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_syslog_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/certificate_server_id_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class CertificatesSyslogIdParams(object): +class CertificateServerIdParams(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -41,7 +41,7 @@ class CertificatesSyslogIdParams(object): } def __init__(self, description=None, name=None): # noqa: E501 - """CertificatesSyslogIdParams - a model defined in Swagger""" # noqa: E501 + """CertificateServerIdParams - a model defined in Swagger""" # noqa: E501 self._description = None self._name = None @@ -54,22 +54,22 @@ def __init__(self, description=None, name=None): # noqa: E501 @property def description(self): - """Gets the description of this CertificatesSyslogIdParams. # noqa: E501 + """Gets the description of this CertificateServerIdParams. # noqa: E501 Description field associated with a certificate provided for administrative convenience. # noqa: E501 - :return: The description of this CertificatesSyslogIdParams. # noqa: E501 + :return: The description of this CertificateServerIdParams. # noqa: E501 :rtype: str """ return self._description @description.setter def description(self, description): - """Sets the description of this CertificatesSyslogIdParams. + """Sets the description of this CertificateServerIdParams. Description field associated with a certificate provided for administrative convenience. # noqa: E501 - :param description: The description of this CertificatesSyslogIdParams. # noqa: E501 + :param description: The description of this CertificateServerIdParams. # noqa: E501 :type: str """ if description is not None and len(description) > 2048: @@ -81,22 +81,22 @@ def description(self, description): @property def name(self): - """Gets the name of this CertificatesSyslogIdParams. # noqa: E501 + """Gets the name of this CertificateServerIdParams. # noqa: E501 Administrator specified name identifier. # noqa: E501 - :return: The name of this CertificatesSyslogIdParams. # noqa: E501 + :return: The name of this CertificateServerIdParams. # noqa: E501 :rtype: str """ return self._name @name.setter def name(self, name): - """Sets the name of this CertificatesSyslogIdParams. + """Sets the name of this CertificateServerIdParams. Administrator specified name identifier. # noqa: E501 - :param name: The name of this CertificatesSyslogIdParams. # noqa: E501 + :param name: The name of this CertificateServerIdParams. # noqa: E501 :type: str """ if name is not None and len(name) > 128: @@ -129,7 +129,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(CertificatesSyslogIdParams, dict): + if issubclass(CertificateServerIdParams, dict): for key, value in self.items(): result[key] = value @@ -145,7 +145,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, CertificatesSyslogIdParams): + if not isinstance(other, CertificateServerIdParams): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_syslog_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/certificate_server_item.py similarity index 84% rename from isilon_sdk/isilon_sdk/v9_11_0/models/certificates_syslog_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/certificate_server_item.py index 4631a8545..fe3159372 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_syslog_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/certificate_server_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class CertificatesSyslogItem(object): +class CertificateServerItem(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -47,7 +47,7 @@ class CertificatesSyslogItem(object): } def __init__(self, certificate_key_password=None, certificate_key_path=None, certificate_path=None, description=None, name=None): # noqa: E501 - """CertificatesSyslogItem - a model defined in Swagger""" # noqa: E501 + """CertificateServerItem - a model defined in Swagger""" # noqa: E501 self._certificate_key_password = None self._certificate_key_path = None @@ -67,22 +67,22 @@ def __init__(self, certificate_key_password=None, certificate_key_path=None, cer @property def certificate_key_password(self): - """Gets the certificate_key_password of this CertificatesSyslogItem. # noqa: E501 + """Gets the certificate_key_password of this CertificateServerItem. # noqa: E501 Optional private key password. # noqa: E501 - :return: The certificate_key_password of this CertificatesSyslogItem. # noqa: E501 + :return: The certificate_key_password of this CertificateServerItem. # noqa: E501 :rtype: str """ return self._certificate_key_password @certificate_key_password.setter def certificate_key_password(self, certificate_key_password): - """Sets the certificate_key_password of this CertificatesSyslogItem. + """Sets the certificate_key_password of this CertificateServerItem. Optional private key password. # noqa: E501 - :param certificate_key_password: The certificate_key_password of this CertificatesSyslogItem. # noqa: E501 + :param certificate_key_password: The certificate_key_password of this CertificateServerItem. # noqa: E501 :type: str """ if certificate_key_password is not None and len(certificate_key_password) > 256: @@ -94,22 +94,22 @@ def certificate_key_password(self, certificate_key_password): @property def certificate_key_path(self): - """Gets the certificate_key_path of this CertificatesSyslogItem. # noqa: E501 + """Gets the certificate_key_path of this CertificateServerItem. # noqa: E501 Local path to the certificate key that is to be imported. # noqa: E501 - :return: The certificate_key_path of this CertificatesSyslogItem. # noqa: E501 + :return: The certificate_key_path of this CertificateServerItem. # noqa: E501 :rtype: str """ return self._certificate_key_path @certificate_key_path.setter def certificate_key_path(self, certificate_key_path): - """Sets the certificate_key_path of this CertificatesSyslogItem. + """Sets the certificate_key_path of this CertificateServerItem. Local path to the certificate key that is to be imported. # noqa: E501 - :param certificate_key_path: The certificate_key_path of this CertificatesSyslogItem. # noqa: E501 + :param certificate_key_path: The certificate_key_path of this CertificateServerItem. # noqa: E501 :type: str """ if certificate_key_path is None: @@ -123,22 +123,22 @@ def certificate_key_path(self, certificate_key_path): @property def certificate_path(self): - """Gets the certificate_path of this CertificatesSyslogItem. # noqa: E501 + """Gets the certificate_path of this CertificateServerItem. # noqa: E501 Local path to the certificate that is to be imported. # noqa: E501 - :return: The certificate_path of this CertificatesSyslogItem. # noqa: E501 + :return: The certificate_path of this CertificateServerItem. # noqa: E501 :rtype: str """ return self._certificate_path @certificate_path.setter def certificate_path(self, certificate_path): - """Sets the certificate_path of this CertificatesSyslogItem. + """Sets the certificate_path of this CertificateServerItem. Local path to the certificate that is to be imported. # noqa: E501 - :param certificate_path: The certificate_path of this CertificatesSyslogItem. # noqa: E501 + :param certificate_path: The certificate_path of this CertificateServerItem. # noqa: E501 :type: str """ if certificate_path is None: @@ -152,22 +152,22 @@ def certificate_path(self, certificate_path): @property def description(self): - """Gets the description of this CertificatesSyslogItem. # noqa: E501 + """Gets the description of this CertificateServerItem. # noqa: E501 Description field associated with a certificate provided for administrative convenience. # noqa: E501 - :return: The description of this CertificatesSyslogItem. # noqa: E501 + :return: The description of this CertificateServerItem. # noqa: E501 :rtype: str """ return self._description @description.setter def description(self, description): - """Sets the description of this CertificatesSyslogItem. + """Sets the description of this CertificateServerItem. Description field associated with a certificate provided for administrative convenience. # noqa: E501 - :param description: The description of this CertificatesSyslogItem. # noqa: E501 + :param description: The description of this CertificateServerItem. # noqa: E501 :type: str """ if description is not None and len(description) > 2048: @@ -179,22 +179,22 @@ def description(self, description): @property def name(self): - """Gets the name of this CertificatesSyslogItem. # noqa: E501 + """Gets the name of this CertificateServerItem. # noqa: E501 Administrator specified name identifier. # noqa: E501 - :return: The name of this CertificatesSyslogItem. # noqa: E501 + :return: The name of this CertificateServerItem. # noqa: E501 :rtype: str """ return self._name @name.setter def name(self, name): - """Sets the name of this CertificatesSyslogItem. + """Sets the name of this CertificateServerItem. Administrator specified name identifier. # noqa: E501 - :param name: The name of this CertificatesSyslogItem. # noqa: E501 + :param name: The name of this CertificateServerItem. # noqa: E501 :type: str """ if name is not None and len(name) > 128: @@ -227,7 +227,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(CertificatesSyslogItem, dict): + if issubclass(CertificateServerItem, dict): for key, value in self.items(): result[key] = value @@ -243,7 +243,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, CertificatesSyslogItem): + if not isinstance(other, CertificateServerItem): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/certificate_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/certificate_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/certificate_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/certificate_settings.py index 4b3d23c73..7675b0dd6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/certificate_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/certificate_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/certificate_settings_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/certificate_settings_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/certificate_settings_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/certificate_settings_extended.py index 7d7059fac..99646505d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/certificate_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/certificate_settings_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/certificate_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/certificate_settings_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/certificate_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/certificate_settings_settings.py index 80aeeba4f..2f316e5bf 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/certificate_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/certificate_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_syslog.py b/isilon_sdk/isilon_sdk/v9_4_0/models/certificates_ca.py similarity index 80% rename from isilon_sdk/isilon_sdk/v9_11_0/models/certificates_syslog.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/certificates_ca.py index 6d10b4a86..e730e1bd5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_syslog.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/certificates_ca.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class CertificatesSyslog(object): +class CertificatesCa(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -31,7 +31,7 @@ class CertificatesSyslog(object): and the value is json key in definition. """ swagger_types = { - 'certificates': 'list[CertificatesSyslogCertificate]' + 'certificates': 'list[CertificatesCaCertificate]' } attribute_map = { @@ -39,7 +39,7 @@ class CertificatesSyslog(object): } def __init__(self, certificates=None): # noqa: E501 - """CertificatesSyslog - a model defined in Swagger""" # noqa: E501 + """CertificatesCa - a model defined in Swagger""" # noqa: E501 self._certificates = None self.discriminator = None @@ -49,21 +49,21 @@ def __init__(self, certificates=None): # noqa: E501 @property def certificates(self): - """Gets the certificates of this CertificatesSyslog. # noqa: E501 + """Gets the certificates of this CertificatesCa. # noqa: E501 - :return: The certificates of this CertificatesSyslog. # noqa: E501 - :rtype: list[CertificatesSyslogCertificate] + :return: The certificates of this CertificatesCa. # noqa: E501 + :rtype: list[CertificatesCaCertificate] """ return self._certificates @certificates.setter def certificates(self, certificates): - """Sets the certificates of this CertificatesSyslog. + """Sets the certificates of this CertificatesCa. - :param certificates: The certificates of this CertificatesSyslog. # noqa: E501 - :type: list[CertificatesSyslogCertificate] + :param certificates: The certificates of this CertificatesCa. # noqa: E501 + :type: list[CertificatesCaCertificate] """ self._certificates = certificates @@ -89,7 +89,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(CertificatesSyslog, dict): + if issubclass(CertificatesCa, dict): for key, value in self.items(): result[key] = value @@ -105,7 +105,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, CertificatesSyslog): + if not isinstance(other, CertificatesCa): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_syslog_certificate.py b/isilon_sdk/isilon_sdk/v9_4_0/models/certificates_ca_certificate.py similarity index 79% rename from isilon_sdk/isilon_sdk/v9_11_0/models/certificates_syslog_certificate.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/certificates_ca_certificate.py index c76e3cbc6..280bd347d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_syslog_certificate.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/certificates_ca_certificate.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class CertificatesSyslogCertificate(object): +class CertificatesCaCertificate(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -32,7 +32,7 @@ class CertificatesSyslogCertificate(object): """ swagger_types = { 'description': 'str', - 'fingerprints': 'list[CertificatesSyslogCertificateFingerprint]', + 'fingerprints': 'list[CertificatesCaCertificateFingerprint]', 'id': 'str', 'issuer': 'str', 'name': 'str', @@ -55,7 +55,7 @@ class CertificatesSyslogCertificate(object): } def __init__(self, description=None, fingerprints=None, id=None, issuer=None, name=None, not_after=None, not_before=None, status=None, subject=None): # noqa: E501 - """CertificatesSyslogCertificate - a model defined in Swagger""" # noqa: E501 + """CertificatesCaCertificate - a model defined in Swagger""" # noqa: E501 self._description = None self._fingerprints = None @@ -80,22 +80,22 @@ def __init__(self, description=None, fingerprints=None, id=None, issuer=None, na @property def description(self): - """Gets the description of this CertificatesSyslogCertificate. # noqa: E501 + """Gets the description of this CertificatesCaCertificate. # noqa: E501 Description field associated with a certificate provided for administrative convenience. # noqa: E501 - :return: The description of this CertificatesSyslogCertificate. # noqa: E501 + :return: The description of this CertificatesCaCertificate. # noqa: E501 :rtype: str """ return self._description @description.setter def description(self, description): - """Sets the description of this CertificatesSyslogCertificate. + """Sets the description of this CertificatesCaCertificate. Description field associated with a certificate provided for administrative convenience. # noqa: E501 - :param description: The description of this CertificatesSyslogCertificate. # noqa: E501 + :param description: The description of this CertificatesCaCertificate. # noqa: E501 :type: str """ if description is None: @@ -109,23 +109,23 @@ def description(self, description): @property def fingerprints(self): - """Gets the fingerprints of this CertificatesSyslogCertificate. # noqa: E501 + """Gets the fingerprints of this CertificatesCaCertificate. # noqa: E501 A list of zero or more certificate fingerprints which can be used for certificate identification. # noqa: E501 - :return: The fingerprints of this CertificatesSyslogCertificate. # noqa: E501 - :rtype: list[CertificatesSyslogCertificateFingerprint] + :return: The fingerprints of this CertificatesCaCertificate. # noqa: E501 + :rtype: list[CertificatesCaCertificateFingerprint] """ return self._fingerprints @fingerprints.setter def fingerprints(self, fingerprints): - """Sets the fingerprints of this CertificatesSyslogCertificate. + """Sets the fingerprints of this CertificatesCaCertificate. A list of zero or more certificate fingerprints which can be used for certificate identification. # noqa: E501 - :param fingerprints: The fingerprints of this CertificatesSyslogCertificate. # noqa: E501 - :type: list[CertificatesSyslogCertificateFingerprint] + :param fingerprints: The fingerprints of this CertificatesCaCertificate. # noqa: E501 + :type: list[CertificatesCaCertificateFingerprint] """ if fingerprints is None: raise ValueError("Invalid value for `fingerprints`, must not be `None`") # noqa: E501 @@ -134,22 +134,22 @@ def fingerprints(self, fingerprints): @property def id(self): - """Gets the id of this CertificatesSyslogCertificate. # noqa: E501 + """Gets the id of this CertificatesCaCertificate. # noqa: E501 Unique server certificate identifier. # noqa: E501 - :return: The id of this CertificatesSyslogCertificate. # noqa: E501 + :return: The id of this CertificatesCaCertificate. # noqa: E501 :rtype: str """ return self._id @id.setter def id(self, id): - """Sets the id of this CertificatesSyslogCertificate. + """Sets the id of this CertificatesCaCertificate. Unique server certificate identifier. # noqa: E501 - :param id: The id of this CertificatesSyslogCertificate. # noqa: E501 + :param id: The id of this CertificatesCaCertificate. # noqa: E501 :type: str """ if id is None: @@ -163,22 +163,22 @@ def id(self, id): @property def issuer(self): - """Gets the issuer of this CertificatesSyslogCertificate. # noqa: E501 + """Gets the issuer of this CertificatesCaCertificate. # noqa: E501 Certificate issuer field extracted from the certificate. # noqa: E501 - :return: The issuer of this CertificatesSyslogCertificate. # noqa: E501 + :return: The issuer of this CertificatesCaCertificate. # noqa: E501 :rtype: str """ return self._issuer @issuer.setter def issuer(self, issuer): - """Sets the issuer of this CertificatesSyslogCertificate. + """Sets the issuer of this CertificatesCaCertificate. Certificate issuer field extracted from the certificate. # noqa: E501 - :param issuer: The issuer of this CertificatesSyslogCertificate. # noqa: E501 + :param issuer: The issuer of this CertificatesCaCertificate. # noqa: E501 :type: str """ if issuer is None: @@ -192,22 +192,22 @@ def issuer(self, issuer): @property def name(self): - """Gets the name of this CertificatesSyslogCertificate. # noqa: E501 + """Gets the name of this CertificatesCaCertificate. # noqa: E501 Administrator specified name identifier. # noqa: E501 - :return: The name of this CertificatesSyslogCertificate. # noqa: E501 + :return: The name of this CertificatesCaCertificate. # noqa: E501 :rtype: str """ return self._name @name.setter def name(self, name): - """Sets the name of this CertificatesSyslogCertificate. + """Sets the name of this CertificatesCaCertificate. Administrator specified name identifier. # noqa: E501 - :param name: The name of this CertificatesSyslogCertificate. # noqa: E501 + :param name: The name of this CertificatesCaCertificate. # noqa: E501 :type: str """ if name is None: @@ -223,22 +223,22 @@ def name(self, name): @property def not_after(self): - """Gets the not_after of this CertificatesSyslogCertificate. # noqa: E501 + """Gets the not_after of this CertificatesCaCertificate. # noqa: E501 Certificate notAfter field extracted from the certificate encoded as a UNIX epoch timestamp. The certificate is not valid after this timestamp. # noqa: E501 - :return: The not_after of this CertificatesSyslogCertificate. # noqa: E501 + :return: The not_after of this CertificatesCaCertificate. # noqa: E501 :rtype: int """ return self._not_after @not_after.setter def not_after(self, not_after): - """Sets the not_after of this CertificatesSyslogCertificate. + """Sets the not_after of this CertificatesCaCertificate. Certificate notAfter field extracted from the certificate encoded as a UNIX epoch timestamp. The certificate is not valid after this timestamp. # noqa: E501 - :param not_after: The not_after of this CertificatesSyslogCertificate. # noqa: E501 + :param not_after: The not_after of this CertificatesCaCertificate. # noqa: E501 :type: int """ if not_after is None: @@ -252,22 +252,22 @@ def not_after(self, not_after): @property def not_before(self): - """Gets the not_before of this CertificatesSyslogCertificate. # noqa: E501 + """Gets the not_before of this CertificatesCaCertificate. # noqa: E501 Certificate notBefore field extracted from the certificate encoded as a UNIX epoch timestamp. The certificate is not valid before this timestamp. # noqa: E501 - :return: The not_before of this CertificatesSyslogCertificate. # noqa: E501 + :return: The not_before of this CertificatesCaCertificate. # noqa: E501 :rtype: int """ return self._not_before @not_before.setter def not_before(self, not_before): - """Sets the not_before of this CertificatesSyslogCertificate. + """Sets the not_before of this CertificatesCaCertificate. Certificate notBefore field extracted from the certificate encoded as a UNIX epoch timestamp. The certificate is not valid before this timestamp. # noqa: E501 - :param not_before: The not_before of this CertificatesSyslogCertificate. # noqa: E501 + :param not_before: The not_before of this CertificatesCaCertificate. # noqa: E501 :type: int """ if not_before is None: @@ -281,22 +281,22 @@ def not_before(self, not_before): @property def status(self): - """Gets the status of this CertificatesSyslogCertificate. # noqa: E501 + """Gets the status of this CertificatesCaCertificate. # noqa: E501 Certificate validity status # noqa: E501 - :return: The status of this CertificatesSyslogCertificate. # noqa: E501 + :return: The status of this CertificatesCaCertificate. # noqa: E501 :rtype: str """ return self._status @status.setter def status(self, status): - """Sets the status of this CertificatesSyslogCertificate. + """Sets the status of this CertificatesCaCertificate. Certificate validity status # noqa: E501 - :param status: The status of this CertificatesSyslogCertificate. # noqa: E501 + :param status: The status of this CertificatesCaCertificate. # noqa: E501 :type: str """ if status is None: @@ -312,22 +312,22 @@ def status(self, status): @property def subject(self): - """Gets the subject of this CertificatesSyslogCertificate. # noqa: E501 + """Gets the subject of this CertificatesCaCertificate. # noqa: E501 Certificate subject field extracted from the certificate. # noqa: E501 - :return: The subject of this CertificatesSyslogCertificate. # noqa: E501 + :return: The subject of this CertificatesCaCertificate. # noqa: E501 :rtype: str """ return self._subject @subject.setter def subject(self, subject): - """Sets the subject of this CertificatesSyslogCertificate. + """Sets the subject of this CertificatesCaCertificate. Certificate subject field extracted from the certificate. # noqa: E501 - :param subject: The subject of this CertificatesSyslogCertificate. # noqa: E501 + :param subject: The subject of this CertificatesCaCertificate. # noqa: E501 :type: str """ if subject is None: @@ -360,7 +360,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(CertificatesSyslogCertificate, dict): + if issubclass(CertificatesCaCertificate, dict): for key, value in self.items(): result[key] = value @@ -376,7 +376,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, CertificatesSyslogCertificate): + if not isinstance(other, CertificatesCaCertificate): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_syslog_certificate_fingerprint.py b/isilon_sdk/isilon_sdk/v9_4_0/models/certificates_ca_certificate_fingerprint.py similarity index 78% rename from isilon_sdk/isilon_sdk/v9_11_0/models/certificates_syslog_certificate_fingerprint.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/certificates_ca_certificate_fingerprint.py index 3917e3a73..023bb8179 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_syslog_certificate_fingerprint.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/certificates_ca_certificate_fingerprint.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class CertificatesSyslogCertificateFingerprint(object): +class CertificatesCaCertificateFingerprint(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -41,7 +41,7 @@ class CertificatesSyslogCertificateFingerprint(object): } def __init__(self, type=None, value=None): # noqa: E501 - """CertificatesSyslogCertificateFingerprint - a model defined in Swagger""" # noqa: E501 + """CertificatesCaCertificateFingerprint - a model defined in Swagger""" # noqa: E501 self._type = None self._value = None @@ -54,22 +54,22 @@ def __init__(self, type=None, value=None): # noqa: E501 @property def type(self): - """Gets the type of this CertificatesSyslogCertificateFingerprint. # noqa: E501 + """Gets the type of this CertificatesCaCertificateFingerprint. # noqa: E501 Fingerprint hash algorithm # noqa: E501 - :return: The type of this CertificatesSyslogCertificateFingerprint. # noqa: E501 + :return: The type of this CertificatesCaCertificateFingerprint. # noqa: E501 :rtype: str """ return self._type @type.setter def type(self, type): - """Sets the type of this CertificatesSyslogCertificateFingerprint. + """Sets the type of this CertificatesCaCertificateFingerprint. Fingerprint hash algorithm # noqa: E501 - :param type: The type of this CertificatesSyslogCertificateFingerprint. # noqa: E501 + :param type: The type of this CertificatesCaCertificateFingerprint. # noqa: E501 :type: str """ if type is not None and len(type) > 100: @@ -81,22 +81,22 @@ def type(self, type): @property def value(self): - """Gets the value of this CertificatesSyslogCertificateFingerprint. # noqa: E501 + """Gets the value of this CertificatesCaCertificateFingerprint. # noqa: E501 Fingerprint value # noqa: E501 - :return: The value of this CertificatesSyslogCertificateFingerprint. # noqa: E501 + :return: The value of this CertificatesCaCertificateFingerprint. # noqa: E501 :rtype: str """ return self._value @value.setter def value(self, value): - """Sets the value of this CertificatesSyslogCertificateFingerprint. + """Sets the value of this CertificatesCaCertificateFingerprint. Fingerprint value # noqa: E501 - :param value: The value of this CertificatesSyslogCertificateFingerprint. # noqa: E501 + :param value: The value of this CertificatesCaCertificateFingerprint. # noqa: E501 :type: str """ if value is not None and len(value) > 512: @@ -127,7 +127,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(CertificatesSyslogCertificateFingerprint, dict): + if issubclass(CertificatesCaCertificateFingerprint, dict): for key, value in self.items(): result[key] = value @@ -143,7 +143,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, CertificatesSyslogCertificateFingerprint): + if not isinstance(other, CertificatesCaCertificateFingerprint): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_syslog_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/certificates_ca_extended.py similarity index 77% rename from isilon_sdk/isilon_sdk/v9_11_0/models/certificates_syslog_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/certificates_ca_extended.py index 3fa1bdfc8..72e4a2e69 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_syslog_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/certificates_ca_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class CertificatesSyslogExtended(object): +class CertificatesCaExtended(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -31,7 +31,7 @@ class CertificatesSyslogExtended(object): and the value is json key in definition. """ swagger_types = { - 'certificates': 'list[CertificatesSyslogCertificate]', + 'certificates': 'list[CertificatesCaCertificate]', 'resume': 'str', 'total': 'int' } @@ -43,7 +43,7 @@ class CertificatesSyslogExtended(object): } def __init__(self, certificates=None, resume=None, total=None): # noqa: E501 - """CertificatesSyslogExtended - a model defined in Swagger""" # noqa: E501 + """CertificatesCaExtended - a model defined in Swagger""" # noqa: E501 self._certificates = None self._resume = None @@ -59,43 +59,43 @@ def __init__(self, certificates=None, resume=None, total=None): # noqa: E501 @property def certificates(self): - """Gets the certificates of this CertificatesSyslogExtended. # noqa: E501 + """Gets the certificates of this CertificatesCaExtended. # noqa: E501 - :return: The certificates of this CertificatesSyslogExtended. # noqa: E501 - :rtype: list[CertificatesSyslogCertificate] + :return: The certificates of this CertificatesCaExtended. # noqa: E501 + :rtype: list[CertificatesCaCertificate] """ return self._certificates @certificates.setter def certificates(self, certificates): - """Sets the certificates of this CertificatesSyslogExtended. + """Sets the certificates of this CertificatesCaExtended. - :param certificates: The certificates of this CertificatesSyslogExtended. # noqa: E501 - :type: list[CertificatesSyslogCertificate] + :param certificates: The certificates of this CertificatesCaExtended. # noqa: E501 + :type: list[CertificatesCaCertificate] """ self._certificates = certificates @property def resume(self): - """Gets the resume of this CertificatesSyslogExtended. # noqa: E501 + """Gets the resume of this CertificatesCaExtended. # noqa: E501 Provide this token as the 'resume' query argument to continue listing results. # noqa: E501 - :return: The resume of this CertificatesSyslogExtended. # noqa: E501 + :return: The resume of this CertificatesCaExtended. # noqa: E501 :rtype: str """ return self._resume @resume.setter def resume(self, resume): - """Sets the resume of this CertificatesSyslogExtended. + """Sets the resume of this CertificatesCaExtended. Provide this token as the 'resume' query argument to continue listing results. # noqa: E501 - :param resume: The resume of this CertificatesSyslogExtended. # noqa: E501 + :param resume: The resume of this CertificatesCaExtended. # noqa: E501 :type: str """ if resume is not None and len(resume) > 8192: @@ -107,22 +107,22 @@ def resume(self, resume): @property def total(self): - """Gets the total of this CertificatesSyslogExtended. # noqa: E501 + """Gets the total of this CertificatesCaExtended. # noqa: E501 Total number of items available. # noqa: E501 - :return: The total of this CertificatesSyslogExtended. # noqa: E501 + :return: The total of this CertificatesCaExtended. # noqa: E501 :rtype: int """ return self._total @total.setter def total(self, total): - """Sets the total of this CertificatesSyslogExtended. + """Sets the total of this CertificatesCaExtended. Total number of items available. # noqa: E501 - :param total: The total of this CertificatesSyslogExtended. # noqa: E501 + :param total: The total of this CertificatesCaExtended. # noqa: E501 :type: int """ if total is not None and total > 9223372036854775807: # noqa: E501 @@ -153,7 +153,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(CertificatesSyslogExtended, dict): + if issubclass(CertificatesCaExtended, dict): for key, value in self.items(): result[key] = value @@ -169,7 +169,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, CertificatesSyslogExtended): + if not isinstance(other, CertificatesCaExtended): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_ca_id_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/certificates_ca_id_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/certificates_ca_id_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/certificates_ca_id_params.py index af6652191..61c2dd6c0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_ca_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/certificates_ca_id_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_ca_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/certificates_ca_item.py similarity index 78% rename from isilon_sdk/isilon_sdk/v9_11_0/models/certificates_ca_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/certificates_ca_item.py index fc49bae1e..082d56357 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_ca_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/certificates_ca_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,63 +31,30 @@ class CertificatesCaItem(object): and the value is json key in definition. """ swagger_types = { - 'certificate_content': 'str', 'certificate_path': 'str', 'description': 'str', 'name': 'str' } attribute_map = { - 'certificate_content': 'certificate_content', 'certificate_path': 'certificate_path', 'description': 'description', 'name': 'name' } - def __init__(self, certificate_content=None, certificate_path=None, description=None, name=None): # noqa: E501 + def __init__(self, certificate_path=None, description=None, name=None): # noqa: E501 """CertificatesCaItem - a model defined in Swagger""" # noqa: E501 - self._certificate_content = None self._certificate_path = None self._description = None self._name = None self.discriminator = None - if certificate_content is not None: - self.certificate_content = certificate_content - if certificate_path is not None: - self.certificate_path = certificate_path + self.certificate_path = certificate_path if description is not None: self.description = description self.name = name - @property - def certificate_content(self): - """Gets the certificate_content of this CertificatesCaItem. # noqa: E501 - - Contents of certificate to add in non-binary format; Mutually exclusive with 'certificate_path' # noqa: E501 - - :return: The certificate_content of this CertificatesCaItem. # noqa: E501 - :rtype: str - """ - return self._certificate_content - - @certificate_content.setter - def certificate_content(self, certificate_content): - """Sets the certificate_content of this CertificatesCaItem. - - Contents of certificate to add in non-binary format; Mutually exclusive with 'certificate_path' # noqa: E501 - - :param certificate_content: The certificate_content of this CertificatesCaItem. # noqa: E501 - :type: str - """ - if certificate_content is not None and len(certificate_content) > 20971520: - raise ValueError("Invalid value for `certificate_content`, length must be less than or equal to `20971520`") # noqa: E501 - if certificate_content is not None and len(certificate_content) < 0: - raise ValueError("Invalid value for `certificate_content`, length must be greater than or equal to `0`") # noqa: E501 - - self._certificate_content = certificate_content - @property def certificate_path(self): """Gets the certificate_path of this CertificatesCaItem. # noqa: E501 @@ -108,6 +75,8 @@ def certificate_path(self, certificate_path): :param certificate_path: The certificate_path of this CertificatesCaItem. # noqa: E501 :type: str """ + if certificate_path is None: + raise ValueError("Invalid value for `certificate_path`, must not be `None`") # noqa: E501 if certificate_path is not None and len(certificate_path) > 1024: raise ValueError("Invalid value for `certificate_path`, length must be less than or equal to `1024`") # noqa: E501 if certificate_path is not None and len(certificate_path) < 1: diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_identity.py b/isilon_sdk/isilon_sdk/v9_4_0/models/certificates_identity.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/certificates_identity.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/certificates_identity.py index ad7a35740..964a6dd0e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_identity.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/certificates_identity.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_identity_certificate.py b/isilon_sdk/isilon_sdk/v9_4_0/models/certificates_identity_certificate.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/models/certificates_identity_certificate.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/certificates_identity_certificate.py index fd43ebb9d..4efbb7c14 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_identity_certificate.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/certificates_identity_certificate.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -33,7 +33,7 @@ class CertificatesIdentityCertificate(object): swagger_types = { 'description': 'str', 'dnsnames': 'list[str]', - 'fingerprints': 'list[CertificatesSyslogCertificateFingerprint]', + 'fingerprints': 'list[CertificatesCaCertificateFingerprint]', 'id': 'str', 'issuer': 'str', 'name': 'str', @@ -143,7 +143,7 @@ def fingerprints(self): A list of zero or more certificate fingerprints which can be used for certificate identification. # noqa: E501 :return: The fingerprints of this CertificatesIdentityCertificate. # noqa: E501 - :rtype: list[CertificatesSyslogCertificateFingerprint] + :rtype: list[CertificatesCaCertificateFingerprint] """ return self._fingerprints @@ -154,7 +154,7 @@ def fingerprints(self, fingerprints): A list of zero or more certificate fingerprints which can be used for certificate identification. # noqa: E501 :param fingerprints: The fingerprints of this CertificatesIdentityCertificate. # noqa: E501 - :type: list[CertificatesSyslogCertificateFingerprint] + :type: list[CertificatesCaCertificateFingerprint] """ if fingerprints is None: raise ValueError("Invalid value for `fingerprints`, must not be `None`") # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_identity_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/certificates_identity_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/certificates_identity_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/certificates_identity_extended.py index 386d20cb9..27119f2e7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_identity_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/certificates_identity_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_identity_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/certificates_identity_item.py similarity index 72% rename from isilon_sdk/isilon_sdk/v9_11_0/models/certificates_identity_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/certificates_identity_item.py index 20c8662a3..5103ea9e3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_identity_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/certificates_identity_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,8 +31,6 @@ class CertificatesIdentityItem(object): and the value is json key in definition. """ swagger_types = { - 'certificate_content': 'str', - 'certificate_key_content': 'str', 'certificate_key_password': 'str', 'certificate_key_path': 'str', 'certificate_path': 'str', @@ -41,8 +39,6 @@ class CertificatesIdentityItem(object): } attribute_map = { - 'certificate_content': 'certificate_content', - 'certificate_key_content': 'certificate_key_content', 'certificate_key_password': 'certificate_key_password', 'certificate_key_path': 'certificate_key_path', 'certificate_path': 'certificate_path', @@ -50,11 +46,9 @@ class CertificatesIdentityItem(object): 'name': 'name' } - def __init__(self, certificate_content=None, certificate_key_content=None, certificate_key_password=None, certificate_key_path=None, certificate_path=None, description=None, name=None): # noqa: E501 + def __init__(self, certificate_key_password=None, certificate_key_path=None, certificate_path=None, description=None, name=None): # noqa: E501 """CertificatesIdentityItem - a model defined in Swagger""" # noqa: E501 - self._certificate_content = None - self._certificate_key_content = None self._certificate_key_password = None self._certificate_key_path = None self._certificate_path = None @@ -62,74 +56,15 @@ def __init__(self, certificate_content=None, certificate_key_content=None, certi self._name = None self.discriminator = None - if certificate_content is not None: - self.certificate_content = certificate_content - if certificate_key_content is not None: - self.certificate_key_content = certificate_key_content if certificate_key_password is not None: self.certificate_key_password = certificate_key_password if certificate_key_path is not None: self.certificate_key_path = certificate_key_path - if certificate_path is not None: - self.certificate_path = certificate_path + self.certificate_path = certificate_path if description is not None: self.description = description self.name = name - @property - def certificate_content(self): - """Gets the certificate_content of this CertificatesIdentityItem. # noqa: E501 - - Contents of certificate to add in non-binary format; Mutually exclusive with 'certificate_path' # noqa: E501 - - :return: The certificate_content of this CertificatesIdentityItem. # noqa: E501 - :rtype: str - """ - return self._certificate_content - - @certificate_content.setter - def certificate_content(self, certificate_content): - """Sets the certificate_content of this CertificatesIdentityItem. - - Contents of certificate to add in non-binary format; Mutually exclusive with 'certificate_path' # noqa: E501 - - :param certificate_content: The certificate_content of this CertificatesIdentityItem. # noqa: E501 - :type: str - """ - if certificate_content is not None and len(certificate_content) > 20971520: - raise ValueError("Invalid value for `certificate_content`, length must be less than or equal to `20971520`") # noqa: E501 - if certificate_content is not None and len(certificate_content) < 0: - raise ValueError("Invalid value for `certificate_content`, length must be greater than or equal to `0`") # noqa: E501 - - self._certificate_content = certificate_content - - @property - def certificate_key_content(self): - """Gets the certificate_key_content of this CertificatesIdentityItem. # noqa: E501 - - Contents of certificate key to add in non-binary format; Mutually exclusive with 'certificate_key_path' # noqa: E501 - - :return: The certificate_key_content of this CertificatesIdentityItem. # noqa: E501 - :rtype: str - """ - return self._certificate_key_content - - @certificate_key_content.setter - def certificate_key_content(self, certificate_key_content): - """Sets the certificate_key_content of this CertificatesIdentityItem. - - Contents of certificate key to add in non-binary format; Mutually exclusive with 'certificate_key_path' # noqa: E501 - - :param certificate_key_content: The certificate_key_content of this CertificatesIdentityItem. # noqa: E501 - :type: str - """ - if certificate_key_content is not None and len(certificate_key_content) > 20971520: - raise ValueError("Invalid value for `certificate_key_content`, length must be less than or equal to `20971520`") # noqa: E501 - if certificate_key_content is not None and len(certificate_key_content) < 0: - raise ValueError("Invalid value for `certificate_key_content`, length must be greater than or equal to `0`") # noqa: E501 - - self._certificate_key_content = certificate_key_content - @property def certificate_key_password(self): """Gets the certificate_key_password of this CertificatesIdentityItem. # noqa: E501 @@ -204,6 +139,8 @@ def certificate_path(self, certificate_path): :param certificate_path: The certificate_path of this CertificatesIdentityItem. # noqa: E501 :type: str """ + if certificate_path is None: + raise ValueError("Invalid value for `certificate_path`, must not be `None`") # noqa: E501 if certificate_path is not None and len(certificate_path) > 1024: raise ValueError("Invalid value for `certificate_path`, length must be less than or equal to `1024`") # noqa: E501 if certificate_path is not None and len(certificate_path) < 1: diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_peer.py b/isilon_sdk/isilon_sdk/v9_4_0/models/certificates_peer.py similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/models/certificates_peer.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/certificates_peer.py index 358e69513..8ebe37b9d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_peer.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/certificates_peer.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,7 +31,7 @@ class CertificatesPeer(object): and the value is json key in definition. """ swagger_types = { - 'certificates': 'list[CertificatesSyslogCertificate]', + 'certificates': 'list[CertificatesCaCertificate]', 'resume': 'str', 'total': 'int' } @@ -63,7 +63,7 @@ def certificates(self): :return: The certificates of this CertificatesPeer. # noqa: E501 - :rtype: list[CertificatesSyslogCertificate] + :rtype: list[CertificatesCaCertificate] """ return self._certificates @@ -73,7 +73,7 @@ def certificates(self, certificates): :param certificates: The certificates of this CertificatesPeer. # noqa: E501 - :type: list[CertificatesSyslogCertificate] + :type: list[CertificatesCaCertificate] """ self._certificates = certificates diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_server.py b/isilon_sdk/isilon_sdk/v9_4_0/models/certificates_server.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/certificates_server.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/certificates_server.py index 08fba757b..5e537de77 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/certificates_server.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/certificates_server.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/changelist_entries.py b/isilon_sdk/isilon_sdk/v9_4_0/models/changelist_entries.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/changelist_entries.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/changelist_entries.py index 853e5fa1d..06b2275ba 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/changelist_entries.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/changelist_entries.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/changelist_entries_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/changelist_entries_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/changelist_entries_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/changelist_entries_extended.py index 3f2672e1a..8599dfd08 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/changelist_entries_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/changelist_entries_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/changelist_entry.py b/isilon_sdk/isilon_sdk/v9_4_0/models/changelist_entry.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/models/changelist_entry.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/changelist_entry.py index 5b04506ed..996f9d7dc 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/changelist_entry.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/changelist_entry.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -554,6 +554,8 @@ def physical_size(self, physical_size): """ if physical_size is None: raise ValueError("Invalid value for `physical_size`, must not be `None`") # noqa: E501 + if physical_size is not None and physical_size > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `physical_size`, must be a value less than or equal to `4294967295`") # noqa: E501 if physical_size is not None and physical_size < 0: # noqa: E501 raise ValueError("Invalid value for `physical_size`, must be a value greater than or equal to `0`") # noqa: E501 @@ -581,6 +583,8 @@ def size(self, size): """ if size is None: raise ValueError("Invalid value for `size`, must not be `None`") # noqa: E501 + if size is not None and size > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `size`, must be a value less than or equal to `4294967295`") # noqa: E501 if size is not None and size < 0: # noqa: E501 raise ValueError("Invalid value for `size`, must be a value greater than or equal to `0`") # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/changelist_entry_atime.py b/isilon_sdk/isilon_sdk/v9_4_0/models/changelist_entry_atime.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/changelist_entry_atime.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/changelist_entry_atime.py index 35a1b5afc..e5723dd6e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/changelist_entry_atime.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/changelist_entry_atime.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/changelist_lins.py b/isilon_sdk/isilon_sdk/v9_4_0/models/changelist_lins.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/changelist_lins.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/changelist_lins.py index 4955acda5..d69681cb9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/changelist_lins.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/changelist_lins.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/changelist_lins_atime.py b/isilon_sdk/isilon_sdk/v9_4_0/models/changelist_lins_atime.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/changelist_lins_atime.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/changelist_lins_atime.py index 4276ea08a..82e78c63b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/changelist_lins_atime.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/changelist_lins_atime.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/changelist_lins_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/changelist_lins_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/changelist_lins_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/changelist_lins_extended.py index a473505d8..a4dd60d42 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/changelist_lins_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/changelist_lins_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/changelists_changelist_diff_regions.py b/isilon_sdk/isilon_sdk/v9_4_0/models/changelists_changelist_diff_regions.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/changelists_changelist_diff_regions.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/changelists_changelist_diff_regions.py index f81ba2422..bea1941f0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/changelists_changelist_diff_regions.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/changelists_changelist_diff_regions.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/changelists_changelist_diff_regions_diff_region.py b/isilon_sdk/isilon_sdk/v9_4_0/models/changelists_changelist_diff_regions_diff_region.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/changelists_changelist_diff_regions_diff_region.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/changelists_changelist_diff_regions_diff_region.py index 389f41654..8c364df8b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/changelists_changelist_diff_regions_diff_region.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/changelists_changelist_diff_regions_diff_region.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/check_report.py b/isilon_sdk/isilon_sdk/v9_4_0/models/check_report.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/check_report.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/check_report.py index 2e75f7493..e17fbc74b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/check_report.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/check_report.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/check_report_report_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/check_report_report_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/check_report_report_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/check_report_report_item.py index 1bc5acb48..9dbbe9a08 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/check_report_report_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/check_report_report_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/check_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/check_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/check_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/check_settings.py index 5efa8608c..360044516 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/check_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/check_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/check_settings_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/check_settings_extended.py similarity index 70% rename from isilon_sdk/isilon_sdk/v9_11_0/models/check_settings_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/check_settings_extended.py index c2d288111..bc3273112 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/check_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/check_settings_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,21 +31,26 @@ class CheckSettingsExtended(object): and the value is json key in definition. """ swagger_types = { - 'action': 'str' + 'action': 'str', + 'stig_path': 'str' } attribute_map = { - 'action': 'action' + 'action': 'action', + 'stig_path': 'stig_path' } - def __init__(self, action=None): # noqa: E501 + def __init__(self, action=None, stig_path=None): # noqa: E501 """CheckSettingsExtended - a model defined in Swagger""" # noqa: E501 self._action = None + self._stig_path = None self.discriminator = None if action is not None: self.action = action + if stig_path is not None: + self.stig_path = stig_path @property def action(self): @@ -70,6 +75,33 @@ def action(self, action): self._action = action + @property + def stig_path(self): + """Gets the stig_path of this CheckSettingsExtended. # noqa: E501 + + Security Hardening file path # noqa: E501 + + :return: The stig_path of this CheckSettingsExtended. # noqa: E501 + :rtype: str + """ + return self._stig_path + + @stig_path.setter + def stig_path(self, stig_path): + """Sets the stig_path of this CheckSettingsExtended. + + Security Hardening file path # noqa: E501 + + :param stig_path: The stig_path of this CheckSettingsExtended. # noqa: E501 + :type: str + """ + if stig_path is not None and len(stig_path) > 4096: + raise ValueError("Invalid value for `stig_path`, length must be less than or equal to `4096`") # noqa: E501 + if stig_path is not None and len(stig_path) < 0: + raise ValueError("Invalid value for `stig_path`, length must be greater than or equal to `0`") # noqa: E501 + + self._stig_path = stig_path + def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/check_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/check_settings_settings.py similarity index 72% rename from isilon_sdk/isilon_sdk/v9_11_0/models/check_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/check_settings_settings.py index a501a99eb..b80bc28ba 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/check_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/check_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,21 +31,26 @@ class CheckSettingsSettings(object): and the value is json key in definition. """ swagger_types = { - 'action': 'str' + 'action': 'str', + 'stig_path': 'str' } attribute_map = { - 'action': 'action' + 'action': 'action', + 'stig_path': 'stig_path' } - def __init__(self, action=None): # noqa: E501 + def __init__(self, action=None, stig_path=None): # noqa: E501 """CheckSettingsSettings - a model defined in Swagger""" # noqa: E501 self._action = None + self._stig_path = None self.discriminator = None if action is not None: self.action = action + if stig_path is not None: + self.stig_path = stig_path @property def action(self): @@ -76,6 +81,33 @@ def action(self, action): self._action = action + @property + def stig_path(self): + """Gets the stig_path of this CheckSettingsSettings. # noqa: E501 + + Security Hardening file path # noqa: E501 + + :return: The stig_path of this CheckSettingsSettings. # noqa: E501 + :rtype: str + """ + return self._stig_path + + @stig_path.setter + def stig_path(self, stig_path): + """Sets the stig_path of this CheckSettingsSettings. + + Security Hardening file path # noqa: E501 + + :param stig_path: The stig_path of this CheckSettingsSettings. # noqa: E501 + :type: str + """ + if stig_path is not None and len(stig_path) > 4096: + raise ValueError("Invalid value for `stig_path`, length must be less than or equal to `4096`") # noqa: E501 + if stig_path is not None and len(stig_path) < 0: + raise ValueError("Invalid value for `stig_path`, length must be greater than or equal to `0`") # noqa: E501 + + self._stig_path = stig_path + def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_access.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_access.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_access.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_access.py index 727cbbb61..1064e38a4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_access.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_access.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_access_cluster.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_access_cluster.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_access_cluster.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_access_cluster.py index abeeeb621..ae8e11fbf 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_access_cluster.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_access_cluster.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_access_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_access_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_access_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_access_extended.py index 00b857bf8..680644453 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_access_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_access_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_access_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_access_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_access_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_access_item.py index 418b668a4..f8874e387 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_access_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_access_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_account.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_account.py similarity index 90% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_account.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_account.py index 0f84604ea..151936c50 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_account.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_account.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -38,7 +38,6 @@ class CloudAccount(object): 'enable_ocsp': 'bool', 'enabled': 'bool', 'key': 'str', - 'maximum_capacity': 'int', 'name': 'str', 'ocsp_responder_url_required': 'bool', 'proxy': 'str', @@ -57,7 +56,6 @@ class CloudAccount(object): 'enable_ocsp': 'enable_ocsp', 'enabled': 'enabled', 'key': 'key', - 'maximum_capacity': 'maximum_capacity', 'name': 'name', 'ocsp_responder_url_required': 'ocsp_responder_url_required', 'proxy': 'proxy', @@ -68,7 +66,7 @@ class CloudAccount(object): 'uri': 'uri' } - def __init__(self, account_id=None, account_username=None, birth_cluster_id=None, credential_provider=None, enable_ocsp=None, enabled=None, key=None, maximum_capacity=None, name=None, ocsp_responder_url_required=None, proxy=None, skip_account_check=None, skip_ssl_validation=None, storage_region=None, telemetry_bucket=None, uri=None): # noqa: E501 + def __init__(self, account_id=None, account_username=None, birth_cluster_id=None, credential_provider=None, enable_ocsp=None, enabled=None, key=None, name=None, ocsp_responder_url_required=None, proxy=None, skip_account_check=None, skip_ssl_validation=None, storage_region=None, telemetry_bucket=None, uri=None): # noqa: E501 """CloudAccount - a model defined in Swagger""" # noqa: E501 self._account_id = None @@ -78,7 +76,6 @@ def __init__(self, account_id=None, account_username=None, birth_cluster_id=None self._enable_ocsp = None self._enabled = None self._key = None - self._maximum_capacity = None self._name = None self._ocsp_responder_url_required = None self._proxy = None @@ -103,8 +100,6 @@ def __init__(self, account_id=None, account_username=None, birth_cluster_id=None self.enabled = enabled if key is not None: self.key = key - if maximum_capacity is not None: - self.maximum_capacity = maximum_capacity if name is not None: self.name = name if ocsp_responder_url_required is not None: @@ -295,33 +290,6 @@ def key(self, key): self._key = key - @property - def maximum_capacity(self): - """Gets the maximum_capacity of this CloudAccount. # noqa: E501 - - The maximum capacity of this account in bytes (value is not used to limit capacity, if not user defined, it is set to 1099511627776 in case of MS Azure cloud provider and to 0 in case of other cloud providers) # noqa: E501 - - :return: The maximum_capacity of this CloudAccount. # noqa: E501 - :rtype: int - """ - return self._maximum_capacity - - @maximum_capacity.setter - def maximum_capacity(self, maximum_capacity): - """Sets the maximum_capacity of this CloudAccount. - - The maximum capacity of this account in bytes (value is not used to limit capacity, if not user defined, it is set to 1099511627776 in case of MS Azure cloud provider and to 0 in case of other cloud providers) # noqa: E501 - - :param maximum_capacity: The maximum_capacity of this CloudAccount. # noqa: E501 - :type: int - """ - if maximum_capacity is not None and maximum_capacity > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `maximum_capacity`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if maximum_capacity is not None and maximum_capacity < 0: # noqa: E501 - raise ValueError("Invalid value for `maximum_capacity`, must be a value greater than or equal to `0`") # noqa: E501 - - self._maximum_capacity = maximum_capacity - @property def name(self): """Gets the name of this CloudAccount. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_account_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_account_create_params.py similarity index 90% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_account_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_account_create_params.py index f8cc443bd..eaaeed37d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_account_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_account_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -38,7 +38,6 @@ class CloudAccountCreateParams(object): 'enable_ocsp': 'bool', 'enabled': 'bool', 'key': 'str', - 'maximum_capacity': 'int', 'name': 'str', 'ocsp_responder_url_required': 'bool', 'proxy': 'str', @@ -57,7 +56,6 @@ class CloudAccountCreateParams(object): 'enable_ocsp': 'enable_ocsp', 'enabled': 'enabled', 'key': 'key', - 'maximum_capacity': 'maximum_capacity', 'name': 'name', 'ocsp_responder_url_required': 'ocsp_responder_url_required', 'proxy': 'proxy', @@ -68,7 +66,7 @@ class CloudAccountCreateParams(object): 'uri': 'uri' } - def __init__(self, account_id=None, account_username=None, birth_cluster_id=None, credential_provider=None, enable_ocsp=None, enabled=None, key=None, maximum_capacity=None, name=None, ocsp_responder_url_required=None, proxy=None, skip_ssl_validation=None, storage_region=None, telemetry_bucket=None, type=None, uri=None): # noqa: E501 + def __init__(self, account_id=None, account_username=None, birth_cluster_id=None, credential_provider=None, enable_ocsp=None, enabled=None, key=None, name=None, ocsp_responder_url_required=None, proxy=None, skip_ssl_validation=None, storage_region=None, telemetry_bucket=None, type=None, uri=None): # noqa: E501 """CloudAccountCreateParams - a model defined in Swagger""" # noqa: E501 self._account_id = None @@ -78,7 +76,6 @@ def __init__(self, account_id=None, account_username=None, birth_cluster_id=None self._enable_ocsp = None self._enabled = None self._key = None - self._maximum_capacity = None self._name = None self._ocsp_responder_url_required = None self._proxy = None @@ -103,8 +100,6 @@ def __init__(self, account_id=None, account_username=None, birth_cluster_id=None self.enabled = enabled if key is not None: self.key = key - if maximum_capacity is not None: - self.maximum_capacity = maximum_capacity self.name = name if ocsp_responder_url_required is not None: self.ocsp_responder_url_required = ocsp_responder_url_required @@ -292,33 +287,6 @@ def key(self, key): self._key = key - @property - def maximum_capacity(self): - """Gets the maximum_capacity of this CloudAccountCreateParams. # noqa: E501 - - The maximum capacity of this account in bytes (value is not used to limit capacity, if not user defined, it is set to 1099511627776 in case of MS Azure cloud provider and to 0 in case of other cloud providers) # noqa: E501 - - :return: The maximum_capacity of this CloudAccountCreateParams. # noqa: E501 - :rtype: int - """ - return self._maximum_capacity - - @maximum_capacity.setter - def maximum_capacity(self, maximum_capacity): - """Sets the maximum_capacity of this CloudAccountCreateParams. - - The maximum capacity of this account in bytes (value is not used to limit capacity, if not user defined, it is set to 1099511627776 in case of MS Azure cloud provider and to 0 in case of other cloud providers) # noqa: E501 - - :param maximum_capacity: The maximum_capacity of this CloudAccountCreateParams. # noqa: E501 - :type: int - """ - if maximum_capacity is not None and maximum_capacity > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `maximum_capacity`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if maximum_capacity is not None and maximum_capacity < 0: # noqa: E501 - raise ValueError("Invalid value for `maximum_capacity`, must be a value greater than or equal to `0`") # noqa: E501 - - self._maximum_capacity = maximum_capacity - @property def name(self): """Gets the name of this CloudAccountCreateParams. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_account_credential_provider.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_account_credential_provider.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_account_credential_provider.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_account_credential_provider.py index 52ef4e590..942641f10 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_account_credential_provider.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_account_credential_provider.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_account_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_account_extended.py similarity index 93% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_account_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_account_extended.py index c11e8ced8..a828e75f5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_account_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_account_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -38,7 +38,6 @@ class CloudAccountExtended(object): 'enable_ocsp': 'bool', 'enabled': 'bool', 'key': 'str', - 'maximum_capacity': 'int', 'name': 'str', 'ocsp_responder_url_required': 'bool', 'proxy': 'str', @@ -64,7 +63,6 @@ class CloudAccountExtended(object): 'enable_ocsp': 'enable_ocsp', 'enabled': 'enabled', 'key': 'key', - 'maximum_capacity': 'maximum_capacity', 'name': 'name', 'ocsp_responder_url_required': 'ocsp_responder_url_required', 'proxy': 'proxy', @@ -82,7 +80,7 @@ class CloudAccountExtended(object): 'type': 'type' } - def __init__(self, account_id=None, account_username=None, birth_cluster_id=None, credential_provider=None, enable_ocsp=None, enabled=None, key=None, maximum_capacity=None, name=None, ocsp_responder_url_required=None, proxy=None, skip_account_check=None, skip_ssl_validation=None, storage_region=None, telemetry_bucket=None, uri=None, bucket=None, id=None, metadata_bucket=None, pool=None, state=None, state_details=None, type=None): # noqa: E501 + def __init__(self, account_id=None, account_username=None, birth_cluster_id=None, credential_provider=None, enable_ocsp=None, enabled=None, key=None, name=None, ocsp_responder_url_required=None, proxy=None, skip_account_check=None, skip_ssl_validation=None, storage_region=None, telemetry_bucket=None, uri=None, bucket=None, id=None, metadata_bucket=None, pool=None, state=None, state_details=None, type=None): # noqa: E501 """CloudAccountExtended - a model defined in Swagger""" # noqa: E501 self._account_id = None @@ -92,7 +90,6 @@ def __init__(self, account_id=None, account_username=None, birth_cluster_id=None self._enable_ocsp = None self._enabled = None self._key = None - self._maximum_capacity = None self._name = None self._ocsp_responder_url_required = None self._proxy = None @@ -124,8 +121,6 @@ def __init__(self, account_id=None, account_username=None, birth_cluster_id=None self.enabled = enabled if key is not None: self.key = key - if maximum_capacity is not None: - self.maximum_capacity = maximum_capacity if name is not None: self.name = name if ocsp_responder_url_required is not None: @@ -330,33 +325,6 @@ def key(self, key): self._key = key - @property - def maximum_capacity(self): - """Gets the maximum_capacity of this CloudAccountExtended. # noqa: E501 - - The maximum capacity of this account in bytes (value is not used to limit capacity, if not user defined, it is set to 1099511627776 in case of MS Azure cloud provider and to 0 in case of other cloud providers) # noqa: E501 - - :return: The maximum_capacity of this CloudAccountExtended. # noqa: E501 - :rtype: int - """ - return self._maximum_capacity - - @maximum_capacity.setter - def maximum_capacity(self, maximum_capacity): - """Sets the maximum_capacity of this CloudAccountExtended. - - The maximum capacity of this account in bytes (value is not used to limit capacity, if not user defined, it is set to 1099511627776 in case of MS Azure cloud provider and to 0 in case of other cloud providers) # noqa: E501 - - :param maximum_capacity: The maximum_capacity of this CloudAccountExtended. # noqa: E501 - :type: int - """ - if maximum_capacity is not None and maximum_capacity > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `maximum_capacity`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if maximum_capacity is not None and maximum_capacity < 0: # noqa: E501 - raise ValueError("Invalid value for `maximum_capacity`, must be a value greater than or equal to `0`") # noqa: E501 - - self._maximum_capacity = maximum_capacity - @property def name(self): """Gets the name of this CloudAccountExtended. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_accounts.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_accounts.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_accounts.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_accounts.py index 4cefd6abf..a90dd5c79 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_accounts.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_accounts.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_accounts_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_accounts_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_accounts_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_accounts_extended.py index 52bf789af..2aa1498d6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_accounts_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_accounts_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_certificates.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_certificates.py similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_certificates.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_certificates.py index edf7f667b..049171af0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_certificates.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_certificates.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,7 +31,7 @@ class CloudCertificates(object): and the value is json key in definition. """ swagger_types = { - 'certificates': 'list[CertificatesSyslogCertificate]', + 'certificates': 'list[CertificatesCaCertificate]', 'resume': 'str', 'total': 'int' } @@ -63,7 +63,7 @@ def certificates(self): :return: The certificates of this CloudCertificates. # noqa: E501 - :rtype: list[CertificatesSyslogCertificate] + :rtype: list[CertificatesCaCertificate] """ return self._certificates @@ -73,7 +73,7 @@ def certificates(self, certificates): :param certificates: The certificates of this CloudCertificates. # noqa: E501 - :type: list[CertificatesSyslogCertificate] + :type: list[CertificatesCaCertificate] """ self._certificates = certificates diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_job.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_job.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_job.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_job.py index 87052a7b9..266d07533 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_job.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_job.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_job_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_job_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_job_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_job_create_params.py index 08e48620c..8dc05f768 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_job_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_job_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_job_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_job_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_job_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_job_extended.py index afbaf16db..9f658b51b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_job_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_job_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_job_files.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_job_files.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_job_files.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_job_files.py index bac838704..f5db3462c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_job_files.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_job_files.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_job_files_name.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_job_files_name.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_job_files_name.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_job_files_name.py index 73a14295a..53a088eb9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_job_files_name.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_job_files_name.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_job_job_engine_job.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_job_job_engine_job.py similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_job_job_engine_job.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_job_job_engine_job.py index f3719f45b..69d096467 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_job_job_engine_job.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_job_job_engine_job.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -95,7 +95,7 @@ def state(self, state): :param state: The state of this CloudJobJobEngineJob. # noqa: E501 :type: str """ - allowed_values = ["null", "running", "user-paused", "system-paused", "policy-paused", "waiting", "user-cancelled", "system-cancelled", "failed", "succeeded"] # noqa: E501 + allowed_values = ["null", "running", "user-paused", "system-paused", "policy-paused", "waiting", "user-canceled", "system-canceled", "failed", "succeeded"] # noqa: E501 if state not in allowed_values: raise ValueError( "Invalid value for `state` ({0}), must be one of {1}" # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_jobs.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_jobs.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_jobs.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_jobs.py index 6f9c9b5c9..1f23efc05 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_jobs.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_jobs.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_jobs_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_jobs_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_jobs_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_jobs_extended.py index 2d4e12d12..7a0e230aa 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_jobs_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_jobs_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_jobs_files.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_jobs_files.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_jobs_files.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_jobs_files.py index a6ed8d7cf..022c1faba 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_jobs_files.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_jobs_files.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_jobs_files_file.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_jobs_files_file.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_jobs_files_file.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_jobs_files_file.py index df75d8ac3..8f6329486 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_jobs_files_file.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_jobs_files_file.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_pool.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_pool.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_pool.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_pool.py index 9c5e7ba50..350f17445 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_pool.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_pool.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_pool_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_pool_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_pool_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_pool_create_params.py index fd63d086d..827555554 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_pool_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_pool_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_pool_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_pool_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_pool_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_pool_extended.py index e6dacdaac..b1be8f21d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_pool_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_pool_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_pools.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_pools.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_pools.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_pools.py index 826a465d0..db103fbfa 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_pools.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_pools.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_pools_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_pools_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_pools_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_pools_extended.py index a52d0a0a2..ac83efa6d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_pools_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_pools_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_proxies.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_proxies.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_proxies.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_proxies.py index 482bf4b1c..8d68983a9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_proxies.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_proxies.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_proxies_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_proxies_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_proxies_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_proxies_extended.py index fe92f643e..d98de578c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_proxies_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_proxies_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_proxy.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_proxy.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_proxy.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_proxy.py index 68d6fee3a..8dbe1e9ed 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_proxy.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_proxy.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_proxy_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_proxy_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_proxy_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_proxy_create_params.py index bc628aa0d..a0a090229 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_proxy_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_proxy_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_proxy_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_proxy_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_proxy_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_proxy_extended.py index 04e1429cc..768c833b5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_proxy_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_proxy_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_settings.py index 2f92a7961..975e89967 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_settings_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_settings_settings.py index 72782d31e..e9ba3b070 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_settings_settings_cloud_policy_defaults.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_settings_settings_cloud_policy_defaults.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_settings_settings_cloud_policy_defaults.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_settings_settings_cloud_policy_defaults.py index 77f116058..ae4225bc9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_settings_settings_cloud_policy_defaults.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_settings_settings_cloud_policy_defaults.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_settings_settings_cloud_policy_defaults_cache.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_settings_settings_cloud_policy_defaults_cache.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_settings_settings_cloud_policy_defaults_cache.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_settings_settings_cloud_policy_defaults_cache.py index 2bcc90480..98b2e257d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_settings_settings_cloud_policy_defaults_cache.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_settings_settings_cloud_policy_defaults_cache.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_settings_settings_sleep_timeout_archive.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_settings_settings_sleep_timeout_archive.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cloud_settings_settings_sleep_timeout_archive.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cloud_settings_settings_sleep_timeout_archive.py index 317d54743..a1b6d72dd 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cloud_settings_settings_sleep_timeout_archive.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cloud_settings_settings_sleep_timeout_archive.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_ac.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_ac.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_ac.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_ac.py index 900dc4448..172c73dea 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_ac.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_ac.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_acs.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_acs.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_acs.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_acs.py index b9b61099c..e815beb48 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_acs.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_acs.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_add_node_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_add_node_item.py similarity index 80% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_add_node_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_add_node_item.py index 7f3c8c76c..1d3d70fd4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_add_node_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_add_node_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -32,31 +32,26 @@ class ClusterAddNodeItem(object): """ swagger_types = { 'allow_down': 'bool', - '_async': 'bool', 'serial_number': 'str', 'skip_hardware_version_check': 'bool' } attribute_map = { 'allow_down': 'allow_down', - '_async': 'async', 'serial_number': 'serial_number', 'skip_hardware_version_check': 'skip_hardware_version_check' } - def __init__(self, allow_down=None, _async=False, serial_number=None, skip_hardware_version_check=None): # noqa: E501 + def __init__(self, allow_down=None, serial_number=None, skip_hardware_version_check=None): # noqa: E501 """ClusterAddNodeItem - a model defined in Swagger""" # noqa: E501 self._allow_down = None - self.__async = None self._serial_number = None self._skip_hardware_version_check = None self.discriminator = None if allow_down is not None: self.allow_down = allow_down - if _async is not None: - self._async = _async self.serial_number = serial_number if skip_hardware_version_check is not None: self.skip_hardware_version_check = skip_hardware_version_check @@ -84,29 +79,6 @@ def allow_down(self, allow_down): self._allow_down = allow_down - @property - def _async(self): - """Gets the _async of this ClusterAddNodeItem. # noqa: E501 - - Add node in asynchronous way. # noqa: E501 - - :return: The _async of this ClusterAddNodeItem. # noqa: E501 - :rtype: bool - """ - return self.__async - - @_async.setter - def _async(self, _async): - """Sets the _async of this ClusterAddNodeItem. - - Add node in asynchronous way. # noqa: E501 - - :param _async: The _async of this ClusterAddNodeItem. # noqa: E501 - :type: bool - """ - - self.__async = _async - @property def serial_number(self): """Gets the serial_number of this ClusterAddNodeItem. # noqa: E501 @@ -129,10 +101,6 @@ def serial_number(self, serial_number): """ if serial_number is None: raise ValueError("Invalid value for `serial_number`, must not be `None`") # noqa: E501 - if serial_number is not None and len(serial_number) > 255: - raise ValueError("Invalid value for `serial_number`, length must be less than or equal to `255`") # noqa: E501 - if serial_number is not None and len(serial_number) < 1: - raise ValueError("Invalid value for `serial_number`, length must be greater than or equal to `1`") # noqa: E501 self._serial_number = serial_number diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_archive_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_archive_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_archive_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_archive_item.py index 75b886427..0dfee65da 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_archive_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_archive_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_assess_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_assess_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_assess_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_assess_item.py index 4d43039c2..64050c5a6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_assess_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_assess_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_config.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_config.py similarity index 77% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_config.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_config.py index 05e03b4cf..b581de91f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_config.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_config.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,14 +31,12 @@ class ClusterConfig(object): and the value is json key in definition. """ swagger_types = { - 'availability_zone': 'str', 'description': 'str', 'devices': 'list[ClusterConfigDevice]', 'encoding': 'str', 'guid': 'str', 'has_quorum': 'bool', 'is_compliance': 'bool', - 'is_powerscale_ve': 'bool', 'is_virtual': 'bool', 'is_vonefs': 'bool', 'join_mode': 'str', @@ -46,22 +44,18 @@ class ClusterConfig(object): 'local_lnn': 'int', 'local_serial': 'str', 'name': 'str', - 'node_id': 'str', 'onefs_version': 'ClusterConfigOnefsVersion', - 'region': 'str', 'timezone': 'ClusterConfigTimezone', 'upgrade_type': 'str' } attribute_map = { - 'availability_zone': 'availability_zone', 'description': 'description', 'devices': 'devices', 'encoding': 'encoding', 'guid': 'guid', 'has_quorum': 'has_quorum', 'is_compliance': 'is_compliance', - 'is_powerscale_ve': 'is_powerscale_ve', 'is_virtual': 'is_virtual', 'is_vonefs': 'is_vonefs', 'join_mode': 'join_mode', @@ -69,24 +63,20 @@ class ClusterConfig(object): 'local_lnn': 'local_lnn', 'local_serial': 'local_serial', 'name': 'name', - 'node_id': 'node_id', 'onefs_version': 'onefs_version', - 'region': 'region', 'timezone': 'timezone', 'upgrade_type': 'upgrade_type' } - def __init__(self, availability_zone=None, description=None, devices=None, encoding=None, guid=None, has_quorum=None, is_compliance=None, is_powerscale_ve=None, is_virtual=None, is_vonefs=None, join_mode=None, local_devid=None, local_lnn=None, local_serial=None, name=None, node_id=None, onefs_version=None, region=None, timezone=None, upgrade_type=None): # noqa: E501 + def __init__(self, description=None, devices=None, encoding=None, guid=None, has_quorum=None, is_compliance=None, is_virtual=None, is_vonefs=None, join_mode=None, local_devid=None, local_lnn=None, local_serial=None, name=None, onefs_version=None, timezone=None, upgrade_type=None): # noqa: E501 """ClusterConfig - a model defined in Swagger""" # noqa: E501 - self._availability_zone = None self._description = None self._devices = None self._encoding = None self._guid = None self._has_quorum = None self._is_compliance = None - self._is_powerscale_ve = None self._is_virtual = None self._is_vonefs = None self._join_mode = None @@ -94,21 +84,17 @@ def __init__(self, availability_zone=None, description=None, devices=None, encod self._local_lnn = None self._local_serial = None self._name = None - self._node_id = None self._onefs_version = None - self._region = None self._timezone = None self._upgrade_type = None self.discriminator = None - self.availability_zone = availability_zone self.description = description self.devices = devices self.encoding = encoding self.guid = guid self.has_quorum = has_quorum self.is_compliance = is_compliance - self.is_powerscale_ve = is_powerscale_ve self.is_virtual = is_virtual self.is_vonefs = is_vonefs self.join_mode = join_mode @@ -116,40 +102,13 @@ def __init__(self, availability_zone=None, description=None, devices=None, encod self.local_lnn = local_lnn self.local_serial = local_serial self.name = name - self.node_id = node_id if onefs_version is not None: self.onefs_version = onefs_version - self.region = region if timezone is not None: self.timezone = timezone if upgrade_type is not None: self.upgrade_type = upgrade_type - @property - def availability_zone(self): - """Gets the availability_zone of this ClusterConfig. # noqa: E501 - - Availability zone of the queried node # noqa: E501 - - :return: The availability_zone of this ClusterConfig. # noqa: E501 - :rtype: str - """ - return self._availability_zone - - @availability_zone.setter - def availability_zone(self, availability_zone): - """Sets the availability_zone of this ClusterConfig. - - Availability zone of the queried node # noqa: E501 - - :param availability_zone: The availability_zone of this ClusterConfig. # noqa: E501 - :type: str - """ - if availability_zone is None: - raise ValueError("Invalid value for `availability_zone`, must not be `None`") # noqa: E501 - - self._availability_zone = availability_zone - @property def description(self): """Gets the description of this ClusterConfig. # noqa: E501 @@ -277,7 +236,7 @@ def has_quorum(self, has_quorum): def is_compliance(self): """Gets the is_compliance of this ClusterConfig. # noqa: E501 - If true, the cluster is in compliance mode. Compliance mode clusters do not allow root access and have stricter WORM (Write Once Read Many) features for retaining data in compliance with U.S. Securities and Exchange Commission rule 17a-4. # noqa: E501 + If true, the cluster is in compliance mode. Compliance mode clusters do not allow root access and have stricter WORM (Write Once Read Many) features for retaining data in compliance with U.S. Securities and Exchange Commission rule 17a-4. # noqa: E501 :return: The is_compliance of this ClusterConfig. # noqa: E501 :rtype: bool @@ -288,7 +247,7 @@ def is_compliance(self): def is_compliance(self, is_compliance): """Sets the is_compliance of this ClusterConfig. - If true, the cluster is in compliance mode. Compliance mode clusters do not allow root access and have stricter WORM (Write Once Read Many) features for retaining data in compliance with U.S. Securities and Exchange Commission rule 17a-4. # noqa: E501 + If true, the cluster is in compliance mode. Compliance mode clusters do not allow root access and have stricter WORM (Write Once Read Many) features for retaining data in compliance with U.S. Securities and Exchange Commission rule 17a-4. # noqa: E501 :param is_compliance: The is_compliance of this ClusterConfig. # noqa: E501 :type: bool @@ -298,31 +257,6 @@ def is_compliance(self, is_compliance): self._is_compliance = is_compliance - @property - def is_powerscale_ve(self): - """Gets the is_powerscale_ve of this ClusterConfig. # noqa: E501 - - true if this is a OneFS Powerscale VE cluster # noqa: E501 - - :return: The is_powerscale_ve of this ClusterConfig. # noqa: E501 - :rtype: bool - """ - return self._is_powerscale_ve - - @is_powerscale_ve.setter - def is_powerscale_ve(self, is_powerscale_ve): - """Sets the is_powerscale_ve of this ClusterConfig. - - true if this is a OneFS Powerscale VE cluster # noqa: E501 - - :param is_powerscale_ve: The is_powerscale_ve of this ClusterConfig. # noqa: E501 - :type: bool - """ - if is_powerscale_ve is None: - raise ValueError("Invalid value for `is_powerscale_ve`, must not be `None`") # noqa: E501 - - self._is_powerscale_ve = is_powerscale_ve - @property def is_virtual(self): """Gets the is_virtual of this ClusterConfig. # noqa: E501 @@ -498,31 +432,6 @@ def name(self, name): self._name = name - @property - def node_id(self): - """Gets the node_id of this ClusterConfig. # noqa: E501 - - Node id of the queried node # noqa: E501 - - :return: The node_id of this ClusterConfig. # noqa: E501 - :rtype: str - """ - return self._node_id - - @node_id.setter - def node_id(self, node_id): - """Sets the node_id of this ClusterConfig. - - Node id of the queried node # noqa: E501 - - :param node_id: The node_id of this ClusterConfig. # noqa: E501 - :type: str - """ - if node_id is None: - raise ValueError("Invalid value for `node_id`, must not be `None`") # noqa: E501 - - self._node_id = node_id - @property def onefs_version(self): """Gets the onefs_version of this ClusterConfig. # noqa: E501 @@ -546,31 +455,6 @@ def onefs_version(self, onefs_version): self._onefs_version = onefs_version - @property - def region(self): - """Gets the region of this ClusterConfig. # noqa: E501 - - Region of the queried node # noqa: E501 - - :return: The region of this ClusterConfig. # noqa: E501 - :rtype: str - """ - return self._region - - @region.setter - def region(self, region): - """Sets the region of this ClusterConfig. - - Region of the queried node # noqa: E501 - - :param region: The region of this ClusterConfig. # noqa: E501 - :type: str - """ - if region is None: - raise ValueError("Invalid value for `region`, must not be `None`") # noqa: E501 - - self._region = region - @property def timezone(self): """Gets the timezone of this ClusterConfig. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_config_device.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_config_device.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_config_device.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_config_device.py index e05613a18..540314166 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_config_device.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_config_device.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_config_onefs_version.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_config_onefs_version.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_config_onefs_version.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_config_onefs_version.py index 88d1230d1..3e75b5463 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_config_onefs_version.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_config_onefs_version.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_config_timezone.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_config_timezone.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_config_timezone.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_config_timezone.py index 6bb6c734a..bf26a2034 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_config_timezone.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_config_timezone.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_drain.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_drain.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_drain.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_drain.py index 40377e83a..e96778751 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_drain.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_drain.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_drain_list.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_drain_list.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_drain_list.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_drain_list.py index ca239a281..eee4a1ed8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_drain_list.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_drain_list.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_drain_timeout.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_drain_timeout.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_drain_timeout.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_drain_timeout.py index 40328c735..400e10267 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_drain_timeout.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_drain_timeout.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_drain_timeout_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_drain_timeout_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_drain_timeout_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_drain_timeout_extended.py index 472ba110c..9e7aac4fe 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_drain_timeout_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_drain_timeout_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_email.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_email.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_email.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_email.py index c861f1920..e0cb7fca5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_email.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_email.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_email_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_email_extended.py similarity index 87% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_email_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_email_extended.py index 47a1ff717..03017f6cc 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_email_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_email_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -96,7 +96,7 @@ def __init__(self, batch_mode=None, mail_relay=None, mail_sender=None, mail_subj def batch_mode(self): """Gets the batch_mode of this ClusterEmailExtended. # noqa: E501 - This setting determines how notifications will be batched together to be sent by email. 'none' means each notification will be sent separately. 'severity' means notifications of the same severity will be sent together. 'category' means notifications of the same category will be sent together. 'all' means all notifications will be batched together and sent in a single email. # noqa: E501 + This setting determines how notifications will be batched together to be sent by email. 'none' means each notification will be sent separately. 'severity' means notifications of the same severity will be sent together. 'category' means notifications of the same category will be sent together. 'all' means all notifications will be batched together and sent in a single email. # noqa: E501 :return: The batch_mode of this ClusterEmailExtended. # noqa: E501 :rtype: str @@ -107,7 +107,7 @@ def batch_mode(self): def batch_mode(self, batch_mode): """Sets the batch_mode of this ClusterEmailExtended. - This setting determines how notifications will be batched together to be sent by email. 'none' means each notification will be sent separately. 'severity' means notifications of the same severity will be sent together. 'category' means notifications of the same category will be sent together. 'all' means all notifications will be batched together and sent in a single email. # noqa: E501 + This setting determines how notifications will be batched together to be sent by email. 'none' means each notification will be sent separately. 'severity' means notifications of the same severity will be sent together. 'category' means notifications of the same category will be sent together. 'all' means all notifications will be batched together and sent in a single email. # noqa: E501 :param batch_mode: The batch_mode of this ClusterEmailExtended. # noqa: E501 :type: str @@ -141,8 +141,8 @@ def mail_relay(self, mail_relay): :param mail_relay: The mail_relay of this ClusterEmailExtended. # noqa: E501 :type: str """ - if mail_relay is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', mail_relay): # noqa: E501 - raise ValueError(r"Invalid value for `mail_relay`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if mail_relay is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', mail_relay): # noqa: E501 + raise ValueError(r"Invalid value for `mail_relay`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._mail_relay = mail_relay @@ -170,8 +170,8 @@ def mail_sender(self, mail_sender): raise ValueError("Invalid value for `mail_sender`, length must be less than or equal to `254`") # noqa: E501 if mail_sender is not None and len(mail_sender) < 3: raise ValueError("Invalid value for `mail_sender`, length must be greater than or equal to `3`") # noqa: E501 - if mail_sender is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', mail_sender): # noqa: E501 - raise ValueError(r"Invalid value for `mail_sender`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if mail_sender is not None and not re.search(r'[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', mail_sender): # noqa: E501 + raise ValueError(r"Invalid value for `mail_sender`, must be a follow pattern or equal to `/[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._mail_sender = mail_sender @@ -229,7 +229,7 @@ def smtp_auth_passwd(self, smtp_auth_passwd): def smtp_auth_security(self): """Gets the smtp_auth_security of this ClusterEmailExtended. # noqa: E501 - The type of secure communication protocol to use if SMTP is being used. If 'none', cleartext will be used for the full SMTP transaction. If 'starttls', Secure SMTP will be used, a connection is begun in cleartext and then upgraded to encryption. If 'smtps', Implicit TLS will be used, TLS encryption is negotiated immediately at connection start. # noqa: E501 + The type of secure communication protocol to use if SMTP is being used. If 'none', plain text will be used, if 'starttls', the encrypted STARTTLS protocol will be used. # noqa: E501 :return: The smtp_auth_security of this ClusterEmailExtended. # noqa: E501 :rtype: str @@ -240,12 +240,12 @@ def smtp_auth_security(self): def smtp_auth_security(self, smtp_auth_security): """Sets the smtp_auth_security of this ClusterEmailExtended. - The type of secure communication protocol to use if SMTP is being used. If 'none', cleartext will be used for the full SMTP transaction. If 'starttls', Secure SMTP will be used, a connection is begun in cleartext and then upgraded to encryption. If 'smtps', Implicit TLS will be used, TLS encryption is negotiated immediately at connection start. # noqa: E501 + The type of secure communication protocol to use if SMTP is being used. If 'none', plain text will be used, if 'starttls', the encrypted STARTTLS protocol will be used. # noqa: E501 :param smtp_auth_security: The smtp_auth_security of this ClusterEmailExtended. # noqa: E501 :type: str """ - allowed_values = ["none", "starttls", "smtps"] # noqa: E501 + allowed_values = ["none", "starttls"] # noqa: E501 if smtp_auth_security not in allowed_values: raise ValueError( "Invalid value for `smtp_auth_security` ({0}), must be one of {1}" # noqa: E501 @@ -278,8 +278,8 @@ def smtp_auth_username(self, smtp_auth_username): raise ValueError("Invalid value for `smtp_auth_username`, length must be less than or equal to `256`") # noqa: E501 if smtp_auth_username is not None and len(smtp_auth_username) < 1: raise ValueError("Invalid value for `smtp_auth_username`, length must be greater than or equal to `1`") # noqa: E501 - if smtp_auth_username is not None and not re.search(r'^[a-zA-Z0-9!@#%^&(){}~`_ .-]+$', smtp_auth_username): # noqa: E501 - raise ValueError(r"Invalid value for `smtp_auth_username`, must be a follow pattern or equal to `/^[a-zA-Z0-9!@#%^&(){}~`_ .-]+$/`") # noqa: E501 + if smtp_auth_username is not None and not re.search(r'^[^]\"\/\\[\\:;|=,+*?<>$]+', smtp_auth_username): # noqa: E501 + raise ValueError(r"Invalid value for `smtp_auth_username`, must be a follow pattern or equal to `/^[^]\"\/\\[\\:;|=,+*?<>$]+/`") # noqa: E501 self._smtp_auth_username = smtp_auth_username @@ -314,7 +314,7 @@ def smtp_port(self, smtp_port): def use_smtp_auth(self): """Gets the use_smtp_auth of this ClusterEmailExtended. # noqa: E501 - If true, this cluster will send SMTP authentication credentials to the SMTP relay server in order to send its notification emails. If false, the cluster will attempt to send its notification emails without authentication. # noqa: E501 + If true, this cluster will send SMTP authentication credentials to the SMTP relay server in order to send its notification emails. If false, the cluster will attempt to send its notification emails without authentication. # noqa: E501 :return: The use_smtp_auth of this ClusterEmailExtended. # noqa: E501 :rtype: bool @@ -325,7 +325,7 @@ def use_smtp_auth(self): def use_smtp_auth(self, use_smtp_auth): """Sets the use_smtp_auth of this ClusterEmailExtended. - If true, this cluster will send SMTP authentication credentials to the SMTP relay server in order to send its notification emails. If false, the cluster will attempt to send its notification emails without authentication. # noqa: E501 + If true, this cluster will send SMTP authentication credentials to the SMTP relay server in order to send its notification emails. If false, the cluster will attempt to send its notification emails without authentication. # noqa: E501 :param use_smtp_auth: The use_smtp_auth of this ClusterEmailExtended. # noqa: E501 :type: bool diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_email_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_email_settings.py similarity index 89% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_email_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_email_settings.py index 6c714e828..c16c61031 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_email_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_email_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -87,7 +87,7 @@ def __init__(self, batch_mode=None, mail_relay=None, mail_sender=None, mail_subj def batch_mode(self): """Gets the batch_mode of this ClusterEmailSettings. # noqa: E501 - This setting determines how notifications will be batched together to be sent by email. 'none' means each notification will be sent separately. 'severity' means notifications of the same severity will be sent together. 'category' means notifications of the same category will be sent together. 'all' means all notifications will be batched together and sent in a single email. # noqa: E501 + This setting determines how notifications will be batched together to be sent by email. 'none' means each notification will be sent separately. 'severity' means notifications of the same severity will be sent together. 'category' means notifications of the same category will be sent together. 'all' means all notifications will be batched together and sent in a single email. # noqa: E501 :return: The batch_mode of this ClusterEmailSettings. # noqa: E501 :rtype: str @@ -98,7 +98,7 @@ def batch_mode(self): def batch_mode(self, batch_mode): """Sets the batch_mode of this ClusterEmailSettings. - This setting determines how notifications will be batched together to be sent by email. 'none' means each notification will be sent separately. 'severity' means notifications of the same severity will be sent together. 'category' means notifications of the same category will be sent together. 'all' means all notifications will be batched together and sent in a single email. # noqa: E501 + This setting determines how notifications will be batched together to be sent by email. 'none' means each notification will be sent separately. 'severity' means notifications of the same severity will be sent together. 'category' means notifications of the same category will be sent together. 'all' means all notifications will be batched together and sent in a single email. # noqa: E501 :param batch_mode: The batch_mode of this ClusterEmailSettings. # noqa: E501 :type: str @@ -136,8 +136,8 @@ def mail_relay(self, mail_relay): """ if mail_relay is None: raise ValueError("Invalid value for `mail_relay`, must not be `None`") # noqa: E501 - if mail_relay is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', mail_relay): # noqa: E501 - raise ValueError(r"Invalid value for `mail_relay`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if mail_relay is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', mail_relay): # noqa: E501 + raise ValueError(r"Invalid value for `mail_relay`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._mail_relay = mail_relay @@ -226,7 +226,7 @@ def smtp_auth_passwd_set(self, smtp_auth_passwd_set): def smtp_auth_security(self): """Gets the smtp_auth_security of this ClusterEmailSettings. # noqa: E501 - The type of secure communication protocol to use if SMTP is being used. If 'none', cleartext will be used for the full SMTP transaction. If 'starttls', Secure SMTP will be used, a connection is begun in cleartext and then upgraded to encryption. If 'smtps', Implicit TLS will be used, TLS encryption is negotiated immediately at connection start. # noqa: E501 + The type of secure communication protocol to use if SMTP is being used. If 'none', plain text will be used, if 'starttls', the encrypted STARTTLS protocol will be used. # noqa: E501 :return: The smtp_auth_security of this ClusterEmailSettings. # noqa: E501 :rtype: str @@ -237,14 +237,14 @@ def smtp_auth_security(self): def smtp_auth_security(self, smtp_auth_security): """Sets the smtp_auth_security of this ClusterEmailSettings. - The type of secure communication protocol to use if SMTP is being used. If 'none', cleartext will be used for the full SMTP transaction. If 'starttls', Secure SMTP will be used, a connection is begun in cleartext and then upgraded to encryption. If 'smtps', Implicit TLS will be used, TLS encryption is negotiated immediately at connection start. # noqa: E501 + The type of secure communication protocol to use if SMTP is being used. If 'none', plain text will be used, if 'starttls', the encrypted STARTTLS protocol will be used. # noqa: E501 :param smtp_auth_security: The smtp_auth_security of this ClusterEmailSettings. # noqa: E501 :type: str """ if smtp_auth_security is None: raise ValueError("Invalid value for `smtp_auth_security`, must not be `None`") # noqa: E501 - allowed_values = ["none", "starttls", "smtps"] # noqa: E501 + allowed_values = ["none", "starttls"] # noqa: E501 if smtp_auth_security not in allowed_values: raise ValueError( "Invalid value for `smtp_auth_security` ({0}), must be one of {1}" # noqa: E501 @@ -313,7 +313,7 @@ def smtp_port(self, smtp_port): def use_smtp_auth(self): """Gets the use_smtp_auth of this ClusterEmailSettings. # noqa: E501 - If true, this cluster will send SMTP authentication credentials to the SMTP relay server in order to send its notification emails. If false, the cluster will attempt to send its notification emails without authentication. # noqa: E501 + If true, this cluster will send SMTP authentication credentials to the SMTP relay server in order to send its notification emails. If false, the cluster will attempt to send its notification emails without authentication. # noqa: E501 :return: The use_smtp_auth of this ClusterEmailSettings. # noqa: E501 :rtype: bool @@ -324,7 +324,7 @@ def use_smtp_auth(self): def use_smtp_auth(self, use_smtp_auth): """Sets the use_smtp_auth of this ClusterEmailSettings. - If true, this cluster will send SMTP authentication credentials to the SMTP relay server in order to send its notification emails. If false, the cluster will attempt to send its notification emails without authentication. # noqa: E501 + If true, this cluster will send SMTP authentication credentials to the SMTP relay server in order to send its notification emails. If false, the cluster will attempt to send its notification emails without authentication. # noqa: E501 :param use_smtp_auth: The use_smtp_auth of this ClusterEmailSettings. # noqa: E501 :type: bool diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_firmware_assess_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_firmware_assess_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_firmware_assess_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_firmware_assess_item.py index e663d2f12..ca6f96906 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_firmware_assess_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_firmware_assess_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_firmware_device.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_firmware_device.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_firmware_device.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_firmware_device.py index ebb32d6e0..ca6f45e6e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_firmware_device.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_firmware_device.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_firmware_device_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_firmware_device_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_firmware_device_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_firmware_device_node.py index f0a427d5c..d642cf0d5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_firmware_device_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_firmware_device_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_firmware_progress.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_firmware_progress.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_firmware_progress.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_firmware_progress.py index 926216e82..365594dc1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_firmware_progress.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_firmware_progress.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_firmware_status.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_firmware_status.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_firmware_status.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_firmware_status.py index d765a6f6e..e1eddc73c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_firmware_status.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_firmware_status.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_firmware_status_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_firmware_status_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_firmware_status_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_firmware_status_node.py index e5ef7d7d5..56fc3ba38 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_firmware_status_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_firmware_status_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_firmware_upgrade_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_firmware_upgrade_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_firmware_upgrade_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_firmware_upgrade_item.py index bbfb84b58..2b6c8672b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_firmware_upgrade_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_firmware_upgrade_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_identity.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_identity.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_identity.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_identity.py index da4e6b067..4006fc74d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_identity.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_identity.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_identity_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_identity_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_identity_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_identity_extended.py index 6f1170e84..6be389b28 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_identity_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_identity_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_identity_logon.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_identity_logon.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_identity_logon.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_identity_logon.py index 600b38c19..b0334b9f8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_identity_logon.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_identity_logon.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_identity_logon_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_identity_logon_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_identity_logon_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_identity_logon_extended.py index f9f381e7c..ae64d0a65 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_identity_logon_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_identity_logon_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_internal_networks.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_internal_networks.py similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_internal_networks.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_internal_networks.py index f3382f5ae..d30c34220 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_internal_networks.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_internal_networks.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -221,10 +221,6 @@ def int_a_mtu(self, int_a_mtu): :param int_a_mtu: The int_a_mtu of this ClusterInternalNetworks. # noqa: E501 :type: int """ - if int_a_mtu is not None and int_a_mtu > 65535: # noqa: E501 - raise ValueError("Invalid value for `int_a_mtu`, must be a value less than or equal to `65535`") # noqa: E501 - if int_a_mtu is not None and int_a_mtu < 1: # noqa: E501 - raise ValueError("Invalid value for `int_a_mtu`, must be a value greater than or equal to `1`") # noqa: E501 self._int_a_mtu = int_a_mtu diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_internal_networks_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_internal_networks_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_internal_networks_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_internal_networks_extended.py index d528f20b3..e59278346 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_internal_networks_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_internal_networks_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_internal_networks_failover_ip_addresse.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_internal_networks_failover_ip_addresse.py similarity index 94% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_internal_networks_failover_ip_addresse.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_internal_networks_failover_ip_addresse.py index 8ffea6773..7ff5570ea 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_internal_networks_failover_ip_addresse.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_internal_networks_failover_ip_addresse.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_internal_networks_failover_ip_addresse_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_internal_networks_failover_ip_addresse_extended.py similarity index 95% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_internal_networks_failover_ip_addresse_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_internal_networks_failover_ip_addresse_extended.py index 1b7f2239f..dc388f47e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_internal_networks_failover_ip_addresse_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_internal_networks_failover_ip_addresse_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_internal_networks_int_a_ip_addresse.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_internal_networks_int_a_ip_addresse.py similarity index 94% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_internal_networks_int_a_ip_addresse.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_internal_networks_int_a_ip_addresse.py index ec2ba76ba..a250f0ef9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_internal_networks_int_a_ip_addresse.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_internal_networks_int_a_ip_addresse.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py similarity index 95% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py index a9c7e02bb..729302e8b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_internal_networks_int_b_ip_addresse.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_internal_networks_int_b_ip_addresse.py similarity index 94% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_internal_networks_int_b_ip_addresse.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_internal_networks_int_b_ip_addresse.py index cd4b743b6..1290087de 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_internal_networks_int_b_ip_addresse.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_internal_networks_int_b_ip_addresse.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py similarity index 95% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py index 7311e6992..e0493c664 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_mode_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_mode_settings.py similarity index 76% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_mode_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_mode_settings.py index 080229cd1..e6633faf8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_mode_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_mode_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -84,8 +84,8 @@ def cloud_storage_console(self, cloud_storage_console): raise ValueError("Invalid value for `cloud_storage_console`, length must be less than or equal to `2048`") # noqa: E501 if cloud_storage_console is not None and len(cloud_storage_console) < 11: raise ValueError("Invalid value for `cloud_storage_console`, length must be greater than or equal to `11`") # noqa: E501 - if cloud_storage_console is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', cloud_storage_console): # noqa: E501 - raise ValueError(r"Invalid value for `cloud_storage_console`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if cloud_storage_console is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', cloud_storage_console): # noqa: E501 + raise ValueError(r"Invalid value for `cloud_storage_console`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._cloud_storage_console = cloud_storage_console @@ -111,8 +111,8 @@ def monitoring(self, monitoring): raise ValueError("Invalid value for `monitoring`, length must be less than or equal to `2048`") # noqa: E501 if monitoring is not None and len(monitoring) < 11: raise ValueError("Invalid value for `monitoring`, length must be greater than or equal to `11`") # noqa: E501 - if monitoring is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', monitoring): # noqa: E501 - raise ValueError(r"Invalid value for `monitoring`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if monitoring is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', monitoring): # noqa: E501 + raise ValueError(r"Invalid value for `monitoring`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._monitoring = monitoring @@ -161,8 +161,8 @@ def support(self, support): raise ValueError("Invalid value for `support`, length must be less than or equal to `2048`") # noqa: E501 if support is not None and len(support) < 11: raise ValueError("Invalid value for `support`, length must be greater than or equal to `11`") # noqa: E501 - if support is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', support): # noqa: E501 - raise ValueError(r"Invalid value for `support`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if support is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', support): # noqa: E501 + raise ValueError(r"Invalid value for `support`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._support = support diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_mode_settings_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_mode_settings_extended.py similarity index 74% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_mode_settings_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_mode_settings_extended.py index 037d1bc43..055920f65 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_mode_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_mode_settings_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -79,8 +79,8 @@ def cloud_storage_console(self, cloud_storage_console): raise ValueError("Invalid value for `cloud_storage_console`, length must be less than or equal to `2048`") # noqa: E501 if cloud_storage_console is not None and len(cloud_storage_console) < 11: raise ValueError("Invalid value for `cloud_storage_console`, length must be greater than or equal to `11`") # noqa: E501 - if cloud_storage_console is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', cloud_storage_console): # noqa: E501 - raise ValueError(r"Invalid value for `cloud_storage_console`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if cloud_storage_console is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', cloud_storage_console): # noqa: E501 + raise ValueError(r"Invalid value for `cloud_storage_console`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._cloud_storage_console = cloud_storage_console @@ -106,8 +106,8 @@ def monitoring(self, monitoring): raise ValueError("Invalid value for `monitoring`, length must be less than or equal to `2048`") # noqa: E501 if monitoring is not None and len(monitoring) < 11: raise ValueError("Invalid value for `monitoring`, length must be greater than or equal to `11`") # noqa: E501 - if monitoring is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', monitoring): # noqa: E501 - raise ValueError(r"Invalid value for `monitoring`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if monitoring is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', monitoring): # noqa: E501 + raise ValueError(r"Invalid value for `monitoring`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._monitoring = monitoring @@ -133,8 +133,8 @@ def support(self, support): raise ValueError("Invalid value for `support`, length must be less than or equal to `2048`") # noqa: E501 if support is not None and len(support) < 11: raise ValueError("Invalid value for `support`, length must be greater than or equal to `11`") # noqa: E501 - if support is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', support): # noqa: E501 - raise ValueError(r"Invalid value for `support`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if support is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', support): # noqa: E501 + raise ValueError(r"Invalid value for `support`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._support = support diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node.py index 08d219e52..40ca6d81e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -218,8 +218,8 @@ def internal_ip_address(self, internal_ip_address): raise ValueError("Invalid value for `internal_ip_address`, length must be less than or equal to `45`") # noqa: E501 if internal_ip_address is not None and len(internal_ip_address) < 2: raise ValueError("Invalid value for `internal_ip_address`, length must be greater than or equal to `2`") # noqa: E501 - if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 - raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 + raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._internal_ip_address = internal_ip_address diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_drive_d_config.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_drive_d_config.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_drive_d_config.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_drive_d_config.py index 8ef76a93f..c2bd15282 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_drive_d_config.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_drive_d_config.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_extended.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_extended.py index 0ce0729eb..db188c53b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -218,8 +218,8 @@ def internal_ip_address(self, internal_ip_address): raise ValueError("Invalid value for `internal_ip_address`, length must be less than or equal to `45`") # noqa: E501 if internal_ip_address is not None and len(internal_ip_address) < 2: raise ValueError("Invalid value for `internal_ip_address`, length must be greater than or equal to `2`") # noqa: E501 - if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 - raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 + raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._internal_ip_address = internal_ip_address diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_hardware.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_hardware.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_hardware.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_hardware.py index 97616f518..d46c01b88 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_hardware.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_hardware.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -583,7 +583,7 @@ def lcd_version(self, lcd_version): def model(self): """Gets the model of this ClusterNodeHardware. # noqa: E501 - PowerScale node model identifier string (X410, Infinity-H500, etc.). # noqa: E501 + PowerScale node model identifier string (S200, X410, Infinity-H500, etc.). # noqa: E501 :return: The model of this ClusterNodeHardware. # noqa: E501 :rtype: str @@ -594,7 +594,7 @@ def model(self): def model(self, model): """Sets the model of this ClusterNodeHardware. - PowerScale node model identifier string (X410, Infinity-H500, etc.). # noqa: E501 + PowerScale node model identifier string (S200, X410, Infinity-H500, etc.). # noqa: E501 :param model: The model of this ClusterNodeHardware. # noqa: E501 :type: str @@ -610,7 +610,7 @@ def model(self, model): def model_code(self): """Gets the model_code of this ClusterNodeHardware. # noqa: E501 - PowerScale node model code string (X410, H500, etc.). # noqa: E501 + PowerScale node model code string (S200, X410, H500, etc.). # noqa: E501 :return: The model_code of this ClusterNodeHardware. # noqa: E501 :rtype: str @@ -621,7 +621,7 @@ def model_code(self): def model_code(self, model_code): """Sets the model_code of this ClusterNodeHardware. - PowerScale node model code string (X410, H500, etc.). # noqa: E501 + PowerScale node model code string (S200, X410, H500, etc.). # noqa: E501 :param model_code: The model_code of this ClusterNodeHardware. # noqa: E501 :type: str diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_partition.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_partition.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_partition.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_partition.py index 618b2a945..af497599a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_partition.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_partition.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_partition_statfs.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_partition_statfs.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_partition_statfs.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_partition_statfs.py index 132452c4d..8e84bae26 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_partition_statfs.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_partition_statfs.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_partitions.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_partitions.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_partitions.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_partitions.py index dca8ea949..6f276cc17 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_partitions.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_partitions.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_sensor.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_sensor.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_sensor.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_sensor.py index c1ffd463e..57bae7e91 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_sensor.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_sensor.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_sensor_value.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_sensor_value.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_sensor_value.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_sensor_value.py index 4ae417d23..55c61ce2a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_sensor_value.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_sensor_value.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_sensors.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_sensors.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_sensors.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_sensors.py index 7687d9b9f..069f007dc 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_sensors.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_sensors.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_sled.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_sled.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_sled.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_sled.py index cf519dccb..35ce6bc9d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_sled.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_sled.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_state.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_state.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_state.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_state.py index ead793e9a..e66e3ee55 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_state.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_state.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_state_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_state_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_state_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_state_extended.py index 1f6349a0b..f807f9efc 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_state_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_state_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_state_servicelight.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_state_servicelight.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_state_servicelight.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_state_servicelight.py index 5351b7749..1b6d291cf 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_state_servicelight.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_state_servicelight.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_state_servicelight_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_state_servicelight_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_state_servicelight_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_state_servicelight_extended.py index c881a311b..75020f72f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_state_servicelight_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_state_servicelight_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_status.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_status.py similarity index 88% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_status.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_status.py index 5be7e1b1d..fc07f7c10 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_node_status.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_node_status.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -34,7 +34,6 @@ class ClusterNodeStatus(object): 'batterystatus': 'NodeStatusNodeBatterystatus', 'capacity': 'list[NodeStatusNodeCapacityItem]', 'cpu': 'NodeStatusNodeCpu', - 'drive_security_level': 'NodeStatusNodeDriveSecurityLevel', 'nvram': 'NodeStatusNodeNvram', 'powersupplies': 'NodeStatusNodePowersupplies', 'release': 'str', @@ -46,7 +45,6 @@ class ClusterNodeStatus(object): 'batterystatus': 'batterystatus', 'capacity': 'capacity', 'cpu': 'cpu', - 'drive_security_level': 'drive_security_level', 'nvram': 'nvram', 'powersupplies': 'powersupplies', 'release': 'release', @@ -54,13 +52,12 @@ class ClusterNodeStatus(object): 'version': 'version' } - def __init__(self, batterystatus=None, capacity=None, cpu=None, drive_security_level=None, nvram=None, powersupplies=None, release=None, uptime=None, version=None): # noqa: E501 + def __init__(self, batterystatus=None, capacity=None, cpu=None, nvram=None, powersupplies=None, release=None, uptime=None, version=None): # noqa: E501 """ClusterNodeStatus - a model defined in Swagger""" # noqa: E501 self._batterystatus = None self._capacity = None self._cpu = None - self._drive_security_level = None self._nvram = None self._powersupplies = None self._release = None @@ -74,8 +71,6 @@ def __init__(self, batterystatus=None, capacity=None, cpu=None, drive_security_l self.capacity = capacity if cpu is not None: self.cpu = cpu - if drive_security_level is not None: - self.drive_security_level = drive_security_level if nvram is not None: self.nvram = nvram if powersupplies is not None: @@ -156,29 +151,6 @@ def cpu(self, cpu): self._cpu = cpu - @property - def drive_security_level(self): - """Gets the drive_security_level of this ClusterNodeStatus. # noqa: E501 - - Information about this node's drive security level. # noqa: E501 - - :return: The drive_security_level of this ClusterNodeStatus. # noqa: E501 - :rtype: NodeStatusNodeDriveSecurityLevel - """ - return self._drive_security_level - - @drive_security_level.setter - def drive_security_level(self, drive_security_level): - """Sets the drive_security_level of this ClusterNodeStatus. - - Information about this node's drive security level. # noqa: E501 - - :param drive_security_level: The drive_security_level of this ClusterNodeStatus. # noqa: E501 - :type: NodeStatusNodeDriveSecurityLevel - """ - - self._drive_security_level = drive_security_level - @property def nvram(self): """Gets the nvram of this ClusterNodeStatus. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_nodes.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_nodes.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_nodes.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_nodes.py index 9562f1586..957df82eb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_nodes.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_nodes.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_nodes_available.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_nodes_available.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_nodes_available.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_nodes_available.py index 57b362897..448480fce 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_nodes_available.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_nodes_available.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_nodes_available_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_nodes_available_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_nodes_available_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_nodes_available_node.py index 8e508f36e..5fb303b16 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_nodes_available_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_nodes_available_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_nodes_error.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_nodes_error.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_nodes_error.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_nodes_error.py index 795ff0edf..5d4b9aef8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_nodes_error.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_nodes_error.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_nodes_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_nodes_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_nodes_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_nodes_extended.py index 952ad7f53..394cf7ec5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_nodes_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_nodes_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_nodes_extended_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_nodes_extended_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_nodes_extended_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_nodes_extended_extended.py index b5c9911cb..e862e2796 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_nodes_extended_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_nodes_extended_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_nodes_extended_extended_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_nodes_extended_extended_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_nodes_extended_extended_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_nodes_extended_extended_extended.py index 462aa17d3..e701c525c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_nodes_extended_extended_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_nodes_extended_extended_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_nodes_onefs_version.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_nodes_onefs_version.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_nodes_onefs_version.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_nodes_onefs_version.py index 32ebe51b1..d328f4b71 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_nodes_onefs_version.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_nodes_onefs_version.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_owner.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_owner.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_owner.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_owner.py index 5988c4a7c..6aedff511 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_owner.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_owner.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_patch_patch.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_patch_patch.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_patch_patch.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_patch_patch.py index 3a8f6d1cc..7acc3d90b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_patch_patch.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_patch_patch.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_patch_patches.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_patch_patches.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_patch_patches.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_patch_patches.py index f0115cb1d..3af0b55a1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_patch_patches.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_patch_patches.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_patch_patches_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_patch_patches_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_patch_patches_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_patch_patches_extended.py index ca9f91805..ebaaf5b13 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_patch_patches_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_patch_patches_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_patch_patches_patch.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_patch_patches_patch.py similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_patch_patches_patch.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_patch_patches_patch.py index d199239da..45cbe5779 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_patch_patches_patch.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_patch_patches_patch.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -35,12 +35,12 @@ class ClusterPatchPatchesPatch(object): 'conflicts': 'list[str]', 'dependencies': 'list[str]', 'description': 'str', - 'files': 'list[HealthcheckDefinitionFile]', + 'files': 'list[ClusterPatchPatchesPatchFile]', 'id': 'str', 'name': 'str', 'nodes': 'list[int]', 'reboot': 'str', - 'services': 'list[HealthcheckDefinitionService]', + 'services': 'list[ClusterPatchPatchesPatchService]', 'status': 'str' } @@ -204,7 +204,7 @@ def files(self): The files contained in this patch. # noqa: E501 :return: The files of this ClusterPatchPatchesPatch. # noqa: E501 - :rtype: list[HealthcheckDefinitionFile] + :rtype: list[ClusterPatchPatchesPatchFile] """ return self._files @@ -215,7 +215,7 @@ def files(self, files): The files contained in this patch. # noqa: E501 :param files: The files of this ClusterPatchPatchesPatch. # noqa: E501 - :type: list[HealthcheckDefinitionFile] + :type: list[ClusterPatchPatchesPatchFile] """ self._files = files @@ -331,7 +331,7 @@ def services(self): The services affected during the patch deployment # noqa: E501 :return: The services of this ClusterPatchPatchesPatch. # noqa: E501 - :rtype: list[HealthcheckDefinitionService] + :rtype: list[ClusterPatchPatchesPatchService] """ return self._services @@ -342,7 +342,7 @@ def services(self, services): The services affected during the patch deployment # noqa: E501 :param services: The services of this ClusterPatchPatchesPatch. # noqa: E501 - :type: list[HealthcheckDefinitionService] + :type: list[ClusterPatchPatchesPatchService] """ self._services = services diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_definition_file.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_patch_patches_patch_file.py similarity index 81% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_definition_file.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_patch_patches_patch_file.py index ce76c8d17..bf05ed410 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_definition_file.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_patch_patches_patch_file.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class HealthcheckDefinitionFile(object): +class ClusterPatchPatchesPatchFile(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -41,7 +41,7 @@ class HealthcheckDefinitionFile(object): } def __init__(self, md5=None, path=None): # noqa: E501 - """HealthcheckDefinitionFile - a model defined in Swagger""" # noqa: E501 + """ClusterPatchPatchesPatchFile - a model defined in Swagger""" # noqa: E501 self._md5 = None self._path = None @@ -54,22 +54,22 @@ def __init__(self, md5=None, path=None): # noqa: E501 @property def md5(self): - """Gets the md5 of this HealthcheckDefinitionFile. # noqa: E501 + """Gets the md5 of this ClusterPatchPatchesPatchFile. # noqa: E501 The md5 checksum of the file. # noqa: E501 - :return: The md5 of this HealthcheckDefinitionFile. # noqa: E501 + :return: The md5 of this ClusterPatchPatchesPatchFile. # noqa: E501 :rtype: str """ return self._md5 @md5.setter def md5(self, md5): - """Sets the md5 of this HealthcheckDefinitionFile. + """Sets the md5 of this ClusterPatchPatchesPatchFile. The md5 checksum of the file. # noqa: E501 - :param md5: The md5 of this HealthcheckDefinitionFile. # noqa: E501 + :param md5: The md5 of this ClusterPatchPatchesPatchFile. # noqa: E501 :type: str """ if md5 is not None and len(md5) > 255: @@ -81,22 +81,22 @@ def md5(self, md5): @property def path(self): - """Gets the path of this HealthcheckDefinitionFile. # noqa: E501 + """Gets the path of this ClusterPatchPatchesPatchFile. # noqa: E501 The path of the file. # noqa: E501 - :return: The path of this HealthcheckDefinitionFile. # noqa: E501 + :return: The path of this ClusterPatchPatchesPatchFile. # noqa: E501 :rtype: str """ return self._path @path.setter def path(self, path): - """Sets the path of this HealthcheckDefinitionFile. + """Sets the path of this ClusterPatchPatchesPatchFile. The path of the file. # noqa: E501 - :param path: The path of this HealthcheckDefinitionFile. # noqa: E501 + :param path: The path of this ClusterPatchPatchesPatchFile. # noqa: E501 :type: str """ if path is not None and len(path) > 4096: @@ -127,7 +127,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(HealthcheckDefinitionFile, dict): + if issubclass(ClusterPatchPatchesPatchFile, dict): for key, value in self.items(): result[key] = value @@ -143,7 +143,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, HealthcheckDefinitionFile): + if not isinstance(other, ClusterPatchPatchesPatchFile): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_definition_service.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_patch_patches_patch_service.py similarity index 80% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_definition_service.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_patch_patches_patch_service.py index 9aab7b1a4..58a5314c8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_definition_service.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_patch_patches_patch_service.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class HealthcheckDefinitionService(object): +class ClusterPatchPatchesPatchService(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -41,7 +41,7 @@ class HealthcheckDefinitionService(object): } def __init__(self, description=None, name=None): # noqa: E501 - """HealthcheckDefinitionService - a model defined in Swagger""" # noqa: E501 + """ClusterPatchPatchesPatchService - a model defined in Swagger""" # noqa: E501 self._description = None self._name = None @@ -54,22 +54,22 @@ def __init__(self, description=None, name=None): # noqa: E501 @property def description(self): - """Gets the description of this HealthcheckDefinitionService. # noqa: E501 + """Gets the description of this ClusterPatchPatchesPatchService. # noqa: E501 Description of the affected service # noqa: E501 - :return: The description of this HealthcheckDefinitionService. # noqa: E501 + :return: The description of this ClusterPatchPatchesPatchService. # noqa: E501 :rtype: str """ return self._description @description.setter def description(self, description): - """Sets the description of this HealthcheckDefinitionService. + """Sets the description of this ClusterPatchPatchesPatchService. Description of the affected service # noqa: E501 - :param description: The description of this HealthcheckDefinitionService. # noqa: E501 + :param description: The description of this ClusterPatchPatchesPatchService. # noqa: E501 :type: str """ if description is not None and len(description) > 8192: @@ -81,22 +81,22 @@ def description(self, description): @property def name(self): - """Gets the name of this HealthcheckDefinitionService. # noqa: E501 + """Gets the name of this ClusterPatchPatchesPatchService. # noqa: E501 Name of the affected service # noqa: E501 - :return: The name of this HealthcheckDefinitionService. # noqa: E501 + :return: The name of this ClusterPatchPatchesPatchService. # noqa: E501 :rtype: str """ return self._name @name.setter def name(self, name): - """Sets the name of this HealthcheckDefinitionService. + """Sets the name of this ClusterPatchPatchesPatchService. Name of the affected service # noqa: E501 - :param name: The name of this HealthcheckDefinitionService. # noqa: E501 + :param name: The name of this ClusterPatchPatchesPatchService. # noqa: E501 :type: str """ if name is not None and len(name) > 255: @@ -127,7 +127,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(HealthcheckDefinitionService, dict): + if issubclass(ClusterPatchPatchesPatchService, dict): for key, value in self.items(): result[key] = value @@ -143,7 +143,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, HealthcheckDefinitionService): + if not isinstance(other, ClusterPatchPatchesPatchService): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_retry_last_action_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_retry_last_action_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_retry_last_action_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_retry_last_action_item.py index 8e508829a..934970616 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_retry_last_action_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_retry_last_action_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_services.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_services.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_services.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_services.py index d555ea213..46d9459dc 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_services.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_services.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_services_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_services_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_services_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_services_node.py index b96941e40..305887dc9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_services_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_services_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_services_node_service.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_services_node_service.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_services_node_service.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_services_node_service.py index a5217da6a..16ad2fd07 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_services_node_service.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_services_node_service.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_statfs.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_statfs.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_statfs.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_statfs.py index a09788749..b43bce8b8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_statfs.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_statfs.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_time.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_time.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_time.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_time.py index 5842125dc..aa267c494 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_time.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_time.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_time_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_time_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_time_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_time_extended.py index 8b8f19ba2..37bdc98fb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_time_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_time_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_time_extended_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_time_extended_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_time_extended_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_time_extended_extended.py index 07d6678a3..80dd78eda 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_time_extended_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_time_extended_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_time_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_time_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_time_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_time_node.py index f454054a1..a58fd32ba 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_time_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_time_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_timezone.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_timezone.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_timezone.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_timezone.py index de0c360a1..4e8c18db8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_timezone.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_timezone.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_timezone_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_timezone_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_timezone_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_timezone_extended.py index 6bd44b7f3..d79689585 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_timezone_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_timezone_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_timezone_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_timezone_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_timezone_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_timezone_settings.py index aa2909b15..c36199a17 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_timezone_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_timezone_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_timezone_settings_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_timezone_settings_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_timezone_settings_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_timezone_settings_extended.py index 5bea56d0b..abff0d7ca 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_timezone_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_timezone_settings_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_unblock.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_unblock.py similarity index 78% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_unblock.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_unblock.py index 7f342303d..396f5b07b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_unblock.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_unblock.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,47 +31,21 @@ class ClusterUnblock(object): and the value is json key in definition. """ swagger_types = { - 'network_pools': 'bool', 'unblock': 'bool' } attribute_map = { - 'network_pools': 'network_pools', 'unblock': 'unblock' } - def __init__(self, network_pools=None, unblock=None): # noqa: E501 + def __init__(self, unblock=None): # noqa: E501 """ClusterUnblock - a model defined in Swagger""" # noqa: E501 - self._network_pools = None self._unblock = None self.discriminator = None - if network_pools is not None: - self.network_pools = network_pools self.unblock = unblock - @property - def network_pools(self): - """Gets the network_pools of this ClusterUnblock. # noqa: E501 - - - :return: The network_pools of this ClusterUnblock. # noqa: E501 - :rtype: bool - """ - return self._network_pools - - @network_pools.setter - def network_pools(self, network_pools): - """Sets the network_pools of this ClusterUnblock. - - - :param network_pools: The network_pools of this ClusterUnblock. # noqa: E501 - :type: bool - """ - - self._network_pools = network_pools - @property def unblock(self): """Gets the unblock of this ClusterUnblock. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_update_lnns.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_update_lnns.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_update_lnns.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_update_lnns.py index 9976daf3e..a657c5eae 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_update_lnns.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_update_lnns.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_update_lnns_lnn.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_update_lnns_lnn.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_update_lnns_lnn.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_update_lnns_lnn.py index 05fd888b7..be47fd34e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_update_lnns_lnn.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_update_lnns_lnn.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_upgrade.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_upgrade.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_upgrade.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_upgrade.py index 2215d57d8..871ca3535 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_upgrade.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_upgrade.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_upgrade_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_upgrade_item.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_upgrade_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_upgrade_item.py index 07efa0231..c1548c4a3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_upgrade_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_upgrade_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -459,7 +459,7 @@ def patch_paths(self, patch_paths): def skip_optional(self): """Gets the skip_optional of this ClusterUpgradeItem. # noqa: E501 - Used to indicate that the optional pre-upgrade checks should notbe skipped. # noqa: E501 + Used to indicate that the pre-upgrade check should be skipped. # noqa: E501 :return: The skip_optional of this ClusterUpgradeItem. # noqa: E501 :rtype: bool @@ -470,7 +470,7 @@ def skip_optional(self): def skip_optional(self, skip_optional): """Sets the skip_optional of this ClusterUpgradeItem. - Used to indicate that the optional pre-upgrade checks should notbe skipped. # noqa: E501 + Used to indicate that the pre-upgrade check should be skipped. # noqa: E501 :param skip_optional: The skip_optional of this ClusterUpgradeItem. # noqa: E501 :type: bool diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_version.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_version.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_version.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_version.py index f053ae1e9..367729728 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_version.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_version.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_version_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_version_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_version_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/cluster_version_node.py index 7c059b31f..25c20e621 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_version_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/cluster_version_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_export.py b/isilon_sdk/isilon_sdk/v9_4_0/models/config_export.py similarity index 87% rename from isilon_sdk/isilon_sdk/v9_11_0/models/config_export.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/config_export.py index f172f08d6..4e2f48a1c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_export.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/config_export.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -34,7 +34,6 @@ class ConfigExport(object): 'done': 'str', 'failed': 'str', 'id': 'str', - 'initiator': 'str', 'message': 'str', 'path': 'str', 'pending': 'str', @@ -45,20 +44,18 @@ class ConfigExport(object): 'done': 'done', 'failed': 'failed', 'id': 'id', - 'initiator': 'initiator', 'message': 'message', 'path': 'path', 'pending': 'pending', 'status': 'status' } - def __init__(self, done=None, failed=None, id=None, initiator=None, message=None, path=None, pending=None, status=None): # noqa: E501 + def __init__(self, done=None, failed=None, id=None, message=None, path=None, pending=None, status=None): # noqa: E501 """ConfigExport - a model defined in Swagger""" # noqa: E501 self._done = None self._failed = None self._id = None - self._initiator = None self._message = None self._path = None self._pending = None @@ -71,8 +68,6 @@ def __init__(self, done=None, failed=None, id=None, initiator=None, message=None self.failed = failed if id is not None: self.id = id - if initiator is not None: - self.initiator = initiator if message is not None: self.message = message if path is not None: @@ -163,33 +158,6 @@ def id(self, id): self._id = id - @property - def initiator(self): - """Gets the initiator of this ConfigExport. # noqa: E501 - - initiator of the job, combination of devid and process id. # noqa: E501 - - :return: The initiator of this ConfigExport. # noqa: E501 - :rtype: str - """ - return self._initiator - - @initiator.setter - def initiator(self, initiator): - """Sets the initiator of this ConfigExport. - - initiator of the job, combination of devid and process id. # noqa: E501 - - :param initiator: The initiator of this ConfigExport. # noqa: E501 - :type: str - """ - if initiator is not None and len(initiator) > 8192: - raise ValueError("Invalid value for `initiator`, length must be less than or equal to `8192`") # noqa: E501 - if initiator is not None and len(initiator) < 1: - raise ValueError("Invalid value for `initiator`, length must be greater than or equal to `1`") # noqa: E501 - - self._initiator = initiator - @property def message(self): """Gets the message of this ConfigExport. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_export_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/config_export_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/config_export_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/config_export_create_params.py index e7edf0d07..ab2ef8e5e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_export_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/config_export_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_exports.py b/isilon_sdk/isilon_sdk/v9_4_0/models/config_exports.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/config_exports.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/config_exports.py index 73c94c49d..b692769fc 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_exports.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/config_exports.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_feature.py b/isilon_sdk/isilon_sdk/v9_4_0/models/config_feature.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/config_feature.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/config_feature.py index 9c308c6ca..eae656e77 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_feature.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/config_feature.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_feature_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/config_feature_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/config_feature_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/config_feature_extended.py index 4ac57b2b8..97cf2abb0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_feature_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/config_feature_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_features.py b/isilon_sdk/isilon_sdk/v9_4_0/models/config_features.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/config_features.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/config_features.py index 5b946c5a3..87e99e817 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_features.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/config_features.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_features_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/config_features_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/config_features_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/config_features_extended.py index 4d89c767e..87429fa9d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_features_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/config_features_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_import.py b/isilon_sdk/isilon_sdk/v9_4_0/models/config_import.py similarity index 81% rename from isilon_sdk/isilon_sdk/v9_11_0/models/config_import.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/config_import.py index e554d2a79..cb0f0619b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_import.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/config_import.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -35,11 +35,9 @@ class ConfigImport(object): 'export_id': 'str', 'failed': 'str', 'id': 'str', - 'initiator': 'str', 'message': 'str', 'path': 'str', 'pending': 'str', - 'skipped': 'str', 'status': 'str' } @@ -48,26 +46,22 @@ class ConfigImport(object): 'export_id': 'export_id', 'failed': 'failed', 'id': 'id', - 'initiator': 'initiator', 'message': 'message', 'path': 'path', 'pending': 'pending', - 'skipped': 'skipped', 'status': 'status' } - def __init__(self, done=None, export_id=None, failed=None, id=None, initiator=None, message=None, path=None, pending=None, skipped=None, status=None): # noqa: E501 + def __init__(self, done=None, export_id=None, failed=None, id=None, message=None, path=None, pending=None, status=None): # noqa: E501 """ConfigImport - a model defined in Swagger""" # noqa: E501 self._done = None self._export_id = None self._failed = None self._id = None - self._initiator = None self._message = None self._path = None self._pending = None - self._skipped = None self._status = None self.discriminator = None @@ -79,16 +73,12 @@ def __init__(self, done=None, export_id=None, failed=None, id=None, initiator=No self.failed = failed if id is not None: self.id = id - if initiator is not None: - self.initiator = initiator if message is not None: self.message = message if path is not None: self.path = path if pending is not None: self.pending = pending - if skipped is not None: - self.skipped = skipped if status is not None: self.status = status @@ -200,33 +190,6 @@ def id(self, id): self._id = id - @property - def initiator(self): - """Gets the initiator of this ConfigImport. # noqa: E501 - - Initiator of the job, combination of devid and process id. # noqa: E501 - - :return: The initiator of this ConfigImport. # noqa: E501 - :rtype: str - """ - return self._initiator - - @initiator.setter - def initiator(self, initiator): - """Sets the initiator of this ConfigImport. - - Initiator of the job, combination of devid and process id. # noqa: E501 - - :param initiator: The initiator of this ConfigImport. # noqa: E501 - :type: str - """ - if initiator is not None and len(initiator) > 8192: - raise ValueError("Invalid value for `initiator`, length must be less than or equal to `8192`") # noqa: E501 - if initiator is not None and len(initiator) < 1: - raise ValueError("Invalid value for `initiator`, length must be greater than or equal to `1`") # noqa: E501 - - self._initiator = initiator - @property def message(self): """Gets the message of this ConfigImport. # noqa: E501 @@ -308,33 +271,6 @@ def pending(self, pending): self._pending = pending - @property - def skipped(self): - """Gets the skipped of this ConfigImport. # noqa: E501 - - Skipped components. # noqa: E501 - - :return: The skipped of this ConfigImport. # noqa: E501 - :rtype: str - """ - return self._skipped - - @skipped.setter - def skipped(self, skipped): - """Sets the skipped of this ConfigImport. - - Skipped components. # noqa: E501 - - :param skipped: The skipped of this ConfigImport. # noqa: E501 - :type: str - """ - if skipped is not None and len(skipped) > 8192: - raise ValueError("Invalid value for `skipped`, length must be less than or equal to `8192`") # noqa: E501 - if skipped is not None and len(skipped) < 1: - raise ValueError("Invalid value for `skipped`, length must be greater than or equal to `1`") # noqa: E501 - - self._skipped = skipped - @property def status(self): """Gets the status of this ConfigImport. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_import_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/config_import_create_params.py similarity index 84% rename from isilon_sdk/isilon_sdk/v9_11_0/models/config_import_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/config_import_create_params.py index 5d14471df..85cf58ba8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_import_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/config_import_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -32,29 +32,24 @@ class ConfigImportCreateParams(object): """ swagger_types = { 'components': 'str', - 'export_id': 'str', - 'rules': 'ConfigImportRules' + 'export_id': 'str' } attribute_map = { 'components': 'components', - 'export_id': 'export_id', - 'rules': 'rules' + 'export_id': 'export_id' } - def __init__(self, components=None, export_id=None, rules=None): # noqa: E501 + def __init__(self, components=None, export_id=None): # noqa: E501 """ConfigImportCreateParams - a model defined in Swagger""" # noqa: E501 self._components = None self._export_id = None - self._rules = None self.discriminator = None if components is not None: self.components = components self.export_id = export_id - if rules is not None: - self.rules = rules @property def components(self): @@ -112,29 +107,6 @@ def export_id(self, export_id): self._export_id = export_id - @property - def rules(self): - """Gets the rules of this ConfigImportCreateParams. # noqa: E501 - - # noqa: E501 - - :return: The rules of this ConfigImportCreateParams. # noqa: E501 - :rtype: ConfigImportRules - """ - return self._rules - - @rules.setter - def rules(self, rules): - """Sets the rules of this ConfigImportCreateParams. - - # noqa: E501 - - :param rules: The rules of this ConfigImportCreateParams. # noqa: E501 - :type: ConfigImportRules - """ - - self._rules = rules - def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_imports.py b/isilon_sdk/isilon_sdk/v9_4_0/models/config_imports.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/config_imports.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/config_imports.py index a87531626..403074792 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_imports.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/config_imports.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_network.py b/isilon_sdk/isilon_sdk/v9_4_0/models/config_network.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/config_network.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/config_network.py index 0d7489f99..f79205dd4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_network.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/config_network.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_network_network.py b/isilon_sdk/isilon_sdk/v9_4_0/models/config_network_network.py similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/models/config_network_network.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/config_network_network.py index e1781d34f..2db123833 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_network_network.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/config_network_network.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -81,8 +81,8 @@ def gateway(self, gateway): raise ValueError("Invalid value for `gateway`, length must be less than or equal to `45`") # noqa: E501 if gateway is not None and len(gateway) < 2: raise ValueError("Invalid value for `gateway`, length must be greater than or equal to `2`") # noqa: E501 - if gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', gateway): # noqa: E501 - raise ValueError(r"Invalid value for `gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', gateway): # noqa: E501 + raise ValueError(r"Invalid value for `gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._gateway = gateway diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_network_network_range.py b/isilon_sdk/isilon_sdk/v9_4_0/models/config_network_network_range.py similarity index 94% rename from isilon_sdk/isilon_sdk/v9_11_0/models/config_network_network_range.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/config_network_network_range.py index 44b161e38..aaa959f24 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_network_network_range.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/config_network_network_range.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -105,8 +105,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/config_node.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/models/config_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/config_node.py index ab3ced4df..eba07e434 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/config_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -118,8 +118,8 @@ def ip_addr(self, ip_addr): raise ValueError("Invalid value for `ip_addr`, length must be less than or equal to `45`") # noqa: E501 if ip_addr is not None and len(ip_addr) < 2: raise ValueError("Invalid value for `ip_addr`, length must be greater than or equal to `2`") # noqa: E501 - if ip_addr is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ip_addr): # noqa: E501 - raise ValueError(r"Invalid value for `ip_addr`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if ip_addr is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ip_addr): # noqa: E501 + raise ValueError(r"Invalid value for `ip_addr`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._ip_addr = ip_addr diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_nodes.py b/isilon_sdk/isilon_sdk/v9_4_0/models/config_nodes.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/config_nodes.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/config_nodes.py index f20e9ef47..05722f7c9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_nodes.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/config_nodes.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_nodes_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/config_nodes_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/config_nodes_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/config_nodes_extended.py index 465ac14c4..670da79d6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_nodes_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/config_nodes_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/config_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/config_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/config_settings.py index 0f3357844..75dbe8a72 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/config_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/config_settings_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/config_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/config_settings_settings.py index 2ade2a574..5273d3ef6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/config_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_user.py b/isilon_sdk/isilon_sdk/v9_4_0/models/config_user.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/config_user.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/config_user.py index 5823fb15c..bcf74449a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_user.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/config_user.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_user_user.py b/isilon_sdk/isilon_sdk/v9_4_0/models/config_user_user.py similarity index 77% rename from isilon_sdk/isilon_sdk/v9_11_0/models/config_user_user.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/config_user_user.py index 322635b16..fff1292ae 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_user_user.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/config_user_user.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -32,28 +32,28 @@ class ConfigUserUser(object): """ swagger_types = { 'id': 'int', - 'privilege': 'int', + 'password': 'str', 'username': 'str' } attribute_map = { 'id': 'id', - 'privilege': 'privilege', + 'password': 'password', 'username': 'username' } - def __init__(self, id=None, privilege=None, username=None): # noqa: E501 + def __init__(self, id=None, password=None, username=None): # noqa: E501 """ConfigUserUser - a model defined in Swagger""" # noqa: E501 self._id = None - self._privilege = None + self._password = None self._username = None self.discriminator = None if id is not None: self.id = id - if privilege is not None: - self.privilege = privilege + if password is not None: + self.password = password if username is not None: self.username = username @@ -85,31 +85,31 @@ def id(self, id): self._id = id @property - def privilege(self): - """Gets the privilege of this ConfigUserUser. # noqa: E501 + def password(self): + """Gets the password of this ConfigUserUser. # noqa: E501 - Specifies the privileges granted to the currently authenticated user. # noqa: E501 + Represents the password that customers will use with the IPMI username when authenticating remote IPMI requests. # noqa: E501 - :return: The privilege of this ConfigUserUser. # noqa: E501 - :rtype: int + :return: The password of this ConfigUserUser. # noqa: E501 + :rtype: str """ - return self._privilege + return self._password - @privilege.setter - def privilege(self, privilege): - """Sets the privilege of this ConfigUserUser. + @password.setter + def password(self, password): + """Sets the password of this ConfigUserUser. - Specifies the privileges granted to the currently authenticated user. # noqa: E501 + Represents the password that customers will use with the IPMI username when authenticating remote IPMI requests. # noqa: E501 - :param privilege: The privilege of this ConfigUserUser. # noqa: E501 - :type: int + :param password: The password of this ConfigUserUser. # noqa: E501 + :type: str """ - if privilege is not None and privilege > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `privilege`, must be a value less than or equal to `4294967295`") # noqa: E501 - if privilege is not None and privilege < 0: # noqa: E501 - raise ValueError("Invalid value for `privilege`, must be a value greater than or equal to `0`") # noqa: E501 + if password is not None and len(password) > 20: + raise ValueError("Invalid value for `password`, length must be less than or equal to `20`") # noqa: E501 + if password is not None and len(password) < 16: + raise ValueError("Invalid value for `password`, length must be greater than or equal to `16`") # noqa: E501 - self._privilege = privilege + self._password = password @property def username(self): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/copy_errors.py b/isilon_sdk/isilon_sdk/v9_4_0/models/copy_errors.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/copy_errors.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/copy_errors.py index f2800f3e0..f903df024 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/copy_errors.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/copy_errors.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/copy_errors_copy_errors.py b/isilon_sdk/isilon_sdk/v9_4_0/models/copy_errors_copy_errors.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/copy_errors_copy_errors.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/copy_errors_copy_errors.py index ab4bb02bc..e9fb4d90b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/copy_errors_copy_errors.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/copy_errors_copy_errors.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_ads_provider_search_item_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_ads_provider_search_item_response.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_ads_provider_search_item_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_ads_provider_search_item_response.py index 6208e7c78..89db9789f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_ads_provider_search_item_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_ads_provider_search_item_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_ads_provider_search_item_response_object.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_ads_provider_search_item_response_object.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_ads_provider_search_item_response_object.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_ads_provider_search_item_response_object.py index c6c7e0165..ce4102165 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_ads_provider_search_item_response_object.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_ads_provider_search_item_response_object.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_antivirus_scan_item_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_antivirus_scan_item_response.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_antivirus_scan_item_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_antivirus_scan_item_response.py index 99a54e572..c18733c7e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_antivirus_scan_item_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_antivirus_scan_item_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_cloud_account_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_cloud_account_response.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_cloud_account_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_cloud_account_response.py index dba2d4567..753a1f674 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_cloud_account_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_cloud_account_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_cloud_job_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_cloud_job_response.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_cloud_job_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_cloud_job_response.py index 068fc387e..65f040235 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_cloud_job_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_cloud_job_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_cloud_pool_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_cloud_pool_response.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_cloud_pool_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_cloud_pool_response.py index 015b851c7..42c358f2f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_cloud_pool_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_cloud_pool_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_cloud_proxy_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_cloud_proxy_response.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_cloud_proxy_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_cloud_proxy_response.py index da7e941fe..6bdacd4a5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_cloud_proxy_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_cloud_proxy_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_config_export_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_config_export_response.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_config_export_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_config_export_response.py index 6a212b2bc..a2ada4f62 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_config_export_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_config_export_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_config_import_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_config_import_response.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_config_import_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_config_import_response.py index a06f96aea..24078aa9e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_config_import_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_config_import_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_datamover_account_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_datamover_account_response.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_datamover_account_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_datamover_account_response.py index 3c5ac875b..ddf142195 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_datamover_account_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_datamover_account_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_datamover_base_policy_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_datamover_base_policy_response.py similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_datamover_base_policy_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_datamover_base_policy_response.py index c8a884131..f4ece9ac8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_datamover_base_policy_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_datamover_base_policy_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -50,7 +50,7 @@ def __init__(self, id=None): # noqa: E501 def id(self): """Gets the id of this CreateDatamoverBasePolicyResponse. # noqa: E501 - The unique base policy identifier. # noqa: E501 + The unique policy identifier. # noqa: E501 :return: The id of this CreateDatamoverBasePolicyResponse. # noqa: E501 :rtype: int @@ -61,7 +61,7 @@ def id(self): def id(self, id): """Sets the id of this CreateDatamoverBasePolicyResponse. - The unique base policy identifier. # noqa: E501 + The unique policy identifier. # noqa: E501 :param id: The id of this CreateDatamoverBasePolicyResponse. # noqa: E501 :type: int diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_dataset_filter_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_dataset_filter_response.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_dataset_filter_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_dataset_filter_response.py index a4f56db43..2b0ab5cda 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_dataset_filter_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_dataset_filter_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_dataset_workload_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_dataset_workload_response.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_dataset_workload_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_dataset_workload_response.py index 5d7a02ae1..bea0f8e69 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_dataset_workload_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_dataset_workload_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_filepool_policy_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_filepool_policy_response.py similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_filepool_policy_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_filepool_policy_response.py index f0eb82662..875497a71 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_filepool_policy_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_filepool_policy_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -50,7 +50,7 @@ def __init__(self, id=None): # noqa: E501 def id(self): """Gets the id of this CreateFilepoolPolicyResponse. # noqa: E501 - The name of the new policy. # noqa: E501 + The name of the new policy # noqa: E501 :return: The id of this CreateFilepoolPolicyResponse. # noqa: E501 :rtype: str @@ -61,7 +61,7 @@ def id(self): def id(self, id): """Sets the id of this CreateFilepoolPolicyResponse. - The name of the new policy. # noqa: E501 + The name of the new policy # noqa: E501 :param id: The id of this CreateFilepoolPolicyResponse. # noqa: E501 :type: str diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_hardening_apply_item_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_hardening_apply_item_response.py similarity index 85% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_hardening_apply_item_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_hardening_apply_item_response.py index e1d2d84ca..0913354d4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_hardening_apply_item_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_hardening_apply_item_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -51,7 +51,7 @@ def __init__(self, message=None): # noqa: E501 def message(self): """Gets the message of this CreateHardeningApplyItemResponse. # noqa: E501 - Message text containing the result of the hardening action. # noqa: E501 + Message text indicating if hardening apply operation started successfully or failed to start. # noqa: E501 :return: The message of this CreateHardeningApplyItemResponse. # noqa: E501 :rtype: str @@ -62,15 +62,11 @@ def message(self): def message(self, message): """Sets the message of this CreateHardeningApplyItemResponse. - Message text containing the result of the hardening action. # noqa: E501 + Message text indicating if hardening apply operation started successfully or failed to start. # noqa: E501 :param message: The message of this CreateHardeningApplyItemResponse. # noqa: E501 :type: str """ - if message is not None and len(message) > 256: - raise ValueError("Invalid value for `message`, length must be less than or equal to `256`") # noqa: E501 - if message is not None and len(message) < 1: - raise ValueError("Invalid value for `message`, length must be greater than or equal to `1`") # noqa: E501 self._message = message diff --git a/isilon_sdk/isilon_sdk/v9_4_0/models/create_hardening_resolve_item_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_hardening_resolve_item_response.py new file mode 100644 index 000000000..15e7ad5df --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_hardening_resolve_item_response.py @@ -0,0 +1,117 @@ +# coding: utf-8 + +""" + Isilon SDK + + Isilon SDK - Language bindings for the OneFS API # noqa: E501 + + OpenAPI spec version: 15 + Contact: sdk@isilon.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + + +class CreateHardeningResolveItemResponse(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'message': 'str' + } + + attribute_map = { + 'message': 'message' + } + + def __init__(self, message=None): # noqa: E501 + """CreateHardeningResolveItemResponse - a model defined in Swagger""" # noqa: E501 + + self._message = None + self.discriminator = None + + if message is not None: + self.message = message + + @property + def message(self): + """Gets the message of this CreateHardeningResolveItemResponse. # noqa: E501 + + Message text indicating if operation to resolve issues started successfully or failed to start. # noqa: E501 + + :return: The message of this CreateHardeningResolveItemResponse. # noqa: E501 + :rtype: str + """ + return self._message + + @message.setter + def message(self, message): + """Sets the message of this CreateHardeningResolveItemResponse. + + Message text indicating if operation to resolve issues started successfully or failed to start. # noqa: E501 + + :param message: The message of this CreateHardeningResolveItemResponse. # noqa: E501 + :type: str + """ + + self._message = message + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(CreateHardeningResolveItemResponse, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, CreateHardeningResolveItemResponse): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + """Returns true if both objects are not equal""" + return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_idps_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_hardening_revert_item_response.py similarity index 64% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_idps_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_hardening_revert_item_response.py index 87ea39802..08fcd118b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_saml_services_idps_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_hardening_revert_item_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class ProvidersSamlServicesIdpsExtended(object): +class CreateHardeningRevertItemResponse(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -31,42 +31,44 @@ class ProvidersSamlServicesIdpsExtended(object): and the value is json key in definition. """ swagger_types = { - 'idps': 'list[ProvidersSamlServicesIdpsIdpExtended]' + 'message': 'str' } attribute_map = { - 'idps': 'idps' + 'message': 'message' } - def __init__(self, idps=None): # noqa: E501 - """ProvidersSamlServicesIdpsExtended - a model defined in Swagger""" # noqa: E501 + def __init__(self, message=None): # noqa: E501 + """CreateHardeningRevertItemResponse - a model defined in Swagger""" # noqa: E501 - self._idps = None + self._message = None self.discriminator = None - if idps is not None: - self.idps = idps + if message is not None: + self.message = message @property - def idps(self): - """Gets the idps of this ProvidersSamlServicesIdpsExtended. # noqa: E501 + def message(self): + """Gets the message of this CreateHardeningRevertItemResponse. # noqa: E501 + Message text indicating if hardening revert operation started successfully or failed or start. # noqa: E501 - :return: The idps of this ProvidersSamlServicesIdpsExtended. # noqa: E501 - :rtype: list[ProvidersSamlServicesIdpsIdpExtended] + :return: The message of this CreateHardeningRevertItemResponse. # noqa: E501 + :rtype: str """ - return self._idps + return self._message - @idps.setter - def idps(self, idps): - """Sets the idps of this ProvidersSamlServicesIdpsExtended. + @message.setter + def message(self, message): + """Sets the message of this CreateHardeningRevertItemResponse. + Message text indicating if hardening revert operation started successfully or failed or start. # noqa: E501 - :param idps: The idps of this ProvidersSamlServicesIdpsExtended. # noqa: E501 - :type: list[ProvidersSamlServicesIdpsIdpExtended] + :param message: The message of this CreateHardeningRevertItemResponse. # noqa: E501 + :type: str """ - self._idps = idps + self._message = message def to_dict(self): """Returns the model properties as a dict""" @@ -89,7 +91,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(ProvidersSamlServicesIdpsExtended, dict): + if issubclass(CreateHardeningRevertItemResponse, dict): for key, value in self.items(): result[key] = value @@ -105,7 +107,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, ProvidersSamlServicesIdpsExtended): + if not isinstance(other, CreateHardeningRevertItemResponse): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_hardware_tape_name_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_hardware_tape_name_response.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_hardware_tape_name_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_hardware_tape_name_response.py index 1ce26099e..6fa0b9cec 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_hardware_tape_name_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_hardware_tape_name_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_hardware_tape_name_response_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_hardware_tape_name_response_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_hardware_tape_name_response_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_hardware_tape_name_response_node.py index 4ea2d34d7..10d61c349 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_hardware_tape_name_response_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_hardware_tape_name_response_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_hardware_tape_name_response_node_rescan_report_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_hardware_tape_name_response_node_rescan_report_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_hardware_tape_name_response_node_rescan_report_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_hardware_tape_name_response_node_rescan_report_item.py index 6cf4e3be1..34dcdaf15 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_hardware_tape_name_response_node_rescan_report_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_hardware_tape_name_response_node_rescan_report_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_job_job_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_job_job_response.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_job_job_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_job_job_response.py index 3d1b55ca7..f5831755d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_job_job_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_job_job_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_kmip_server_verify_item_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_kmip_server_verify_item_response.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_kmip_server_verify_item_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_kmip_server_verify_item_response.py index 9be13efc5..e6086b8c0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_kmip_server_verify_item_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_kmip_server_verify_item_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_kmip_server_verify_item_response_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_kmip_server_verify_item_response_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_kmip_server_verify_item_response_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_kmip_server_verify_item_response_node.py index 65960c4f8..1874b6d88 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_kmip_server_verify_item_response_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_kmip_server_verify_item_response_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_nfs_alias_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_nfs_alias_response.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_nfs_alias_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_nfs_alias_response.py index 3585a9e60..f72f3c3b1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_nfs_alias_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_nfs_alias_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_nfs_nlm_sessions_check_item_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_nfs_nlm_sessions_check_item_response.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_nfs_nlm_sessions_check_item_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_nfs_nlm_sessions_check_item_response.py index a35c22d90..3f3b22dcc 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_nfs_nlm_sessions_check_item_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_nfs_nlm_sessions_check_item_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_performance_dataset_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_performance_dataset_response.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_performance_dataset_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_performance_dataset_response.py index c83a020fe..a1a6c368b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_performance_dataset_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_performance_dataset_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_quota_report_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_quota_report_response.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_quota_report_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_quota_report_response.py index 765a1e21d..7bd98c66a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_quota_report_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_quota_report_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_response.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_response.py index 31676080d..3c399ce58 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_s3_key_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_s3_key_response.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_s3_key_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_s3_key_response.py index f972aeb8a..100c164f9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_s3_key_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_s3_key_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_s3_key_response_keys.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_s3_key_response_keys.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_s3_key_response_keys.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_s3_key_response_keys.py index 336e0f6d0..ded930391 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_s3_key_response_keys.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_s3_key_response_keys.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_sed_migrate_item_response.py similarity index 77% rename from isilon_sdk/isilon_sdk/v9_11_0/models/firewall_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_sed_migrate_item_response.py index c1a3fe19a..47a2c9d08 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_sed_migrate_item_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class FirewallSettings(object): +class CreateSedMigrateItemResponse(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -31,7 +31,7 @@ class FirewallSettings(object): and the value is json key in definition. """ swagger_types = { - 'settings': 'FirewallSettingsSettings' + 'settings': 'CreateSedMigrateItemResponseSettings' } attribute_map = { @@ -39,7 +39,7 @@ class FirewallSettings(object): } def __init__(self, settings=None): # noqa: E501 - """FirewallSettings - a model defined in Swagger""" # noqa: E501 + """CreateSedMigrateItemResponse - a model defined in Swagger""" # noqa: E501 self._settings = None self.discriminator = None @@ -49,23 +49,23 @@ def __init__(self, settings=None): # noqa: E501 @property def settings(self): - """Gets the settings of this FirewallSettings. # noqa: E501 + """Gets the settings of this CreateSedMigrateItemResponse. # noqa: E501 # noqa: E501 - :return: The settings of this FirewallSettings. # noqa: E501 - :rtype: FirewallSettingsSettings + :return: The settings of this CreateSedMigrateItemResponse. # noqa: E501 + :rtype: CreateSedMigrateItemResponseSettings """ return self._settings @settings.setter def settings(self, settings): - """Sets the settings of this FirewallSettings. + """Sets the settings of this CreateSedMigrateItemResponse. # noqa: E501 - :param settings: The settings of this FirewallSettings. # noqa: E501 - :type: FirewallSettingsSettings + :param settings: The settings of this CreateSedMigrateItemResponse. # noqa: E501 + :type: CreateSedMigrateItemResponseSettings """ self._settings = settings @@ -91,7 +91,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(FirewallSettings, dict): + if issubclass(CreateSedMigrateItemResponse, dict): for key, value in self.items(): result[key] = value @@ -107,7 +107,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, FirewallSettings): + if not isinstance(other, CreateSedMigrateItemResponse): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_sed_migrate_item_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_sed_migrate_item_response_settings.py similarity index 89% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_sed_migrate_item_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_sed_migrate_item_response_settings.py index 0bff56189..81823b858 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_sed_migrate_item_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_sed_migrate_item_response_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class CreateSedMigrateItemResponse(object): +class CreateSedMigrateItemResponseSettings(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -39,7 +39,7 @@ class CreateSedMigrateItemResponse(object): } def __init__(self, migration_msg=None): # noqa: E501 - """CreateSedMigrateItemResponse - a model defined in Swagger""" # noqa: E501 + """CreateSedMigrateItemResponseSettings - a model defined in Swagger""" # noqa: E501 self._migration_msg = None self.discriminator = None @@ -48,22 +48,22 @@ def __init__(self, migration_msg=None): # noqa: E501 @property def migration_msg(self): - """Gets the migration_msg of this CreateSedMigrateItemResponse. # noqa: E501 + """Gets the migration_msg of this CreateSedMigrateItemResponseSettings. # noqa: E501 Non-error message reported to user about the migration process. # noqa: E501 - :return: The migration_msg of this CreateSedMigrateItemResponse. # noqa: E501 + :return: The migration_msg of this CreateSedMigrateItemResponseSettings. # noqa: E501 :rtype: str """ return self._migration_msg @migration_msg.setter def migration_msg(self, migration_msg): - """Sets the migration_msg of this CreateSedMigrateItemResponse. + """Sets the migration_msg of this CreateSedMigrateItemResponseSettings. Non-error message reported to user about the migration process. # noqa: E501 - :param migration_msg: The migration_msg of this CreateSedMigrateItemResponse. # noqa: E501 + :param migration_msg: The migration_msg of this CreateSedMigrateItemResponseSettings. # noqa: E501 :type: str """ if migration_msg is None: @@ -96,7 +96,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(CreateSedMigrateItemResponse, dict): + if issubclass(CreateSedMigrateItemResponseSettings, dict): for key, value in self.items(): result[key] = value @@ -112,7 +112,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, CreateSedMigrateItemResponse): + if not isinstance(other, CreateSedMigrateItemResponseSettings): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_smb_log_level_filter_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_smb_log_level_filter_response.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_smb_log_level_filter_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_smb_log_level_filter_response.py index f0d73dac5..4de207ad7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_smb_log_level_filter_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_smb_log_level_filter_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_smb_share_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_smb_share_response.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_smb_share_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_smb_share_response.py index f17e11a48..a82fe1c1b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_smb_share_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_smb_share_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_snapshot_alias_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_snapshot_alias_response.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_snapshot_alias_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_snapshot_alias_response.py index 59197395c..df5782fe4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_snapshot_alias_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_snapshot_alias_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_snapshot_lock_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_snapshot_lock_response.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_snapshot_lock_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_snapshot_lock_response.py index dd579fc42..e9c888571 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_snapshot_lock_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_snapshot_lock_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_snapshot_schedule_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_snapshot_schedule_response.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_snapshot_schedule_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_snapshot_schedule_response.py index 86a707e4c..4da733b24 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_snapshot_schedule_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_snapshot_schedule_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_storagepool_tier_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_storagepool_tier_response.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_storagepool_tier_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_storagepool_tier_response.py index c373d6496..920345baf 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_storagepool_tier_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_storagepool_tier_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_sync_reports_rotate_item_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_sync_reports_rotate_item_response.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_sync_reports_rotate_item_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_sync_reports_rotate_item_response.py index 0c1766bab..082b46e04 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_sync_reports_rotate_item_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_sync_reports_rotate_item_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_throttling_bw_rule_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/create_throttling_bw_rule_response.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_throttling_bw_rule_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/create_throttling_bw_rule_response.py index 1568ba133..fdb396c17 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_throttling_bw_rule_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/create_throttling_bw_rule_response.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account.py similarity index 82% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account.py index e465d695e..a9aca3c7f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -35,10 +35,8 @@ class DatamoverAccount(object): 'briefcase': 'str', 'credentials': 'DatamoverAccountCredentials', 'local_network_pool': 'str', - 'max_sparks': 'int', 'name': 'str', 'remote_network_pool': 'str', - 'storage_class': 'str', 'uri': 'str', 'version': 'int' } @@ -48,25 +46,21 @@ class DatamoverAccount(object): 'briefcase': 'briefcase', 'credentials': 'credentials', 'local_network_pool': 'local_network_pool', - 'max_sparks': 'max_sparks', 'name': 'name', 'remote_network_pool': 'remote_network_pool', - 'storage_class': 'storage_class', 'uri': 'uri', 'version': 'version' } - def __init__(self, account_type=None, briefcase=None, credentials=None, local_network_pool=None, max_sparks=None, name=None, remote_network_pool=None, storage_class=None, uri=None, version=None): # noqa: E501 + def __init__(self, account_type=None, briefcase=None, credentials=None, local_network_pool=None, name=None, remote_network_pool=None, uri=None, version=None): # noqa: E501 """DatamoverAccount - a model defined in Swagger""" # noqa: E501 self._account_type = None self._briefcase = None self._credentials = None self._local_network_pool = None - self._max_sparks = None self._name = None self._remote_network_pool = None - self._storage_class = None self._uri = None self._version = None self.discriminator = None @@ -79,14 +73,10 @@ def __init__(self, account_type=None, briefcase=None, credentials=None, local_ne self.credentials = credentials if local_network_pool is not None: self.local_network_pool = local_network_pool - if max_sparks is not None: - self.max_sparks = max_sparks if name is not None: self.name = name if remote_network_pool is not None: self.remote_network_pool = remote_network_pool - if storage_class is not None: - self.storage_class = storage_class if uri is not None: self.uri = uri if version is not None: @@ -112,7 +102,7 @@ def account_type(self, account_type): :param account_type: The account_type of this DatamoverAccount. # noqa: E501 :type: str """ - allowed_values = ["DM", "AWS_S3", "ECS_S3", "AZURE", "GCP"] # noqa: E501 + allowed_values = ["DM", "AWS_S3", "ECS_S3", "AZURE"] # noqa: E501 if account_type not in allowed_values: raise ValueError( "Invalid value for `account_type` ({0}), must be one of {1}" # noqa: E501 @@ -198,33 +188,6 @@ def local_network_pool(self, local_network_pool): self._local_network_pool = local_network_pool - @property - def max_sparks(self): - """Gets the max_sparks of this DatamoverAccount. # noqa: E501 - - The limit of concurrent running tasks for this account per node # noqa: E501 - - :return: The max_sparks of this DatamoverAccount. # noqa: E501 - :rtype: int - """ - return self._max_sparks - - @max_sparks.setter - def max_sparks(self, max_sparks): - """Sets the max_sparks of this DatamoverAccount. - - The limit of concurrent running tasks for this account per node # noqa: E501 - - :param max_sparks: The max_sparks of this DatamoverAccount. # noqa: E501 - :type: int - """ - if max_sparks is not None and max_sparks > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `max_sparks`, must be a value less than or equal to `4294967295`") # noqa: E501 - if max_sparks is not None and max_sparks < 0: # noqa: E501 - raise ValueError("Invalid value for `max_sparks`, must be a value greater than or equal to `0`") # noqa: E501 - - self._max_sparks = max_sparks - @property def name(self): """Gets the name of this DatamoverAccount. # noqa: E501 @@ -279,29 +242,6 @@ def remote_network_pool(self, remote_network_pool): self._remote_network_pool = remote_network_pool - @property - def storage_class(self): - """Gets the storage_class of this DatamoverAccount. # noqa: E501 - - The storage class of different cloud accounts. # noqa: E501 - - :return: The storage_class of this DatamoverAccount. # noqa: E501 - :rtype: str - """ - return self._storage_class - - @storage_class.setter - def storage_class(self, storage_class): - """Sets the storage_class of this DatamoverAccount. - - The storage class of different cloud accounts. # noqa: E501 - - :param storage_class: The storage_class of this DatamoverAccount. # noqa: E501 - :type: str - """ - - self._storage_class = storage_class - @property def uri(self): """Gets the uri of this DatamoverAccount. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_create_params.py similarity index 73% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_create_params.py index 331361ffd..cc67eae04 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -34,12 +34,9 @@ class DatamoverAccountCreateParams(object): 'account_type': 'str', 'briefcase': 'str', 'credentials': 'DatamoverAccountCredentials', - 'enforce_sse': 'bool', 'local_network_pool': 'str', - 'max_sparks': 'int', 'name': 'str', 'remote_network_pool': 'str', - 'storage_class': 'str', 'uri': 'str' } @@ -47,27 +44,21 @@ class DatamoverAccountCreateParams(object): 'account_type': 'account_type', 'briefcase': 'briefcase', 'credentials': 'credentials', - 'enforce_sse': 'enforce_sse', 'local_network_pool': 'local_network_pool', - 'max_sparks': 'max_sparks', 'name': 'name', 'remote_network_pool': 'remote_network_pool', - 'storage_class': 'storage_class', 'uri': 'uri' } - def __init__(self, account_type=None, briefcase=None, credentials=None, enforce_sse=None, local_network_pool=None, max_sparks=None, name=None, remote_network_pool=None, storage_class=None, uri=None): # noqa: E501 + def __init__(self, account_type=None, briefcase=None, credentials=None, local_network_pool=None, name=None, remote_network_pool=None, uri=None): # noqa: E501 """DatamoverAccountCreateParams - a model defined in Swagger""" # noqa: E501 self._account_type = None self._briefcase = None self._credentials = None - self._enforce_sse = None self._local_network_pool = None - self._max_sparks = None self._name = None self._remote_network_pool = None - self._storage_class = None self._uri = None self.discriminator = None @@ -76,17 +67,11 @@ def __init__(self, account_type=None, briefcase=None, credentials=None, enforce_ self.briefcase = briefcase if credentials is not None: self.credentials = credentials - if enforce_sse is not None: - self.enforce_sse = enforce_sse if local_network_pool is not None: self.local_network_pool = local_network_pool - if max_sparks is not None: - self.max_sparks = max_sparks self.name = name if remote_network_pool is not None: self.remote_network_pool = remote_network_pool - if storage_class is not None: - self.storage_class = storage_class self.uri = uri @property @@ -111,7 +96,7 @@ def account_type(self, account_type): """ if account_type is None: raise ValueError("Invalid value for `account_type`, must not be `None`") # noqa: E501 - allowed_values = ["DM", "AWS_S3", "ECS_S3", "AZURE", "GCP"] # noqa: E501 + allowed_values = ["DM", "AWS_S3", "ECS_S3", "AZURE"] # noqa: E501 if account_type not in allowed_values: raise ValueError( "Invalid value for `account_type` ({0}), must be one of {1}" # noqa: E501 @@ -170,29 +155,6 @@ def credentials(self, credentials): self._credentials = credentials - @property - def enforce_sse(self): - """Gets the enforce_sse of this DatamoverAccountCreateParams. # noqa: E501 - - Enforce Server-Side Encryption to make sure that data-at-rest is encrypted in the bucket. Only supported for DM AWS-S3 cloud accounts. SSE-S3, SSE-KMS and DSSE-KMS encryption algorithm types are supported on bucket. Warning: The Data Mover Copy Job will fail unless the target bucket exists and has supported encryption enabled. # noqa: E501 - - :return: The enforce_sse of this DatamoverAccountCreateParams. # noqa: E501 - :rtype: bool - """ - return self._enforce_sse - - @enforce_sse.setter - def enforce_sse(self, enforce_sse): - """Sets the enforce_sse of this DatamoverAccountCreateParams. - - Enforce Server-Side Encryption to make sure that data-at-rest is encrypted in the bucket. Only supported for DM AWS-S3 cloud accounts. SSE-S3, SSE-KMS and DSSE-KMS encryption algorithm types are supported on bucket. Warning: The Data Mover Copy Job will fail unless the target bucket exists and has supported encryption enabled. # noqa: E501 - - :param enforce_sse: The enforce_sse of this DatamoverAccountCreateParams. # noqa: E501 - :type: bool - """ - - self._enforce_sse = enforce_sse - @property def local_network_pool(self): """Gets the local_network_pool of this DatamoverAccountCreateParams. # noqa: E501 @@ -220,33 +182,6 @@ def local_network_pool(self, local_network_pool): self._local_network_pool = local_network_pool - @property - def max_sparks(self): - """Gets the max_sparks of this DatamoverAccountCreateParams. # noqa: E501 - - The limit of concurrent running tasks for this account per node # noqa: E501 - - :return: The max_sparks of this DatamoverAccountCreateParams. # noqa: E501 - :rtype: int - """ - return self._max_sparks - - @max_sparks.setter - def max_sparks(self, max_sparks): - """Sets the max_sparks of this DatamoverAccountCreateParams. - - The limit of concurrent running tasks for this account per node # noqa: E501 - - :param max_sparks: The max_sparks of this DatamoverAccountCreateParams. # noqa: E501 - :type: int - """ - if max_sparks is not None and max_sparks > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `max_sparks`, must be a value less than or equal to `4294967295`") # noqa: E501 - if max_sparks is not None and max_sparks < 0: # noqa: E501 - raise ValueError("Invalid value for `max_sparks`, must be a value greater than or equal to `0`") # noqa: E501 - - self._max_sparks = max_sparks - @property def name(self): """Gets the name of this DatamoverAccountCreateParams. # noqa: E501 @@ -303,29 +238,6 @@ def remote_network_pool(self, remote_network_pool): self._remote_network_pool = remote_network_pool - @property - def storage_class(self): - """Gets the storage_class of this DatamoverAccountCreateParams. # noqa: E501 - - The storage class of different cloud accounts. # noqa: E501 - - :return: The storage_class of this DatamoverAccountCreateParams. # noqa: E501 - :rtype: str - """ - return self._storage_class - - @storage_class.setter - def storage_class(self, storage_class): - """Sets the storage_class of this DatamoverAccountCreateParams. - - The storage class of different cloud accounts. # noqa: E501 - - :param storage_class: The storage_class of this DatamoverAccountCreateParams. # noqa: E501 - :type: str - """ - - self._storage_class = storage_class - @property def uri(self): """Gets the uri of this DatamoverAccountCreateParams. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_credentials.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_credentials.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_credentials.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_credentials.py index e968984f0..2f9356332 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_credentials.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_credentials.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_credentials_certificate.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_credentials_certificate.py similarity index 81% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_credentials_certificate.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_credentials_certificate.py index 2118642e9..e19e3a30a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_credentials_certificate.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_credentials_certificate.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -32,25 +32,30 @@ class DatamoverAccountCredentialsCertificate(object): """ swagger_types = { 'ca_certificate_id': 'str', - 'client_certificate_id': 'str' + 'client_certificate_id': 'str', + 'enable_encryption': 'bool' } attribute_map = { 'ca_certificate_id': 'ca_certificate_id', - 'client_certificate_id': 'client_certificate_id' + 'client_certificate_id': 'client_certificate_id', + 'enable_encryption': 'enable_encryption' } - def __init__(self, ca_certificate_id=None, client_certificate_id=None): # noqa: E501 + def __init__(self, ca_certificate_id=None, client_certificate_id=None, enable_encryption=None): # noqa: E501 """DatamoverAccountCredentialsCertificate - a model defined in Swagger""" # noqa: E501 self._ca_certificate_id = None self._client_certificate_id = None + self._enable_encryption = None self.discriminator = None if ca_certificate_id is not None: self.ca_certificate_id = ca_certificate_id if client_certificate_id is not None: self.client_certificate_id = client_certificate_id + if enable_encryption is not None: + self.enable_encryption = enable_encryption @property def ca_certificate_id(self): @@ -106,6 +111,29 @@ def client_certificate_id(self, client_certificate_id): self._client_certificate_id = client_certificate_id + @property + def enable_encryption(self): + """Gets the enable_encryption of this DatamoverAccountCredentialsCertificate. # noqa: E501 + + Whether to enable encryption over the communication channel # noqa: E501 + + :return: The enable_encryption of this DatamoverAccountCredentialsCertificate. # noqa: E501 + :rtype: bool + """ + return self._enable_encryption + + @enable_encryption.setter + def enable_encryption(self, enable_encryption): + """Sets the enable_encryption of this DatamoverAccountCredentialsCertificate. + + Whether to enable encryption over the communication channel # noqa: E501 + + :param enable_encryption: The enable_encryption of this DatamoverAccountCredentialsCertificate. # noqa: E501 + :type: bool + """ + + self._enable_encryption = enable_encryption + def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_credentials_certificate_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_credentials_certificate_extended.py similarity index 80% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_credentials_certificate_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_credentials_certificate_extended.py index 0003d5799..bc9a06165 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_credentials_certificate_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_credentials_certificate_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -32,25 +32,30 @@ class DatamoverAccountCredentialsCertificateExtended(object): """ swagger_types = { 'ca_certificate_id': 'str', - 'client_certificate_id': 'str' + 'client_certificate_id': 'str', + 'enable_encryption': 'bool' } attribute_map = { 'ca_certificate_id': 'ca_certificate_id', - 'client_certificate_id': 'client_certificate_id' + 'client_certificate_id': 'client_certificate_id', + 'enable_encryption': 'enable_encryption' } - def __init__(self, ca_certificate_id=None, client_certificate_id=None): # noqa: E501 + def __init__(self, ca_certificate_id=None, client_certificate_id=None, enable_encryption=None): # noqa: E501 """DatamoverAccountCredentialsCertificateExtended - a model defined in Swagger""" # noqa: E501 self._ca_certificate_id = None self._client_certificate_id = None + self._enable_encryption = None self.discriminator = None if ca_certificate_id is not None: self.ca_certificate_id = ca_certificate_id if client_certificate_id is not None: self.client_certificate_id = client_certificate_id + if enable_encryption is not None: + self.enable_encryption = enable_encryption @property def ca_certificate_id(self): @@ -106,6 +111,29 @@ def client_certificate_id(self, client_certificate_id): self._client_certificate_id = client_certificate_id + @property + def enable_encryption(self): + """Gets the enable_encryption of this DatamoverAccountCredentialsCertificateExtended. # noqa: E501 + + Whether to enable encryption over the communication channel # noqa: E501 + + :return: The enable_encryption of this DatamoverAccountCredentialsCertificateExtended. # noqa: E501 + :rtype: bool + """ + return self._enable_encryption + + @enable_encryption.setter + def enable_encryption(self, enable_encryption): + """Sets the enable_encryption of this DatamoverAccountCredentialsCertificateExtended. + + Whether to enable encryption over the communication channel # noqa: E501 + + :param enable_encryption: The enable_encryption of this DatamoverAccountCredentialsCertificateExtended. # noqa: E501 + :type: bool + """ + + self._enable_encryption = enable_encryption + def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_credentials_cloud.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_credentials_cloud.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_credentials_cloud.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_credentials_cloud.py index f21e36a21..5b71aa6d1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_credentials_cloud.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_credentials_cloud.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_credentials_cloud_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_credentials_cloud_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_credentials_cloud_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_credentials_cloud_extended.py index b62a6bc6f..728161bbf 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_credentials_cloud_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_credentials_cloud_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_credentials_cloud_proxy.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_credentials_cloud_proxy.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_credentials_cloud_proxy.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_credentials_cloud_proxy.py index 95a92d4bd..d89f0ddd4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_credentials_cloud_proxy.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_credentials_cloud_proxy.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_credentials_cloud_proxy_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_credentials_cloud_proxy_extended.py similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_credentials_cloud_proxy_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_credentials_cloud_proxy_extended.py index 1ef4bbb41..632b8940f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_credentials_cloud_proxy_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_credentials_cloud_proxy_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -109,7 +109,7 @@ def proxy_type(self, proxy_type): :param proxy_type: The proxy_type of this DatamoverAccountCredentialsCloudProxyExtended. # noqa: E501 :type: str """ - allowed_values = ["SOCKS_4", "SOCKS_5", "HTTP", "Invalid proxy type"] # noqa: E501 + allowed_values = ["SOCKS_4", "SOCKS_5", "HTTP"] # noqa: E501 if proxy_type not in allowed_values: raise ValueError( "Invalid value for `proxy_type` ({0}), must be one of {1}" # noqa: E501 @@ -167,8 +167,8 @@ def proxy_username(self, proxy_username): """ if proxy_username is not None and len(proxy_username) > 255: raise ValueError("Invalid value for `proxy_username`, length must be less than or equal to `255`") # noqa: E501 - if proxy_username is not None and len(proxy_username) < 0: - raise ValueError("Invalid value for `proxy_username`, length must be greater than or equal to `0`") # noqa: E501 + if proxy_username is not None and len(proxy_username) < 1: + raise ValueError("Invalid value for `proxy_username`, length must be greater than or equal to `1`") # noqa: E501 self._proxy_username = proxy_username diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_credentials_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_credentials_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_credentials_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_credentials_extended.py index 17335e0c0..854ae2c5c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_credentials_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_credentials_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_extended.py similarity index 76% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_extended.py index 693e5f8ca..bbdb5ff6f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_account_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_account_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -34,13 +34,10 @@ class DatamoverAccountExtended(object): 'account_type': 'str', 'briefcase': 'str', 'credentials': 'DatamoverAccountCredentialsExtended', - 'enforce_sse': 'bool', 'id': 'str', 'local_network_pool': 'str', - 'max_sparks': 'int', 'name': 'str', 'remote_network_pool': 'str', - 'storage_class': 'str', 'uri': 'str', 'version': 'int' } @@ -49,30 +46,24 @@ class DatamoverAccountExtended(object): 'account_type': 'account_type', 'briefcase': 'briefcase', 'credentials': 'credentials', - 'enforce_sse': 'enforce_sse', 'id': 'id', 'local_network_pool': 'local_network_pool', - 'max_sparks': 'max_sparks', 'name': 'name', 'remote_network_pool': 'remote_network_pool', - 'storage_class': 'storage_class', 'uri': 'uri', 'version': 'version' } - def __init__(self, account_type=None, briefcase=None, credentials=None, enforce_sse=None, id=None, local_network_pool=None, max_sparks=None, name=None, remote_network_pool=None, storage_class=None, uri=None, version=None): # noqa: E501 + def __init__(self, account_type=None, briefcase=None, credentials=None, id=None, local_network_pool=None, name=None, remote_network_pool=None, uri=None, version=None): # noqa: E501 """DatamoverAccountExtended - a model defined in Swagger""" # noqa: E501 self._account_type = None self._briefcase = None self._credentials = None - self._enforce_sse = None self._id = None self._local_network_pool = None - self._max_sparks = None self._name = None self._remote_network_pool = None - self._storage_class = None self._uri = None self._version = None self.discriminator = None @@ -83,19 +74,13 @@ def __init__(self, account_type=None, briefcase=None, credentials=None, enforce_ self.briefcase = briefcase if credentials is not None: self.credentials = credentials - if enforce_sse is not None: - self.enforce_sse = enforce_sse if id is not None: self.id = id if local_network_pool is not None: self.local_network_pool = local_network_pool - if max_sparks is not None: - self.max_sparks = max_sparks self.name = name if remote_network_pool is not None: self.remote_network_pool = remote_network_pool - if storage_class is not None: - self.storage_class = storage_class if uri is not None: self.uri = uri if version is not None: @@ -121,7 +106,7 @@ def account_type(self, account_type): :param account_type: The account_type of this DatamoverAccountExtended. # noqa: E501 :type: str """ - allowed_values = ["DM", "AWS_S3", "ECS_S3", "AZURE", "GCP"] # noqa: E501 + allowed_values = ["DM", "AWS_S3", "ECS_S3", "AZURE"] # noqa: E501 if account_type not in allowed_values: raise ValueError( "Invalid value for `account_type` ({0}), must be one of {1}" # noqa: E501 @@ -180,29 +165,6 @@ def credentials(self, credentials): self._credentials = credentials - @property - def enforce_sse(self): - """Gets the enforce_sse of this DatamoverAccountExtended. # noqa: E501 - - Enforce Server-Side Encryption to make sure that data-at-rest is encrypted in the bucket. Only supported for DM AWS-S3 cloud accounts. SSE-S3, SSE-KMS and DSSE-KMS encryption algorithm types are supported on bucket. Warning: The Data Mover Copy Job will fail unless the target bucket exists and has supported encryption enabled. # noqa: E501 - - :return: The enforce_sse of this DatamoverAccountExtended. # noqa: E501 - :rtype: bool - """ - return self._enforce_sse - - @enforce_sse.setter - def enforce_sse(self, enforce_sse): - """Sets the enforce_sse of this DatamoverAccountExtended. - - Enforce Server-Side Encryption to make sure that data-at-rest is encrypted in the bucket. Only supported for DM AWS-S3 cloud accounts. SSE-S3, SSE-KMS and DSSE-KMS encryption algorithm types are supported on bucket. Warning: The Data Mover Copy Job will fail unless the target bucket exists and has supported encryption enabled. # noqa: E501 - - :param enforce_sse: The enforce_sse of this DatamoverAccountExtended. # noqa: E501 - :type: bool - """ - - self._enforce_sse = enforce_sse - @property def id(self): """Gets the id of this DatamoverAccountExtended. # noqa: E501 @@ -257,33 +219,6 @@ def local_network_pool(self, local_network_pool): self._local_network_pool = local_network_pool - @property - def max_sparks(self): - """Gets the max_sparks of this DatamoverAccountExtended. # noqa: E501 - - The limit of concurrent running tasks for this account per node # noqa: E501 - - :return: The max_sparks of this DatamoverAccountExtended. # noqa: E501 - :rtype: int - """ - return self._max_sparks - - @max_sparks.setter - def max_sparks(self, max_sparks): - """Sets the max_sparks of this DatamoverAccountExtended. - - The limit of concurrent running tasks for this account per node # noqa: E501 - - :param max_sparks: The max_sparks of this DatamoverAccountExtended. # noqa: E501 - :type: int - """ - if max_sparks is not None and max_sparks > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `max_sparks`, must be a value less than or equal to `4294967295`") # noqa: E501 - if max_sparks is not None and max_sparks < 0: # noqa: E501 - raise ValueError("Invalid value for `max_sparks`, must be a value greater than or equal to `0`") # noqa: E501 - - self._max_sparks = max_sparks - @property def name(self): """Gets the name of this DatamoverAccountExtended. # noqa: E501 @@ -340,29 +275,6 @@ def remote_network_pool(self, remote_network_pool): self._remote_network_pool = remote_network_pool - @property - def storage_class(self): - """Gets the storage_class of this DatamoverAccountExtended. # noqa: E501 - - The storage class of different cloud accounts. # noqa: E501 - - :return: The storage_class of this DatamoverAccountExtended. # noqa: E501 - :rtype: str - """ - return self._storage_class - - @storage_class.setter - def storage_class(self, storage_class): - """Sets the storage_class of this DatamoverAccountExtended. - - The storage class of different cloud accounts. # noqa: E501 - - :param storage_class: The storage_class of this DatamoverAccountExtended. # noqa: E501 - :type: str - """ - - self._storage_class = storage_class - @property def uri(self): """Gets the uri of this DatamoverAccountExtended. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_accounts.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_accounts.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_accounts.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_accounts.py index 9a4e92db0..4caef4c07 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_accounts.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_accounts.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_accounts_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_accounts_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_accounts_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_accounts_extended.py index ebde9f70a..4ba58f58f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_accounts_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_accounts_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_base_policies.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_base_policies.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_base_policies.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_base_policies.py index a0b806765..a62a09aba 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_base_policies.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_base_policies.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_base_policies_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_base_policies_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_base_policies_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_base_policies_extended.py index 5eae4ddd6..5be636844 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_base_policies_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_base_policies_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_base_policies_policy.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_base_policies_policy.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_base_policies_policy.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_base_policies_policy.py index 62fb31d47..fbb18ba03 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_base_policies_policy.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_base_policies_policy.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -207,7 +207,7 @@ def enabled(self, enabled): def id(self): """Gets the id of this DatamoverBasePoliciesPolicy. # noqa: E501 - The unique base policy identifier. # noqa: E501 + The unique policy identifier. # noqa: E501 :return: The id of this DatamoverBasePoliciesPolicy. # noqa: E501 :rtype: int @@ -218,7 +218,7 @@ def id(self): def id(self, id): """Sets the id of this DatamoverBasePoliciesPolicy. - The unique base policy identifier. # noqa: E501 + The unique policy identifier. # noqa: E501 :param id: The id of this DatamoverBasePoliciesPolicy. # noqa: E501 :type: int diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_base_policies_policy_schedule.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_base_policies_policy_schedule.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_base_policies_policy_schedule.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_base_policies_policy_schedule.py index a8250ed40..48448ad60 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_base_policies_policy_schedule.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_base_policies_policy_schedule.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_base_policy.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_base_policy.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_base_policy.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_base_policy.py index be0e560d5..e3aa69d51 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_base_policy.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_base_policy.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_base_policy_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_base_policy_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_base_policy_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_base_policy_create_params.py index 19100bfda..55032f5a4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_base_policy_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_base_policy_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -550,7 +550,7 @@ def version(self, version): def id(self): """Gets the id of this DatamoverBasePolicyCreateParams. # noqa: E501 - The unique base policy identifier. # noqa: E501 + The unique policy identifier. # noqa: E501 :return: The id of this DatamoverBasePolicyCreateParams. # noqa: E501 :rtype: int @@ -561,7 +561,7 @@ def id(self): def id(self, id): """Sets the id of this DatamoverBasePolicyCreateParams. - The unique base policy identifier. # noqa: E501 + The unique policy identifier. # noqa: E501 :param id: The id of this DatamoverBasePolicyCreateParams. # noqa: E501 :type: int diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_base_policy_schedule.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_base_policy_schedule.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_base_policy_schedule.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_base_policy_schedule.py index 0b9021862..6226c1126 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_base_policy_schedule.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_base_policy_schedule.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_base_policy_src_dataset_retention.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_base_policy_src_dataset_retention.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_base_policy_src_dataset_retention.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_base_policy_src_dataset_retention.py index 1d2e7cb70..8333c1b7f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_base_policy_src_dataset_retention.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_base_policy_src_dataset_retention.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_dataset.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_dataset.py similarity index 92% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_dataset.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_dataset.py index 1e7d41109..0cc05a432 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_dataset.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_dataset.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -39,7 +39,6 @@ class DatamoverDataset(object): 'dataset_state': 'str', 'dataset_subpaths': 'list[str]', 'dataset_type': 'str', - 'dataset_version': 'str', 'id': 'int', 'snapshot_path': 'str' } @@ -53,12 +52,11 @@ class DatamoverDataset(object): 'dataset_state': 'dataset_state', 'dataset_subpaths': 'dataset_subpaths', 'dataset_type': 'dataset_type', - 'dataset_version': 'dataset_version', 'id': 'id', 'snapshot_path': 'snapshot_path' } - def __init__(self, dataset_base_path=None, dataset_creation_time=None, dataset_expiry_action=None, dataset_global_id=None, dataset_retention_period=None, dataset_state=None, dataset_subpaths=None, dataset_type=None, dataset_version=None, id=None, snapshot_path=None): # noqa: E501 + def __init__(self, dataset_base_path=None, dataset_creation_time=None, dataset_expiry_action=None, dataset_global_id=None, dataset_retention_period=None, dataset_state=None, dataset_subpaths=None, dataset_type=None, id=None, snapshot_path=None): # noqa: E501 """DatamoverDataset - a model defined in Swagger""" # noqa: E501 self._dataset_base_path = None @@ -69,7 +67,6 @@ def __init__(self, dataset_base_path=None, dataset_creation_time=None, dataset_e self._dataset_state = None self._dataset_subpaths = None self._dataset_type = None - self._dataset_version = None self._id = None self._snapshot_path = None self.discriminator = None @@ -90,8 +87,6 @@ def __init__(self, dataset_base_path=None, dataset_creation_time=None, dataset_e self.dataset_subpaths = dataset_subpaths if dataset_type is not None: self.dataset_type = dataset_type - if dataset_version is not None: - self.dataset_version = dataset_version if id is not None: self.id = id if snapshot_path is not None: @@ -309,35 +304,6 @@ def dataset_type(self, dataset_type): self._dataset_type = dataset_type - @property - def dataset_version(self): - """Gets the dataset_version of this DatamoverDataset. # noqa: E501 - - The version of dataset. # noqa: E501 - - :return: The dataset_version of this DatamoverDataset. # noqa: E501 - :rtype: str - """ - return self._dataset_version - - @dataset_version.setter - def dataset_version(self, dataset_version): - """Sets the dataset_version of this DatamoverDataset. - - The version of dataset. # noqa: E501 - - :param dataset_version: The dataset_version of this DatamoverDataset. # noqa: E501 - :type: str - """ - allowed_values = ["1", "2"] # noqa: E501 - if dataset_version not in allowed_values: - raise ValueError( - "Invalid value for `dataset_version` ({0}), must be one of {1}" # noqa: E501 - .format(dataset_version, allowed_values) - ) - - self._dataset_version = dataset_version - @property def id(self): """Gets the id of this DatamoverDataset. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_dataset_dataset_global_id.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_dataset_dataset_global_id.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_dataset_dataset_global_id.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_dataset_dataset_global_id.py index 2cedca1f4..264b9b210 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_dataset_dataset_global_id.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_dataset_dataset_global_id.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_dataset_dataset_global_id_dataset_revision.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_dataset_dataset_global_id_dataset_revision.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_dataset_dataset_global_id_dataset_revision.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_dataset_dataset_global_id_dataset_revision.py index cbce7ec86..b59df981d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_dataset_dataset_global_id_dataset_revision.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_dataset_dataset_global_id_dataset_revision.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_dataset_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_dataset_extended.py similarity index 91% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_dataset_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_dataset_extended.py index b43ea212a..63510b82a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_dataset_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_dataset_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -39,7 +39,6 @@ class DatamoverDatasetExtended(object): 'dataset_state': 'str', 'dataset_subpaths': 'list[str]', 'dataset_type': 'str', - 'dataset_version': 'str', 'id': 'int' } @@ -52,11 +51,10 @@ class DatamoverDatasetExtended(object): 'dataset_state': 'dataset_state', 'dataset_subpaths': 'dataset_subpaths', 'dataset_type': 'dataset_type', - 'dataset_version': 'dataset_version', 'id': 'id' } - def __init__(self, dataset_base_path=None, dataset_creation_time=None, dataset_expiry_action=None, dataset_global_id=None, dataset_retention_period=None, dataset_state=None, dataset_subpaths=None, dataset_type=None, dataset_version=None, id=None): # noqa: E501 + def __init__(self, dataset_base_path=None, dataset_creation_time=None, dataset_expiry_action=None, dataset_global_id=None, dataset_retention_period=None, dataset_state=None, dataset_subpaths=None, dataset_type=None, id=None): # noqa: E501 """DatamoverDatasetExtended - a model defined in Swagger""" # noqa: E501 self._dataset_base_path = None @@ -67,7 +65,6 @@ def __init__(self, dataset_base_path=None, dataset_creation_time=None, dataset_e self._dataset_state = None self._dataset_subpaths = None self._dataset_type = None - self._dataset_version = None self._id = None self.discriminator = None @@ -87,8 +84,6 @@ def __init__(self, dataset_base_path=None, dataset_creation_time=None, dataset_e self.dataset_subpaths = dataset_subpaths if dataset_type is not None: self.dataset_type = dataset_type - if dataset_version is not None: - self.dataset_version = dataset_version if id is not None: self.id = id @@ -304,35 +299,6 @@ def dataset_type(self, dataset_type): self._dataset_type = dataset_type - @property - def dataset_version(self): - """Gets the dataset_version of this DatamoverDatasetExtended. # noqa: E501 - - The version of dataset. # noqa: E501 - - :return: The dataset_version of this DatamoverDatasetExtended. # noqa: E501 - :rtype: str - """ - return self._dataset_version - - @dataset_version.setter - def dataset_version(self, dataset_version): - """Sets the dataset_version of this DatamoverDatasetExtended. - - The version of dataset. # noqa: E501 - - :param dataset_version: The dataset_version of this DatamoverDatasetExtended. # noqa: E501 - :type: str - """ - allowed_values = ["1", "2"] # noqa: E501 - if dataset_version not in allowed_values: - raise ValueError( - "Invalid value for `dataset_version` ({0}), must be one of {1}" # noqa: E501 - .format(dataset_version, allowed_values) - ) - - self._dataset_version = dataset_version - @property def id(self): """Gets the id of this DatamoverDatasetExtended. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_datasets.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_datasets.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_datasets.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_datasets.py index 027d18a1f..6f438ac7e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_datasets.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_datasets.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_datasets_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_datasets_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_datasets_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_datasets_extended.py index 7498f2a23..f4350d8e0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_datasets_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_datasets_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_historical_jobs.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_historical_jobs.py index 008d36220..fd0a00e95 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_historical_jobs.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_historical_jobs_job.py similarity index 90% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_historical_jobs_job.py index aa8679bc5..5b5139fc4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_historical_jobs_job.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -34,7 +34,6 @@ class DatamoverHistoricalJobsJob(object): 'id': 'int', 'job_control_request': 'str', 'job_end_time': 'int', - 'job_failed_tasks': 'list[DatamoverHistoricalJobsJobJobFailedTask]', 'job_policy_id': 'int', 'job_priority': 'str', 'job_start_time': 'int', @@ -47,7 +46,6 @@ class DatamoverHistoricalJobsJob(object): 'id': 'id', 'job_control_request': 'job_control_request', 'job_end_time': 'job_end_time', - 'job_failed_tasks': 'job_failed_tasks', 'job_policy_id': 'job_policy_id', 'job_priority': 'job_priority', 'job_start_time': 'job_start_time', @@ -56,13 +54,12 @@ class DatamoverHistoricalJobsJob(object): 'job_type_specific_attrs': 'job_type_specific_attrs' } - def __init__(self, id=None, job_control_request=None, job_end_time=None, job_failed_tasks=None, job_policy_id=None, job_priority=None, job_start_time=None, job_state=None, job_state_flags=None, job_type_specific_attrs=None): # noqa: E501 + def __init__(self, id=None, job_control_request=None, job_end_time=None, job_policy_id=None, job_priority=None, job_start_time=None, job_state=None, job_state_flags=None, job_type_specific_attrs=None): # noqa: E501 """DatamoverHistoricalJobsJob - a model defined in Swagger""" # noqa: E501 self._id = None self._job_control_request = None self._job_end_time = None - self._job_failed_tasks = None self._job_policy_id = None self._job_priority = None self._job_start_time = None @@ -77,8 +74,6 @@ def __init__(self, id=None, job_control_request=None, job_end_time=None, job_fai self.job_control_request = job_control_request if job_end_time is not None: self.job_end_time = job_end_time - if job_failed_tasks is not None: - self.job_failed_tasks = job_failed_tasks if job_policy_id is not None: self.job_policy_id = job_policy_id if job_priority is not None: @@ -175,29 +170,6 @@ def job_end_time(self, job_end_time): self._job_end_time = job_end_time - @property - def job_failed_tasks(self): - """Gets the job_failed_tasks of this DatamoverHistoricalJobsJob. # noqa: E501 - - Job Failed Tasks # noqa: E501 - - :return: The job_failed_tasks of this DatamoverHistoricalJobsJob. # noqa: E501 - :rtype: list[DatamoverHistoricalJobsJobJobFailedTask] - """ - return self._job_failed_tasks - - @job_failed_tasks.setter - def job_failed_tasks(self, job_failed_tasks): - """Sets the job_failed_tasks of this DatamoverHistoricalJobsJob. - - Job Failed Tasks # noqa: E501 - - :param job_failed_tasks: The job_failed_tasks of this DatamoverHistoricalJobsJob. # noqa: E501 - :type: list[DatamoverHistoricalJobsJobJobFailedTask] - """ - - self._job_failed_tasks = job_failed_tasks - @property def job_policy_id(self): """Gets the job_policy_id of this DatamoverHistoricalJobsJob. # noqa: E501 @@ -301,7 +273,7 @@ def job_state(self, job_state): :param job_state: The job_state of this DatamoverHistoricalJobsJob. # noqa: E501 :type: str """ - allowed_values = ["invalid", "pending", "running", "paused", "finishing", "failing", "cancelling", "cancelled", "failed", "finished", "shadow_job"] # noqa: E501 + allowed_values = ["INVALID", "PENDING", "RUNNING", "PAUSED", "FINISHING", "FAILING", "CANCELLING", "CANCELLED", "FAILED", "FINISHED", "SHADOW_JOB"] # noqa: E501 if job_state not in allowed_values: raise ValueError( "Invalid value for `job_state` ({0}), must be one of {1}" # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_type_specific_attrs.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_historical_jobs_job_job_type_specific_attrs.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_type_specific_attrs.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_historical_jobs_job_job_type_specific_attrs.py index bfb1dc31d..a5d786d54 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_type_specific_attrs.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_historical_jobs_job_job_type_specific_attrs.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_baseline_copy_job.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_baseline_copy_job.py similarity index 92% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_baseline_copy_job.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_baseline_copy_job.py index 2ec3256bc..3e4ee63fd 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_baseline_copy_job.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_baseline_copy_job.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -38,7 +38,6 @@ class DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJob(objec 'source_account_id': 'str', 'source_base_path': 'str', 'source_subpaths': 'list[str]', - 'statistics': 'DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics', 'target_account_id': 'str', 'target_base_path': 'str', 'target_dataset_type': 'str' @@ -52,13 +51,12 @@ class DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJob(objec 'source_account_id': 'source_account_id', 'source_base_path': 'source_base_path', 'source_subpaths': 'source_subpaths', - 'statistics': 'statistics', 'target_account_id': 'target_account_id', 'target_base_path': 'target_base_path', 'target_dataset_type': 'target_dataset_type' } - def __init__(self, create_dataset_on_target=None, dataset_id=None, new_tasks_account=None, retention=None, source_account_id=None, source_base_path=None, source_subpaths=None, statistics=None, target_account_id=None, target_base_path=None, target_dataset_type=None): # noqa: E501 + def __init__(self, create_dataset_on_target=None, dataset_id=None, new_tasks_account=None, retention=None, source_account_id=None, source_base_path=None, source_subpaths=None, target_account_id=None, target_base_path=None, target_dataset_type=None): # noqa: E501 """DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJob - a model defined in Swagger""" # noqa: E501 self._create_dataset_on_target = None @@ -68,7 +66,6 @@ def __init__(self, create_dataset_on_target=None, dataset_id=None, new_tasks_acc self._source_account_id = None self._source_base_path = None self._source_subpaths = None - self._statistics = None self._target_account_id = None self._target_base_path = None self._target_dataset_type = None @@ -88,8 +85,6 @@ def __init__(self, create_dataset_on_target=None, dataset_id=None, new_tasks_acc self.source_base_path = source_base_path if source_subpaths is not None: self.source_subpaths = source_subpaths - if statistics is not None: - self.statistics = statistics if target_account_id is not None: self.target_account_id = target_account_id if target_base_path is not None: @@ -274,29 +269,6 @@ def source_subpaths(self, source_subpaths): self._source_subpaths = source_subpaths - @property - def statistics(self): - """Gets the statistics of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJob. # noqa: E501 - - Baseline copy job statistics. # noqa: E501 - - :return: The statistics of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJob. # noqa: E501 - :rtype: DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics - """ - return self._statistics - - @statistics.setter - def statistics(self, statistics): - """Sets the statistics of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJob. - - Baseline copy job statistics. # noqa: E501 - - :param statistics: The statistics of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJob. # noqa: E501 - :type: DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics - """ - - self._statistics = statistics - @property def target_account_id(self): """Gets the target_account_id of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJob. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_creation_job.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_creation_job.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_creation_job.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_creation_job.py index 47fa4b4c2..31e5a1152 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_creation_job.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_creation_job.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_creation_job_statistics.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_creation_job_statistics.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_creation_job_statistics.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_creation_job_statistics.py index b70f42ea6..bd8791499 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_creation_job_statistics.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_creation_job_statistics.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_expiration_job.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_expiration_job.py similarity index 74% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_expiration_job.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_expiration_job.py index 7675d3c34..c6f367713 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_expiration_job.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_expiration_job.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,26 +31,21 @@ class DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJob(object) and the value is json key in definition. """ swagger_types = { - 'account_id': 'str', - 'statistics': 'DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics' + 'account_id': 'str' } attribute_map = { - 'account_id': 'account_id', - 'statistics': 'statistics' + 'account_id': 'account_id' } - def __init__(self, account_id=None, statistics=None): # noqa: E501 + def __init__(self, account_id=None): # noqa: E501 """DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJob - a model defined in Swagger""" # noqa: E501 self._account_id = None - self._statistics = None self.discriminator = None if account_id is not None: self.account_id = account_id - if statistics is not None: - self.statistics = statistics @property def account_id(self): @@ -79,29 +74,6 @@ def account_id(self, account_id): self._account_id = account_id - @property - def statistics(self): - """Gets the statistics of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJob. # noqa: E501 - - Statistics for this job # noqa: E501 - - :return: The statistics of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJob. # noqa: E501 - :rtype: DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics - """ - return self._statistics - - @statistics.setter - def statistics(self, statistics): - """Sets the statistics of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJob. - - Statistics for this job # noqa: E501 - - :param statistics: The statistics of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJob. # noqa: E501 - :type: DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJobStatistics - """ - - self._statistics = statistics - def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_incremental_copy_job.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_incremental_copy_job.py similarity index 88% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_incremental_copy_job.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_incremental_copy_job.py index 124d6e71e..31899eb87 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_incremental_copy_job.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_incremental_copy_job.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -35,7 +35,6 @@ class DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJob(ob 'retention': 'DatamoverBasePolicySrcDatasetRetention', 'source_account_id': 'str', 'source_base_path': 'str', - 'statistics': 'DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics', 'target_account_id': 'str', 'target_base_path': 'str', 'target_dataset_type': 'str' @@ -46,20 +45,18 @@ class DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJob(ob 'retention': 'retention', 'source_account_id': 'source_account_id', 'source_base_path': 'source_base_path', - 'statistics': 'statistics', 'target_account_id': 'target_account_id', 'target_base_path': 'target_base_path', 'target_dataset_type': 'target_dataset_type' } - def __init__(self, new_tasks_account=None, retention=None, source_account_id=None, source_base_path=None, statistics=None, target_account_id=None, target_base_path=None, target_dataset_type=None): # noqa: E501 + def __init__(self, new_tasks_account=None, retention=None, source_account_id=None, source_base_path=None, target_account_id=None, target_base_path=None, target_dataset_type=None): # noqa: E501 """DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJob - a model defined in Swagger""" # noqa: E501 self._new_tasks_account = None self._retention = None self._source_account_id = None self._source_base_path = None - self._statistics = None self._target_account_id = None self._target_base_path = None self._target_dataset_type = None @@ -73,8 +70,6 @@ def __init__(self, new_tasks_account=None, retention=None, source_account_id=Non self.source_account_id = source_account_id if source_base_path is not None: self.source_base_path = source_base_path - if statistics is not None: - self.statistics = statistics if target_account_id is not None: self.target_account_id = target_account_id if target_base_path is not None: @@ -86,7 +81,7 @@ def __init__(self, new_tasks_account=None, retention=None, source_account_id=Non def new_tasks_account(self): """Gets the new_tasks_account of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. # noqa: E501 - Account ID of the system on which to create tasks. This overrides the default task affinity. # noqa: E501 + Account of the system to create tasks on. This overrides the default task affinity. # noqa: E501 :return: The new_tasks_account of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. # noqa: E501 :rtype: str @@ -97,7 +92,7 @@ def new_tasks_account(self): def new_tasks_account(self, new_tasks_account): """Sets the new_tasks_account of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. - Account ID of the system on which to create tasks. This overrides the default task affinity. # noqa: E501 + Account of the system to create tasks on. This overrides the default task affinity. # noqa: E501 :param new_tasks_account: The new_tasks_account of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. # noqa: E501 :type: str @@ -186,29 +181,6 @@ def source_base_path(self, source_base_path): self._source_base_path = source_base_path - @property - def statistics(self): - """Gets the statistics of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. # noqa: E501 - - Incremental copy job statistics. # noqa: E501 - - :return: The statistics of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. # noqa: E501 - :rtype: DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics - """ - return self._statistics - - @statistics.setter - def statistics(self, statistics): - """Sets the statistics of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. - - Incremental copy job statistics. # noqa: E501 - - :param statistics: The statistics of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. # noqa: E501 - :type: DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics - """ - - self._statistics = statistics - @property def target_account_id(self): """Gets the target_account_id of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_job.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_job.py similarity index 88% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_job.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_job.py index cd67e2c3c..0570d8464 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_job.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_job.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -34,7 +34,6 @@ class DatamoverJob(object): 'id': 'int', 'job_control_request': 'str', 'job_end_time': 'int', - 'job_failed_tasks': 'list[DatamoverHistoricalJobsJobJobFailedTask]', 'job_policy_id': 'int', 'job_priority': 'str', 'job_start_time': 'int', @@ -47,7 +46,6 @@ class DatamoverJob(object): 'id': 'id', 'job_control_request': 'job_control_request', 'job_end_time': 'job_end_time', - 'job_failed_tasks': 'job_failed_tasks', 'job_policy_id': 'job_policy_id', 'job_priority': 'job_priority', 'job_start_time': 'job_start_time', @@ -56,13 +54,12 @@ class DatamoverJob(object): 'job_type_specific_attrs': 'job_type_specific_attrs' } - def __init__(self, id=None, job_control_request=None, job_end_time=None, job_failed_tasks=None, job_policy_id=None, job_priority=None, job_start_time=None, job_state=None, job_state_flags=None, job_type_specific_attrs=None): # noqa: E501 + def __init__(self, id=None, job_control_request=None, job_end_time=None, job_policy_id=None, job_priority=None, job_start_time=None, job_state=None, job_state_flags=None, job_type_specific_attrs=None): # noqa: E501 """DatamoverJob - a model defined in Swagger""" # noqa: E501 self._id = None self._job_control_request = None self._job_end_time = None - self._job_failed_tasks = None self._job_policy_id = None self._job_priority = None self._job_start_time = None @@ -77,8 +74,6 @@ def __init__(self, id=None, job_control_request=None, job_end_time=None, job_fai self.job_control_request = job_control_request if job_end_time is not None: self.job_end_time = job_end_time - if job_failed_tasks is not None: - self.job_failed_tasks = job_failed_tasks if job_policy_id is not None: self.job_policy_id = job_policy_id if job_priority is not None: @@ -170,34 +165,11 @@ def job_end_time(self, job_end_time): """ if job_end_time is not None and job_end_time > 9223372036854775807: # noqa: E501 raise ValueError("Invalid value for `job_end_time`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if job_end_time is not None and job_end_time < 0: # noqa: E501 - raise ValueError("Invalid value for `job_end_time`, must be a value greater than or equal to `0`") # noqa: E501 + if job_end_time is not None and job_end_time < 1: # noqa: E501 + raise ValueError("Invalid value for `job_end_time`, must be a value greater than or equal to `1`") # noqa: E501 self._job_end_time = job_end_time - @property - def job_failed_tasks(self): - """Gets the job_failed_tasks of this DatamoverJob. # noqa: E501 - - Job Failed Tasks # noqa: E501 - - :return: The job_failed_tasks of this DatamoverJob. # noqa: E501 - :rtype: list[DatamoverHistoricalJobsJobJobFailedTask] - """ - return self._job_failed_tasks - - @job_failed_tasks.setter - def job_failed_tasks(self, job_failed_tasks): - """Sets the job_failed_tasks of this DatamoverJob. - - Job Failed Tasks # noqa: E501 - - :param job_failed_tasks: The job_failed_tasks of this DatamoverJob. # noqa: E501 - :type: list[DatamoverHistoricalJobsJobJobFailedTask] - """ - - self._job_failed_tasks = job_failed_tasks - @property def job_policy_id(self): """Gets the job_policy_id of this DatamoverJob. # noqa: E501 @@ -276,8 +248,8 @@ def job_start_time(self, job_start_time): """ if job_start_time is not None and job_start_time > 9223372036854775807: # noqa: E501 raise ValueError("Invalid value for `job_start_time`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if job_start_time is not None and job_start_time < 0: # noqa: E501 - raise ValueError("Invalid value for `job_start_time`, must be a value greater than or equal to `0`") # noqa: E501 + if job_start_time is not None and job_start_time < 1: # noqa: E501 + raise ValueError("Invalid value for `job_start_time`, must be a value greater than or equal to `1`") # noqa: E501 self._job_start_time = job_start_time @@ -301,7 +273,7 @@ def job_state(self, job_state): :param job_state: The job_state of this DatamoverJob. # noqa: E501 :type: str """ - allowed_values = ["invalid", "pending", "running", "paused", "finishing", "failing", "cancelling", "cancelled", "failed", "finished", "shadow_job"] # noqa: E501 + allowed_values = ["INVALID", "PENDING", "RUNNING", "PAUSED", "FINISHING", "FAILING", "CANCELLING", "CANCELLED", "FAILED", "FINISHED", "SHADOW_JOB"] # noqa: E501 if job_state not in allowed_values: raise ValueError( "Invalid value for `job_state` ({0}), must be one of {1}" # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_job_job_type_specific_attrs.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_job_job_type_specific_attrs.py similarity index 93% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_job_job_type_specific_attrs.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_job_job_type_specific_attrs.py index 7d3abe56b..564678067 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_job_job_type_specific_attrs.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_job_job_type_specific_attrs.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -32,8 +32,8 @@ class DatamoverJobJobTypeSpecificAttrs(object): """ swagger_types = { 'dataset_baseline_copy_job': 'DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob', - 'dataset_creation_job': 'DatamoverJobJobTypeSpecificAttrsDatasetCreationJob', - 'dataset_expiration_job': 'DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob', + 'dataset_creation_job': 'DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJob', + 'dataset_expiration_job': 'DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJob', 'dataset_incremental_copy_job': 'DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob', 'job_type': 'str' } @@ -97,7 +97,7 @@ def dataset_creation_job(self): Fields specific to dataset creation job. # noqa: E501 :return: The dataset_creation_job of this DatamoverJobJobTypeSpecificAttrs. # noqa: E501 - :rtype: DatamoverJobJobTypeSpecificAttrsDatasetCreationJob + :rtype: DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJob """ return self._dataset_creation_job @@ -108,7 +108,7 @@ def dataset_creation_job(self, dataset_creation_job): Fields specific to dataset creation job. # noqa: E501 :param dataset_creation_job: The dataset_creation_job of this DatamoverJobJobTypeSpecificAttrs. # noqa: E501 - :type: DatamoverJobJobTypeSpecificAttrsDatasetCreationJob + :type: DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetCreationJob """ self._dataset_creation_job = dataset_creation_job @@ -120,7 +120,7 @@ def dataset_expiration_job(self): Fields specific to dataset retention job. # noqa: E501 :return: The dataset_expiration_job of this DatamoverJobJobTypeSpecificAttrs. # noqa: E501 - :rtype: DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob + :rtype: DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJob """ return self._dataset_expiration_job @@ -131,7 +131,7 @@ def dataset_expiration_job(self, dataset_expiration_job): Fields specific to dataset retention job. # noqa: E501 :param dataset_expiration_job: The dataset_expiration_job of this DatamoverJobJobTypeSpecificAttrs. # noqa: E501 - :type: DatamoverJobJobTypeSpecificAttrsDatasetExpirationJob + :type: DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetExpirationJob """ self._dataset_expiration_job = dataset_expiration_job diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_job_job_type_specific_attrs_dataset_baseline_copy_job.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_job_job_type_specific_attrs_dataset_baseline_copy_job.py similarity index 75% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_job_job_type_specific_attrs_dataset_baseline_copy_job.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_job_job_type_specific_attrs_dataset_baseline_copy_job.py index 49bdcdbb4..01c696a2b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_job_job_type_specific_attrs_dataset_baseline_copy_job.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_job_job_type_specific_attrs_dataset_baseline_copy_job.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -34,15 +34,12 @@ class DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob(object): 'create_dataset_on_target': 'bool', 'dataset_id': 'int', 'new_tasks_account': 'str', - 'new_tasks_account_name': 'str', 'retention': 'DatamoverBasePolicySrcDatasetRetention', 'source_account_id': 'str', - 'source_account_name': 'str', 'source_base_path': 'str', 'source_subpaths': 'list[str]', - 'statistics': 'DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics', + 'statistics': 'DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics', 'target_account_id': 'str', - 'target_account_name': 'str', 'target_base_path': 'str', 'target_dataset_type': 'str' } @@ -51,34 +48,28 @@ class DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob(object): 'create_dataset_on_target': 'create_dataset_on_target', 'dataset_id': 'dataset_id', 'new_tasks_account': 'new_tasks_account', - 'new_tasks_account_name': 'new_tasks_account_name', 'retention': 'retention', 'source_account_id': 'source_account_id', - 'source_account_name': 'source_account_name', 'source_base_path': 'source_base_path', 'source_subpaths': 'source_subpaths', 'statistics': 'statistics', 'target_account_id': 'target_account_id', - 'target_account_name': 'target_account_name', 'target_base_path': 'target_base_path', 'target_dataset_type': 'target_dataset_type' } - def __init__(self, create_dataset_on_target=None, dataset_id=None, new_tasks_account=None, new_tasks_account_name=None, retention=None, source_account_id=None, source_account_name=None, source_base_path=None, source_subpaths=None, statistics=None, target_account_id=None, target_account_name=None, target_base_path=None, target_dataset_type=None): # noqa: E501 + def __init__(self, create_dataset_on_target=None, dataset_id=None, new_tasks_account=None, retention=None, source_account_id=None, source_base_path=None, source_subpaths=None, statistics=None, target_account_id=None, target_base_path=None, target_dataset_type=None): # noqa: E501 """DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob - a model defined in Swagger""" # noqa: E501 self._create_dataset_on_target = None self._dataset_id = None self._new_tasks_account = None - self._new_tasks_account_name = None self._retention = None self._source_account_id = None - self._source_account_name = None self._source_base_path = None self._source_subpaths = None self._statistics = None self._target_account_id = None - self._target_account_name = None self._target_base_path = None self._target_dataset_type = None self.discriminator = None @@ -89,14 +80,10 @@ def __init__(self, create_dataset_on_target=None, dataset_id=None, new_tasks_acc self.dataset_id = dataset_id if new_tasks_account is not None: self.new_tasks_account = new_tasks_account - if new_tasks_account_name is not None: - self.new_tasks_account_name = new_tasks_account_name if retention is not None: self.retention = retention if source_account_id is not None: self.source_account_id = source_account_id - if source_account_name is not None: - self.source_account_name = source_account_name if source_base_path is not None: self.source_base_path = source_base_path if source_subpaths is not None: @@ -105,8 +92,6 @@ def __init__(self, create_dataset_on_target=None, dataset_id=None, new_tasks_acc self.statistics = statistics if target_account_id is not None: self.target_account_id = target_account_id - if target_account_name is not None: - self.target_account_name = target_account_name if target_base_path is not None: self.target_base_path = target_base_path if target_dataset_type is not None: @@ -189,33 +174,6 @@ def new_tasks_account(self, new_tasks_account): self._new_tasks_account = new_tasks_account - @property - def new_tasks_account_name(self): - """Gets the new_tasks_account_name of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob. # noqa: E501 - - Account name of the system on which to create tasks. # noqa: E501 - - :return: The new_tasks_account_name of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob. # noqa: E501 - :rtype: str - """ - return self._new_tasks_account_name - - @new_tasks_account_name.setter - def new_tasks_account_name(self, new_tasks_account_name): - """Sets the new_tasks_account_name of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob. - - Account name of the system on which to create tasks. # noqa: E501 - - :param new_tasks_account_name: The new_tasks_account_name of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob. # noqa: E501 - :type: str - """ - if new_tasks_account_name is not None and len(new_tasks_account_name) > 255: - raise ValueError("Invalid value for `new_tasks_account_name`, length must be less than or equal to `255`") # noqa: E501 - if new_tasks_account_name is not None and len(new_tasks_account_name) < 1: - raise ValueError("Invalid value for `new_tasks_account_name`, length must be greater than or equal to `1`") # noqa: E501 - - self._new_tasks_account_name = new_tasks_account_name - @property def retention(self): """Gets the retention of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob. # noqa: E501 @@ -266,33 +224,6 @@ def source_account_id(self, source_account_id): self._source_account_id = source_account_id - @property - def source_account_name(self): - """Gets the source_account_name of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob. # noqa: E501 - - Account name of the source storage system. # noqa: E501 - - :return: The source_account_name of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob. # noqa: E501 - :rtype: str - """ - return self._source_account_name - - @source_account_name.setter - def source_account_name(self, source_account_name): - """Sets the source_account_name of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob. - - Account name of the source storage system. # noqa: E501 - - :param source_account_name: The source_account_name of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob. # noqa: E501 - :type: str - """ - if source_account_name is not None and len(source_account_name) > 255: - raise ValueError("Invalid value for `source_account_name`, length must be less than or equal to `255`") # noqa: E501 - if source_account_name is not None and len(source_account_name) < 1: - raise ValueError("Invalid value for `source_account_name`, length must be greater than or equal to `1`") # noqa: E501 - - self._source_account_name = source_account_name - @property def source_base_path(self): """Gets the source_base_path of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob. # noqa: E501 @@ -350,7 +281,7 @@ def statistics(self): Baseline copy job statistics. # noqa: E501 :return: The statistics of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob. # noqa: E501 - :rtype: DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics + :rtype: DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics """ return self._statistics @@ -361,7 +292,7 @@ def statistics(self, statistics): Baseline copy job statistics. # noqa: E501 :param statistics: The statistics of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob. # noqa: E501 - :type: DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics + :type: DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics """ self._statistics = statistics @@ -393,33 +324,6 @@ def target_account_id(self, target_account_id): self._target_account_id = target_account_id - @property - def target_account_name(self): - """Gets the target_account_name of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob. # noqa: E501 - - Account name of the target storage system. # noqa: E501 - - :return: The target_account_name of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob. # noqa: E501 - :rtype: str - """ - return self._target_account_name - - @target_account_name.setter - def target_account_name(self, target_account_name): - """Sets the target_account_name of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob. - - Account name of the target storage system. # noqa: E501 - - :param target_account_name: The target_account_name of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob. # noqa: E501 - :type: str - """ - if target_account_name is not None and len(target_account_name) > 255: - raise ValueError("Invalid value for `target_account_name`, length must be less than or equal to `255`") # noqa: E501 - if target_account_name is not None and len(target_account_name) < 1: - raise ValueError("Invalid value for `target_account_name`, length must be greater than or equal to `1`") # noqa: E501 - - self._target_account_name = target_account_name - @property def target_base_path(self): """Gets the target_base_path of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJob. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_baseline_copy_job_statistics.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_job_job_type_specific_attrs_dataset_baseline_copy_job_statistics.py similarity index 72% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_baseline_copy_job_statistics.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_job_job_type_specific_attrs_dataset_baseline_copy_job_statistics.py index 4b626b1d7..85bfcf427 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_baseline_copy_job_statistics.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_job_job_type_specific_attrs_dataset_baseline_copy_job_statistics.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics(object): +class DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -73,7 +73,7 @@ class DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatis } def __init__(self, _0_k_8_k_files_xferred=None, _100_m_10_g_files_xferred=None, _1_m_100_m_files_xferred=None, _8_k_1_m_files_xferred=None, ads_xferred=None, block_files_xferred=None, bytes_xferred=None, char_files_xferred=None, dirs_xferred=None, fifo_files_xferred=None, files_xferred=None, hardlinks_xferred=None, huge_files_xferred=None, sock_files_xferred=None, softlinks_xferred=None, source_base_dataset_id=None, target_dataset_id=None, total_size_xferred=None): # noqa: E501 - """DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics - a model defined in Swagger""" # noqa: E501 + """DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics - a model defined in Swagger""" # noqa: E501 self.__0_k_8_k_files_xferred = None self.__100_m_10_g_files_xferred = None @@ -134,22 +134,22 @@ def __init__(self, _0_k_8_k_files_xferred=None, _100_m_10_g_files_xferred=None, @property def _0_k_8_k_files_xferred(self): - """Gets the _0_k_8_k_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + """Gets the _0_k_8_k_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 Total number of files that were <= 8K in size. # noqa: E501 - :return: The _0_k_8_k_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :return: The _0_k_8_k_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :rtype: int """ return self.__0_k_8_k_files_xferred @_0_k_8_k_files_xferred.setter def _0_k_8_k_files_xferred(self, _0_k_8_k_files_xferred): - """Sets the _0_k_8_k_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. + """Sets the _0_k_8_k_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. Total number of files that were <= 8K in size. # noqa: E501 - :param _0_k_8_k_files_xferred: The _0_k_8_k_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :param _0_k_8_k_files_xferred: The _0_k_8_k_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :type: int """ if _0_k_8_k_files_xferred is not None and _0_k_8_k_files_xferred > 9223372036854775807: # noqa: E501 @@ -161,22 +161,22 @@ def _0_k_8_k_files_xferred(self, _0_k_8_k_files_xferred): @property def _100_m_10_g_files_xferred(self): - """Gets the _100_m_10_g_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + """Gets the _100_m_10_g_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 Total number of files that were greater than 100MB and <= 10GB in size. # noqa: E501 - :return: The _100_m_10_g_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :return: The _100_m_10_g_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :rtype: int """ return self.__100_m_10_g_files_xferred @_100_m_10_g_files_xferred.setter def _100_m_10_g_files_xferred(self, _100_m_10_g_files_xferred): - """Sets the _100_m_10_g_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. + """Sets the _100_m_10_g_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. Total number of files that were greater than 100MB and <= 10GB in size. # noqa: E501 - :param _100_m_10_g_files_xferred: The _100_m_10_g_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :param _100_m_10_g_files_xferred: The _100_m_10_g_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :type: int """ if _100_m_10_g_files_xferred is not None and _100_m_10_g_files_xferred > 9223372036854775807: # noqa: E501 @@ -188,22 +188,22 @@ def _100_m_10_g_files_xferred(self, _100_m_10_g_files_xferred): @property def _1_m_100_m_files_xferred(self): - """Gets the _1_m_100_m_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + """Gets the _1_m_100_m_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 Total number of files that were greater than 1MB and <= 100MB in size. # noqa: E501 - :return: The _1_m_100_m_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :return: The _1_m_100_m_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :rtype: int """ return self.__1_m_100_m_files_xferred @_1_m_100_m_files_xferred.setter def _1_m_100_m_files_xferred(self, _1_m_100_m_files_xferred): - """Sets the _1_m_100_m_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. + """Sets the _1_m_100_m_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. Total number of files that were greater than 1MB and <= 100MB in size. # noqa: E501 - :param _1_m_100_m_files_xferred: The _1_m_100_m_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :param _1_m_100_m_files_xferred: The _1_m_100_m_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :type: int """ if _1_m_100_m_files_xferred is not None and _1_m_100_m_files_xferred > 9223372036854775807: # noqa: E501 @@ -215,22 +215,22 @@ def _1_m_100_m_files_xferred(self, _1_m_100_m_files_xferred): @property def _8_k_1_m_files_xferred(self): - """Gets the _8_k_1_m_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + """Gets the _8_k_1_m_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 Total number of files that were greater than 8K and <= 1MB in size. # noqa: E501 - :return: The _8_k_1_m_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :return: The _8_k_1_m_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :rtype: int """ return self.__8_k_1_m_files_xferred @_8_k_1_m_files_xferred.setter def _8_k_1_m_files_xferred(self, _8_k_1_m_files_xferred): - """Sets the _8_k_1_m_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. + """Sets the _8_k_1_m_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. Total number of files that were greater than 8K and <= 1MB in size. # noqa: E501 - :param _8_k_1_m_files_xferred: The _8_k_1_m_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :param _8_k_1_m_files_xferred: The _8_k_1_m_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :type: int """ if _8_k_1_m_files_xferred is not None and _8_k_1_m_files_xferred > 9223372036854775807: # noqa: E501 @@ -242,22 +242,22 @@ def _8_k_1_m_files_xferred(self, _8_k_1_m_files_xferred): @property def ads_xferred(self): - """Gets the ads_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + """Gets the ads_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 Total number of alternate data streams transferred. # noqa: E501 - :return: The ads_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :return: The ads_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :rtype: int """ return self._ads_xferred @ads_xferred.setter def ads_xferred(self, ads_xferred): - """Sets the ads_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. + """Sets the ads_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. Total number of alternate data streams transferred. # noqa: E501 - :param ads_xferred: The ads_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :param ads_xferred: The ads_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :type: int """ if ads_xferred is not None and ads_xferred > 9223372036854775807: # noqa: E501 @@ -269,22 +269,22 @@ def ads_xferred(self, ads_xferred): @property def block_files_xferred(self): - """Gets the block_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + """Gets the block_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 Total number of block files transferred. # noqa: E501 - :return: The block_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :return: The block_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :rtype: int """ return self._block_files_xferred @block_files_xferred.setter def block_files_xferred(self, block_files_xferred): - """Sets the block_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. + """Sets the block_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. Total number of block files transferred. # noqa: E501 - :param block_files_xferred: The block_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :param block_files_xferred: The block_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :type: int """ if block_files_xferred is not None and block_files_xferred > 9223372036854775807: # noqa: E501 @@ -296,22 +296,22 @@ def block_files_xferred(self, block_files_xferred): @property def bytes_xferred(self): - """Gets the bytes_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + """Gets the bytes_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 Total number of file bytes transferred. # noqa: E501 - :return: The bytes_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :return: The bytes_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :rtype: int """ return self._bytes_xferred @bytes_xferred.setter def bytes_xferred(self, bytes_xferred): - """Sets the bytes_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. + """Sets the bytes_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. Total number of file bytes transferred. # noqa: E501 - :param bytes_xferred: The bytes_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :param bytes_xferred: The bytes_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :type: int """ if bytes_xferred is not None and bytes_xferred > 9223372036854775807: # noqa: E501 @@ -323,22 +323,22 @@ def bytes_xferred(self, bytes_xferred): @property def char_files_xferred(self): - """Gets the char_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + """Gets the char_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 Total number of char files transferred. # noqa: E501 - :return: The char_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :return: The char_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :rtype: int """ return self._char_files_xferred @char_files_xferred.setter def char_files_xferred(self, char_files_xferred): - """Sets the char_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. + """Sets the char_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. Total number of char files transferred. # noqa: E501 - :param char_files_xferred: The char_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :param char_files_xferred: The char_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :type: int """ if char_files_xferred is not None and char_files_xferred > 9223372036854775807: # noqa: E501 @@ -350,22 +350,22 @@ def char_files_xferred(self, char_files_xferred): @property def dirs_xferred(self): - """Gets the dirs_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + """Gets the dirs_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 Total number of directories transferred. # noqa: E501 - :return: The dirs_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :return: The dirs_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :rtype: int """ return self._dirs_xferred @dirs_xferred.setter def dirs_xferred(self, dirs_xferred): - """Sets the dirs_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. + """Sets the dirs_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. Total number of directories transferred. # noqa: E501 - :param dirs_xferred: The dirs_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :param dirs_xferred: The dirs_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :type: int """ if dirs_xferred is not None and dirs_xferred > 9223372036854775807: # noqa: E501 @@ -377,22 +377,22 @@ def dirs_xferred(self, dirs_xferred): @property def fifo_files_xferred(self): - """Gets the fifo_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + """Gets the fifo_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 Total number of FIFO files transferred. # noqa: E501 - :return: The fifo_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :return: The fifo_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :rtype: int """ return self._fifo_files_xferred @fifo_files_xferred.setter def fifo_files_xferred(self, fifo_files_xferred): - """Sets the fifo_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. + """Sets the fifo_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. Total number of FIFO files transferred. # noqa: E501 - :param fifo_files_xferred: The fifo_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :param fifo_files_xferred: The fifo_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :type: int """ if fifo_files_xferred is not None and fifo_files_xferred > 9223372036854775807: # noqa: E501 @@ -404,22 +404,22 @@ def fifo_files_xferred(self, fifo_files_xferred): @property def files_xferred(self): - """Gets the files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + """Gets the files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 Total number of files transferred. # noqa: E501 - :return: The files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :return: The files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :rtype: int """ return self._files_xferred @files_xferred.setter def files_xferred(self, files_xferred): - """Sets the files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. + """Sets the files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. Total number of files transferred. # noqa: E501 - :param files_xferred: The files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :param files_xferred: The files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :type: int """ if files_xferred is not None and files_xferred > 9223372036854775807: # noqa: E501 @@ -431,22 +431,22 @@ def files_xferred(self, files_xferred): @property def hardlinks_xferred(self): - """Gets the hardlinks_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + """Gets the hardlinks_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 Total number of hardlinks transferred. # noqa: E501 - :return: The hardlinks_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :return: The hardlinks_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :rtype: int """ return self._hardlinks_xferred @hardlinks_xferred.setter def hardlinks_xferred(self, hardlinks_xferred): - """Sets the hardlinks_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. + """Sets the hardlinks_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. Total number of hardlinks transferred. # noqa: E501 - :param hardlinks_xferred: The hardlinks_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :param hardlinks_xferred: The hardlinks_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :type: int """ if hardlinks_xferred is not None and hardlinks_xferred > 9223372036854775807: # noqa: E501 @@ -458,22 +458,22 @@ def hardlinks_xferred(self, hardlinks_xferred): @property def huge_files_xferred(self): - """Gets the huge_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + """Gets the huge_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 Total number of files that were greater than 10GB in size. # noqa: E501 - :return: The huge_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :return: The huge_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :rtype: int """ return self._huge_files_xferred @huge_files_xferred.setter def huge_files_xferred(self, huge_files_xferred): - """Sets the huge_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. + """Sets the huge_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. Total number of files that were greater than 10GB in size. # noqa: E501 - :param huge_files_xferred: The huge_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :param huge_files_xferred: The huge_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :type: int """ if huge_files_xferred is not None and huge_files_xferred > 9223372036854775807: # noqa: E501 @@ -485,22 +485,22 @@ def huge_files_xferred(self, huge_files_xferred): @property def sock_files_xferred(self): - """Gets the sock_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + """Gets the sock_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 Total number of socket files transferred. # noqa: E501 - :return: The sock_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :return: The sock_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :rtype: int """ return self._sock_files_xferred @sock_files_xferred.setter def sock_files_xferred(self, sock_files_xferred): - """Sets the sock_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. + """Sets the sock_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. Total number of socket files transferred. # noqa: E501 - :param sock_files_xferred: The sock_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :param sock_files_xferred: The sock_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :type: int """ if sock_files_xferred is not None and sock_files_xferred > 9223372036854775807: # noqa: E501 @@ -512,22 +512,22 @@ def sock_files_xferred(self, sock_files_xferred): @property def softlinks_xferred(self): - """Gets the softlinks_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + """Gets the softlinks_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 Total number of softlinks transferred. # noqa: E501 - :return: The softlinks_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :return: The softlinks_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :rtype: int """ return self._softlinks_xferred @softlinks_xferred.setter def softlinks_xferred(self, softlinks_xferred): - """Sets the softlinks_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. + """Sets the softlinks_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. Total number of softlinks transferred. # noqa: E501 - :param softlinks_xferred: The softlinks_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :param softlinks_xferred: The softlinks_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :type: int """ if softlinks_xferred is not None and softlinks_xferred > 9223372036854775807: # noqa: E501 @@ -539,22 +539,22 @@ def softlinks_xferred(self, softlinks_xferred): @property def source_base_dataset_id(self): - """Gets the source_base_dataset_id of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + """Gets the source_base_dataset_id of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 Source Base Dataset ID. # noqa: E501 - :return: The source_base_dataset_id of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :return: The source_base_dataset_id of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :rtype: int """ return self._source_base_dataset_id @source_base_dataset_id.setter def source_base_dataset_id(self, source_base_dataset_id): - """Sets the source_base_dataset_id of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. + """Sets the source_base_dataset_id of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. Source Base Dataset ID. # noqa: E501 - :param source_base_dataset_id: The source_base_dataset_id of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :param source_base_dataset_id: The source_base_dataset_id of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :type: int """ if source_base_dataset_id is not None and source_base_dataset_id > 9223372036854775807: # noqa: E501 @@ -566,22 +566,22 @@ def source_base_dataset_id(self, source_base_dataset_id): @property def target_dataset_id(self): - """Gets the target_dataset_id of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + """Gets the target_dataset_id of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 Target Dataset ID. # noqa: E501 - :return: The target_dataset_id of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :return: The target_dataset_id of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :rtype: int """ return self._target_dataset_id @target_dataset_id.setter def target_dataset_id(self, target_dataset_id): - """Sets the target_dataset_id of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. + """Sets the target_dataset_id of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. Target Dataset ID. # noqa: E501 - :param target_dataset_id: The target_dataset_id of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :param target_dataset_id: The target_dataset_id of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :type: int """ if target_dataset_id is not None and target_dataset_id > 9223372036854775807: # noqa: E501 @@ -593,22 +593,22 @@ def target_dataset_id(self, target_dataset_id): @property def total_size_xferred(self): - """Gets the total_size_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + """Gets the total_size_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 Total size of files transferred. # noqa: E501 - :return: The total_size_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :return: The total_size_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :rtype: int """ return self._total_size_xferred @total_size_xferred.setter def total_size_xferred(self, total_size_xferred): - """Sets the total_size_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. + """Sets the total_size_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. Total size of files transferred. # noqa: E501 - :param total_size_xferred: The total_size_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 + :param total_size_xferred: The total_size_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics. # noqa: E501 :type: int """ if total_size_xferred is not None and total_size_xferred > 9223372036854775807: # noqa: E501 @@ -639,7 +639,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics, dict): + if issubclass(DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics, dict): for key, value in self.items(): result[key] = value @@ -655,7 +655,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics): + if not isinstance(other, DatamoverJobJobTypeSpecificAttrsDatasetBaselineCopyJobStatistics): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_job_job_type_specific_attrs_dataset_incremental_copy_job.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_job_job_type_specific_attrs_dataset_incremental_copy_job.py similarity index 69% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_job_job_type_specific_attrs_dataset_incremental_copy_job.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_job_job_type_specific_attrs_dataset_incremental_copy_job.py index 39d9a0a7b..3a9923b5f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_job_job_type_specific_attrs_dataset_incremental_copy_job.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_job_job_type_specific_attrs_dataset_incremental_copy_job.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -32,66 +32,51 @@ class DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob(object): """ swagger_types = { 'new_tasks_account': 'str', - 'new_tasks_account_name': 'str', 'retention': 'DatamoverBasePolicySrcDatasetRetention', 'source_account_id': 'str', - 'source_account_name': 'str', 'source_base_path': 'str', - 'statistics': 'DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics', + 'statistics': 'DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics', 'target_account_id': 'str', - 'target_account_name': 'str', 'target_base_path': 'str', 'target_dataset_type': 'str' } attribute_map = { 'new_tasks_account': 'new_tasks_account', - 'new_tasks_account_name': 'new_tasks_account_name', 'retention': 'retention', 'source_account_id': 'source_account_id', - 'source_account_name': 'source_account_name', 'source_base_path': 'source_base_path', 'statistics': 'statistics', 'target_account_id': 'target_account_id', - 'target_account_name': 'target_account_name', 'target_base_path': 'target_base_path', 'target_dataset_type': 'target_dataset_type' } - def __init__(self, new_tasks_account=None, new_tasks_account_name=None, retention=None, source_account_id=None, source_account_name=None, source_base_path=None, statistics=None, target_account_id=None, target_account_name=None, target_base_path=None, target_dataset_type=None): # noqa: E501 + def __init__(self, new_tasks_account=None, retention=None, source_account_id=None, source_base_path=None, statistics=None, target_account_id=None, target_base_path=None, target_dataset_type=None): # noqa: E501 """DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob - a model defined in Swagger""" # noqa: E501 self._new_tasks_account = None - self._new_tasks_account_name = None self._retention = None self._source_account_id = None - self._source_account_name = None self._source_base_path = None self._statistics = None self._target_account_id = None - self._target_account_name = None self._target_base_path = None self._target_dataset_type = None self.discriminator = None if new_tasks_account is not None: self.new_tasks_account = new_tasks_account - if new_tasks_account_name is not None: - self.new_tasks_account_name = new_tasks_account_name if retention is not None: self.retention = retention if source_account_id is not None: self.source_account_id = source_account_id - if source_account_name is not None: - self.source_account_name = source_account_name if source_base_path is not None: self.source_base_path = source_base_path if statistics is not None: self.statistics = statistics if target_account_id is not None: self.target_account_id = target_account_id - if target_account_name is not None: - self.target_account_name = target_account_name if target_base_path is not None: self.target_base_path = target_base_path if target_dataset_type is not None: @@ -101,7 +86,7 @@ def __init__(self, new_tasks_account=None, new_tasks_account_name=None, retentio def new_tasks_account(self): """Gets the new_tasks_account of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. # noqa: E501 - Account ID of the system on which to create tasks. This overrides the default task affinity. # noqa: E501 + Account of the system to create tasks on. This overrides the default task affinity. # noqa: E501 :return: The new_tasks_account of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. # noqa: E501 :rtype: str @@ -112,7 +97,7 @@ def new_tasks_account(self): def new_tasks_account(self, new_tasks_account): """Sets the new_tasks_account of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. - Account ID of the system on which to create tasks. This overrides the default task affinity. # noqa: E501 + Account of the system to create tasks on. This overrides the default task affinity. # noqa: E501 :param new_tasks_account: The new_tasks_account of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. # noqa: E501 :type: str @@ -124,33 +109,6 @@ def new_tasks_account(self, new_tasks_account): self._new_tasks_account = new_tasks_account - @property - def new_tasks_account_name(self): - """Gets the new_tasks_account_name of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. # noqa: E501 - - Account name of the system on which to create tasks. # noqa: E501 - - :return: The new_tasks_account_name of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. # noqa: E501 - :rtype: str - """ - return self._new_tasks_account_name - - @new_tasks_account_name.setter - def new_tasks_account_name(self, new_tasks_account_name): - """Sets the new_tasks_account_name of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. - - Account name of the system on which to create tasks. # noqa: E501 - - :param new_tasks_account_name: The new_tasks_account_name of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. # noqa: E501 - :type: str - """ - if new_tasks_account_name is not None and len(new_tasks_account_name) > 255: - raise ValueError("Invalid value for `new_tasks_account_name`, length must be less than or equal to `255`") # noqa: E501 - if new_tasks_account_name is not None and len(new_tasks_account_name) < 1: - raise ValueError("Invalid value for `new_tasks_account_name`, length must be greater than or equal to `1`") # noqa: E501 - - self._new_tasks_account_name = new_tasks_account_name - @property def retention(self): """Gets the retention of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. # noqa: E501 @@ -201,33 +159,6 @@ def source_account_id(self, source_account_id): self._source_account_id = source_account_id - @property - def source_account_name(self): - """Gets the source_account_name of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. # noqa: E501 - - Account name of the source storage system. # noqa: E501 - - :return: The source_account_name of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. # noqa: E501 - :rtype: str - """ - return self._source_account_name - - @source_account_name.setter - def source_account_name(self, source_account_name): - """Sets the source_account_name of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. - - Account name of the source storage system. # noqa: E501 - - :param source_account_name: The source_account_name of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. # noqa: E501 - :type: str - """ - if source_account_name is not None and len(source_account_name) > 255: - raise ValueError("Invalid value for `source_account_name`, length must be less than or equal to `255`") # noqa: E501 - if source_account_name is not None and len(source_account_name) < 1: - raise ValueError("Invalid value for `source_account_name`, length must be greater than or equal to `1`") # noqa: E501 - - self._source_account_name = source_account_name - @property def source_base_path(self): """Gets the source_base_path of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. # noqa: E501 @@ -262,7 +193,7 @@ def statistics(self): Incremental copy job statistics. # noqa: E501 :return: The statistics of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. # noqa: E501 - :rtype: DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics + :rtype: DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics """ return self._statistics @@ -273,7 +204,7 @@ def statistics(self, statistics): Incremental copy job statistics. # noqa: E501 :param statistics: The statistics of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. # noqa: E501 - :type: DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics + :type: DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics """ self._statistics = statistics @@ -305,33 +236,6 @@ def target_account_id(self, target_account_id): self._target_account_id = target_account_id - @property - def target_account_name(self): - """Gets the target_account_name of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. # noqa: E501 - - Account name of the target storage system. # noqa: E501 - - :return: The target_account_name of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. # noqa: E501 - :rtype: str - """ - return self._target_account_name - - @target_account_name.setter - def target_account_name(self, target_account_name): - """Sets the target_account_name of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. - - Account name of the target storage system. # noqa: E501 - - :param target_account_name: The target_account_name of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. # noqa: E501 - :type: str - """ - if target_account_name is not None and len(target_account_name) > 255: - raise ValueError("Invalid value for `target_account_name`, length must be less than or equal to `255`") # noqa: E501 - if target_account_name is not None and len(target_account_name) < 1: - raise ValueError("Invalid value for `target_account_name`, length must be greater than or equal to `1`") # noqa: E501 - - self._target_account_name = target_account_name - @property def target_base_path(self): """Gets the target_base_path of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJob. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_incremental_copy_job_statistics.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_job_job_type_specific_attrs_dataset_incremental_copy_job_statistics.py similarity index 72% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_incremental_copy_job_statistics.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_job_job_type_specific_attrs_dataset_incremental_copy_job_statistics.py index 1c939d869..c77c8e5f3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_historical_jobs_job_job_type_specific_attrs_dataset_incremental_copy_job_statistics.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_job_job_type_specific_attrs_dataset_incremental_copy_job_statistics.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics(object): +class DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -97,7 +97,7 @@ class DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobSta } def __init__(self, _0_k_8_k_files_xferred=None, _100_m_10_g_files_xferred=None, _1_m_100_m_files_xferred=None, _8_k_1_m_files_xferred=None, ads_xferred=None, block_files_xferred=None, bytes_xferred=None, char_files_xferred=None, dirs_xferred=None, fifo_files_xferred=None, files_xferred=None, hardlinks_xferred=None, huge_files_xferred=None, num_ads_deleted=None, num_bytes_changed=None, num_bytes_truncated=None, num_dirs_change=None, num_dirs_moved=None, num_files_linked=None, num_inodes_scan=None, num_new_dirs_created=None, num_snapshot_scan=None, num_trees_deleted=None, num_updated_files=None, sock_files_xferred=None, softlinks_xferred=None, source_base_dataset_id=None, source_incremental_dataset_id=None, target_dataset_id=None, total_size_xferred=None): # noqa: E501 - """DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics - a model defined in Swagger""" # noqa: E501 + """DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics - a model defined in Swagger""" # noqa: E501 self.__0_k_8_k_files_xferred = None self.__100_m_10_g_files_xferred = None @@ -194,22 +194,22 @@ def __init__(self, _0_k_8_k_files_xferred=None, _100_m_10_g_files_xferred=None, @property def _0_k_8_k_files_xferred(self): - """Gets the _0_k_8_k_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the _0_k_8_k_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Total number of files that were <= 8K in size. # noqa: E501 - :return: The _0_k_8_k_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The _0_k_8_k_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self.__0_k_8_k_files_xferred @_0_k_8_k_files_xferred.setter def _0_k_8_k_files_xferred(self, _0_k_8_k_files_xferred): - """Sets the _0_k_8_k_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the _0_k_8_k_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Total number of files that were <= 8K in size. # noqa: E501 - :param _0_k_8_k_files_xferred: The _0_k_8_k_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param _0_k_8_k_files_xferred: The _0_k_8_k_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if _0_k_8_k_files_xferred is not None and _0_k_8_k_files_xferred > 9223372036854775807: # noqa: E501 @@ -221,22 +221,22 @@ def _0_k_8_k_files_xferred(self, _0_k_8_k_files_xferred): @property def _100_m_10_g_files_xferred(self): - """Gets the _100_m_10_g_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the _100_m_10_g_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Total number of files that were greater than 100MB and <= 10GB in size. # noqa: E501 - :return: The _100_m_10_g_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The _100_m_10_g_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self.__100_m_10_g_files_xferred @_100_m_10_g_files_xferred.setter def _100_m_10_g_files_xferred(self, _100_m_10_g_files_xferred): - """Sets the _100_m_10_g_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the _100_m_10_g_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Total number of files that were greater than 100MB and <= 10GB in size. # noqa: E501 - :param _100_m_10_g_files_xferred: The _100_m_10_g_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param _100_m_10_g_files_xferred: The _100_m_10_g_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if _100_m_10_g_files_xferred is not None and _100_m_10_g_files_xferred > 9223372036854775807: # noqa: E501 @@ -248,22 +248,22 @@ def _100_m_10_g_files_xferred(self, _100_m_10_g_files_xferred): @property def _1_m_100_m_files_xferred(self): - """Gets the _1_m_100_m_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the _1_m_100_m_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Total number of files that were greater than 1MB and <= 100MB in size. # noqa: E501 - :return: The _1_m_100_m_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The _1_m_100_m_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self.__1_m_100_m_files_xferred @_1_m_100_m_files_xferred.setter def _1_m_100_m_files_xferred(self, _1_m_100_m_files_xferred): - """Sets the _1_m_100_m_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the _1_m_100_m_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Total number of files that were greater than 1MB and <= 100MB in size. # noqa: E501 - :param _1_m_100_m_files_xferred: The _1_m_100_m_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param _1_m_100_m_files_xferred: The _1_m_100_m_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if _1_m_100_m_files_xferred is not None and _1_m_100_m_files_xferred > 9223372036854775807: # noqa: E501 @@ -275,22 +275,22 @@ def _1_m_100_m_files_xferred(self, _1_m_100_m_files_xferred): @property def _8_k_1_m_files_xferred(self): - """Gets the _8_k_1_m_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the _8_k_1_m_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Total number of files that were greater than 8K and <= 1MB in size. # noqa: E501 - :return: The _8_k_1_m_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The _8_k_1_m_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self.__8_k_1_m_files_xferred @_8_k_1_m_files_xferred.setter def _8_k_1_m_files_xferred(self, _8_k_1_m_files_xferred): - """Sets the _8_k_1_m_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the _8_k_1_m_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Total number of files that were greater than 8K and <= 1MB in size. # noqa: E501 - :param _8_k_1_m_files_xferred: The _8_k_1_m_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param _8_k_1_m_files_xferred: The _8_k_1_m_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if _8_k_1_m_files_xferred is not None and _8_k_1_m_files_xferred > 9223372036854775807: # noqa: E501 @@ -302,22 +302,22 @@ def _8_k_1_m_files_xferred(self, _8_k_1_m_files_xferred): @property def ads_xferred(self): - """Gets the ads_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the ads_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Total number of alternate data streams transferred. # noqa: E501 - :return: The ads_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The ads_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self._ads_xferred @ads_xferred.setter def ads_xferred(self, ads_xferred): - """Sets the ads_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the ads_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Total number of alternate data streams transferred. # noqa: E501 - :param ads_xferred: The ads_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param ads_xferred: The ads_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if ads_xferred is not None and ads_xferred > 9223372036854775807: # noqa: E501 @@ -329,22 +329,22 @@ def ads_xferred(self, ads_xferred): @property def block_files_xferred(self): - """Gets the block_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the block_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Total number of block files transferred. # noqa: E501 - :return: The block_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The block_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self._block_files_xferred @block_files_xferred.setter def block_files_xferred(self, block_files_xferred): - """Sets the block_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the block_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Total number of block files transferred. # noqa: E501 - :param block_files_xferred: The block_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param block_files_xferred: The block_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if block_files_xferred is not None and block_files_xferred > 9223372036854775807: # noqa: E501 @@ -356,22 +356,22 @@ def block_files_xferred(self, block_files_xferred): @property def bytes_xferred(self): - """Gets the bytes_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the bytes_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Total number of file bytes transferred. # noqa: E501 - :return: The bytes_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The bytes_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self._bytes_xferred @bytes_xferred.setter def bytes_xferred(self, bytes_xferred): - """Sets the bytes_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the bytes_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Total number of file bytes transferred. # noqa: E501 - :param bytes_xferred: The bytes_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param bytes_xferred: The bytes_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if bytes_xferred is not None and bytes_xferred > 9223372036854775807: # noqa: E501 @@ -383,22 +383,22 @@ def bytes_xferred(self, bytes_xferred): @property def char_files_xferred(self): - """Gets the char_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the char_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Total number of char files transferred. # noqa: E501 - :return: The char_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The char_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self._char_files_xferred @char_files_xferred.setter def char_files_xferred(self, char_files_xferred): - """Sets the char_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the char_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Total number of char files transferred. # noqa: E501 - :param char_files_xferred: The char_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param char_files_xferred: The char_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if char_files_xferred is not None and char_files_xferred > 9223372036854775807: # noqa: E501 @@ -410,22 +410,22 @@ def char_files_xferred(self, char_files_xferred): @property def dirs_xferred(self): - """Gets the dirs_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the dirs_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Total number of directories transferred. # noqa: E501 - :return: The dirs_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The dirs_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self._dirs_xferred @dirs_xferred.setter def dirs_xferred(self, dirs_xferred): - """Sets the dirs_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the dirs_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Total number of directories transferred. # noqa: E501 - :param dirs_xferred: The dirs_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param dirs_xferred: The dirs_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if dirs_xferred is not None and dirs_xferred > 9223372036854775807: # noqa: E501 @@ -437,22 +437,22 @@ def dirs_xferred(self, dirs_xferred): @property def fifo_files_xferred(self): - """Gets the fifo_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the fifo_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Total number of FIFO files transferred. # noqa: E501 - :return: The fifo_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The fifo_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self._fifo_files_xferred @fifo_files_xferred.setter def fifo_files_xferred(self, fifo_files_xferred): - """Sets the fifo_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the fifo_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Total number of FIFO files transferred. # noqa: E501 - :param fifo_files_xferred: The fifo_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param fifo_files_xferred: The fifo_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if fifo_files_xferred is not None and fifo_files_xferred > 9223372036854775807: # noqa: E501 @@ -464,22 +464,22 @@ def fifo_files_xferred(self, fifo_files_xferred): @property def files_xferred(self): - """Gets the files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Total number of files transferred. # noqa: E501 - :return: The files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self._files_xferred @files_xferred.setter def files_xferred(self, files_xferred): - """Sets the files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Total number of files transferred. # noqa: E501 - :param files_xferred: The files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param files_xferred: The files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if files_xferred is not None and files_xferred > 9223372036854775807: # noqa: E501 @@ -491,22 +491,22 @@ def files_xferred(self, files_xferred): @property def hardlinks_xferred(self): - """Gets the hardlinks_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the hardlinks_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Total number of hardlinks transferred. # noqa: E501 - :return: The hardlinks_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The hardlinks_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self._hardlinks_xferred @hardlinks_xferred.setter def hardlinks_xferred(self, hardlinks_xferred): - """Sets the hardlinks_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the hardlinks_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Total number of hardlinks transferred. # noqa: E501 - :param hardlinks_xferred: The hardlinks_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param hardlinks_xferred: The hardlinks_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if hardlinks_xferred is not None and hardlinks_xferred > 9223372036854775807: # noqa: E501 @@ -518,22 +518,22 @@ def hardlinks_xferred(self, hardlinks_xferred): @property def huge_files_xferred(self): - """Gets the huge_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the huge_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Total number of files that were greater than 10GB in size. # noqa: E501 - :return: The huge_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The huge_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self._huge_files_xferred @huge_files_xferred.setter def huge_files_xferred(self, huge_files_xferred): - """Sets the huge_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the huge_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Total number of files that were greater than 10GB in size. # noqa: E501 - :param huge_files_xferred: The huge_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param huge_files_xferred: The huge_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if huge_files_xferred is not None and huge_files_xferred > 9223372036854775807: # noqa: E501 @@ -545,22 +545,22 @@ def huge_files_xferred(self, huge_files_xferred): @property def num_ads_deleted(self): - """Gets the num_ads_deleted of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the num_ads_deleted of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Total number of alternate data streams deleted. # noqa: E501 - :return: The num_ads_deleted of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The num_ads_deleted of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self._num_ads_deleted @num_ads_deleted.setter def num_ads_deleted(self, num_ads_deleted): - """Sets the num_ads_deleted of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the num_ads_deleted of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Total number of alternate data streams deleted. # noqa: E501 - :param num_ads_deleted: The num_ads_deleted of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param num_ads_deleted: The num_ads_deleted of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if num_ads_deleted is not None and num_ads_deleted > 9223372036854775807: # noqa: E501 @@ -572,22 +572,22 @@ def num_ads_deleted(self, num_ads_deleted): @property def num_bytes_changed(self): - """Gets the num_bytes_changed of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the num_bytes_changed of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Total number of bytes changed. # noqa: E501 - :return: The num_bytes_changed of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The num_bytes_changed of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self._num_bytes_changed @num_bytes_changed.setter def num_bytes_changed(self, num_bytes_changed): - """Sets the num_bytes_changed of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the num_bytes_changed of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Total number of bytes changed. # noqa: E501 - :param num_bytes_changed: The num_bytes_changed of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param num_bytes_changed: The num_bytes_changed of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if num_bytes_changed is not None and num_bytes_changed > 9223372036854775807: # noqa: E501 @@ -599,22 +599,22 @@ def num_bytes_changed(self, num_bytes_changed): @property def num_bytes_truncated(self): - """Gets the num_bytes_truncated of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the num_bytes_truncated of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Total number of bytes truncated. # noqa: E501 - :return: The num_bytes_truncated of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The num_bytes_truncated of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self._num_bytes_truncated @num_bytes_truncated.setter def num_bytes_truncated(self, num_bytes_truncated): - """Sets the num_bytes_truncated of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the num_bytes_truncated of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Total number of bytes truncated. # noqa: E501 - :param num_bytes_truncated: The num_bytes_truncated of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param num_bytes_truncated: The num_bytes_truncated of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if num_bytes_truncated is not None and num_bytes_truncated > 9223372036854775807: # noqa: E501 @@ -626,22 +626,22 @@ def num_bytes_truncated(self, num_bytes_truncated): @property def num_dirs_change(self): - """Gets the num_dirs_change of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the num_dirs_change of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Total number of directories changed. # noqa: E501 - :return: The num_dirs_change of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The num_dirs_change of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self._num_dirs_change @num_dirs_change.setter def num_dirs_change(self, num_dirs_change): - """Sets the num_dirs_change of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the num_dirs_change of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Total number of directories changed. # noqa: E501 - :param num_dirs_change: The num_dirs_change of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param num_dirs_change: The num_dirs_change of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if num_dirs_change is not None and num_dirs_change > 9223372036854775807: # noqa: E501 @@ -653,22 +653,22 @@ def num_dirs_change(self, num_dirs_change): @property def num_dirs_moved(self): - """Gets the num_dirs_moved of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the num_dirs_moved of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Total number of directories moved. # noqa: E501 - :return: The num_dirs_moved of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The num_dirs_moved of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self._num_dirs_moved @num_dirs_moved.setter def num_dirs_moved(self, num_dirs_moved): - """Sets the num_dirs_moved of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the num_dirs_moved of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Total number of directories moved. # noqa: E501 - :param num_dirs_moved: The num_dirs_moved of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param num_dirs_moved: The num_dirs_moved of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if num_dirs_moved is not None and num_dirs_moved > 9223372036854775807: # noqa: E501 @@ -680,22 +680,22 @@ def num_dirs_moved(self, num_dirs_moved): @property def num_files_linked(self): - """Gets the num_files_linked of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the num_files_linked of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Total number of files linked. # noqa: E501 - :return: The num_files_linked of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The num_files_linked of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self._num_files_linked @num_files_linked.setter def num_files_linked(self, num_files_linked): - """Sets the num_files_linked of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the num_files_linked of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Total number of files linked. # noqa: E501 - :param num_files_linked: The num_files_linked of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param num_files_linked: The num_files_linked of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if num_files_linked is not None and num_files_linked > 9223372036854775807: # noqa: E501 @@ -707,22 +707,22 @@ def num_files_linked(self, num_files_linked): @property def num_inodes_scan(self): - """Gets the num_inodes_scan of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the num_inodes_scan of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Total number of inodes scan. # noqa: E501 - :return: The num_inodes_scan of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The num_inodes_scan of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self._num_inodes_scan @num_inodes_scan.setter def num_inodes_scan(self, num_inodes_scan): - """Sets the num_inodes_scan of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the num_inodes_scan of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Total number of inodes scan. # noqa: E501 - :param num_inodes_scan: The num_inodes_scan of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param num_inodes_scan: The num_inodes_scan of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if num_inodes_scan is not None and num_inodes_scan > 9223372036854775807: # noqa: E501 @@ -734,22 +734,22 @@ def num_inodes_scan(self, num_inodes_scan): @property def num_new_dirs_created(self): - """Gets the num_new_dirs_created of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the num_new_dirs_created of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Total number of new directories created. # noqa: E501 - :return: The num_new_dirs_created of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The num_new_dirs_created of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self._num_new_dirs_created @num_new_dirs_created.setter def num_new_dirs_created(self, num_new_dirs_created): - """Sets the num_new_dirs_created of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the num_new_dirs_created of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Total number of new directories created. # noqa: E501 - :param num_new_dirs_created: The num_new_dirs_created of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param num_new_dirs_created: The num_new_dirs_created of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if num_new_dirs_created is not None and num_new_dirs_created > 9223372036854775807: # noqa: E501 @@ -761,22 +761,22 @@ def num_new_dirs_created(self, num_new_dirs_created): @property def num_snapshot_scan(self): - """Gets the num_snapshot_scan of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the num_snapshot_scan of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Total number of snapshot scan. # noqa: E501 - :return: The num_snapshot_scan of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The num_snapshot_scan of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self._num_snapshot_scan @num_snapshot_scan.setter def num_snapshot_scan(self, num_snapshot_scan): - """Sets the num_snapshot_scan of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the num_snapshot_scan of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Total number of snapshot scan. # noqa: E501 - :param num_snapshot_scan: The num_snapshot_scan of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param num_snapshot_scan: The num_snapshot_scan of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if num_snapshot_scan is not None and num_snapshot_scan > 9223372036854775807: # noqa: E501 @@ -788,22 +788,22 @@ def num_snapshot_scan(self, num_snapshot_scan): @property def num_trees_deleted(self): - """Gets the num_trees_deleted of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the num_trees_deleted of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Total number of trees deleted. # noqa: E501 - :return: The num_trees_deleted of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The num_trees_deleted of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self._num_trees_deleted @num_trees_deleted.setter def num_trees_deleted(self, num_trees_deleted): - """Sets the num_trees_deleted of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the num_trees_deleted of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Total number of trees deleted. # noqa: E501 - :param num_trees_deleted: The num_trees_deleted of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param num_trees_deleted: The num_trees_deleted of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if num_trees_deleted is not None and num_trees_deleted > 9223372036854775807: # noqa: E501 @@ -815,22 +815,22 @@ def num_trees_deleted(self, num_trees_deleted): @property def num_updated_files(self): - """Gets the num_updated_files of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the num_updated_files of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Total number of updated files transferred. # noqa: E501 - :return: The num_updated_files of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The num_updated_files of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self._num_updated_files @num_updated_files.setter def num_updated_files(self, num_updated_files): - """Sets the num_updated_files of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the num_updated_files of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Total number of updated files transferred. # noqa: E501 - :param num_updated_files: The num_updated_files of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param num_updated_files: The num_updated_files of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if num_updated_files is not None and num_updated_files > 9223372036854775807: # noqa: E501 @@ -842,22 +842,22 @@ def num_updated_files(self, num_updated_files): @property def sock_files_xferred(self): - """Gets the sock_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the sock_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Total number of socket files transferred. # noqa: E501 - :return: The sock_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The sock_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self._sock_files_xferred @sock_files_xferred.setter def sock_files_xferred(self, sock_files_xferred): - """Sets the sock_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the sock_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Total number of socket files transferred. # noqa: E501 - :param sock_files_xferred: The sock_files_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param sock_files_xferred: The sock_files_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if sock_files_xferred is not None and sock_files_xferred > 9223372036854775807: # noqa: E501 @@ -869,22 +869,22 @@ def sock_files_xferred(self, sock_files_xferred): @property def softlinks_xferred(self): - """Gets the softlinks_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the softlinks_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Total number of softlinks transferred. # noqa: E501 - :return: The softlinks_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The softlinks_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self._softlinks_xferred @softlinks_xferred.setter def softlinks_xferred(self, softlinks_xferred): - """Sets the softlinks_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the softlinks_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Total number of softlinks transferred. # noqa: E501 - :param softlinks_xferred: The softlinks_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param softlinks_xferred: The softlinks_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if softlinks_xferred is not None and softlinks_xferred > 9223372036854775807: # noqa: E501 @@ -896,22 +896,22 @@ def softlinks_xferred(self, softlinks_xferred): @property def source_base_dataset_id(self): - """Gets the source_base_dataset_id of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the source_base_dataset_id of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Source Base Dataset ID. # noqa: E501 - :return: The source_base_dataset_id of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The source_base_dataset_id of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self._source_base_dataset_id @source_base_dataset_id.setter def source_base_dataset_id(self, source_base_dataset_id): - """Sets the source_base_dataset_id of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the source_base_dataset_id of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Source Base Dataset ID. # noqa: E501 - :param source_base_dataset_id: The source_base_dataset_id of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param source_base_dataset_id: The source_base_dataset_id of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if source_base_dataset_id is not None and source_base_dataset_id > 9223372036854775807: # noqa: E501 @@ -923,22 +923,22 @@ def source_base_dataset_id(self, source_base_dataset_id): @property def source_incremental_dataset_id(self): - """Gets the source_incremental_dataset_id of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the source_incremental_dataset_id of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Source Incremental Dataset ID. # noqa: E501 - :return: The source_incremental_dataset_id of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The source_incremental_dataset_id of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self._source_incremental_dataset_id @source_incremental_dataset_id.setter def source_incremental_dataset_id(self, source_incremental_dataset_id): - """Sets the source_incremental_dataset_id of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the source_incremental_dataset_id of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Source Incremental Dataset ID. # noqa: E501 - :param source_incremental_dataset_id: The source_incremental_dataset_id of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param source_incremental_dataset_id: The source_incremental_dataset_id of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if source_incremental_dataset_id is not None and source_incremental_dataset_id > 9223372036854775807: # noqa: E501 @@ -950,22 +950,22 @@ def source_incremental_dataset_id(self, source_incremental_dataset_id): @property def target_dataset_id(self): - """Gets the target_dataset_id of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the target_dataset_id of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Target Dataset ID. # noqa: E501 - :return: The target_dataset_id of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The target_dataset_id of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self._target_dataset_id @target_dataset_id.setter def target_dataset_id(self, target_dataset_id): - """Sets the target_dataset_id of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the target_dataset_id of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Target Dataset ID. # noqa: E501 - :param target_dataset_id: The target_dataset_id of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param target_dataset_id: The target_dataset_id of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if target_dataset_id is not None and target_dataset_id > 9223372036854775807: # noqa: E501 @@ -977,22 +977,22 @@ def target_dataset_id(self, target_dataset_id): @property def total_size_xferred(self): - """Gets the total_size_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + """Gets the total_size_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 Total size of files transferred. # noqa: E501 - :return: The total_size_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :return: The total_size_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :rtype: int """ return self._total_size_xferred @total_size_xferred.setter def total_size_xferred(self, total_size_xferred): - """Sets the total_size_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. + """Sets the total_size_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. Total size of files transferred. # noqa: E501 - :param total_size_xferred: The total_size_xferred of this DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 + :param total_size_xferred: The total_size_xferred of this DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics. # noqa: E501 :type: int """ if total_size_xferred is not None and total_size_xferred > 9223372036854775807: # noqa: E501 @@ -1023,7 +1023,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics, dict): + if issubclass(DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics, dict): for key, value in self.items(): result[key] = value @@ -1039,7 +1039,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, DatamoverHistoricalJobsJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics): + if not isinstance(other, DatamoverJobJobTypeSpecificAttrsDatasetIncrementalCopyJobStatistics): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_jobs.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_jobs.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_jobs.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_jobs.py index 5d8311ebc..b05b90578 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_jobs.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_jobs.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policies.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policies.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policies.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policies.py index 22d285141..d9c3ff8f7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policies.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policies.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policies_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policies_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policies_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policies_extended.py index ecc101493..d9fa37287 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policies_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policies_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy.py index e0ef52ab6..01de6f407 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -96,7 +96,7 @@ def __init__(self, base_policy_id=None, briefcase=None, enabled=None, name=None, def base_policy_id(self): """Gets the base_policy_id of this DatamoverPolicy. # noqa: E501 - The unique policy identifier. # noqa: E501 + Policy ID associated with this job. # noqa: E501 :return: The base_policy_id of this DatamoverPolicy. # noqa: E501 :rtype: int @@ -107,7 +107,7 @@ def base_policy_id(self): def base_policy_id(self, base_policy_id): """Sets the base_policy_id of this DatamoverPolicy. - The unique policy identifier. # noqa: E501 + Policy ID associated with this job. # noqa: E501 :param base_policy_id: The base_policy_id of this DatamoverPolicy. # noqa: E501 :type: int diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_create_params.py similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_create_params.py index 62fed6ad6..aaa0ac4f4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -72,8 +72,7 @@ def __init__(self, base_policy_id=None, briefcase=None, enabled=None, name=None, self.base_policy_id = base_policy_id if briefcase is not None: self.briefcase = briefcase - if enabled is not None: - self.enabled = enabled + self.enabled = enabled self.name = name if parent_exec_policy_id is not None: self.parent_exec_policy_id = parent_exec_policy_id @@ -88,7 +87,7 @@ def __init__(self, base_policy_id=None, briefcase=None, enabled=None, name=None, def base_policy_id(self): """Gets the base_policy_id of this DatamoverPolicyCreateParams. # noqa: E501 - The unique policy identifier. # noqa: E501 + Policy ID associated with this job. # noqa: E501 :return: The base_policy_id of this DatamoverPolicyCreateParams. # noqa: E501 :rtype: int @@ -99,7 +98,7 @@ def base_policy_id(self): def base_policy_id(self, base_policy_id): """Sets the base_policy_id of this DatamoverPolicyCreateParams. - The unique policy identifier. # noqa: E501 + Policy ID associated with this job. # noqa: E501 :param base_policy_id: The base_policy_id of this DatamoverPolicyCreateParams. # noqa: E501 :type: int @@ -158,6 +157,8 @@ def enabled(self, enabled): :param enabled: The enabled of this DatamoverPolicyCreateParams. # noqa: E501 :type: bool """ + if enabled is None: + raise ValueError("Invalid value for `enabled`, must not be `None`") # noqa: E501 self._enabled = enabled diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_extended.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_extended.py index ebdc9a454..af0c6edd0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -41,7 +41,7 @@ class DatamoverPolicyExtended(object): 'policy_specific_attr': 'DatamoverPolicyPolicySpecificAttrExtended', 'priority': 'str', 'run_now': 'bool', - 'schedule': 'DatamoverPolicySchedule', + 'schedule': 'DatamoverBasePolicySchedule', 'validity': 'bool', 'version': 'int' } @@ -108,7 +108,7 @@ def __init__(self, base_policy_id=None, briefcase=None, disabled_by_dm=None, ena def base_policy_id(self): """Gets the base_policy_id of this DatamoverPolicyExtended. # noqa: E501 - The unique policy identifier. # noqa: E501 + Policy ID associated with this job. # noqa: E501 :return: The base_policy_id of this DatamoverPolicyExtended. # noqa: E501 :rtype: int @@ -119,7 +119,7 @@ def base_policy_id(self): def base_policy_id(self, base_policy_id): """Sets the base_policy_id of this DatamoverPolicyExtended. - The unique policy identifier. # noqa: E501 + Policy ID associated with this job. # noqa: E501 :param base_policy_id: The base_policy_id of this DatamoverPolicyExtended. # noqa: E501 :type: int @@ -373,7 +373,7 @@ def schedule(self): The schedule of the policy- start time, recurrence, specific date-times. # noqa: E501 :return: The schedule of this DatamoverPolicyExtended. # noqa: E501 - :rtype: DatamoverPolicySchedule + :rtype: DatamoverBasePolicySchedule """ return self._schedule @@ -384,7 +384,7 @@ def schedule(self, schedule): The schedule of the policy- start time, recurrence, specific date-times. # noqa: E501 :param schedule: The schedule of this DatamoverPolicyExtended. # noqa: E501 - :type: DatamoverPolicySchedule + :type: DatamoverBasePolicySchedule """ self._schedule = schedule diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_policy_specific_attr.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_policy_specific_attr.py index bd051f3d8..4c0b356cb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_policy_specific_attr.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_copy_policy.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_policy_specific_attr_copy_policy.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_copy_policy.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_policy_specific_attr_copy_policy.py index 46caa0bdd..6b5e2207f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_copy_policy.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_policy_specific_attr_copy_policy.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_copy_policy_dataset_copy_policy_base.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_policy_specific_attr_copy_policy_dataset_copy_policy_base.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_copy_policy_dataset_copy_policy_base.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_policy_specific_attr_copy_policy_dataset_copy_policy_base.py index 055fbb8d1..b54a68c06 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_copy_policy_dataset_copy_policy_base.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_policy_specific_attr_copy_policy_dataset_copy_policy_base.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_copy_policy_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_policy_specific_attr_copy_policy_extended.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_copy_policy_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_policy_specific_attr_copy_policy_extended.py index 7c158e435..0ff069986 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_copy_policy_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_policy_specific_attr_copy_policy_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -32,7 +32,7 @@ class DatamoverPolicyPolicySpecificAttrCopyPolicyExtended(object): """ swagger_types = { 'create_dataset_on_target': 'bool', - 'dataset_copy_policy_base': 'DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended', + 'dataset_copy_policy_base': 'DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBase', 'dataset_id': 'int', 'source_base_path': 'str', 'source_subpaths': 'list[str]' @@ -97,7 +97,7 @@ def dataset_copy_policy_base(self): # noqa: E501 :return: The dataset_copy_policy_base of this DatamoverPolicyPolicySpecificAttrCopyPolicyExtended. # noqa: E501 - :rtype: DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended + :rtype: DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBase """ return self._dataset_copy_policy_base @@ -108,7 +108,7 @@ def dataset_copy_policy_base(self, dataset_copy_policy_base): # noqa: E501 :param dataset_copy_policy_base: The dataset_copy_policy_base of this DatamoverPolicyPolicySpecificAttrCopyPolicyExtended. # noqa: E501 - :type: DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBaseExtended + :type: DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBase """ self._dataset_copy_policy_base = dataset_copy_policy_base diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_policy_specific_attr_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_policy_specific_attr_create_params.py index ce112febb..f515413dd 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_policy_specific_attr_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_creation_policy.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_policy_specific_attr_creation_policy.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_creation_policy.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_policy_specific_attr_creation_policy.py index dfccb4e94..52e196044 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_creation_policy.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_policy_specific_attr_creation_policy.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_expiration_policy.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_policy_specific_attr_expiration_policy.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_expiration_policy.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_policy_specific_attr_expiration_policy.py index e75995d85..47829148e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_expiration_policy.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_policy_specific_attr_expiration_policy.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_policy_specific_attr_extended.py similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_policy_specific_attr_extended.py index a7ab8a4de..3d9c6f95e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_policy_specific_attr_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -32,10 +32,10 @@ class DatamoverPolicyPolicySpecificAttrExtended(object): """ swagger_types = { 'copy_policy': 'DatamoverPolicyPolicySpecificAttrCopyPolicyExtended', - 'creation_policy': 'DatamoverPolicyPolicySpecificAttrCreationPolicyExtended', - 'expiration_policy': 'DatamoverPolicyPolicySpecificAttrExpirationPolicyExtended', + 'creation_policy': 'DatamoverPolicyPolicySpecificAttrCreationPolicy', + 'expiration_policy': 'DatamoverPolicyPolicySpecificAttrExpirationPolicy', 'policy_type': 'str', - 'repeat_copy_policy': 'DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended' + 'repeat_copy_policy': 'DatamoverPolicyPolicySpecificAttrRepeatCopyPolicy' } attribute_map = { @@ -97,7 +97,7 @@ def creation_policy(self): Fields specific to dataset creation. # noqa: E501 :return: The creation_policy of this DatamoverPolicyPolicySpecificAttrExtended. # noqa: E501 - :rtype: DatamoverPolicyPolicySpecificAttrCreationPolicyExtended + :rtype: DatamoverPolicyPolicySpecificAttrCreationPolicy """ return self._creation_policy @@ -108,7 +108,7 @@ def creation_policy(self, creation_policy): Fields specific to dataset creation. # noqa: E501 :param creation_policy: The creation_policy of this DatamoverPolicyPolicySpecificAttrExtended. # noqa: E501 - :type: DatamoverPolicyPolicySpecificAttrCreationPolicyExtended + :type: DatamoverPolicyPolicySpecificAttrCreationPolicy """ self._creation_policy = creation_policy @@ -120,7 +120,7 @@ def expiration_policy(self): Fields specific to dataset retention policy. # noqa: E501 :return: The expiration_policy of this DatamoverPolicyPolicySpecificAttrExtended. # noqa: E501 - :rtype: DatamoverPolicyPolicySpecificAttrExpirationPolicyExtended + :rtype: DatamoverPolicyPolicySpecificAttrExpirationPolicy """ return self._expiration_policy @@ -131,7 +131,7 @@ def expiration_policy(self, expiration_policy): Fields specific to dataset retention policy. # noqa: E501 :param expiration_policy: The expiration_policy of this DatamoverPolicyPolicySpecificAttrExtended. # noqa: E501 - :type: DatamoverPolicyPolicySpecificAttrExpirationPolicyExtended + :type: DatamoverPolicyPolicySpecificAttrExpirationPolicy """ self._expiration_policy = expiration_policy @@ -172,7 +172,7 @@ def repeat_copy_policy(self): # noqa: E501 :return: The repeat_copy_policy of this DatamoverPolicyPolicySpecificAttrExtended. # noqa: E501 - :rtype: DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended + :rtype: DatamoverPolicyPolicySpecificAttrRepeatCopyPolicy """ return self._repeat_copy_policy @@ -183,7 +183,7 @@ def repeat_copy_policy(self, repeat_copy_policy): # noqa: E501 :param repeat_copy_policy: The repeat_copy_policy of this DatamoverPolicyPolicySpecificAttrExtended. # noqa: E501 - :type: DatamoverPolicyPolicySpecificAttrRepeatCopyPolicyExtended + :type: DatamoverPolicyPolicySpecificAttrRepeatCopyPolicy """ self._repeat_copy_policy = repeat_copy_policy diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_repeat_copy_policy.py b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_policy_specific_attr_repeat_copy_policy.py similarity index 82% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_repeat_copy_policy.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_policy_specific_attr_repeat_copy_policy.py index b4015c514..a09364338 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_policy_policy_specific_attr_repeat_copy_policy.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/datamover_policy_policy_specific_attr_repeat_copy_policy.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -33,23 +33,20 @@ class DatamoverPolicyPolicySpecificAttrRepeatCopyPolicy(object): swagger_types = { 'dataset_copy_policy_base': 'DatamoverPolicyPolicySpecificAttrCopyPolicyDatasetCopyPolicyBase', 'reconnect': 'bool', - 'rpo_alert': 'int', 'source_base_path': 'str' } attribute_map = { 'dataset_copy_policy_base': 'dataset_copy_policy_base', 'reconnect': 'reconnect', - 'rpo_alert': 'rpo_alert', 'source_base_path': 'source_base_path' } - def __init__(self, dataset_copy_policy_base=None, reconnect=None, rpo_alert=None, source_base_path=None): # noqa: E501 + def __init__(self, dataset_copy_policy_base=None, reconnect=None, source_base_path=None): # noqa: E501 """DatamoverPolicyPolicySpecificAttrRepeatCopyPolicy - a model defined in Swagger""" # noqa: E501 self._dataset_copy_policy_base = None self._reconnect = None - self._rpo_alert = None self._source_base_path = None self.discriminator = None @@ -57,8 +54,6 @@ def __init__(self, dataset_copy_policy_base=None, reconnect=None, rpo_alert=None self.dataset_copy_policy_base = dataset_copy_policy_base if reconnect is not None: self.reconnect = reconnect - if rpo_alert is not None: - self.rpo_alert = rpo_alert if source_base_path is not None: self.source_base_path = source_base_path @@ -108,33 +103,6 @@ def reconnect(self, reconnect): self._reconnect = reconnect - @property - def rpo_alert(self): - """Gets the rpo_alert of this DatamoverPolicyPolicySpecificAttrRepeatCopyPolicy. # noqa: E501 - - RPO alert duration in seconds # noqa: E501 - - :return: The rpo_alert of this DatamoverPolicyPolicySpecificAttrRepeatCopyPolicy. # noqa: E501 - :rtype: int - """ - return self._rpo_alert - - @rpo_alert.setter - def rpo_alert(self, rpo_alert): - """Sets the rpo_alert of this DatamoverPolicyPolicySpecificAttrRepeatCopyPolicy. - - RPO alert duration in seconds # noqa: E501 - - :param rpo_alert: The rpo_alert of this DatamoverPolicyPolicySpecificAttrRepeatCopyPolicy. # noqa: E501 - :type: int - """ - if rpo_alert is not None and rpo_alert > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `rpo_alert`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if rpo_alert is not None and rpo_alert < 0: # noqa: E501 - raise ValueError("Invalid value for `rpo_alert`, must be a value greater than or equal to `0`") # noqa: E501 - - self._rpo_alert = rpo_alert - @property def source_base_path(self): """Gets the source_base_path of this DatamoverPolicyPolicySpecificAttrRepeatCopyPolicy. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_filter.py b/isilon_sdk/isilon_sdk/v9_4_0/models/dataset_filter.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/dataset_filter.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/dataset_filter.py index ec53fc381..94298a712 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_filter.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/dataset_filter.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_filter_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/dataset_filter_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/dataset_filter_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/dataset_filter_create_params.py index 119b78b87..7cf5171d3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_filter_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/dataset_filter_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_filter_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/dataset_filter_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/dataset_filter_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/dataset_filter_extended.py index 1c7bad6f2..929559d26 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_filter_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/dataset_filter_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_filter_metric_values.py b/isilon_sdk/isilon_sdk/v9_4_0/models/dataset_filter_metric_values.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/dataset_filter_metric_values.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/dataset_filter_metric_values.py index 88342258f..89d3fe48c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_filter_metric_values.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/dataset_filter_metric_values.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_filter_metric_values_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/dataset_filter_metric_values_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/dataset_filter_metric_values_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/dataset_filter_metric_values_create_params.py index 3758a280d..385c8c27d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_filter_metric_values_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/dataset_filter_metric_values_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_filters.py b/isilon_sdk/isilon_sdk/v9_4_0/models/dataset_filters.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/dataset_filters.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/dataset_filters.py index 6c840c5d0..cffe0cb4a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_filters.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/dataset_filters.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_filters_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/dataset_filters_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/dataset_filters_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/dataset_filters_extended.py index d9d09d611..de97489bb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_filters_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/dataset_filters_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_state_state.py b/isilon_sdk/isilon_sdk/v9_4_0/models/dataset_workload.py similarity index 64% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hardening_state_state.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/dataset_workload.py index 1e2f6f492..df9899b4d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_state_state.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/dataset_workload.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class HardeningStateState(object): +class DatasetWorkload(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -31,50 +31,48 @@ class HardeningStateState(object): and the value is json key in definition. """ swagger_types = { - 'state': 'str' + 'name': 'str' } attribute_map = { - 'state': 'state' + 'name': 'name' } - def __init__(self, state=None): # noqa: E501 - """HardeningStateState - a model defined in Swagger""" # noqa: E501 + def __init__(self, name=None): # noqa: E501 + """DatasetWorkload - a model defined in Swagger""" # noqa: E501 - self._state = None + self._name = None self.discriminator = None - if state is not None: - self.state = state + if name is not None: + self.name = name @property - def state(self): - """Gets the state of this HardeningStateState. # noqa: E501 + def name(self): + """Gets the name of this DatasetWorkload. # noqa: E501 - The state of the hardening service. # noqa: E501 + The name of the workload. User specified. # noqa: E501 - :return: The state of this HardeningStateState. # noqa: E501 + :return: The name of this DatasetWorkload. # noqa: E501 :rtype: str """ - return self._state + return self._name - @state.setter - def state(self, state): - """Sets the state of this HardeningStateState. + @name.setter + def name(self, name): + """Sets the name of this DatasetWorkload. - The state of the hardening service. # noqa: E501 + The name of the workload. User specified. # noqa: E501 - :param state: The state of this HardeningStateState. # noqa: E501 + :param name: The name of this DatasetWorkload. # noqa: E501 :type: str """ - allowed_values = ["Available", "Unavailable", "Running", "Other"] # noqa: E501 - if state not in allowed_values: - raise ValueError( - "Invalid value for `state` ({0}), must be one of {1}" # noqa: E501 - .format(state, allowed_values) - ) + if name is not None and len(name) > 80: + raise ValueError("Invalid value for `name`, length must be less than or equal to `80`") # noqa: E501 + if name is not None and len(name) < 1: + raise ValueError("Invalid value for `name`, length must be greater than or equal to `1`") # noqa: E501 - self._state = state + self._name = name def to_dict(self): """Returns the model properties as a dict""" @@ -97,7 +95,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(HardeningStateState, dict): + if issubclass(DatasetWorkload, dict): for key, value in self.items(): result[key] = value @@ -113,7 +111,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, HardeningStateState): + if not isinstance(other, DatasetWorkload): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_4_0/models/dataset_workload_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/dataset_workload_create_params.py new file mode 100644 index 000000000..dd95995c0 --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/dataset_workload_create_params.py @@ -0,0 +1,150 @@ +# coding: utf-8 + +""" + Isilon SDK + + Isilon SDK - Language bindings for the OneFS API # noqa: E501 + + OpenAPI spec version: 15 + Contact: sdk@isilon.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + + +class DatasetWorkloadCreateParams(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'name': 'str', + 'metric_values': 'DatasetFilterMetricValuesCreateParams' + } + + attribute_map = { + 'name': 'name', + 'metric_values': 'metric_values' + } + + def __init__(self, name=None, metric_values=None): # noqa: E501 + """DatasetWorkloadCreateParams - a model defined in Swagger""" # noqa: E501 + + self._name = None + self._metric_values = None + self.discriminator = None + + if name is not None: + self.name = name + self.metric_values = metric_values + + @property + def name(self): + """Gets the name of this DatasetWorkloadCreateParams. # noqa: E501 + + The name of the workload. User specified. # noqa: E501 + + :return: The name of this DatasetWorkloadCreateParams. # noqa: E501 + :rtype: str + """ + return self._name + + @name.setter + def name(self, name): + """Sets the name of this DatasetWorkloadCreateParams. + + The name of the workload. User specified. # noqa: E501 + + :param name: The name of this DatasetWorkloadCreateParams. # noqa: E501 + :type: str + """ + if name is not None and len(name) > 80: + raise ValueError("Invalid value for `name`, length must be less than or equal to `80`") # noqa: E501 + if name is not None and len(name) < 1: + raise ValueError("Invalid value for `name`, length must be greater than or equal to `1`") # noqa: E501 + + self._name = name + + @property + def metric_values(self): + """Gets the metric_values of this DatasetWorkloadCreateParams. # noqa: E501 + + Configurable metrics. # noqa: E501 + + :return: The metric_values of this DatasetWorkloadCreateParams. # noqa: E501 + :rtype: DatasetFilterMetricValuesCreateParams + """ + return self._metric_values + + @metric_values.setter + def metric_values(self, metric_values): + """Sets the metric_values of this DatasetWorkloadCreateParams. + + Configurable metrics. # noqa: E501 + + :param metric_values: The metric_values of this DatasetWorkloadCreateParams. # noqa: E501 + :type: DatasetFilterMetricValuesCreateParams + """ + if metric_values is None: + raise ValueError("Invalid value for `metric_values`, must not be `None`") # noqa: E501 + + self._metric_values = metric_values + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(DatasetWorkloadCreateParams, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, DatasetWorkloadCreateParams): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + """Returns true if both objects are not equal""" + return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_workload_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/dataset_workload_extended.py similarity index 54% rename from isilon_sdk/isilon_sdk/v9_11_0/models/dataset_workload_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/dataset_workload_extended.py index 1a90b8177..fd2d34a9e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_workload_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/dataset_workload_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,12 +31,6 @@ class DatasetWorkloadExtended(object): and the value is json key in definition. """ swagger_types = { - 'client_impact': 'int', - 'cluster_resource_impact': 'int', - 'limits': 'DatasetWorkloadLimits', - 'max_cpu_us': 'int', - 'max_disk_reads': 'int', - 'max_disk_writes': 'int', 'name': 'str', 'creation_time': 'int', 'dataset_id': 'int', @@ -46,12 +40,6 @@ class DatasetWorkloadExtended(object): } attribute_map = { - 'client_impact': 'client_impact', - 'cluster_resource_impact': 'cluster_resource_impact', - 'limits': 'limits', - 'max_cpu_us': 'max_cpu_us', - 'max_disk_reads': 'max_disk_reads', - 'max_disk_writes': 'max_disk_writes', 'name': 'name', 'creation_time': 'creation_time', 'dataset_id': 'dataset_id', @@ -60,15 +48,9 @@ class DatasetWorkloadExtended(object): 'metric_values': 'metric_values' } - def __init__(self, client_impact=None, cluster_resource_impact=None, limits=None, max_cpu_us=None, max_disk_reads=None, max_disk_writes=None, name=None, creation_time=None, dataset_id=None, error=None, id=None, metric_values=None): # noqa: E501 + def __init__(self, name=None, creation_time=None, dataset_id=None, error=None, id=None, metric_values=None): # noqa: E501 """DatasetWorkloadExtended - a model defined in Swagger""" # noqa: E501 - self._client_impact = None - self._cluster_resource_impact = None - self._limits = None - self._max_cpu_us = None - self._max_disk_reads = None - self._max_disk_writes = None self._name = None self._creation_time = None self._dataset_id = None @@ -77,18 +59,6 @@ def __init__(self, client_impact=None, cluster_resource_impact=None, limits=None self._metric_values = None self.discriminator = None - if client_impact is not None: - self.client_impact = client_impact - if cluster_resource_impact is not None: - self.cluster_resource_impact = cluster_resource_impact - if limits is not None: - self.limits = limits - if max_cpu_us is not None: - self.max_cpu_us = max_cpu_us - if max_disk_reads is not None: - self.max_disk_reads = max_disk_reads - if max_disk_writes is not None: - self.max_disk_writes = max_disk_writes if name is not None: self.name = name if creation_time is not None: @@ -101,164 +71,6 @@ def __init__(self, client_impact=None, cluster_resource_impact=None, limits=None if metric_values is not None: self.metric_values = metric_values - @property - def client_impact(self): - """Gets the client_impact of this DatasetWorkloadExtended. # noqa: E501 - - The desired workload's impact on the system. Specified by the Job Engine. # noqa: E501 - - :return: The client_impact of this DatasetWorkloadExtended. # noqa: E501 - :rtype: int - """ - return self._client_impact - - @client_impact.setter - def client_impact(self, client_impact): - """Sets the client_impact of this DatasetWorkloadExtended. - - The desired workload's impact on the system. Specified by the Job Engine. # noqa: E501 - - :param client_impact: The client_impact of this DatasetWorkloadExtended. # noqa: E501 - :type: int - """ - if client_impact is not None and client_impact > 10: # noqa: E501 - raise ValueError("Invalid value for `client_impact`, must be a value less than or equal to `10`") # noqa: E501 - if client_impact is not None and client_impact < 0: # noqa: E501 - raise ValueError("Invalid value for `client_impact`, must be a value greater than or equal to `0`") # noqa: E501 - - self._client_impact = client_impact - - @property - def cluster_resource_impact(self): - """Gets the cluster_resource_impact of this DatasetWorkloadExtended. # noqa: E501 - - The desired workload's impact on the system. Specified by the Job Engine. # noqa: E501 - - :return: The cluster_resource_impact of this DatasetWorkloadExtended. # noqa: E501 - :rtype: int - """ - return self._cluster_resource_impact - - @cluster_resource_impact.setter - def cluster_resource_impact(self, cluster_resource_impact): - """Sets the cluster_resource_impact of this DatasetWorkloadExtended. - - The desired workload's impact on the system. Specified by the Job Engine. # noqa: E501 - - :param cluster_resource_impact: The cluster_resource_impact of this DatasetWorkloadExtended. # noqa: E501 - :type: int - """ - if cluster_resource_impact is not None and cluster_resource_impact > 10: # noqa: E501 - raise ValueError("Invalid value for `cluster_resource_impact`, must be a value less than or equal to `10`") # noqa: E501 - if cluster_resource_impact is not None and cluster_resource_impact < 0: # noqa: E501 - raise ValueError("Invalid value for `cluster_resource_impact`, must be a value greater than or equal to `0`") # noqa: E501 - - self._cluster_resource_impact = cluster_resource_impact - - @property - def limits(self): - """Gets the limits of this DatasetWorkloadExtended. # noqa: E501 - - Performance limits for a workload # noqa: E501 - - :return: The limits of this DatasetWorkloadExtended. # noqa: E501 - :rtype: DatasetWorkloadLimits - """ - return self._limits - - @limits.setter - def limits(self, limits): - """Sets the limits of this DatasetWorkloadExtended. - - Performance limits for a workload # noqa: E501 - - :param limits: The limits of this DatasetWorkloadExtended. # noqa: E501 - :type: DatasetWorkloadLimits - """ - - self._limits = limits - - @property - def max_cpu_us(self): - """Gets the max_cpu_us of this DatasetWorkloadExtended. # noqa: E501 - - The CPU usage limit for a workload in microseconds. # noqa: E501 - - :return: The max_cpu_us of this DatasetWorkloadExtended. # noqa: E501 - :rtype: int - """ - return self._max_cpu_us - - @max_cpu_us.setter - def max_cpu_us(self, max_cpu_us): - """Sets the max_cpu_us of this DatasetWorkloadExtended. - - The CPU usage limit for a workload in microseconds. # noqa: E501 - - :param max_cpu_us: The max_cpu_us of this DatasetWorkloadExtended. # noqa: E501 - :type: int - """ - if max_cpu_us is not None and max_cpu_us > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `max_cpu_us`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if max_cpu_us is not None and max_cpu_us < 1000: # noqa: E501 - raise ValueError("Invalid value for `max_cpu_us`, must be a value greater than or equal to `1000`") # noqa: E501 - - self._max_cpu_us = max_cpu_us - - @property - def max_disk_reads(self): - """Gets the max_disk_reads of this DatasetWorkloadExtended. # noqa: E501 - - The disk read operation limit for a workload. # noqa: E501 - - :return: The max_disk_reads of this DatasetWorkloadExtended. # noqa: E501 - :rtype: int - """ - return self._max_disk_reads - - @max_disk_reads.setter - def max_disk_reads(self, max_disk_reads): - """Sets the max_disk_reads of this DatasetWorkloadExtended. - - The disk read operation limit for a workload. # noqa: E501 - - :param max_disk_reads: The max_disk_reads of this DatasetWorkloadExtended. # noqa: E501 - :type: int - """ - if max_disk_reads is not None and max_disk_reads > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `max_disk_reads`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if max_disk_reads is not None and max_disk_reads < 1000: # noqa: E501 - raise ValueError("Invalid value for `max_disk_reads`, must be a value greater than or equal to `1000`") # noqa: E501 - - self._max_disk_reads = max_disk_reads - - @property - def max_disk_writes(self): - """Gets the max_disk_writes of this DatasetWorkloadExtended. # noqa: E501 - - The disk write operation limit for a workload. # noqa: E501 - - :return: The max_disk_writes of this DatasetWorkloadExtended. # noqa: E501 - :rtype: int - """ - return self._max_disk_writes - - @max_disk_writes.setter - def max_disk_writes(self, max_disk_writes): - """Sets the max_disk_writes of this DatasetWorkloadExtended. - - The disk write operation limit for a workload. # noqa: E501 - - :param max_disk_writes: The max_disk_writes of this DatasetWorkloadExtended. # noqa: E501 - :type: int - """ - if max_disk_writes is not None and max_disk_writes > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `max_disk_writes`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if max_disk_writes is not None and max_disk_writes < 1000: # noqa: E501 - raise ValueError("Invalid value for `max_disk_writes`, must be a value greater than or equal to `1000`") # noqa: E501 - - self._max_disk_writes = max_disk_writes - @property def name(self): """Gets the name of this DatasetWorkloadExtended. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_workloads.py b/isilon_sdk/isilon_sdk/v9_4_0/models/dataset_workloads.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/dataset_workloads.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/dataset_workloads.py index d84fbd50f..cdfcf8802 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_workloads.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/dataset_workloads.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_workloads_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/dataset_workloads_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/dataset_workloads_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/dataset_workloads_extended.py index 8a6d3ba53..a50e4ca43 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/dataset_workloads_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/dataset_workloads_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/debug_stats.py b/isilon_sdk/isilon_sdk/v9_4_0/models/debug_stats.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/debug_stats.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/debug_stats.py index 2e7951729..5dc4174e4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/debug_stats.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/debug_stats.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/debug_stats_describe.py b/isilon_sdk/isilon_sdk/v9_4_0/models/debug_stats_describe.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/debug_stats_describe.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/debug_stats_describe.py index d34b68958..a05fa8bfc 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/debug_stats_describe.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/debug_stats_describe.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/debug_stats_handler.py b/isilon_sdk/isilon_sdk/v9_4_0/models/debug_stats_handler.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/debug_stats_handler.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/debug_stats_handler.py index d50199dd8..7bed4b599 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/debug_stats_handler.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/debug_stats_handler.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/dedupe_dedupe_summary.py b/isilon_sdk/isilon_sdk/v9_4_0/models/dedupe_dedupe_summary.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/dedupe_dedupe_summary.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/dedupe_dedupe_summary.py index cf65a18a3..baf5c8c4f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/dedupe_dedupe_summary.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/dedupe_dedupe_summary.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/dedupe_dedupe_summary_summary.py b/isilon_sdk/isilon_sdk/v9_4_0/models/dedupe_dedupe_summary_summary.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/dedupe_dedupe_summary_summary.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/dedupe_dedupe_summary_summary.py index d45b57d99..8d9b2ea39 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/dedupe_dedupe_summary_summary.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/dedupe_dedupe_summary_summary.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/dedupe_report.py b/isilon_sdk/isilon_sdk/v9_4_0/models/dedupe_report.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/dedupe_report.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/dedupe_report.py index 94c2162e5..22c3ea50f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/dedupe_report.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/dedupe_report.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/dedupe_report_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/dedupe_report_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/dedupe_report_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/dedupe_report_extended.py index cb606f272..2ad186c65 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/dedupe_report_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/dedupe_report_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/dedupe_reports.py b/isilon_sdk/isilon_sdk/v9_4_0/models/dedupe_reports.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/dedupe_reports.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/dedupe_reports.py index f25c106d1..9b0f92bb6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/dedupe_reports.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/dedupe_reports.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/dedupe_reports_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/dedupe_reports_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/dedupe_reports_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/dedupe_reports_extended.py index d8b8ffa3d..64d20a3d8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/dedupe_reports_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/dedupe_reports_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/dedupe_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/dedupe_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/dedupe_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/dedupe_settings.py index 19b0dbc16..d1b54b37f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/dedupe_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/dedupe_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/dedupe_settings_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/dedupe_settings_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/dedupe_settings_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/dedupe_settings_extended.py index acc4f659f..7ab55dea5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/dedupe_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/dedupe_settings_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/dedupe_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/dedupe_settings_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/dedupe_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/dedupe_settings_settings.py index 9b7dcf52c..5a5ffd6bb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/dedupe_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/dedupe_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/diagnostics_gather_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/diagnostics_gather_settings.py index fa1cdbaf6..139aa705e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/diagnostics_gather_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_settings_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/diagnostics_gather_settings_extended.py similarity index 64% rename from isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_settings_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/diagnostics_gather_settings_extended.py index 841b0b997..743dfa161 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/diagnostics_gather_settings_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,24 +31,16 @@ class DiagnosticsGatherSettingsExtended(object): and the value is json key in definition. """ swagger_types = { - 'connectivity': 'bool', 'esrs': 'bool', 'ftp_upload': 'bool', 'ftp_upload_host': 'str', - 'ftp_upload_insecure': 'bool', 'ftp_upload_mode': 'str', 'ftp_upload_pass': 'str', 'ftp_upload_path': 'str', 'ftp_upload_proxy': 'str', 'ftp_upload_proxy_port': 'int', - 'ftp_upload_ssl_cert': 'str', 'ftp_upload_user': 'str', - 'ftp_upload_webui_default': 'bool', - 'gather_begin': 'str', 'gather_mode': 'str', - 'gather_past': 'str', - 'group': 'str', - 'http_insecure_upload': 'bool', 'http_upload': 'bool', 'http_upload_host': 'str', 'http_upload_path': 'str', @@ -58,24 +50,16 @@ class DiagnosticsGatherSettingsExtended(object): } attribute_map = { - 'connectivity': 'connectivity', 'esrs': 'esrs', 'ftp_upload': 'ftp_upload', 'ftp_upload_host': 'ftp_upload_host', - 'ftp_upload_insecure': 'ftp_upload_insecure', 'ftp_upload_mode': 'ftp_upload_mode', 'ftp_upload_pass': 'ftp_upload_pass', 'ftp_upload_path': 'ftp_upload_path', 'ftp_upload_proxy': 'ftp_upload_proxy', 'ftp_upload_proxy_port': 'ftp_upload_proxy_port', - 'ftp_upload_ssl_cert': 'ftp_upload_ssl_cert', 'ftp_upload_user': 'ftp_upload_user', - 'ftp_upload_webui_default': 'ftp_upload_webui_default', - 'gather_begin': 'gather_begin', 'gather_mode': 'gather_mode', - 'gather_past': 'gather_past', - 'group': 'group', - 'http_insecure_upload': 'http_insecure_upload', 'http_upload': 'http_upload', 'http_upload_host': 'http_upload_host', 'http_upload_path': 'http_upload_path', @@ -84,27 +68,19 @@ class DiagnosticsGatherSettingsExtended(object): 'upload': 'upload' } - def __init__(self, connectivity=None, esrs=None, ftp_upload=None, ftp_upload_host=None, ftp_upload_insecure=None, ftp_upload_mode=None, ftp_upload_pass=None, ftp_upload_path=None, ftp_upload_proxy=None, ftp_upload_proxy_port=None, ftp_upload_ssl_cert=None, ftp_upload_user=None, ftp_upload_webui_default=None, gather_begin=None, gather_mode=None, gather_past=None, group=None, http_insecure_upload=None, http_upload=None, http_upload_host=None, http_upload_path=None, http_upload_proxy=None, http_upload_proxy_port=None, upload=None): # noqa: E501 + def __init__(self, esrs=None, ftp_upload=None, ftp_upload_host=None, ftp_upload_mode=None, ftp_upload_pass=None, ftp_upload_path=None, ftp_upload_proxy=None, ftp_upload_proxy_port=None, ftp_upload_user=None, gather_mode=None, http_upload=None, http_upload_host=None, http_upload_path=None, http_upload_proxy=None, http_upload_proxy_port=None, upload=None): # noqa: E501 """DiagnosticsGatherSettingsExtended - a model defined in Swagger""" # noqa: E501 - self._connectivity = None self._esrs = None self._ftp_upload = None self._ftp_upload_host = None - self._ftp_upload_insecure = None self._ftp_upload_mode = None self._ftp_upload_pass = None self._ftp_upload_path = None self._ftp_upload_proxy = None self._ftp_upload_proxy_port = None - self._ftp_upload_ssl_cert = None self._ftp_upload_user = None - self._ftp_upload_webui_default = None - self._gather_begin = None self._gather_mode = None - self._gather_past = None - self._group = None - self._http_insecure_upload = None self._http_upload = None self._http_upload_host = None self._http_upload_path = None @@ -113,16 +89,12 @@ def __init__(self, connectivity=None, esrs=None, ftp_upload=None, ftp_upload_hos self._upload = None self.discriminator = None - if connectivity is not None: - self.connectivity = connectivity if esrs is not None: self.esrs = esrs if ftp_upload is not None: self.ftp_upload = ftp_upload if ftp_upload_host is not None: self.ftp_upload_host = ftp_upload_host - if ftp_upload_insecure is not None: - self.ftp_upload_insecure = ftp_upload_insecure if ftp_upload_mode is not None: self.ftp_upload_mode = ftp_upload_mode if ftp_upload_pass is not None: @@ -133,22 +105,10 @@ def __init__(self, connectivity=None, esrs=None, ftp_upload=None, ftp_upload_hos self.ftp_upload_proxy = ftp_upload_proxy if ftp_upload_proxy_port is not None: self.ftp_upload_proxy_port = ftp_upload_proxy_port - if ftp_upload_ssl_cert is not None: - self.ftp_upload_ssl_cert = ftp_upload_ssl_cert if ftp_upload_user is not None: self.ftp_upload_user = ftp_upload_user - if ftp_upload_webui_default is not None: - self.ftp_upload_webui_default = ftp_upload_webui_default - if gather_begin is not None: - self.gather_begin = gather_begin if gather_mode is not None: self.gather_mode = gather_mode - if gather_past is not None: - self.gather_past = gather_past - if group is not None: - self.group = group - if http_insecure_upload is not None: - self.http_insecure_upload = http_insecure_upload if http_upload is not None: self.http_upload = http_upload if http_upload_host is not None: @@ -162,29 +122,6 @@ def __init__(self, connectivity=None, esrs=None, ftp_upload=None, ftp_upload_hos if upload is not None: self.upload = upload - @property - def connectivity(self): - """Gets the connectivity of this DiagnosticsGatherSettingsExtended. # noqa: E501 - - Use Dell Technologies connectivity services for upload of gather. # noqa: E501 - - :return: The connectivity of this DiagnosticsGatherSettingsExtended. # noqa: E501 - :rtype: bool - """ - return self._connectivity - - @connectivity.setter - def connectivity(self, connectivity): - """Sets the connectivity of this DiagnosticsGatherSettingsExtended. - - Use Dell Technologies connectivity services for upload of gather. # noqa: E501 - - :param connectivity: The connectivity of this DiagnosticsGatherSettingsExtended. # noqa: E501 - :type: bool - """ - - self._connectivity = connectivity - @property def esrs(self): """Gets the esrs of this DiagnosticsGatherSettingsExtended. # noqa: E501 @@ -251,34 +188,11 @@ def ftp_upload_host(self, ftp_upload_host): :param ftp_upload_host: The ftp_upload_host of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_host = ftp_upload_host - @property - def ftp_upload_insecure(self): - """Gets the ftp_upload_insecure of this DiagnosticsGatherSettingsExtended. # noqa: E501 - - Whether to attempt a plain text FTP upload. # noqa: E501 - - :return: The ftp_upload_insecure of this DiagnosticsGatherSettingsExtended. # noqa: E501 - :rtype: bool - """ - return self._ftp_upload_insecure - - @ftp_upload_insecure.setter - def ftp_upload_insecure(self, ftp_upload_insecure): - """Sets the ftp_upload_insecure of this DiagnosticsGatherSettingsExtended. - - Whether to attempt a plain text FTP upload. # noqa: E501 - - :param ftp_upload_insecure: The ftp_upload_insecure of this DiagnosticsGatherSettingsExtended. # noqa: E501 - :type: bool - """ - - self._ftp_upload_insecure = ftp_upload_insecure - @property def ftp_upload_mode(self): """Gets the ftp_upload_mode of this DiagnosticsGatherSettingsExtended. # noqa: E501 @@ -370,8 +284,8 @@ def ftp_upload_proxy(self, ftp_upload_proxy): :param ftp_upload_proxy: The ftp_upload_proxy of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_proxy = ftp_upload_proxy @@ -402,31 +316,6 @@ def ftp_upload_proxy_port(self, ftp_upload_proxy_port): self._ftp_upload_proxy_port = ftp_upload_proxy_port - @property - def ftp_upload_ssl_cert(self): - """Gets the ftp_upload_ssl_cert of this DiagnosticsGatherSettingsExtended. # noqa: E501 - - Path to certificate. Leave it blank to use root signed-CA # noqa: E501 - - :return: The ftp_upload_ssl_cert of this DiagnosticsGatherSettingsExtended. # noqa: E501 - :rtype: str - """ - return self._ftp_upload_ssl_cert - - @ftp_upload_ssl_cert.setter - def ftp_upload_ssl_cert(self, ftp_upload_ssl_cert): - """Sets the ftp_upload_ssl_cert of this DiagnosticsGatherSettingsExtended. - - Path to certificate. Leave it blank to use root signed-CA # noqa: E501 - - :param ftp_upload_ssl_cert: The ftp_upload_ssl_cert of this DiagnosticsGatherSettingsExtended. # noqa: E501 - :type: str - """ - if ftp_upload_ssl_cert is not None and len(ftp_upload_ssl_cert) > 4096: - raise ValueError("Invalid value for `ftp_upload_ssl_cert`, length must be less than or equal to `4096`") # noqa: E501 - - self._ftp_upload_ssl_cert = ftp_upload_ssl_cert - @property def ftp_upload_user(self): """Gets the ftp_upload_user of this DiagnosticsGatherSettingsExtended. # noqa: E501 @@ -452,59 +341,11 @@ def ftp_upload_user(self, ftp_upload_user): self._ftp_upload_user = ftp_upload_user - @property - def ftp_upload_webui_default(self): - """Gets the ftp_upload_webui_default of this DiagnosticsGatherSettingsExtended. # noqa: E501 - - Hidden key to save default checkbox in WebUI # noqa: E501 - - :return: The ftp_upload_webui_default of this DiagnosticsGatherSettingsExtended. # noqa: E501 - :rtype: bool - """ - return self._ftp_upload_webui_default - - @ftp_upload_webui_default.setter - def ftp_upload_webui_default(self, ftp_upload_webui_default): - """Sets the ftp_upload_webui_default of this DiagnosticsGatherSettingsExtended. - - Hidden key to save default checkbox in WebUI # noqa: E501 - - :param ftp_upload_webui_default: The ftp_upload_webui_default of this DiagnosticsGatherSettingsExtended. # noqa: E501 - :type: bool - """ - - self._ftp_upload_webui_default = ftp_upload_webui_default - - @property - def gather_begin(self): - """Gets the gather_begin of this DiagnosticsGatherSettingsExtended. # noqa: E501 - - Sets the starting time of files to be gathered using datetime format. The accepted datetime format should be in the form 'YYYY-MM-DD HH:MM' where time is optional. This will gather all files modified past that date. # noqa: E501 - - :return: The gather_begin of this DiagnosticsGatherSettingsExtended. # noqa: E501 - :rtype: str - """ - return self._gather_begin - - @gather_begin.setter - def gather_begin(self, gather_begin): - """Sets the gather_begin of this DiagnosticsGatherSettingsExtended. - - Sets the starting time of files to be gathered using datetime format. The accepted datetime format should be in the form 'YYYY-MM-DD HH:MM' where time is optional. This will gather all files modified past that date. # noqa: E501 - - :param gather_begin: The gather_begin of this DiagnosticsGatherSettingsExtended. # noqa: E501 - :type: str - """ - if gather_begin is not None and len(gather_begin) > 255: - raise ValueError("Invalid value for `gather_begin`, length must be less than or equal to `255`") # noqa: E501 - - self._gather_begin = gather_begin - @property def gather_mode(self): """Gets the gather_mode of this DiagnosticsGatherSettingsExtended. # noqa: E501 - Set gather to full, incremental, or partial. # noqa: E501 + Set gather to full or incremental. # noqa: E501 :return: The gather_mode of this DiagnosticsGatherSettingsExtended. # noqa: E501 :rtype: str @@ -515,12 +356,12 @@ def gather_mode(self): def gather_mode(self, gather_mode): """Sets the gather_mode of this DiagnosticsGatherSettingsExtended. - Set gather to full, incremental, or partial. # noqa: E501 + Set gather to full or incremental. # noqa: E501 :param gather_mode: The gather_mode of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - allowed_values = ["full", "incremental", "partial"] # noqa: E501 + allowed_values = ["full", "incremental"] # noqa: E501 if gather_mode not in allowed_values: raise ValueError( "Invalid value for `gather_mode` ({0}), must be one of {1}" # noqa: E501 @@ -529,84 +370,11 @@ def gather_mode(self, gather_mode): self._gather_mode = gather_mode - @property - def gather_past(self): - """Gets the gather_past of this DiagnosticsGatherSettingsExtended. # noqa: E501 - - Gather logs modified within this time frame. Enter a number followed by a letter for the starting range of files to be gathered, eg. 1h for files last modified in the past hour. Other supported times include d and w for days and weeks respectively. # noqa: E501 - - :return: The gather_past of this DiagnosticsGatherSettingsExtended. # noqa: E501 - :rtype: str - """ - return self._gather_past - - @gather_past.setter - def gather_past(self, gather_past): - """Sets the gather_past of this DiagnosticsGatherSettingsExtended. - - Gather logs modified within this time frame. Enter a number followed by a letter for the starting range of files to be gathered, eg. 1h for files last modified in the past hour. Other supported times include d and w for days and weeks respectively. # noqa: E501 - - :param gather_past: The gather_past of this DiagnosticsGatherSettingsExtended. # noqa: E501 - :type: str - """ - if gather_past is not None and len(gather_past) > 255: - raise ValueError("Invalid value for `gather_past`, length must be less than or equal to `255`") # noqa: E501 - - self._gather_past = gather_past - - @property - def group(self): - """Gets the group of this DiagnosticsGatherSettingsExtended. # noqa: E501 - - Only gathers component groups specified by the group field. # noqa: E501 - - :return: The group of this DiagnosticsGatherSettingsExtended. # noqa: E501 - :rtype: str - """ - return self._group - - @group.setter - def group(self, group): - """Sets the group of this DiagnosticsGatherSettingsExtended. - - Only gathers component groups specified by the group field. # noqa: E501 - - :param group: The group of this DiagnosticsGatherSettingsExtended. # noqa: E501 - :type: str - """ - if group is not None and len(group) > 8192: - raise ValueError("Invalid value for `group`, length must be less than or equal to `8192`") # noqa: E501 - - self._group = group - - @property - def http_insecure_upload(self): - """Gets the http_insecure_upload of this DiagnosticsGatherSettingsExtended. # noqa: E501 - - Use insecure HTTP to upload logs from the isi gather command # noqa: E501 - - :return: The http_insecure_upload of this DiagnosticsGatherSettingsExtended. # noqa: E501 - :rtype: bool - """ - return self._http_insecure_upload - - @http_insecure_upload.setter - def http_insecure_upload(self, http_insecure_upload): - """Sets the http_insecure_upload of this DiagnosticsGatherSettingsExtended. - - Use insecure HTTP to upload logs from the isi gather command # noqa: E501 - - :param http_insecure_upload: The http_insecure_upload of this DiagnosticsGatherSettingsExtended. # noqa: E501 - :type: bool - """ - - self._http_insecure_upload = http_insecure_upload - @property def http_upload(self): """Gets the http_upload of this DiagnosticsGatherSettingsExtended. # noqa: E501 - This option is deprecated. Use the option http_insecure_upload to upload logs via insecure HTTP from the isi gather command # noqa: E501 + Use HTTP to upload logs from the isi gather command # noqa: E501 :return: The http_upload of this DiagnosticsGatherSettingsExtended. # noqa: E501 :rtype: bool @@ -617,7 +385,7 @@ def http_upload(self): def http_upload(self, http_upload): """Sets the http_upload of this DiagnosticsGatherSettingsExtended. - This option is deprecated. Use the option http_insecure_upload to upload logs via insecure HTTP from the isi gather command # noqa: E501 + Use HTTP to upload logs from the isi gather command # noqa: E501 :param http_upload: The http_upload of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: bool @@ -645,8 +413,8 @@ def http_upload_host(self, http_upload_host): :param http_upload_host: The http_upload_host of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_host = http_upload_host @@ -695,8 +463,8 @@ def http_upload_proxy(self, http_upload_proxy): :param http_upload_proxy: The http_upload_proxy of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_proxy = http_upload_proxy diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/diagnostics_gather_settings_settings.py similarity index 63% rename from isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/diagnostics_gather_settings_settings.py index 8c873cad2..c92a1fe20 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/diagnostics_gather_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,23 +31,15 @@ class DiagnosticsGatherSettingsSettings(object): and the value is json key in definition. """ swagger_types = { - 'connectivity': 'bool', 'esrs': 'bool', 'ftp_upload': 'bool', 'ftp_upload_host': 'str', - 'ftp_upload_insecure': 'bool', 'ftp_upload_mode': 'str', 'ftp_upload_path': 'str', 'ftp_upload_proxy': 'str', 'ftp_upload_proxy_port': 'int', - 'ftp_upload_ssl_cert': 'str', 'ftp_upload_user': 'str', - 'ftp_upload_webui_default': 'bool', - 'gather_begin': 'str', 'gather_mode': 'str', - 'gather_past': 'str', - 'group': 'str', - 'http_insecure_upload': 'bool', 'http_upload': 'bool', 'http_upload_host': 'str', 'http_upload_path': 'str', @@ -57,23 +49,15 @@ class DiagnosticsGatherSettingsSettings(object): } attribute_map = { - 'connectivity': 'connectivity', 'esrs': 'esrs', 'ftp_upload': 'ftp_upload', 'ftp_upload_host': 'ftp_upload_host', - 'ftp_upload_insecure': 'ftp_upload_insecure', 'ftp_upload_mode': 'ftp_upload_mode', 'ftp_upload_path': 'ftp_upload_path', 'ftp_upload_proxy': 'ftp_upload_proxy', 'ftp_upload_proxy_port': 'ftp_upload_proxy_port', - 'ftp_upload_ssl_cert': 'ftp_upload_ssl_cert', 'ftp_upload_user': 'ftp_upload_user', - 'ftp_upload_webui_default': 'ftp_upload_webui_default', - 'gather_begin': 'gather_begin', 'gather_mode': 'gather_mode', - 'gather_past': 'gather_past', - 'group': 'group', - 'http_insecure_upload': 'http_insecure_upload', 'http_upload': 'http_upload', 'http_upload_host': 'http_upload_host', 'http_upload_path': 'http_upload_path', @@ -82,26 +66,18 @@ class DiagnosticsGatherSettingsSettings(object): 'upload': 'upload' } - def __init__(self, connectivity=None, esrs=None, ftp_upload=None, ftp_upload_host=None, ftp_upload_insecure=None, ftp_upload_mode=None, ftp_upload_path=None, ftp_upload_proxy=None, ftp_upload_proxy_port=None, ftp_upload_ssl_cert=None, ftp_upload_user=None, ftp_upload_webui_default=None, gather_begin=None, gather_mode=None, gather_past=None, group=None, http_insecure_upload=None, http_upload=None, http_upload_host=None, http_upload_path=None, http_upload_proxy=None, http_upload_proxy_port=None, upload=None): # noqa: E501 + def __init__(self, esrs=None, ftp_upload=None, ftp_upload_host=None, ftp_upload_mode=None, ftp_upload_path=None, ftp_upload_proxy=None, ftp_upload_proxy_port=None, ftp_upload_user=None, gather_mode=None, http_upload=None, http_upload_host=None, http_upload_path=None, http_upload_proxy=None, http_upload_proxy_port=None, upload=None): # noqa: E501 """DiagnosticsGatherSettingsSettings - a model defined in Swagger""" # noqa: E501 - self._connectivity = None self._esrs = None self._ftp_upload = None self._ftp_upload_host = None - self._ftp_upload_insecure = None self._ftp_upload_mode = None self._ftp_upload_path = None self._ftp_upload_proxy = None self._ftp_upload_proxy_port = None - self._ftp_upload_ssl_cert = None self._ftp_upload_user = None - self._ftp_upload_webui_default = None - self._gather_begin = None self._gather_mode = None - self._gather_past = None - self._group = None - self._http_insecure_upload = None self._http_upload = None self._http_upload_host = None self._http_upload_path = None @@ -110,16 +86,12 @@ def __init__(self, connectivity=None, esrs=None, ftp_upload=None, ftp_upload_hos self._upload = None self.discriminator = None - if connectivity is not None: - self.connectivity = connectivity if esrs is not None: self.esrs = esrs if ftp_upload is not None: self.ftp_upload = ftp_upload if ftp_upload_host is not None: self.ftp_upload_host = ftp_upload_host - if ftp_upload_insecure is not None: - self.ftp_upload_insecure = ftp_upload_insecure if ftp_upload_mode is not None: self.ftp_upload_mode = ftp_upload_mode if ftp_upload_path is not None: @@ -128,22 +100,10 @@ def __init__(self, connectivity=None, esrs=None, ftp_upload=None, ftp_upload_hos self.ftp_upload_proxy = ftp_upload_proxy if ftp_upload_proxy_port is not None: self.ftp_upload_proxy_port = ftp_upload_proxy_port - if ftp_upload_ssl_cert is not None: - self.ftp_upload_ssl_cert = ftp_upload_ssl_cert if ftp_upload_user is not None: self.ftp_upload_user = ftp_upload_user - if ftp_upload_webui_default is not None: - self.ftp_upload_webui_default = ftp_upload_webui_default - if gather_begin is not None: - self.gather_begin = gather_begin if gather_mode is not None: self.gather_mode = gather_mode - if gather_past is not None: - self.gather_past = gather_past - if group is not None: - self.group = group - if http_insecure_upload is not None: - self.http_insecure_upload = http_insecure_upload if http_upload is not None: self.http_upload = http_upload if http_upload_host is not None: @@ -157,29 +117,6 @@ def __init__(self, connectivity=None, esrs=None, ftp_upload=None, ftp_upload_hos if upload is not None: self.upload = upload - @property - def connectivity(self): - """Gets the connectivity of this DiagnosticsGatherSettingsSettings. # noqa: E501 - - Use Dell Technologies connectivity services for upload of gather. # noqa: E501 - - :return: The connectivity of this DiagnosticsGatherSettingsSettings. # noqa: E501 - :rtype: bool - """ - return self._connectivity - - @connectivity.setter - def connectivity(self, connectivity): - """Sets the connectivity of this DiagnosticsGatherSettingsSettings. - - Use Dell Technologies connectivity services for upload of gather. # noqa: E501 - - :param connectivity: The connectivity of this DiagnosticsGatherSettingsSettings. # noqa: E501 - :type: bool - """ - - self._connectivity = connectivity - @property def esrs(self): """Gets the esrs of this DiagnosticsGatherSettingsSettings. # noqa: E501 @@ -246,34 +183,11 @@ def ftp_upload_host(self, ftp_upload_host): :param ftp_upload_host: The ftp_upload_host of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_host = ftp_upload_host - @property - def ftp_upload_insecure(self): - """Gets the ftp_upload_insecure of this DiagnosticsGatherSettingsSettings. # noqa: E501 - - Whether to attempt a plain text FTP upload. # noqa: E501 - - :return: The ftp_upload_insecure of this DiagnosticsGatherSettingsSettings. # noqa: E501 - :rtype: bool - """ - return self._ftp_upload_insecure - - @ftp_upload_insecure.setter - def ftp_upload_insecure(self, ftp_upload_insecure): - """Sets the ftp_upload_insecure of this DiagnosticsGatherSettingsSettings. - - Whether to attempt a plain text FTP upload. # noqa: E501 - - :param ftp_upload_insecure: The ftp_upload_insecure of this DiagnosticsGatherSettingsSettings. # noqa: E501 - :type: bool - """ - - self._ftp_upload_insecure = ftp_upload_insecure - @property def ftp_upload_mode(self): """Gets the ftp_upload_mode of this DiagnosticsGatherSettingsSettings. # noqa: E501 @@ -342,8 +256,8 @@ def ftp_upload_proxy(self, ftp_upload_proxy): :param ftp_upload_proxy: The ftp_upload_proxy of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_proxy = ftp_upload_proxy @@ -374,31 +288,6 @@ def ftp_upload_proxy_port(self, ftp_upload_proxy_port): self._ftp_upload_proxy_port = ftp_upload_proxy_port - @property - def ftp_upload_ssl_cert(self): - """Gets the ftp_upload_ssl_cert of this DiagnosticsGatherSettingsSettings. # noqa: E501 - - Path to certificate. Leave it blank to use root signed-CA # noqa: E501 - - :return: The ftp_upload_ssl_cert of this DiagnosticsGatherSettingsSettings. # noqa: E501 - :rtype: str - """ - return self._ftp_upload_ssl_cert - - @ftp_upload_ssl_cert.setter - def ftp_upload_ssl_cert(self, ftp_upload_ssl_cert): - """Sets the ftp_upload_ssl_cert of this DiagnosticsGatherSettingsSettings. - - Path to certificate. Leave it blank to use root signed-CA # noqa: E501 - - :param ftp_upload_ssl_cert: The ftp_upload_ssl_cert of this DiagnosticsGatherSettingsSettings. # noqa: E501 - :type: str - """ - if ftp_upload_ssl_cert is not None and len(ftp_upload_ssl_cert) > 4096: - raise ValueError("Invalid value for `ftp_upload_ssl_cert`, length must be less than or equal to `4096`") # noqa: E501 - - self._ftp_upload_ssl_cert = ftp_upload_ssl_cert - @property def ftp_upload_user(self): """Gets the ftp_upload_user of this DiagnosticsGatherSettingsSettings. # noqa: E501 @@ -424,59 +313,11 @@ def ftp_upload_user(self, ftp_upload_user): self._ftp_upload_user = ftp_upload_user - @property - def ftp_upload_webui_default(self): - """Gets the ftp_upload_webui_default of this DiagnosticsGatherSettingsSettings. # noqa: E501 - - Hidden key to save default checkbox in WebUI # noqa: E501 - - :return: The ftp_upload_webui_default of this DiagnosticsGatherSettingsSettings. # noqa: E501 - :rtype: bool - """ - return self._ftp_upload_webui_default - - @ftp_upload_webui_default.setter - def ftp_upload_webui_default(self, ftp_upload_webui_default): - """Sets the ftp_upload_webui_default of this DiagnosticsGatherSettingsSettings. - - Hidden key to save default checkbox in WebUI # noqa: E501 - - :param ftp_upload_webui_default: The ftp_upload_webui_default of this DiagnosticsGatherSettingsSettings. # noqa: E501 - :type: bool - """ - - self._ftp_upload_webui_default = ftp_upload_webui_default - - @property - def gather_begin(self): - """Gets the gather_begin of this DiagnosticsGatherSettingsSettings. # noqa: E501 - - Sets the starting time of files to be gathered using datetime format. The accepted datetime format should be in the form 'YYYY-MM-DD HH:MM' where time is optional. This will gather all files modified past that date. # noqa: E501 - - :return: The gather_begin of this DiagnosticsGatherSettingsSettings. # noqa: E501 - :rtype: str - """ - return self._gather_begin - - @gather_begin.setter - def gather_begin(self, gather_begin): - """Sets the gather_begin of this DiagnosticsGatherSettingsSettings. - - Sets the starting time of files to be gathered using datetime format. The accepted datetime format should be in the form 'YYYY-MM-DD HH:MM' where time is optional. This will gather all files modified past that date. # noqa: E501 - - :param gather_begin: The gather_begin of this DiagnosticsGatherSettingsSettings. # noqa: E501 - :type: str - """ - if gather_begin is not None and len(gather_begin) > 255: - raise ValueError("Invalid value for `gather_begin`, length must be less than or equal to `255`") # noqa: E501 - - self._gather_begin = gather_begin - @property def gather_mode(self): """Gets the gather_mode of this DiagnosticsGatherSettingsSettings. # noqa: E501 - Set gather to full, incremental, or partial. # noqa: E501 + Set gather to full or incremental. # noqa: E501 :return: The gather_mode of this DiagnosticsGatherSettingsSettings. # noqa: E501 :rtype: str @@ -487,12 +328,12 @@ def gather_mode(self): def gather_mode(self, gather_mode): """Sets the gather_mode of this DiagnosticsGatherSettingsSettings. - Set gather to full, incremental, or partial. # noqa: E501 + Set gather to full or incremental. # noqa: E501 :param gather_mode: The gather_mode of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - allowed_values = ["full", "incremental", "partial"] # noqa: E501 + allowed_values = ["full", "incremental"] # noqa: E501 if gather_mode not in allowed_values: raise ValueError( "Invalid value for `gather_mode` ({0}), must be one of {1}" # noqa: E501 @@ -501,84 +342,11 @@ def gather_mode(self, gather_mode): self._gather_mode = gather_mode - @property - def gather_past(self): - """Gets the gather_past of this DiagnosticsGatherSettingsSettings. # noqa: E501 - - Gather logs modified within this time frame. Enter a number followed by a letter for the starting range of files to be gathered, eg. 1h for files last modified in the past hour. Other supported times include d and w for days and weeks respectively. # noqa: E501 - - :return: The gather_past of this DiagnosticsGatherSettingsSettings. # noqa: E501 - :rtype: str - """ - return self._gather_past - - @gather_past.setter - def gather_past(self, gather_past): - """Sets the gather_past of this DiagnosticsGatherSettingsSettings. - - Gather logs modified within this time frame. Enter a number followed by a letter for the starting range of files to be gathered, eg. 1h for files last modified in the past hour. Other supported times include d and w for days and weeks respectively. # noqa: E501 - - :param gather_past: The gather_past of this DiagnosticsGatherSettingsSettings. # noqa: E501 - :type: str - """ - if gather_past is not None and len(gather_past) > 255: - raise ValueError("Invalid value for `gather_past`, length must be less than or equal to `255`") # noqa: E501 - - self._gather_past = gather_past - - @property - def group(self): - """Gets the group of this DiagnosticsGatherSettingsSettings. # noqa: E501 - - Only gathers component groups specified by the group field. # noqa: E501 - - :return: The group of this DiagnosticsGatherSettingsSettings. # noqa: E501 - :rtype: str - """ - return self._group - - @group.setter - def group(self, group): - """Sets the group of this DiagnosticsGatherSettingsSettings. - - Only gathers component groups specified by the group field. # noqa: E501 - - :param group: The group of this DiagnosticsGatherSettingsSettings. # noqa: E501 - :type: str - """ - if group is not None and len(group) > 8192: - raise ValueError("Invalid value for `group`, length must be less than or equal to `8192`") # noqa: E501 - - self._group = group - - @property - def http_insecure_upload(self): - """Gets the http_insecure_upload of this DiagnosticsGatherSettingsSettings. # noqa: E501 - - Use insecure HTTP to upload logs from the isi gather command # noqa: E501 - - :return: The http_insecure_upload of this DiagnosticsGatherSettingsSettings. # noqa: E501 - :rtype: bool - """ - return self._http_insecure_upload - - @http_insecure_upload.setter - def http_insecure_upload(self, http_insecure_upload): - """Sets the http_insecure_upload of this DiagnosticsGatherSettingsSettings. - - Use insecure HTTP to upload logs from the isi gather command # noqa: E501 - - :param http_insecure_upload: The http_insecure_upload of this DiagnosticsGatherSettingsSettings. # noqa: E501 - :type: bool - """ - - self._http_insecure_upload = http_insecure_upload - @property def http_upload(self): """Gets the http_upload of this DiagnosticsGatherSettingsSettings. # noqa: E501 - This option is deprecated. Use the option http_insecure_upload to upload logs via insecure HTTP from the isi gather command # noqa: E501 + Use HTTP to upload logs from the isi gather command # noqa: E501 :return: The http_upload of this DiagnosticsGatherSettingsSettings. # noqa: E501 :rtype: bool @@ -589,7 +357,7 @@ def http_upload(self): def http_upload(self, http_upload): """Sets the http_upload of this DiagnosticsGatherSettingsSettings. - This option is deprecated. Use the option http_insecure_upload to upload logs via insecure HTTP from the isi gather command # noqa: E501 + Use HTTP to upload logs from the isi gather command # noqa: E501 :param http_upload: The http_upload of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: bool @@ -617,8 +385,8 @@ def http_upload_host(self, http_upload_host): :param http_upload_host: The http_upload_host of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_host = http_upload_host @@ -667,8 +435,8 @@ def http_upload_proxy(self, http_upload_proxy): :param http_upload_proxy: The http_upload_proxy of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_proxy = http_upload_proxy diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_status.py b/isilon_sdk/isilon_sdk/v9_4_0/models/diagnostics_gather_status.py similarity index 94% rename from isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_status.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/diagnostics_gather_status.py index db1875684..34dcffcef 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_status.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/diagnostics_gather_status.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,7 +31,7 @@ class DiagnosticsGatherStatus(object): and the value is json key in definition. """ swagger_types = { - 'gather': 'DiagnosticsGatherStatusGatherExtended' + 'gather': 'DiagnosticsGatherStatusGather' } attribute_map = { @@ -54,7 +54,7 @@ def gather(self): # noqa: E501 :return: The gather of this DiagnosticsGatherStatus. # noqa: E501 - :rtype: DiagnosticsGatherStatusGatherExtended + :rtype: DiagnosticsGatherStatusGather """ return self._gather @@ -65,7 +65,7 @@ def gather(self, gather): # noqa: E501 :param gather: The gather of this DiagnosticsGatherStatus. # noqa: E501 - :type: DiagnosticsGatherStatusGatherExtended + :type: DiagnosticsGatherStatusGather """ self._gather = gather diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_gather.py b/isilon_sdk/isilon_sdk/v9_4_0/models/diagnostics_gather_status_gather.py similarity index 77% rename from isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_gather.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/diagnostics_gather_status_gather.py index 0faa8e1f5..5d9df9571 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_gather.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/diagnostics_gather_status_gather.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class DiagnosticsGatherGather(object): +class DiagnosticsGatherStatusGather(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -41,7 +41,7 @@ class DiagnosticsGatherGather(object): } def __init__(self, path=None, status=None): # noqa: E501 - """DiagnosticsGatherGather - a model defined in Swagger""" # noqa: E501 + """DiagnosticsGatherStatusGather - a model defined in Swagger""" # noqa: E501 self._path = None self._status = None @@ -54,20 +54,20 @@ def __init__(self, path=None, status=None): # noqa: E501 @property def path(self): - """Gets the path of this DiagnosticsGatherGather. # noqa: E501 + """Gets the path of this DiagnosticsGatherStatusGather. # noqa: E501 - :return: The path of this DiagnosticsGatherGather. # noqa: E501 + :return: The path of this DiagnosticsGatherStatusGather. # noqa: E501 :rtype: str """ return self._path @path.setter def path(self, path): - """Sets the path of this DiagnosticsGatherGather. + """Sets the path of this DiagnosticsGatherStatusGather. - :param path: The path of this DiagnosticsGatherGather. # noqa: E501 + :param path: The path of this DiagnosticsGatherStatusGather. # noqa: E501 :type: str """ @@ -75,22 +75,22 @@ def path(self, path): @property def status(self): - """Gets the status of this DiagnosticsGatherGather. # noqa: E501 + """Gets the status of this DiagnosticsGatherStatusGather. # noqa: E501 # noqa: E501 - :return: The status of this DiagnosticsGatherGather. # noqa: E501 + :return: The status of this DiagnosticsGatherStatusGather. # noqa: E501 :rtype: DiagnosticsGatherStatusGatherStatus """ return self._status @status.setter def status(self, status): - """Sets the status of this DiagnosticsGatherGather. + """Sets the status of this DiagnosticsGatherStatusGather. # noqa: E501 - :param status: The status of this DiagnosticsGatherGather. # noqa: E501 + :param status: The status of this DiagnosticsGatherStatusGather. # noqa: E501 :type: DiagnosticsGatherStatusGatherStatus """ @@ -117,7 +117,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(DiagnosticsGatherGather, dict): + if issubclass(DiagnosticsGatherStatusGather, dict): for key, value in self.items(): result[key] = value @@ -133,7 +133,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, DiagnosticsGatherGather): + if not isinstance(other, DiagnosticsGatherStatusGather): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_status_gather_status.py b/isilon_sdk/isilon_sdk/v9_4_0/models/diagnostics_gather_status_gather_status.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_status_gather_status.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/diagnostics_gather_status_gather_status.py index bfcd93e47..c4e82aa8b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_status_gather_status.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/diagnostics_gather_status_gather_status.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_netlogger_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/diagnostics_netlogger_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_netlogger_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/diagnostics_netlogger_settings.py index 519590801..9019bc953 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_netlogger_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/diagnostics_netlogger_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_netlogger_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/diagnostics_netlogger_settings_settings.py similarity index 90% rename from isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_netlogger_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/diagnostics_netlogger_settings_settings.py index 29723be9c..f4b195964 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_netlogger_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/diagnostics_netlogger_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -102,8 +102,8 @@ def clients(self, clients): :param clients: The clients of this DiagnosticsNetloggerSettingsSettings. # noqa: E501 :type: str """ - if clients is not None and not re.search(r'^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$', clients): # noqa: E501 - raise ValueError(r"Invalid value for `clients`, must be a follow pattern or equal to `/^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$/`") # noqa: E501 + if clients is not None and not re.search(r'^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$', clients): # noqa: E501 + raise ValueError(r"Invalid value for `clients`, must be a follow pattern or equal to `/^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$/`") # noqa: E501 self._clients = clients @@ -256,8 +256,8 @@ def protocols(self, protocols): :param protocols: The protocols of this DiagnosticsNetloggerSettingsSettings. # noqa: E501 :type: str """ - if protocols is not None and not re.search(r'^(ip6|ip|arp|tcp|udp|vlan)(,(ip6|ip|arp|tcp|udp|vlan))*$', protocols): # noqa: E501 - raise ValueError(r"Invalid value for `protocols`, must be a follow pattern or equal to `/^(ip6|ip|arp|tcp|udp|vlan)(,(ip6|ip|arp|tcp|udp|vlan))*$/`") # noqa: E501 + if protocols is not None and not re.search(r'^(ip6|ip|arp|tcp|udp)(,(ip6|ip|arp|tcp|udp))*$', protocols): # noqa: E501 + raise ValueError(r"Invalid value for `protocols`, must be a follow pattern or equal to `/^(ip6|ip|arp|tcp|udp)(,(ip6|ip|arp|tcp|udp))*$/`") # noqa: E501 self._protocols = protocols diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_netlogger_status.py b/isilon_sdk/isilon_sdk/v9_4_0/models/diagnostics_netlogger_status.py similarity index 94% rename from isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_netlogger_status.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/diagnostics_netlogger_status.py index 8923ce6c4..7a0b17e09 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_netlogger_status.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/diagnostics_netlogger_status.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,7 +31,7 @@ class DiagnosticsNetloggerStatus(object): and the value is json key in definition. """ swagger_types = { - 'netlogger': 'DiagnosticsGatherGather' + 'netlogger': 'DiagnosticsGatherStatusGather' } attribute_map = { @@ -54,7 +54,7 @@ def netlogger(self): # noqa: E501 :return: The netlogger of this DiagnosticsNetloggerStatus. # noqa: E501 - :rtype: DiagnosticsGatherGather + :rtype: DiagnosticsGatherStatusGather """ return self._netlogger @@ -65,7 +65,7 @@ def netlogger(self, netlogger): # noqa: E501 :param netlogger: The netlogger of this DiagnosticsNetloggerStatus. # noqa: E501 - :type: DiagnosticsGatherGather + :type: DiagnosticsGatherStatusGather """ self._netlogger = netlogger diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/directory_query.py b/isilon_sdk/isilon_sdk/v9_4_0/models/directory_query.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/directory_query.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/directory_query.py index 5a01b003c..11fc8d5c1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/directory_query.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/directory_query.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/directory_query_scope.py b/isilon_sdk/isilon_sdk/v9_4_0/models/directory_query_scope.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/directory_query_scope.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/directory_query_scope.py index d68f50c18..9a12f3d69 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/directory_query_scope.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/directory_query_scope.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/directory_query_scope_conditions.py b/isilon_sdk/isilon_sdk/v9_4_0/models/directory_query_scope_conditions.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/directory_query_scope_conditions.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/directory_query_scope_conditions.py index adf98a285..b1ed7ff84 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/directory_query_scope_conditions.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/directory_query_scope_conditions.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/drives_drive_firmware.py b/isilon_sdk/isilon_sdk/v9_4_0/models/drives_drive_firmware.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/drives_drive_firmware.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/drives_drive_firmware.py index 76a16fd65..77204716a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/drives_drive_firmware.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/drives_drive_firmware.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/drives_drive_firmware_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/drives_drive_firmware_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/drives_drive_firmware_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/drives_drive_firmware_node.py index eaecb5a72..cc43686e3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/drives_drive_firmware_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/drives_drive_firmware_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/drives_drive_firmware_node_drive.py b/isilon_sdk/isilon_sdk/v9_4_0/models/drives_drive_firmware_node_drive.py similarity index 88% rename from isilon_sdk/isilon_sdk/v9_11_0/models/drives_drive_firmware_node_drive.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/drives_drive_firmware_node_drive.py index c0bb6dcc1..a1043a348 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/drives_drive_firmware_node_drive.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/drives_drive_firmware_node_drive.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,7 +31,6 @@ class DrivesDriveFirmwareNodeDrive(object): and the value is json key in definition. """ swagger_types = { - 'bay_group': 'str', 'baynum': 'int', 'current_firmware': 'str', 'desired_firmware': 'str', @@ -42,7 +41,6 @@ class DrivesDriveFirmwareNodeDrive(object): } attribute_map = { - 'bay_group': 'bay_group', 'baynum': 'baynum', 'current_firmware': 'current_firmware', 'desired_firmware': 'desired_firmware', @@ -52,10 +50,9 @@ class DrivesDriveFirmwareNodeDrive(object): 'model': 'model' } - def __init__(self, bay_group=None, baynum=None, current_firmware=None, desired_firmware=None, devname=None, lnum=None, locnstr=None, model=None): # noqa: E501 + def __init__(self, baynum=None, current_firmware=None, desired_firmware=None, devname=None, lnum=None, locnstr=None, model=None): # noqa: E501 """DrivesDriveFirmwareNodeDrive - a model defined in Swagger""" # noqa: E501 - self._bay_group = None self._baynum = None self._current_firmware = None self._desired_firmware = None @@ -65,8 +62,6 @@ def __init__(self, bay_group=None, baynum=None, current_firmware=None, desired_f self._model = None self.discriminator = None - if bay_group is not None: - self.bay_group = bay_group if baynum is not None: self.baynum = baynum if current_firmware is not None: @@ -82,33 +77,6 @@ def __init__(self, bay_group=None, baynum=None, current_firmware=None, desired_f if model is not None: self.model = model - @property - def bay_group(self): - """Gets the bay_group of this DrivesDriveFirmwareNodeDrive. # noqa: E501 - - This drive's sled letter in node. # noqa: E501 - - :return: The bay_group of this DrivesDriveFirmwareNodeDrive. # noqa: E501 - :rtype: str - """ - return self._bay_group - - @bay_group.setter - def bay_group(self, bay_group): - """Sets the bay_group of this DrivesDriveFirmwareNodeDrive. - - This drive's sled letter in node. # noqa: E501 - - :param bay_group: The bay_group of this DrivesDriveFirmwareNodeDrive. # noqa: E501 - :type: str - """ - if bay_group is not None and len(bay_group) > 255: - raise ValueError("Invalid value for `bay_group`, length must be less than or equal to `255`") # noqa: E501 - if bay_group is not None and len(bay_group) < 0: - raise ValueError("Invalid value for `bay_group`, length must be greater than or equal to `0`") # noqa: E501 - - self._bay_group = bay_group - @property def baynum(self): """Gets the baynum of this DrivesDriveFirmwareNodeDrive. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/drives_drive_firmware_update.py b/isilon_sdk/isilon_sdk/v9_4_0/models/drives_drive_firmware_update.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/drives_drive_firmware_update.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/drives_drive_firmware_update.py index ade07b178..53a652644 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/drives_drive_firmware_update.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/drives_drive_firmware_update.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/drives_drive_firmware_update_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/drives_drive_firmware_update_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/drives_drive_firmware_update_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/drives_drive_firmware_update_item.py index 7e00558b3..534942aad 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/drives_drive_firmware_update_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/drives_drive_firmware_update_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/drives_drive_firmware_update_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/drives_drive_firmware_update_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/drives_drive_firmware_update_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/drives_drive_firmware_update_node.py index c0b42e158..b746274f3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/drives_drive_firmware_update_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/drives_drive_firmware_update_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/drives_drive_firmware_update_node_status.py b/isilon_sdk/isilon_sdk/v9_4_0/models/drives_drive_firmware_update_node_status.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/drives_drive_firmware_update_node_status.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/drives_drive_firmware_update_node_status.py index 944973530..dc62ee793 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/drives_drive_firmware_update_node_status.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/drives_drive_firmware_update_node_status.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/drives_drive_format_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/drives_drive_format_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/drives_drive_format_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/drives_drive_format_item.py index 412269fde..69dfda8e6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/drives_drive_format_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/drives_drive_format_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/drives_drive_purpose_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/drives_drive_purpose_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/drives_drive_purpose_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/drives_drive_purpose_item.py index 4f9734627..6e3f5c2d7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/drives_drive_purpose_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/drives_drive_purpose_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/empty.py b/isilon_sdk/isilon_sdk/v9_4_0/models/empty.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/models/empty.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/empty.py index 773a1708d..8aed863d7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/empty.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/empty.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/error.py b/isilon_sdk/isilon_sdk/v9_4_0/models/error.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/error.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/error.py index d26750b23..8c0522dcc 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/error.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/error.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_alert_condition.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_alert_condition.py similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_alert_condition.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_alert_condition.py index d008dfdb1..cbfcf6e09 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_alert_condition.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_alert_condition.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -91,7 +91,7 @@ def __init__(self, categories=None, channels=None, condition=None, eventgroup_id def categories(self): """Gets the categories of this EventAlertCondition. # noqa: E501 - Event Group categories to be alerted: all, 100000000 (SYS_DISK_EVENTS), 200000000 (NODE_STATUS_EVENTS), 300000000 (REBOOT_EVENTS), 400000000 (SW_EVENTS), 500000000 (QUOTA_EVENTS), 600000000 (SNAP_EVENTS), 700000000 (WINNET_EVENTS), 800000000 (FILESYS_EVENTS), 900000000 (HW_EVENTS), 1100000000 (CPOOL_EVENTS), 9800000000 (SYSTEM_ADMIN), 9900000000 (DELL_SUPPORT). # noqa: E501 + Event Group categories to be alerted: all, 100000000 (SYS_DISK_EVENTS), 200000000 (NODE_STATUS_EVENTS), 300000000 (REBOOT_EVENTS), 400000000 (SW_EVENTS), 500000000 (QUOTA_EVENTS), 600000000 (SNAP_EVENTS), 700000000 (WINNET_EVENTS), 800000000 (FILESYS_EVENTS), 900000000 (HW_EVENTS), 1100000000 (CPOOL_EVENTS). # noqa: E501 :return: The categories of this EventAlertCondition. # noqa: E501 :rtype: list[str] @@ -102,12 +102,12 @@ def categories(self): def categories(self, categories): """Sets the categories of this EventAlertCondition. - Event Group categories to be alerted: all, 100000000 (SYS_DISK_EVENTS), 200000000 (NODE_STATUS_EVENTS), 300000000 (REBOOT_EVENTS), 400000000 (SW_EVENTS), 500000000 (QUOTA_EVENTS), 600000000 (SNAP_EVENTS), 700000000 (WINNET_EVENTS), 800000000 (FILESYS_EVENTS), 900000000 (HW_EVENTS), 1100000000 (CPOOL_EVENTS), 9800000000 (SYSTEM_ADMIN), 9900000000 (DELL_SUPPORT). # noqa: E501 + Event Group categories to be alerted: all, 100000000 (SYS_DISK_EVENTS), 200000000 (NODE_STATUS_EVENTS), 300000000 (REBOOT_EVENTS), 400000000 (SW_EVENTS), 500000000 (QUOTA_EVENTS), 600000000 (SNAP_EVENTS), 700000000 (WINNET_EVENTS), 800000000 (FILESYS_EVENTS), 900000000 (HW_EVENTS), 1100000000 (CPOOL_EVENTS). # noqa: E501 :param categories: The categories of this EventAlertCondition. # noqa: E501 :type: list[str] """ - allowed_values = ["all", "SYS_DISK_EVENTS", "100000000", "NODE_STATUS_EVENTS", "200000000", "REBOOT_EVENTS", "300000000", "SW_EVENTS", "400000000", "QUOTA_EVENTS", "500000000", "SNAP_EVENTS", "600000000", "WINNET_EVENTS", "700000000", "FILESYS_EVENTS", "800000000", "HW_EVENTS", "900000000", "CPOOL_EVENTS", "1100000000", "SYSTEM_ADMIN", "9800000000", "DELL_SUPPORT", "9900000000"] # noqa: E501 + allowed_values = ["all", "SYS_DISK_EVENTS", "100000000", "NODE_STATUS_EVENTS", "200000000", "REBOOT_EVENTS", "300000000", "SW_EVENTS", "400000000", "QUOTA_EVENTS", "500000000", "SNAP_EVENTS", "600000000", "WINNET_EVENTS", "700000000", "FILESYS_EVENTS", "800000000", "HW_EVENTS", "900000000", "CPOOL_EVENTS", "1100000000"] # noqa: E501 if not set(categories).issubset(set(allowed_values)): raise ValueError( "Invalid values for `categories` [{0}], must be a subset of [{1}]" # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_alert_condition_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_alert_condition_create_params.py similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_alert_condition_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_alert_condition_create_params.py index ecaf34d34..b011eee8c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_alert_condition_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_alert_condition_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -98,7 +98,7 @@ def __init__(self, categories=None, channels=None, condition=None, eventgroup_id def categories(self): """Gets the categories of this EventAlertConditionCreateParams. # noqa: E501 - Event Group categories to be alerted: all, 100000000 (SYS_DISK_EVENTS), 200000000 (NODE_STATUS_EVENTS), 300000000 (REBOOT_EVENTS), 400000000 (SW_EVENTS), 500000000 (QUOTA_EVENTS), 600000000 (SNAP_EVENTS), 700000000 (WINNET_EVENTS), 800000000 (FILESYS_EVENTS), 900000000 (HW_EVENTS), 1100000000 (CPOOL_EVENTS), 9800000000 (SYSTEM_ADMIN), 9900000000 (DELL_SUPPORT). # noqa: E501 + Event Group categories to be alerted: all, 100000000 (SYS_DISK_EVENTS), 200000000 (NODE_STATUS_EVENTS), 300000000 (REBOOT_EVENTS), 400000000 (SW_EVENTS), 500000000 (QUOTA_EVENTS), 600000000 (SNAP_EVENTS), 700000000 (WINNET_EVENTS), 800000000 (FILESYS_EVENTS), 900000000 (HW_EVENTS), 1100000000 (CPOOL_EVENTS). # noqa: E501 :return: The categories of this EventAlertConditionCreateParams. # noqa: E501 :rtype: list[str] @@ -109,12 +109,12 @@ def categories(self): def categories(self, categories): """Sets the categories of this EventAlertConditionCreateParams. - Event Group categories to be alerted: all, 100000000 (SYS_DISK_EVENTS), 200000000 (NODE_STATUS_EVENTS), 300000000 (REBOOT_EVENTS), 400000000 (SW_EVENTS), 500000000 (QUOTA_EVENTS), 600000000 (SNAP_EVENTS), 700000000 (WINNET_EVENTS), 800000000 (FILESYS_EVENTS), 900000000 (HW_EVENTS), 1100000000 (CPOOL_EVENTS), 9800000000 (SYSTEM_ADMIN), 9900000000 (DELL_SUPPORT). # noqa: E501 + Event Group categories to be alerted: all, 100000000 (SYS_DISK_EVENTS), 200000000 (NODE_STATUS_EVENTS), 300000000 (REBOOT_EVENTS), 400000000 (SW_EVENTS), 500000000 (QUOTA_EVENTS), 600000000 (SNAP_EVENTS), 700000000 (WINNET_EVENTS), 800000000 (FILESYS_EVENTS), 900000000 (HW_EVENTS), 1100000000 (CPOOL_EVENTS). # noqa: E501 :param categories: The categories of this EventAlertConditionCreateParams. # noqa: E501 :type: list[str] """ - allowed_values = ["all", "SYS_DISK_EVENTS", "100000000", "NODE_STATUS_EVENTS", "200000000", "REBOOT_EVENTS", "300000000", "SW_EVENTS", "400000000", "QUOTA_EVENTS", "500000000", "SNAP_EVENTS", "600000000", "WINNET_EVENTS", "700000000", "FILESYS_EVENTS", "800000000", "HW_EVENTS", "900000000", "CPOOL_EVENTS", "1100000000", "SYSTEM_ADMIN", "9800000000", "DELL_SUPPORT", "9900000000"] # noqa: E501 + allowed_values = ["all", "SYS_DISK_EVENTS", "100000000", "NODE_STATUS_EVENTS", "200000000", "REBOOT_EVENTS", "300000000", "SW_EVENTS", "400000000", "QUOTA_EVENTS", "500000000", "SNAP_EVENTS", "600000000", "WINNET_EVENTS", "700000000", "FILESYS_EVENTS", "800000000", "HW_EVENTS", "900000000", "CPOOL_EVENTS", "1100000000"] # noqa: E501 if not set(categories).issubset(set(allowed_values)): raise ValueError( "Invalid values for `categories` [{0}], must be a subset of [{1}]" # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_alert_conditions.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_alert_conditions.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_alert_conditions.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_alert_conditions.py index ceeb19950..ac752a5fc 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_alert_conditions.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_alert_conditions.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_alert_conditions_alert_condition.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_alert_conditions_alert_condition.py similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_alert_conditions_alert_condition.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_alert_conditions_alert_condition.py index afa338521..b0511798a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_alert_conditions_alert_condition.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_alert_conditions_alert_condition.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -101,7 +101,7 @@ def __init__(self, categories=None, channels=None, condition=None, eventgroup_id def categories(self): """Gets the categories of this EventAlertConditionsAlertCondition. # noqa: E501 - Event Group categories to be alerted: all, 100000000 (SYS_DISK_EVENTS), 200000000 (NODE_STATUS_EVENTS), 300000000 (REBOOT_EVENTS), 400000000 (SW_EVENTS), 500000000 (QUOTA_EVENTS), 600000000 (SNAP_EVENTS), 700000000 (WINNET_EVENTS), 800000000 (FILESYS_EVENTS), 900000000 (HW_EVENTS), 1100000000 (CPOOL_EVENTS), 9800000000 (SYSTEM_ADMIN), 9900000000 (DELL_SUPPORT). # noqa: E501 + Event Group categories to be alerted: all, 100000000 (SYS_DISK_EVENTS), 200000000 (NODE_STATUS_EVENTS), 300000000 (REBOOT_EVENTS), 400000000 (SW_EVENTS), 500000000 (QUOTA_EVENTS), 600000000 (SNAP_EVENTS), 700000000 (WINNET_EVENTS), 800000000 (FILESYS_EVENTS), 900000000 (HW_EVENTS), 1100000000 (CPOOL_EVENTS). # noqa: E501 :return: The categories of this EventAlertConditionsAlertCondition. # noqa: E501 :rtype: list[str] @@ -112,12 +112,12 @@ def categories(self): def categories(self, categories): """Sets the categories of this EventAlertConditionsAlertCondition. - Event Group categories to be alerted: all, 100000000 (SYS_DISK_EVENTS), 200000000 (NODE_STATUS_EVENTS), 300000000 (REBOOT_EVENTS), 400000000 (SW_EVENTS), 500000000 (QUOTA_EVENTS), 600000000 (SNAP_EVENTS), 700000000 (WINNET_EVENTS), 800000000 (FILESYS_EVENTS), 900000000 (HW_EVENTS), 1100000000 (CPOOL_EVENTS), 9800000000 (SYSTEM_ADMIN), 9900000000 (DELL_SUPPORT). # noqa: E501 + Event Group categories to be alerted: all, 100000000 (SYS_DISK_EVENTS), 200000000 (NODE_STATUS_EVENTS), 300000000 (REBOOT_EVENTS), 400000000 (SW_EVENTS), 500000000 (QUOTA_EVENTS), 600000000 (SNAP_EVENTS), 700000000 (WINNET_EVENTS), 800000000 (FILESYS_EVENTS), 900000000 (HW_EVENTS), 1100000000 (CPOOL_EVENTS). # noqa: E501 :param categories: The categories of this EventAlertConditionsAlertCondition. # noqa: E501 :type: list[str] """ - allowed_values = ["all", "SYS_DISK_EVENTS", "100000000", "NODE_STATUS_EVENTS", "200000000", "REBOOT_EVENTS", "300000000", "SW_EVENTS", "400000000", "QUOTA_EVENTS", "500000000", "SNAP_EVENTS", "600000000", "WINNET_EVENTS", "700000000", "FILESYS_EVENTS", "800000000", "HW_EVENTS", "900000000", "CPOOL_EVENTS", "1100000000", "SYSTEM_ADMIN", "9800000000", "DELL_SUPPORT", "9900000000"] # noqa: E501 + allowed_values = ["all", "SYS_DISK_EVENTS", "100000000", "NODE_STATUS_EVENTS", "200000000", "REBOOT_EVENTS", "300000000", "SW_EVENTS", "400000000", "QUOTA_EVENTS", "500000000", "SNAP_EVENTS", "600000000", "WINNET_EVENTS", "700000000", "FILESYS_EVENTS", "800000000", "HW_EVENTS", "900000000", "CPOOL_EVENTS", "1100000000"] # noqa: E501 if not set(categories).issubset(set(allowed_values)): raise ValueError( "Invalid values for `categories` [{0}], must be a subset of [{1}]" # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_alert_conditions_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_alert_conditions_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_alert_conditions_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_alert_conditions_extended.py index 5c24fc3a4..85fc9bb03 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_alert_conditions_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_alert_conditions_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_categories.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_categories.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_categories.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_categories.py index 6c62bf0d7..e905d6764 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_categories.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_categories.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_categories_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_categories_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_categories_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_categories_extended.py index c3006458b..c2a41f3a3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_categories_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_categories_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_category.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_category.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_category.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_category.py index 3569252c6..2fa900ed8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_category.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_category.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_channel.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_channel.py similarity index 89% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_channel.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_channel.py index 41ad1109a..5fb67ec3c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_channel.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_channel.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -35,7 +35,6 @@ class EventChannel(object): 'enabled': 'bool', 'excluded_nodes': 'list[int]', 'parameters': 'EventChannelParameters', - 'rules': 'list[str]', 'system': 'bool', 'type': 'str' } @@ -45,19 +44,17 @@ class EventChannel(object): 'enabled': 'enabled', 'excluded_nodes': 'excluded_nodes', 'parameters': 'parameters', - 'rules': 'rules', 'system': 'system', 'type': 'type' } - def __init__(self, allowed_nodes=None, enabled=None, excluded_nodes=None, parameters=None, rules=None, system=None, type=None): # noqa: E501 + def __init__(self, allowed_nodes=None, enabled=None, excluded_nodes=None, parameters=None, system=None, type=None): # noqa: E501 """EventChannel - a model defined in Swagger""" # noqa: E501 self._allowed_nodes = None self._enabled = None self._excluded_nodes = None self._parameters = None - self._rules = None self._system = None self._type = None self.discriminator = None @@ -70,8 +67,6 @@ def __init__(self, allowed_nodes=None, enabled=None, excluded_nodes=None, parame self.excluded_nodes = excluded_nodes if parameters is not None: self.parameters = parameters - if rules is not None: - self.rules = rules if system is not None: self.system = system if type is not None: @@ -169,29 +164,6 @@ def parameters(self, parameters): self._parameters = parameters - @property - def rules(self): - """Gets the rules of this EventChannel. # noqa: E501 - - Alert rules involving this eventgroup type. # noqa: E501 - - :return: The rules of this EventChannel. # noqa: E501 - :rtype: list[str] - """ - return self._rules - - @rules.setter - def rules(self, rules): - """Sets the rules of this EventChannel. - - Alert rules involving this eventgroup type. # noqa: E501 - - :param rules: The rules of this EventChannel. # noqa: E501 - :type: list[str] - """ - - self._rules = rules - @property def system(self): """Gets the system of this EventChannel. # noqa: E501 @@ -235,7 +207,7 @@ def type(self, type): :param type: The type of this EventChannel. # noqa: E501 :type: str """ - allowed_values = ["connectemc", "smtp", "snmp", "heartbeat", "connectivity"] # noqa: E501 + allowed_values = ["connectemc", "smtp", "snmp", "heartbeat"] # noqa: E501 if type not in allowed_values: raise ValueError( "Invalid value for `type` ({0}), must be one of {1}" # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_channel_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_channel_create_params.py similarity index 91% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_channel_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_channel_create_params.py index 0ae6c0a78..626640b0b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_channel_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_channel_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -35,7 +35,6 @@ class EventChannelCreateParams(object): 'enabled': 'bool', 'excluded_nodes': 'list[int]', 'parameters': 'EventChannelParameters', - 'rules': 'list[str]', 'system': 'bool', 'type': 'str', 'id': 'int', @@ -47,21 +46,19 @@ class EventChannelCreateParams(object): 'enabled': 'enabled', 'excluded_nodes': 'excluded_nodes', 'parameters': 'parameters', - 'rules': 'rules', 'system': 'system', 'type': 'type', 'id': 'id', 'name': 'name' } - def __init__(self, allowed_nodes=None, enabled=None, excluded_nodes=None, parameters=None, rules=None, system=None, type=None, id=None, name=None): # noqa: E501 + def __init__(self, allowed_nodes=None, enabled=None, excluded_nodes=None, parameters=None, system=None, type=None, id=None, name=None): # noqa: E501 """EventChannelCreateParams - a model defined in Swagger""" # noqa: E501 self._allowed_nodes = None self._enabled = None self._excluded_nodes = None self._parameters = None - self._rules = None self._system = None self._type = None self._id = None @@ -76,8 +73,6 @@ def __init__(self, allowed_nodes=None, enabled=None, excluded_nodes=None, parame self.excluded_nodes = excluded_nodes if parameters is not None: self.parameters = parameters - if rules is not None: - self.rules = rules if system is not None: self.system = system self.type = type @@ -177,29 +172,6 @@ def parameters(self, parameters): self._parameters = parameters - @property - def rules(self): - """Gets the rules of this EventChannelCreateParams. # noqa: E501 - - Alert rules involving this eventgroup type. # noqa: E501 - - :return: The rules of this EventChannelCreateParams. # noqa: E501 - :rtype: list[str] - """ - return self._rules - - @rules.setter - def rules(self, rules): - """Sets the rules of this EventChannelCreateParams. - - Alert rules involving this eventgroup type. # noqa: E501 - - :param rules: The rules of this EventChannelCreateParams. # noqa: E501 - :type: list[str] - """ - - self._rules = rules - @property def system(self): """Gets the system of this EventChannelCreateParams. # noqa: E501 @@ -245,7 +217,7 @@ def type(self, type): """ if type is None: raise ValueError("Invalid value for `type`, must not be `None`") # noqa: E501 - allowed_values = ["connectemc", "smtp", "snmp", "heartbeat", "connectivity"] # noqa: E501 + allowed_values = ["connectemc", "smtp", "snmp", "heartbeat"] # noqa: E501 if type not in allowed_values: raise ValueError( "Invalid value for `type` ({0}), must be one of {1}" # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_channel_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_channel_extended.py similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_channel_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_channel_extended.py index 0d1dea9ad..0f8836dbb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_channel_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_channel_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -35,11 +35,11 @@ class EventChannelExtended(object): 'enabled': 'bool', 'excluded_nodes': 'list[int]', 'parameters': 'EventChannelParameters', - 'rules': 'list[str]', 'system': 'bool', 'type': 'str', 'id': 'int', - 'name': 'str' + 'name': 'str', + 'rules': 'list[str]' } attribute_map = { @@ -47,25 +47,25 @@ class EventChannelExtended(object): 'enabled': 'enabled', 'excluded_nodes': 'excluded_nodes', 'parameters': 'parameters', - 'rules': 'rules', 'system': 'system', 'type': 'type', 'id': 'id', - 'name': 'name' + 'name': 'name', + 'rules': 'rules' } - def __init__(self, allowed_nodes=None, enabled=None, excluded_nodes=None, parameters=None, rules=None, system=None, type=None, id=None, name=None): # noqa: E501 + def __init__(self, allowed_nodes=None, enabled=None, excluded_nodes=None, parameters=None, system=None, type=None, id=None, name=None, rules=None): # noqa: E501 """EventChannelExtended - a model defined in Swagger""" # noqa: E501 self._allowed_nodes = None self._enabled = None self._excluded_nodes = None self._parameters = None - self._rules = None self._system = None self._type = None self._id = None self._name = None + self._rules = None self.discriminator = None if allowed_nodes is not None: @@ -76,8 +76,6 @@ def __init__(self, allowed_nodes=None, enabled=None, excluded_nodes=None, parame self.excluded_nodes = excluded_nodes if parameters is not None: self.parameters = parameters - if rules is not None: - self.rules = rules if system is not None: self.system = system if type is not None: @@ -86,6 +84,8 @@ def __init__(self, allowed_nodes=None, enabled=None, excluded_nodes=None, parame self.id = id if name is not None: self.name = name + if rules is not None: + self.rules = rules @property def allowed_nodes(self): @@ -179,29 +179,6 @@ def parameters(self, parameters): self._parameters = parameters - @property - def rules(self): - """Gets the rules of this EventChannelExtended. # noqa: E501 - - Alert rules involving this eventgroup type. # noqa: E501 - - :return: The rules of this EventChannelExtended. # noqa: E501 - :rtype: list[str] - """ - return self._rules - - @rules.setter - def rules(self, rules): - """Sets the rules of this EventChannelExtended. - - Alert rules involving this eventgroup type. # noqa: E501 - - :param rules: The rules of this EventChannelExtended. # noqa: E501 - :type: list[str] - """ - - self._rules = rules - @property def system(self): """Gets the system of this EventChannelExtended. # noqa: E501 @@ -245,7 +222,7 @@ def type(self, type): :param type: The type of this EventChannelExtended. # noqa: E501 :type: str """ - allowed_values = ["connectemc", "smtp", "snmp", "heartbeat", "connectivity"] # noqa: E501 + allowed_values = ["connectemc", "smtp", "snmp", "heartbeat"] # noqa: E501 if type not in allowed_values: raise ValueError( "Invalid value for `type` ({0}), must be one of {1}" # noqa: E501 @@ -308,6 +285,29 @@ def name(self, name): self._name = name + @property + def rules(self): + """Gets the rules of this EventChannelExtended. # noqa: E501 + + Alert rules involving this eventgroup type. # noqa: E501 + + :return: The rules of this EventChannelExtended. # noqa: E501 + :rtype: list[str] + """ + return self._rules + + @rules.setter + def rules(self, rules): + """Sets the rules of this EventChannelExtended. + + Alert rules involving this eventgroup type. # noqa: E501 + + :param rules: The rules of this EventChannelExtended. # noqa: E501 + :type: list[str] + """ + + self._rules = rules + def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_channel_parameters.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_channel_parameters.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_channel_parameters.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_channel_parameters.py index ae424d378..f5cd461ce 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_channel_parameters.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_channel_parameters.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -205,8 +205,8 @@ def custom_template(self, custom_template): raise ValueError("Invalid value for `custom_template`, length must be less than or equal to `4096`") # noqa: E501 if custom_template is not None and len(custom_template) < 0: raise ValueError("Invalid value for `custom_template`, length must be greater than or equal to `0`") # noqa: E501 - if custom_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', custom_template): # noqa: E501 - raise ValueError(r"Invalid value for `custom_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if custom_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', custom_template): # noqa: E501 + raise ValueError(r"Invalid value for `custom_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._custom_template = custom_template diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_channels.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_channels.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_channels.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_channels.py index ede44f051..43d2cfa84 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_channels.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_channels.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_channels_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_channels_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_channels_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_channels_extended.py index ab92da634..df1b69742 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_channels_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_channels_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_event.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_event.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_event.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_event.py index fc3fabc6d..f131801a0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_event.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_event.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_eventgroup_definitions.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_eventgroup_definitions.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_eventgroup_definitions.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_eventgroup_definitions.py index 5f17e43c7..a510df33c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_eventgroup_definitions.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_eventgroup_definitions.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_eventgroup_definitions_eventgroup_definition.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_eventgroup_definitions_eventgroup_definition.py similarity index 87% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_eventgroup_definitions_eventgroup_definition.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_eventgroup_definitions_eventgroup_definition.py index fa405ea7f..acefb24c8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_eventgroup_definitions_eventgroup_definition.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_eventgroup_definitions_eventgroup_definition.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -39,8 +39,7 @@ class EventEventgroupDefinitionsEventgroupDefinition(object): 'no_ignore': 'bool', 'node': 'bool', 'rules': 'list[str]', - 'suppressed': 'bool', - 'ui_name': 'str' + 'suppressed': 'bool' } attribute_map = { @@ -52,11 +51,10 @@ class EventEventgroupDefinitionsEventgroupDefinition(object): 'no_ignore': 'no_ignore', 'node': 'node', 'rules': 'rules', - 'suppressed': 'suppressed', - 'ui_name': 'ui_name' + 'suppressed': 'suppressed' } - def __init__(self, category=None, channels=None, description=None, id=None, name=None, no_ignore=None, node=None, rules=None, suppressed=None, ui_name=None): # noqa: E501 + def __init__(self, category=None, channels=None, description=None, id=None, name=None, no_ignore=None, node=None, rules=None, suppressed=None): # noqa: E501 """EventEventgroupDefinitionsEventgroupDefinition - a model defined in Swagger""" # noqa: E501 self._category = None @@ -68,7 +66,6 @@ def __init__(self, category=None, channels=None, description=None, id=None, name self._node = None self._rules = None self._suppressed = None - self._ui_name = None self.discriminator = None if category is not None: @@ -89,14 +86,12 @@ def __init__(self, category=None, channels=None, description=None, id=None, name self.rules = rules if suppressed is not None: self.suppressed = suppressed - if ui_name is not None: - self.ui_name = ui_name @property def category(self): """Gets the category of this EventEventgroupDefinitionsEventgroupDefinition. # noqa: E501 - ID of eventgroup category: all, 100000000 (SYS_DISK_EVENTS), 200000000 (NODE_STATUS_EVENTS), 300000000 (REBOOT_EVENTS), 400000000 (SW_EVENTS), 500000000 (QUOTA_EVENTS), 600000000 (SNAP_EVENTS), 700000000 (WINNET_EVENTS), 800000000 (FILESYS_EVENTS), 900000000 (HW_EVENTS), 1100000000 (CPOOL_EVENTS), 9800000000 (SYSTEM_ADMIN), 9900000000 (DELL_SUPPORT). # noqa: E501 + ID of eventgroup category: all, 100000000 (SYS_DISK_EVENTS), 200000000 (NODE_STATUS_EVENTS), 300000000 (REBOOT_EVENTS), 400000000 (SW_EVENTS), 500000000 (QUOTA_EVENTS), 600000000 (SNAP_EVENTS), 700000000 (WINNET_EVENTS), 800000000 (FILESYS_EVENTS), 900000000 (HW_EVENTS), 1100000000 (CPOOL_EVENTS). # noqa: E501 :return: The category of this EventEventgroupDefinitionsEventgroupDefinition. # noqa: E501 :rtype: str @@ -107,12 +102,12 @@ def category(self): def category(self, category): """Sets the category of this EventEventgroupDefinitionsEventgroupDefinition. - ID of eventgroup category: all, 100000000 (SYS_DISK_EVENTS), 200000000 (NODE_STATUS_EVENTS), 300000000 (REBOOT_EVENTS), 400000000 (SW_EVENTS), 500000000 (QUOTA_EVENTS), 600000000 (SNAP_EVENTS), 700000000 (WINNET_EVENTS), 800000000 (FILESYS_EVENTS), 900000000 (HW_EVENTS), 1100000000 (CPOOL_EVENTS), 9800000000 (SYSTEM_ADMIN), 9900000000 (DELL_SUPPORT). # noqa: E501 + ID of eventgroup category: all, 100000000 (SYS_DISK_EVENTS), 200000000 (NODE_STATUS_EVENTS), 300000000 (REBOOT_EVENTS), 400000000 (SW_EVENTS), 500000000 (QUOTA_EVENTS), 600000000 (SNAP_EVENTS), 700000000 (WINNET_EVENTS), 800000000 (FILESYS_EVENTS), 900000000 (HW_EVENTS), 1100000000 (CPOOL_EVENTS). # noqa: E501 :param category: The category of this EventEventgroupDefinitionsEventgroupDefinition. # noqa: E501 :type: str """ - allowed_values = ["all", "100000000", "200000000", "300000000", "400000000", "500000000", "600000000", "700000000", "800000000", "900000000", "1100000000", "9800000000", "9900000000", "Unknown"] # noqa: E501 + allowed_values = ["all", "100000000", "200000000", "300000000", "400000000", "500000000", "600000000", "700000000", "800000000", "900000000", "1100000000", "Unknown"] # noqa: E501 if category not in allowed_values: raise ValueError( "Invalid value for `category` ({0}), must be one of {1}" # noqa: E501 @@ -313,33 +308,6 @@ def suppressed(self, suppressed): self._suppressed = suppressed - @property - def ui_name(self): - """Gets the ui_name of this EventEventgroupDefinitionsEventgroupDefinition. # noqa: E501 - - UI Description for event group # noqa: E501 - - :return: The ui_name of this EventEventgroupDefinitionsEventgroupDefinition. # noqa: E501 - :rtype: str - """ - return self._ui_name - - @ui_name.setter - def ui_name(self, ui_name): - """Sets the ui_name of this EventEventgroupDefinitionsEventgroupDefinition. - - UI Description for event group # noqa: E501 - - :param ui_name: The ui_name of this EventEventgroupDefinitionsEventgroupDefinition. # noqa: E501 - :type: str - """ - if ui_name is not None and len(ui_name) > 8192: - raise ValueError("Invalid value for `ui_name`, length must be less than or equal to `8192`") # noqa: E501 - if ui_name is not None and len(ui_name) < 0: - raise ValueError("Invalid value for `ui_name`, length must be greater than or equal to `0`") # noqa: E501 - - self._ui_name = ui_name - def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_eventgroup_definitions_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_eventgroup_definitions_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_eventgroup_definitions_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_eventgroup_definitions_extended.py index 8326b8e19..f9ef856e7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_eventgroup_definitions_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_eventgroup_definitions_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_eventgroup_occurrence.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_eventgroup_occurrence.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_eventgroup_occurrence.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_eventgroup_occurrence.py index b524dd0df..8fb6efa3c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_eventgroup_occurrence.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_eventgroup_occurrence.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_eventgroup_occurrences.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_eventgroup_occurrences.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_eventgroup_occurrences.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_eventgroup_occurrences.py index 8663e84a3..cd93f3aa7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_eventgroup_occurrences.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_eventgroup_occurrences.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_eventgroup_occurrences_eventgroup.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_eventgroup_occurrences_eventgroup.py similarity index 92% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_eventgroup_occurrences_eventgroup.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_eventgroup_occurrences_eventgroup.py index 0eef1cc1a..1d19a52fe 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_eventgroup_occurrences_eventgroup.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_eventgroup_occurrences_eventgroup.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -39,7 +39,6 @@ class EventEventgroupOccurrencesEventgroup(object): 'ignore': 'bool', 'ignore_time': 'int', 'last_event': 'int', - 'ref_groups': 'str', 'resolve_time': 'int', 'resolved': 'bool', 'resolver': 'str', @@ -58,7 +57,6 @@ class EventEventgroupOccurrencesEventgroup(object): 'ignore': 'ignore', 'ignore_time': 'ignore_time', 'last_event': 'last_event', - 'ref_groups': 'ref_groups', 'resolve_time': 'resolve_time', 'resolved': 'resolved', 'resolver': 'resolver', @@ -68,7 +66,7 @@ class EventEventgroupOccurrencesEventgroup(object): 'time_noticed': 'time_noticed' } - def __init__(self, causes=None, channels=None, event_count=None, eventgroup_instance=None, id=None, ignore=None, ignore_time=None, last_event=None, ref_groups=None, resolve_time=None, resolved=None, resolver=None, sequence=None, severity=None, specifier=None, time_noticed=None): # noqa: E501 + def __init__(self, causes=None, channels=None, event_count=None, eventgroup_instance=None, id=None, ignore=None, ignore_time=None, last_event=None, resolve_time=None, resolved=None, resolver=None, sequence=None, severity=None, specifier=None, time_noticed=None): # noqa: E501 """EventEventgroupOccurrencesEventgroup - a model defined in Swagger""" # noqa: E501 self._causes = None @@ -79,7 +77,6 @@ def __init__(self, causes=None, channels=None, event_count=None, eventgroup_inst self._ignore = None self._ignore_time = None self._last_event = None - self._ref_groups = None self._resolve_time = None self._resolved = None self._resolver = None @@ -105,8 +102,6 @@ def __init__(self, causes=None, channels=None, event_count=None, eventgroup_inst self.ignore_time = ignore_time if last_event is not None: self.last_event = last_event - if ref_groups is not None: - self.ref_groups = ref_groups if resolve_time is not None: self.resolve_time = resolve_time if resolved is not None: @@ -326,33 +321,6 @@ def last_event(self, last_event): self._last_event = last_event - @property - def ref_groups(self): - """Gets the ref_groups of this EventEventgroupOccurrencesEventgroup. # noqa: E501 - - Comma separated list of relevant log gather groups. This object will be absent in the case where no relevant logs exist. # noqa: E501 - - :return: The ref_groups of this EventEventgroupOccurrencesEventgroup. # noqa: E501 - :rtype: str - """ - return self._ref_groups - - @ref_groups.setter - def ref_groups(self, ref_groups): - """Sets the ref_groups of this EventEventgroupOccurrencesEventgroup. - - Comma separated list of relevant log gather groups. This object will be absent in the case where no relevant logs exist. # noqa: E501 - - :param ref_groups: The ref_groups of this EventEventgroupOccurrencesEventgroup. # noqa: E501 - :type: str - """ - if ref_groups is not None and len(ref_groups) > 255: - raise ValueError("Invalid value for `ref_groups`, length must be less than or equal to `255`") # noqa: E501 - if ref_groups is not None and len(ref_groups) < 0: - raise ValueError("Invalid value for `ref_groups`, length must be greater than or equal to `0`") # noqa: E501 - - self._ref_groups = ref_groups - @property def resolve_time(self): """Gets the resolve_time of this EventEventgroupOccurrencesEventgroup. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_eventgroup_occurrences_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_eventgroup_occurrences_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_eventgroup_occurrences_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_eventgroup_occurrences_extended.py index bc3382027..3918efb81 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_eventgroup_occurrences_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_eventgroup_occurrences_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_eventlist.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_eventlist.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_eventlist.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_eventlist.py index e1f5bc6c0..12973bdca 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_eventlist.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_eventlist.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_eventlist_event.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_eventlist_event.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_eventlist_event.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_eventlist_event.py index 3f7b3e2a9..08817ec8e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_eventlist_event.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_eventlist_event.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_eventlists.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_eventlists.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_eventlists.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_eventlists.py index 0bd4cba2c..a2aa78b25 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_eventlists.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_eventlists.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_eventlists_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_eventlists_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_eventlists_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_eventlists_extended.py index 1d6258c13..b64398461 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_eventlists_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_eventlists_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_maintenance.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_maintenance.py similarity index 91% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_maintenance.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_maintenance.py index 8b5e0f46e..0a6194dab 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_maintenance.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_maintenance.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,7 +31,7 @@ class EventMaintenance(object): and the value is json key in definition. """ swagger_types = { - 'history': 'list[EventMaintenanceHistoryItem]', + 'history': 'list[int]', 'maintenance': 'bool' } @@ -56,10 +56,10 @@ def __init__(self, history=None, maintenance=None): # noqa: E501 def history(self): """Gets the history of this EventMaintenance. # noqa: E501 - History list of CELOG maintenance mode windows. # noqa: E501 + Start and stop times of maintenance mode, 'end' equals 0 indicates that maintenance mode is enabled. # noqa: E501 :return: The history of this EventMaintenance. # noqa: E501 - :rtype: list[EventMaintenanceHistoryItem] + :rtype: list[int] """ return self._history @@ -67,10 +67,10 @@ def history(self): def history(self, history): """Sets the history of this EventMaintenance. - History list of CELOG maintenance mode windows. # noqa: E501 + Start and stop times of maintenance mode, 'end' equals 0 indicates that maintenance mode is enabled. # noqa: E501 :param history: The history of this EventMaintenance. # noqa: E501 - :type: list[EventMaintenanceHistoryItem] + :type: list[int] """ self._history = history diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_maintenance_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_maintenance_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_maintenance_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_maintenance_extended.py index 873b97f38..e61434a6e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_maintenance_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_maintenance_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_settings.py index de0f9cb5f..933f458c1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_settings_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_settings_settings.py index 68c27224c..6fae86e5a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_suppress.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_suppress.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_suppress.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_suppress.py index 63c495dc7..6efdbcf06 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_suppress.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_suppress.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_suppress_id_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_suppress_id_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_suppress_id_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_suppress_id_params.py index ee7bb1f94..f8789946e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_suppress_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_suppress_id_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/keymanager_cluster_domain.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_suppress_suppression.py similarity index 81% rename from isilon_sdk/isilon_sdk/v9_11_0/models/keymanager_cluster_domain.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_suppress_suppression.py index 864b43602..f8369b780 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/keymanager_cluster_domain.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_suppress_suppression.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class KeymanagerClusterDomain(object): +class EventSuppressSuppression(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -39,7 +39,7 @@ class KeymanagerClusterDomain(object): } def __init__(self, id=None): # noqa: E501 - """KeymanagerClusterDomain - a model defined in Swagger""" # noqa: E501 + """EventSuppressSuppression - a model defined in Swagger""" # noqa: E501 self._id = None self.discriminator = None @@ -49,22 +49,22 @@ def __init__(self, id=None): # noqa: E501 @property def id(self): - """Gets the id of this KeymanagerClusterDomain. # noqa: E501 + """Gets the id of this EventSuppressSuppression. # noqa: E501 - The name of a keymanager cluster domain. # noqa: E501 + Unique event identifier. # noqa: E501 - :return: The id of this KeymanagerClusterDomain. # noqa: E501 + :return: The id of this EventSuppressSuppression. # noqa: E501 :rtype: str """ return self._id @id.setter def id(self, id): - """Sets the id of this KeymanagerClusterDomain. + """Sets the id of this EventSuppressSuppression. - The name of a keymanager cluster domain. # noqa: E501 + Unique event identifier. # noqa: E501 - :param id: The id of this KeymanagerClusterDomain. # noqa: E501 + :param id: The id of this EventSuppressSuppression. # noqa: E501 :type: str """ if id is not None and len(id) > 255: @@ -95,7 +95,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(KeymanagerClusterDomain, dict): + if issubclass(EventSuppressSuppression, dict): for key, value in self.items(): result[key] = value @@ -111,7 +111,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, KeymanagerClusterDomain): + if not isinstance(other, EventSuppressSuppression): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_threshold.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_threshold.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_threshold.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_threshold.py index aa40bc0d8..057347ca3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_threshold.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_threshold.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_threshold_defaults.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_threshold_defaults.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_threshold_defaults.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_threshold_defaults.py index 42cda435e..9eaffaace 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_threshold_defaults.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_threshold_defaults.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_threshold_defaults_crit.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_threshold_defaults_crit.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_threshold_defaults_crit.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_threshold_defaults_crit.py index 4317d2a37..5396468a5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_threshold_defaults_crit.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_threshold_defaults_crit.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_threshold_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_threshold_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_threshold_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_threshold_extended.py index 3efc2ca22..7e5a7f552 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_threshold_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_threshold_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/event_thresholds.py b/isilon_sdk/isilon_sdk/v9_4_0/models/event_thresholds.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/event_thresholds.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/event_thresholds.py index 672da1711..316580871 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/event_thresholds.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/event_thresholds.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/file_filter_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/file_filter_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/file_filter_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/file_filter_settings.py index 68919b4c1..f34868061 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/file_filter_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/file_filter_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/file_filter_settings_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/file_filter_settings_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/file_filter_settings_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/file_filter_settings_extended.py index 2554fa8d7..bd71278f5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/file_filter_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/file_filter_settings_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/file_filter_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/file_filter_settings_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/file_filter_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/file_filter_settings_settings.py index 5a5b52eba..6c77018b6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/file_filter_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/file_filter_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_default_policy.py b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_default_policy.py similarity index 95% rename from isilon_sdk/isilon_sdk/v9_11_0/models/filepool_default_policy.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/filepool_default_policy.py index e3586a98f..6a1650d4b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_default_policy.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_default_policy.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -51,7 +51,7 @@ def __init__(self, default_policy=None): # noqa: E501 def default_policy(self): """Gets the default_policy of this FilepoolDefaultPolicy. # noqa: E501 - A default filepool policy object. # noqa: E501 + A default filepool policy object # noqa: E501 :return: The default_policy of this FilepoolDefaultPolicy. # noqa: E501 :rtype: FilepoolDefaultPolicyDefaultPolicy @@ -62,7 +62,7 @@ def default_policy(self): def default_policy(self, default_policy): """Sets the default_policy of this FilepoolDefaultPolicy. - A default filepool policy object. # noqa: E501 + A default filepool policy object # noqa: E501 :param default_policy: The default_policy of this FilepoolDefaultPolicy. # noqa: E501 :type: FilepoolDefaultPolicyDefaultPolicy diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_default_policy_default_policy.py b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_default_policy_default_policy.py similarity index 95% rename from isilon_sdk/isilon_sdk/v9_11_0/models/filepool_default_policy_default_policy.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/filepool_default_policy_default_policy.py index 762799af9..1f317f811 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_default_policy_default_policy.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_default_policy_default_policy.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -51,7 +51,7 @@ def __init__(self, actions=None): # noqa: E501 def actions(self): """Gets the actions of this FilepoolDefaultPolicyDefaultPolicy. # noqa: E501 - A list of actions to be taken for matching files. # noqa: E501 + A list of actions to be taken for matching files # noqa: E501 :return: The actions of this FilepoolDefaultPolicyDefaultPolicy. # noqa: E501 :rtype: list[FilepoolDefaultPolicyDefaultPolicyAction] @@ -62,7 +62,7 @@ def actions(self): def actions(self, actions): """Sets the actions of this FilepoolDefaultPolicyDefaultPolicy. - A list of actions to be taken for matching files. # noqa: E501 + A list of actions to be taken for matching files # noqa: E501 :param actions: The actions of this FilepoolDefaultPolicyDefaultPolicy. # noqa: E501 :type: list[FilepoolDefaultPolicyDefaultPolicyAction] diff --git a/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_default_policy_default_policy_action.py b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_default_policy_default_policy_action.py new file mode 100644 index 000000000..07fc513bd --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_default_policy_default_policy_action.py @@ -0,0 +1,150 @@ +# coding: utf-8 + +""" + Isilon SDK + + Isilon SDK - Language bindings for the OneFS API # noqa: E501 + + OpenAPI spec version: 15 + Contact: sdk@isilon.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + + +class FilepoolDefaultPolicyDefaultPolicyAction(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'action_param': 'str', + 'action_type': 'str' + } + + attribute_map = { + 'action_param': 'action_param', + 'action_type': 'action_type' + } + + def __init__(self, action_param=None, action_type=None): # noqa: E501 + """FilepoolDefaultPolicyDefaultPolicyAction - a model defined in Swagger""" # noqa: E501 + + self._action_param = None + self._action_type = None + self.discriminator = None + + if action_param is not None: + self.action_param = action_param + self.action_type = action_type + + @property + def action_param(self): + """Gets the action_param of this FilepoolDefaultPolicyDefaultPolicyAction. # noqa: E501 + + Varies according to action_type # noqa: E501 + + :return: The action_param of this FilepoolDefaultPolicyDefaultPolicyAction. # noqa: E501 + :rtype: str + """ + return self._action_param + + @action_param.setter + def action_param(self, action_param): + """Sets the action_param of this FilepoolDefaultPolicyDefaultPolicyAction. + + Varies according to action_type # noqa: E501 + + :param action_param: The action_param of this FilepoolDefaultPolicyDefaultPolicyAction. # noqa: E501 + :type: str + """ + + self._action_param = action_param + + @property + def action_type(self): + """Gets the action_type of this FilepoolDefaultPolicyDefaultPolicyAction. # noqa: E501 + + + :return: The action_type of this FilepoolDefaultPolicyDefaultPolicyAction. # noqa: E501 + :rtype: str + """ + return self._action_type + + @action_type.setter + def action_type(self, action_type): + """Sets the action_type of this FilepoolDefaultPolicyDefaultPolicyAction. + + + :param action_type: The action_type of this FilepoolDefaultPolicyDefaultPolicyAction. # noqa: E501 + :type: str + """ + if action_type is None: + raise ValueError("Invalid value for `action_type`, must not be `None`") # noqa: E501 + allowed_values = ["set_requested_protection", "set_data_access_pattern", "enable_coalescer", "apply_data_storage_policy", "apply_snapshot_storage_policy", "set_cloudpool_policy", "enable_packing"] # noqa: E501 + if action_type not in allowed_values: + raise ValueError( + "Invalid value for `action_type` ({0}), must be one of {1}" # noqa: E501 + .format(action_type, allowed_values) + ) + + self._action_type = action_type + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(FilepoolDefaultPolicyDefaultPolicyAction, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, FilepoolDefaultPolicyDefaultPolicyAction): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + """Returns true if both objects are not equal""" + return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_default_policy_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_default_policy_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/filepool_default_policy_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/filepool_default_policy_extended.py index e9dff5ebd..7601b992a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_default_policy_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_default_policy_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policies.py b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policies.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policies.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policies.py index 300f26cb4..90dab9ef5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policies.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policies.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policies_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policies_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policies_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policies_extended.py index dbb95ed51..fceae9cff 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policies_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policies_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy.py b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy.py similarity index 92% rename from isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy.py index d16fabbac..83c3c6c77 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -71,7 +71,7 @@ def __init__(self, actions=None, apply_order=None, description=None, file_matchi def actions(self): """Gets the actions of this FilepoolPolicy. # noqa: E501 - A list of actions to be taken for matching files. # noqa: E501 + A list of actions to be taken for matching files # noqa: E501 :return: The actions of this FilepoolPolicy. # noqa: E501 :rtype: list[FilepoolPolicyAction] @@ -82,7 +82,7 @@ def actions(self): def actions(self, actions): """Sets the actions of this FilepoolPolicy. - A list of actions to be taken for matching files. # noqa: E501 + A list of actions to be taken for matching files # noqa: E501 :param actions: The actions of this FilepoolPolicy. # noqa: E501 :type: list[FilepoolPolicyAction] @@ -94,7 +94,7 @@ def actions(self, actions): def apply_order(self): """Gets the apply_order of this FilepoolPolicy. # noqa: E501 - The order in which this policy should be applied (relative to other policies). # noqa: E501 + The order in which this policy should be applied (relative to other policies) # noqa: E501 :return: The apply_order of this FilepoolPolicy. # noqa: E501 :rtype: int @@ -105,7 +105,7 @@ def apply_order(self): def apply_order(self, apply_order): """Sets the apply_order of this FilepoolPolicy. - The order in which this policy should be applied (relative to other policies). # noqa: E501 + The order in which this policy should be applied (relative to other policies) # noqa: E501 :param apply_order: The apply_order of this FilepoolPolicy. # noqa: E501 :type: int @@ -121,7 +121,7 @@ def apply_order(self, apply_order): def description(self): """Gets the description of this FilepoolPolicy. # noqa: E501 - A description for this policy. # noqa: E501 + A description for this policy # noqa: E501 :return: The description of this FilepoolPolicy. # noqa: E501 :rtype: str @@ -132,7 +132,7 @@ def description(self): def description(self, description): """Sets the description of this FilepoolPolicy. - A description for this policy. # noqa: E501 + A description for this policy # noqa: E501 :param description: The description of this FilepoolPolicy. # noqa: E501 :type: str @@ -148,7 +148,7 @@ def description(self, description): def file_matching_pattern(self): """Gets the file_matching_pattern of this FilepoolPolicy. # noqa: E501 - The file matching rules for this policy. # noqa: E501 + The file matching rules for this policy # noqa: E501 :return: The file_matching_pattern of this FilepoolPolicy. # noqa: E501 :rtype: FilepoolPolicyFileMatchingPattern @@ -159,7 +159,7 @@ def file_matching_pattern(self): def file_matching_pattern(self, file_matching_pattern): """Sets the file_matching_pattern of this FilepoolPolicy. - The file matching rules for this policy. # noqa: E501 + The file matching rules for this policy # noqa: E501 :param file_matching_pattern: The file_matching_pattern of this FilepoolPolicy. # noqa: E501 :type: FilepoolPolicyFileMatchingPattern @@ -171,7 +171,7 @@ def file_matching_pattern(self, file_matching_pattern): def name(self): """Gets the name of this FilepoolPolicy. # noqa: E501 - A unique name for this policy. # noqa: E501 + A unique name for this policy # noqa: E501 :return: The name of this FilepoolPolicy. # noqa: E501 :rtype: str @@ -182,7 +182,7 @@ def name(self): def name(self, name): """Sets the name of this FilepoolPolicy. - A unique name for this policy. # noqa: E501 + A unique name for this policy # noqa: E501 :param name: The name of this FilepoolPolicy. # noqa: E501 :type: str diff --git a/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy_action.py b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy_action.py new file mode 100644 index 000000000..93dc8b934 --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy_action.py @@ -0,0 +1,151 @@ +# coding: utf-8 + +""" + Isilon SDK + + Isilon SDK - Language bindings for the OneFS API # noqa: E501 + + OpenAPI spec version: 15 + Contact: sdk@isilon.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + + +class FilepoolPolicyAction(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'action_param': 'str', + 'action_type': 'str' + } + + attribute_map = { + 'action_param': 'action_param', + 'action_type': 'action_type' + } + + def __init__(self, action_param=None, action_type=None): # noqa: E501 + """FilepoolPolicyAction - a model defined in Swagger""" # noqa: E501 + + self._action_param = None + self._action_type = None + self.discriminator = None + + self.action_param = action_param + self.action_type = action_type + + @property + def action_param(self): + """Gets the action_param of this FilepoolPolicyAction. # noqa: E501 + + Varies according to action_type # noqa: E501 + + :return: The action_param of this FilepoolPolicyAction. # noqa: E501 + :rtype: str + """ + return self._action_param + + @action_param.setter + def action_param(self, action_param): + """Sets the action_param of this FilepoolPolicyAction. + + Varies according to action_type # noqa: E501 + + :param action_param: The action_param of this FilepoolPolicyAction. # noqa: E501 + :type: str + """ + if action_param is None: + raise ValueError("Invalid value for `action_param`, must not be `None`") # noqa: E501 + + self._action_param = action_param + + @property + def action_type(self): + """Gets the action_type of this FilepoolPolicyAction. # noqa: E501 + + + :return: The action_type of this FilepoolPolicyAction. # noqa: E501 + :rtype: str + """ + return self._action_type + + @action_type.setter + def action_type(self, action_type): + """Sets the action_type of this FilepoolPolicyAction. + + + :param action_type: The action_type of this FilepoolPolicyAction. # noqa: E501 + :type: str + """ + if action_type is None: + raise ValueError("Invalid value for `action_type`, must not be `None`") # noqa: E501 + allowed_values = ["set_requested_protection", "set_data_access_pattern", "enable_coalescer", "apply_data_storage_policy", "apply_snapshot_storage_policy", "set_cloudpool_policy", "enable_packing"] # noqa: E501 + if action_type not in allowed_values: + raise ValueError( + "Invalid value for `action_type` ({0}), must be one of {1}" # noqa: E501 + .format(action_type, allowed_values) + ) + + self._action_type = action_type + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(FilepoolPolicyAction, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, FilepoolPolicyAction): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + """Returns true if both objects are not equal""" + return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy_action_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy_action_extended.py new file mode 100644 index 000000000..0f6107c54 --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy_action_extended.py @@ -0,0 +1,150 @@ +# coding: utf-8 + +""" + Isilon SDK + + Isilon SDK - Language bindings for the OneFS API # noqa: E501 + + OpenAPI spec version: 15 + Contact: sdk@isilon.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + + +class FilepoolPolicyActionExtended(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'action_param': 'str', + 'action_type': 'str' + } + + attribute_map = { + 'action_param': 'action_param', + 'action_type': 'action_type' + } + + def __init__(self, action_param=None, action_type=None): # noqa: E501 + """FilepoolPolicyActionExtended - a model defined in Swagger""" # noqa: E501 + + self._action_param = None + self._action_type = None + self.discriminator = None + + if action_param is not None: + self.action_param = action_param + self.action_type = action_type + + @property + def action_param(self): + """Gets the action_param of this FilepoolPolicyActionExtended. # noqa: E501 + + Varies according to action_type # noqa: E501 + + :return: The action_param of this FilepoolPolicyActionExtended. # noqa: E501 + :rtype: str + """ + return self._action_param + + @action_param.setter + def action_param(self, action_param): + """Sets the action_param of this FilepoolPolicyActionExtended. + + Varies according to action_type # noqa: E501 + + :param action_param: The action_param of this FilepoolPolicyActionExtended. # noqa: E501 + :type: str + """ + + self._action_param = action_param + + @property + def action_type(self): + """Gets the action_type of this FilepoolPolicyActionExtended. # noqa: E501 + + + :return: The action_type of this FilepoolPolicyActionExtended. # noqa: E501 + :rtype: str + """ + return self._action_type + + @action_type.setter + def action_type(self, action_type): + """Sets the action_type of this FilepoolPolicyActionExtended. + + + :param action_type: The action_type of this FilepoolPolicyActionExtended. # noqa: E501 + :type: str + """ + if action_type is None: + raise ValueError("Invalid value for `action_type`, must not be `None`") # noqa: E501 + allowed_values = ["set_requested_protection", "set_data_access_pattern", "enable_coalescer", "apply_data_storage_policy", "apply_snapshot_storage_policy", "set_cloudpool_policy", "enable_packing"] # noqa: E501 + if action_type not in allowed_values: + raise ValueError( + "Invalid value for `action_type` ({0}), must be one of {1}" # noqa: E501 + .format(action_type, allowed_values) + ) + + self._action_type = action_type + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(FilepoolPolicyActionExtended, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, FilepoolPolicyActionExtended): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + """Returns true if both objects are not equal""" + return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy_action_extended_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy_action_extended_extended.py new file mode 100644 index 000000000..2ff24238c --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy_action_extended_extended.py @@ -0,0 +1,150 @@ +# coding: utf-8 + +""" + Isilon SDK + + Isilon SDK - Language bindings for the OneFS API # noqa: E501 + + OpenAPI spec version: 15 + Contact: sdk@isilon.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + + +class FilepoolPolicyActionExtendedExtended(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'action_param': 'str', + 'action_type': 'str' + } + + attribute_map = { + 'action_param': 'action_param', + 'action_type': 'action_type' + } + + def __init__(self, action_param=None, action_type=None): # noqa: E501 + """FilepoolPolicyActionExtendedExtended - a model defined in Swagger""" # noqa: E501 + + self._action_param = None + self._action_type = None + self.discriminator = None + + if action_param is not None: + self.action_param = action_param + self.action_type = action_type + + @property + def action_param(self): + """Gets the action_param of this FilepoolPolicyActionExtendedExtended. # noqa: E501 + + Varies according to action_type # noqa: E501 + + :return: The action_param of this FilepoolPolicyActionExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._action_param + + @action_param.setter + def action_param(self, action_param): + """Sets the action_param of this FilepoolPolicyActionExtendedExtended. + + Varies according to action_type # noqa: E501 + + :param action_param: The action_param of this FilepoolPolicyActionExtendedExtended. # noqa: E501 + :type: str + """ + + self._action_param = action_param + + @property + def action_type(self): + """Gets the action_type of this FilepoolPolicyActionExtendedExtended. # noqa: E501 + + + :return: The action_type of this FilepoolPolicyActionExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._action_type + + @action_type.setter + def action_type(self, action_type): + """Sets the action_type of this FilepoolPolicyActionExtendedExtended. + + + :param action_type: The action_type of this FilepoolPolicyActionExtendedExtended. # noqa: E501 + :type: str + """ + if action_type is None: + raise ValueError("Invalid value for `action_type`, must not be `None`") # noqa: E501 + allowed_values = ["set_requested_protection", "set_data_access_pattern", "enable_coalescer", "apply_data_storage_policy", "apply_snapshot_storage_policy", "set_cloudpool_policy", "enable_packing"] # noqa: E501 + if action_type not in allowed_values: + raise ValueError( + "Invalid value for `action_type` ({0}), must be one of {1}" # noqa: E501 + .format(action_type, allowed_values) + ) + + self._action_type = action_type + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(FilepoolPolicyActionExtendedExtended, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, FilepoolPolicyActionExtendedExtended): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + """Returns true if both objects are not equal""" + return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy_create_params.py similarity index 93% rename from isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy_create_params.py index ae430fb93..06b78b033 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -69,7 +69,7 @@ def __init__(self, actions=None, apply_order=None, description=None, file_matchi def actions(self): """Gets the actions of this FilepoolPolicyCreateParams. # noqa: E501 - A list of actions to be taken for matching files. # noqa: E501 + A list of actions to be taken for matching files # noqa: E501 :return: The actions of this FilepoolPolicyCreateParams. # noqa: E501 :rtype: list[FilepoolPolicyAction] @@ -80,7 +80,7 @@ def actions(self): def actions(self, actions): """Sets the actions of this FilepoolPolicyCreateParams. - A list of actions to be taken for matching files. # noqa: E501 + A list of actions to be taken for matching files # noqa: E501 :param actions: The actions of this FilepoolPolicyCreateParams. # noqa: E501 :type: list[FilepoolPolicyAction] @@ -92,7 +92,7 @@ def actions(self, actions): def apply_order(self): """Gets the apply_order of this FilepoolPolicyCreateParams. # noqa: E501 - The order in which this policy should be applied (relative to other policies). # noqa: E501 + The order in which this policy should be applied (relative to other policies) # noqa: E501 :return: The apply_order of this FilepoolPolicyCreateParams. # noqa: E501 :rtype: int @@ -103,7 +103,7 @@ def apply_order(self): def apply_order(self, apply_order): """Sets the apply_order of this FilepoolPolicyCreateParams. - The order in which this policy should be applied (relative to other policies). # noqa: E501 + The order in which this policy should be applied (relative to other policies) # noqa: E501 :param apply_order: The apply_order of this FilepoolPolicyCreateParams. # noqa: E501 :type: int @@ -119,7 +119,7 @@ def apply_order(self, apply_order): def description(self): """Gets the description of this FilepoolPolicyCreateParams. # noqa: E501 - A description for this policy. # noqa: E501 + A description for this policy # noqa: E501 :return: The description of this FilepoolPolicyCreateParams. # noqa: E501 :rtype: str @@ -130,7 +130,7 @@ def description(self): def description(self, description): """Sets the description of this FilepoolPolicyCreateParams. - A description for this policy. # noqa: E501 + A description for this policy # noqa: E501 :param description: The description of this FilepoolPolicyCreateParams. # noqa: E501 :type: str @@ -146,7 +146,7 @@ def description(self, description): def file_matching_pattern(self): """Gets the file_matching_pattern of this FilepoolPolicyCreateParams. # noqa: E501 - The file matching rules for this policy. # noqa: E501 + The file matching rules for this policy # noqa: E501 :return: The file_matching_pattern of this FilepoolPolicyCreateParams. # noqa: E501 :rtype: FilepoolPolicyFileMatchingPattern @@ -157,7 +157,7 @@ def file_matching_pattern(self): def file_matching_pattern(self, file_matching_pattern): """Sets the file_matching_pattern of this FilepoolPolicyCreateParams. - The file matching rules for this policy. # noqa: E501 + The file matching rules for this policy # noqa: E501 :param file_matching_pattern: The file_matching_pattern of this FilepoolPolicyCreateParams. # noqa: E501 :type: FilepoolPolicyFileMatchingPattern @@ -171,7 +171,7 @@ def file_matching_pattern(self, file_matching_pattern): def name(self): """Gets the name of this FilepoolPolicyCreateParams. # noqa: E501 - A unique name for this policy. # noqa: E501 + A unique name for this policy # noqa: E501 :return: The name of this FilepoolPolicyCreateParams. # noqa: E501 :rtype: str @@ -182,7 +182,7 @@ def name(self): def name(self, name): """Sets the name of this FilepoolPolicyCreateParams. - A unique name for this policy. # noqa: E501 + A unique name for this policy # noqa: E501 :param name: The name of this FilepoolPolicyCreateParams. # noqa: E501 :type: str diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy_extended.py similarity index 93% rename from isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy_extended.py index 20d212395..4b0e00688 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -91,7 +91,7 @@ def __init__(self, actions=None, apply_order=None, birth_cluster_id=None, descri def actions(self): """Gets the actions of this FilepoolPolicyExtended. # noqa: E501 - A list of actions to be taken for matching files. # noqa: E501 + A list of actions to be taken for matching files # noqa: E501 :return: The actions of this FilepoolPolicyExtended. # noqa: E501 :rtype: list[FilepoolPolicyActionExtended] @@ -102,7 +102,7 @@ def actions(self): def actions(self, actions): """Sets the actions of this FilepoolPolicyExtended. - A list of actions to be taken for matching files. # noqa: E501 + A list of actions to be taken for matching files # noqa: E501 :param actions: The actions of this FilepoolPolicyExtended. # noqa: E501 :type: list[FilepoolPolicyActionExtended] @@ -114,7 +114,7 @@ def actions(self, actions): def apply_order(self): """Gets the apply_order of this FilepoolPolicyExtended. # noqa: E501 - The order in which this policy should be applied (relative to other policies). # noqa: E501 + The order in which this policy should be applied (relative to other policies) # noqa: E501 :return: The apply_order of this FilepoolPolicyExtended. # noqa: E501 :rtype: int @@ -125,7 +125,7 @@ def apply_order(self): def apply_order(self, apply_order): """Sets the apply_order of this FilepoolPolicyExtended. - The order in which this policy should be applied (relative to other policies). # noqa: E501 + The order in which this policy should be applied (relative to other policies) # noqa: E501 :param apply_order: The apply_order of this FilepoolPolicyExtended. # noqa: E501 :type: int @@ -141,7 +141,7 @@ def apply_order(self, apply_order): def birth_cluster_id(self): """Gets the birth_cluster_id of this FilepoolPolicyExtended. # noqa: E501 - The guid assigned to the cluster on which the policy was created. # noqa: E501 + The guid assigned to the cluster on which the policy was created # noqa: E501 :return: The birth_cluster_id of this FilepoolPolicyExtended. # noqa: E501 :rtype: str @@ -152,7 +152,7 @@ def birth_cluster_id(self): def birth_cluster_id(self, birth_cluster_id): """Sets the birth_cluster_id of this FilepoolPolicyExtended. - The guid assigned to the cluster on which the policy was created. # noqa: E501 + The guid assigned to the cluster on which the policy was created # noqa: E501 :param birth_cluster_id: The birth_cluster_id of this FilepoolPolicyExtended. # noqa: E501 :type: str @@ -168,7 +168,7 @@ def birth_cluster_id(self, birth_cluster_id): def description(self): """Gets the description of this FilepoolPolicyExtended. # noqa: E501 - A description for this policy. # noqa: E501 + A description for this policy # noqa: E501 :return: The description of this FilepoolPolicyExtended. # noqa: E501 :rtype: str @@ -179,7 +179,7 @@ def description(self): def description(self, description): """Sets the description of this FilepoolPolicyExtended. - A description for this policy. # noqa: E501 + A description for this policy # noqa: E501 :param description: The description of this FilepoolPolicyExtended. # noqa: E501 :type: str @@ -195,7 +195,7 @@ def description(self, description): def file_matching_pattern(self): """Gets the file_matching_pattern of this FilepoolPolicyExtended. # noqa: E501 - The file matching rules for this policy. # noqa: E501 + The file matching rules for this policy # noqa: E501 :return: The file_matching_pattern of this FilepoolPolicyExtended. # noqa: E501 :rtype: FilepoolPolicyFileMatchingPattern @@ -206,7 +206,7 @@ def file_matching_pattern(self): def file_matching_pattern(self, file_matching_pattern): """Sets the file_matching_pattern of this FilepoolPolicyExtended. - The file matching rules for this policy. # noqa: E501 + The file matching rules for this policy # noqa: E501 :param file_matching_pattern: The file_matching_pattern of this FilepoolPolicyExtended. # noqa: E501 :type: FilepoolPolicyFileMatchingPattern @@ -218,7 +218,7 @@ def file_matching_pattern(self, file_matching_pattern): def id(self): """Gets the id of this FilepoolPolicyExtended. # noqa: E501 - A unique name for this policy. # noqa: E501 + A unique name for this policy # noqa: E501 :return: The id of this FilepoolPolicyExtended. # noqa: E501 :rtype: str @@ -229,7 +229,7 @@ def id(self): def id(self, id): """Sets the id of this FilepoolPolicyExtended. - A unique name for this policy. # noqa: E501 + A unique name for this policy # noqa: E501 :param id: The id of this FilepoolPolicyExtended. # noqa: E501 :type: str @@ -245,7 +245,7 @@ def id(self, id): def name(self): """Gets the name of this FilepoolPolicyExtended. # noqa: E501 - A unique name for this policy. # noqa: E501 + A unique name for this policy # noqa: E501 :return: The name of this FilepoolPolicyExtended. # noqa: E501 :rtype: str @@ -256,7 +256,7 @@ def name(self): def name(self, name): """Sets the name of this FilepoolPolicyExtended. - A unique name for this policy. # noqa: E501 + A unique name for this policy # noqa: E501 :param name: The name of this FilepoolPolicyExtended. # noqa: E501 :type: str @@ -272,7 +272,7 @@ def name(self, name): def state(self): """Gets the state of this FilepoolPolicyExtended. # noqa: E501 - Indicates whether this policy is in a good state (\"OK\") or disabled (\"disabled\"). # noqa: E501 + Indicates whether this policy is in a good state (\"OK\") or disabled (\"disabled\") # noqa: E501 :return: The state of this FilepoolPolicyExtended. # noqa: E501 :rtype: str @@ -283,7 +283,7 @@ def state(self): def state(self, state): """Sets the state of this FilepoolPolicyExtended. - Indicates whether this policy is in a good state (\"OK\") or disabled (\"disabled\"). # noqa: E501 + Indicates whether this policy is in a good state (\"OK\") or disabled (\"disabled\") # noqa: E501 :param state: The state of this FilepoolPolicyExtended. # noqa: E501 :type: str @@ -301,7 +301,7 @@ def state(self, state): def state_details(self): """Gets the state_details of this FilepoolPolicyExtended. # noqa: E501 - Gives further information to describe the state of this policy. # noqa: E501 + Gives further information to describe the state of this policy # noqa: E501 :return: The state_details of this FilepoolPolicyExtended. # noqa: E501 :rtype: str @@ -312,7 +312,7 @@ def state_details(self): def state_details(self, state_details): """Sets the state_details of this FilepoolPolicyExtended. - Gives further information to describe the state of this policy. # noqa: E501 + Gives further information to describe the state of this policy # noqa: E501 :param state_details: The state_details of this FilepoolPolicyExtended. # noqa: E501 :type: str diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy_extended_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy_extended_extended.py similarity index 93% rename from isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy_extended_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy_extended_extended.py index e37670dea..07f5c3b24 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy_extended_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy_extended_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -91,7 +91,7 @@ def __init__(self, actions=None, apply_order=None, birth_cluster_id=None, descri def actions(self): """Gets the actions of this FilepoolPolicyExtendedExtended. # noqa: E501 - A list of actions to be taken for matching files. # noqa: E501 + A list of actions to be taken for matching files # noqa: E501 :return: The actions of this FilepoolPolicyExtendedExtended. # noqa: E501 :rtype: list[FilepoolPolicyActionExtendedExtended] @@ -102,7 +102,7 @@ def actions(self): def actions(self, actions): """Sets the actions of this FilepoolPolicyExtendedExtended. - A list of actions to be taken for matching files. # noqa: E501 + A list of actions to be taken for matching files # noqa: E501 :param actions: The actions of this FilepoolPolicyExtendedExtended. # noqa: E501 :type: list[FilepoolPolicyActionExtendedExtended] @@ -114,7 +114,7 @@ def actions(self, actions): def apply_order(self): """Gets the apply_order of this FilepoolPolicyExtendedExtended. # noqa: E501 - The order in which this policy should be applied (relative to other policies). # noqa: E501 + The order in which this policy should be applied (relative to other policies) # noqa: E501 :return: The apply_order of this FilepoolPolicyExtendedExtended. # noqa: E501 :rtype: int @@ -125,7 +125,7 @@ def apply_order(self): def apply_order(self, apply_order): """Sets the apply_order of this FilepoolPolicyExtendedExtended. - The order in which this policy should be applied (relative to other policies). # noqa: E501 + The order in which this policy should be applied (relative to other policies) # noqa: E501 :param apply_order: The apply_order of this FilepoolPolicyExtendedExtended. # noqa: E501 :type: int @@ -141,7 +141,7 @@ def apply_order(self, apply_order): def birth_cluster_id(self): """Gets the birth_cluster_id of this FilepoolPolicyExtendedExtended. # noqa: E501 - The guid assigned to the cluster on which the policy was created. # noqa: E501 + The guid assigned to the cluster on which the policy was created # noqa: E501 :return: The birth_cluster_id of this FilepoolPolicyExtendedExtended. # noqa: E501 :rtype: str @@ -152,7 +152,7 @@ def birth_cluster_id(self): def birth_cluster_id(self, birth_cluster_id): """Sets the birth_cluster_id of this FilepoolPolicyExtendedExtended. - The guid assigned to the cluster on which the policy was created. # noqa: E501 + The guid assigned to the cluster on which the policy was created # noqa: E501 :param birth_cluster_id: The birth_cluster_id of this FilepoolPolicyExtendedExtended. # noqa: E501 :type: str @@ -168,7 +168,7 @@ def birth_cluster_id(self, birth_cluster_id): def description(self): """Gets the description of this FilepoolPolicyExtendedExtended. # noqa: E501 - A description for this policy. # noqa: E501 + A description for this policy # noqa: E501 :return: The description of this FilepoolPolicyExtendedExtended. # noqa: E501 :rtype: str @@ -179,7 +179,7 @@ def description(self): def description(self, description): """Sets the description of this FilepoolPolicyExtendedExtended. - A description for this policy. # noqa: E501 + A description for this policy # noqa: E501 :param description: The description of this FilepoolPolicyExtendedExtended. # noqa: E501 :type: str @@ -195,7 +195,7 @@ def description(self, description): def file_matching_pattern(self): """Gets the file_matching_pattern of this FilepoolPolicyExtendedExtended. # noqa: E501 - The file matching rules for this policy. # noqa: E501 + The file matching rules for this policy # noqa: E501 :return: The file_matching_pattern of this FilepoolPolicyExtendedExtended. # noqa: E501 :rtype: FilepoolPolicyFileMatchingPattern @@ -206,7 +206,7 @@ def file_matching_pattern(self): def file_matching_pattern(self, file_matching_pattern): """Sets the file_matching_pattern of this FilepoolPolicyExtendedExtended. - The file matching rules for this policy. # noqa: E501 + The file matching rules for this policy # noqa: E501 :param file_matching_pattern: The file_matching_pattern of this FilepoolPolicyExtendedExtended. # noqa: E501 :type: FilepoolPolicyFileMatchingPattern @@ -218,7 +218,7 @@ def file_matching_pattern(self, file_matching_pattern): def id(self): """Gets the id of this FilepoolPolicyExtendedExtended. # noqa: E501 - A unique name for this policy. # noqa: E501 + A unique name for this policy # noqa: E501 :return: The id of this FilepoolPolicyExtendedExtended. # noqa: E501 :rtype: str @@ -229,7 +229,7 @@ def id(self): def id(self, id): """Sets the id of this FilepoolPolicyExtendedExtended. - A unique name for this policy. # noqa: E501 + A unique name for this policy # noqa: E501 :param id: The id of this FilepoolPolicyExtendedExtended. # noqa: E501 :type: str @@ -245,7 +245,7 @@ def id(self, id): def name(self): """Gets the name of this FilepoolPolicyExtendedExtended. # noqa: E501 - A unique name for this policy. # noqa: E501 + A unique name for this policy # noqa: E501 :return: The name of this FilepoolPolicyExtendedExtended. # noqa: E501 :rtype: str @@ -256,7 +256,7 @@ def name(self): def name(self, name): """Sets the name of this FilepoolPolicyExtendedExtended. - A unique name for this policy. # noqa: E501 + A unique name for this policy # noqa: E501 :param name: The name of this FilepoolPolicyExtendedExtended. # noqa: E501 :type: str @@ -272,7 +272,7 @@ def name(self, name): def state(self): """Gets the state of this FilepoolPolicyExtendedExtended. # noqa: E501 - Indicates whether this policy is in a good state (\"OK\") or disabled (\"disabled\"). # noqa: E501 + Indicates whether this policy is in a good state (\"OK\") or disabled (\"disabled\") # noqa: E501 :return: The state of this FilepoolPolicyExtendedExtended. # noqa: E501 :rtype: str @@ -283,7 +283,7 @@ def state(self): def state(self, state): """Sets the state of this FilepoolPolicyExtendedExtended. - Indicates whether this policy is in a good state (\"OK\") or disabled (\"disabled\"). # noqa: E501 + Indicates whether this policy is in a good state (\"OK\") or disabled (\"disabled\") # noqa: E501 :param state: The state of this FilepoolPolicyExtendedExtended. # noqa: E501 :type: str @@ -301,7 +301,7 @@ def state(self, state): def state_details(self): """Gets the state_details of this FilepoolPolicyExtendedExtended. # noqa: E501 - Gives further information to describe the state of this policy. # noqa: E501 + Gives further information to describe the state of this policy # noqa: E501 :return: The state_details of this FilepoolPolicyExtendedExtended. # noqa: E501 :rtype: str @@ -312,7 +312,7 @@ def state_details(self): def state_details(self, state_details): """Sets the state_details of this FilepoolPolicyExtendedExtended. - Gives further information to describe the state of this policy. # noqa: E501 + Gives further information to describe the state of this policy # noqa: E501 :param state_details: The state_details of this FilepoolPolicyExtendedExtended. # noqa: E501 :type: str diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy_file_matching_pattern.py b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy_file_matching_pattern.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy_file_matching_pattern.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy_file_matching_pattern.py index 6d9075f7c..3779df372 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy_file_matching_pattern.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy_file_matching_pattern.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy_file_matching_pattern_or_criteria_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy_file_matching_pattern_or_criteria_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy_file_matching_pattern_or_criteria_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy_file_matching_pattern_or_criteria_item.py index 144ae6160..ba337176c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy_file_matching_pattern_or_criteria_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy_file_matching_pattern_or_criteria_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy_file_matching_pattern_or_criteria_item_and_criteria_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy_file_matching_pattern_or_criteria_item_and_criteria_item.py similarity index 91% rename from isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy_file_matching_pattern_or_criteria_item_and_criteria_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy_file_matching_pattern_or_criteria_item_and_criteria_item.py index 0b33a6697..a113671ca 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_policy_file_matching_pattern_or_criteria_item_and_criteria_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_policy_file_matching_pattern_or_criteria_item_and_criteria_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -90,7 +90,7 @@ def __init__(self, attribute_exists=None, begins_with=None, case_sensitive=None, def attribute_exists(self): """Gets the attribute_exists of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. # noqa: E501 - Indicates whether the existence of an attribute indicates a match (valid only with 'type' = 'custom_attribute'). # noqa: E501 + Indicates whether the existence of an attribute indicates a match (valid only with 'type' = 'custom_attribute') # noqa: E501 :return: The attribute_exists of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. # noqa: E501 :rtype: bool @@ -101,7 +101,7 @@ def attribute_exists(self): def attribute_exists(self, attribute_exists): """Sets the attribute_exists of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. - Indicates whether the existence of an attribute indicates a match (valid only with 'type' = 'custom_attribute'). # noqa: E501 + Indicates whether the existence of an attribute indicates a match (valid only with 'type' = 'custom_attribute') # noqa: E501 :param attribute_exists: The attribute_exists of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. # noqa: E501 :type: bool @@ -113,7 +113,7 @@ def attribute_exists(self, attribute_exists): def begins_with(self): """Gets the begins_with of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. # noqa: E501 - True to match the path exactly, False to match any subtree. (valid only with 'type' = 'path'). # noqa: E501 + True to match the path exactly, False to match any subtree. (valid only with 'type' = 'path') # noqa: E501 :return: The begins_with of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. # noqa: E501 :rtype: bool @@ -124,7 +124,7 @@ def begins_with(self): def begins_with(self, begins_with): """Sets the begins_with of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. - True to match the path exactly, False to match any subtree. (valid only with 'type' = 'path'). # noqa: E501 + True to match the path exactly, False to match any subtree. (valid only with 'type' = 'path') # noqa: E501 :param begins_with: The begins_with of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. # noqa: E501 :type: bool @@ -136,7 +136,7 @@ def begins_with(self, begins_with): def case_sensitive(self): """Gets the case_sensitive of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. # noqa: E501 - True to indicate case sensitivity when comparing file attributes (valid only with 'type' = 'name' or 'type' = 'path'). # noqa: E501 + True to indicate case sensitivity when comparing file attributes (valid only with 'type' = 'name' or 'type' = 'path') # noqa: E501 :return: The case_sensitive of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. # noqa: E501 :rtype: bool @@ -147,7 +147,7 @@ def case_sensitive(self): def case_sensitive(self, case_sensitive): """Sets the case_sensitive of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. - True to indicate case sensitivity when comparing file attributes (valid only with 'type' = 'name' or 'type' = 'path'). # noqa: E501 + True to indicate case sensitivity when comparing file attributes (valid only with 'type' = 'name' or 'type' = 'path') # noqa: E501 :param case_sensitive: The case_sensitive of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. # noqa: E501 :type: bool @@ -159,7 +159,7 @@ def case_sensitive(self, case_sensitive): def field(self): """Gets the field of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. # noqa: E501 - File attribute field name to be compared in a custom comparison (valid only with 'type' = 'custom_attribute'). # noqa: E501 + File attribute field name to be compared in a custom comparison (valid only with 'type' = 'custom_attribute') # noqa: E501 :return: The field of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. # noqa: E501 :rtype: str @@ -170,7 +170,7 @@ def field(self): def field(self, field): """Sets the field of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. - File attribute field name to be compared in a custom comparison (valid only with 'type' = 'custom_attribute'). # noqa: E501 + File attribute field name to be compared in a custom comparison (valid only with 'type' = 'custom_attribute') # noqa: E501 :param field: The field of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. # noqa: E501 :type: str @@ -186,7 +186,7 @@ def field(self, field): def operator(self): """Gets the operator of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. # noqa: E501 - The comparison operator to use while comparing an attribute with its value. # noqa: E501 + The comparison operator to use while comparing an attribute with its value # noqa: E501 :return: The operator of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. # noqa: E501 :rtype: str @@ -197,7 +197,7 @@ def operator(self): def operator(self, operator): """Sets the operator of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. - The comparison operator to use while comparing an attribute with its value. # noqa: E501 + The comparison operator to use while comparing an attribute with its value # noqa: E501 :param operator: The operator of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. # noqa: E501 :type: str @@ -209,7 +209,7 @@ def operator(self, operator): def type(self): """Gets the type of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. # noqa: E501 - The file attribute to be compared to a given value. # noqa: E501 + The file attribute to be compared to a given value # noqa: E501 :return: The type of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. # noqa: E501 :rtype: str @@ -220,7 +220,7 @@ def type(self): def type(self, type): """Sets the type of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. - The file attribute to be compared to a given value. # noqa: E501 + The file attribute to be compared to a given value # noqa: E501 :param type: The type of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. # noqa: E501 :type: str @@ -240,7 +240,7 @@ def type(self, type): def units(self): """Gets the units of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. # noqa: E501 - Size unit value. One of 'B','KB','MB','GB','TB','PB','EB' (valid only with 'type' = 'size'). # noqa: E501 + Size unit value. One of 'B','KB','MB','GB','TB','PB','EB' (valid only with 'type' = 'size') # noqa: E501 :return: The units of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. # noqa: E501 :rtype: str @@ -251,7 +251,7 @@ def units(self): def units(self, units): """Sets the units of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. - Size unit value. One of 'B','KB','MB','GB','TB','PB','EB' (valid only with 'type' = 'size'). # noqa: E501 + Size unit value. One of 'B','KB','MB','GB','TB','PB','EB' (valid only with 'type' = 'size') # noqa: E501 :param units: The units of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. # noqa: E501 :type: str @@ -267,7 +267,7 @@ def units(self, units): def use_relative_time(self): """Gets the use_relative_time of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. # noqa: E501 - Whether time units refer to a calendar date and time (e.g., Jun 3, 2009) or a relative duration (e.g., 2 weeks) (valid only with 'type' in {accessed_time, birth_time, changed_time, or metadata_changed_time}). # noqa: E501 + Whether time units refer to a calendar date and time (e.g., Jun 3, 2009) or a relative duration (e.g., 2 weeks) (valid only with 'type' in {accessed_time, birth_time, changed_time or metadata_changed_time} # noqa: E501 :return: The use_relative_time of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. # noqa: E501 :rtype: bool @@ -278,7 +278,7 @@ def use_relative_time(self): def use_relative_time(self, use_relative_time): """Sets the use_relative_time of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. - Whether time units refer to a calendar date and time (e.g., Jun 3, 2009) or a relative duration (e.g., 2 weeks) (valid only with 'type' in {accessed_time, birth_time, changed_time, or metadata_changed_time}). # noqa: E501 + Whether time units refer to a calendar date and time (e.g., Jun 3, 2009) or a relative duration (e.g., 2 weeks) (valid only with 'type' in {accessed_time, birth_time, changed_time or metadata_changed_time} # noqa: E501 :param use_relative_time: The use_relative_time of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. # noqa: E501 :type: bool @@ -290,7 +290,7 @@ def use_relative_time(self, use_relative_time): def value(self): """Gets the value of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. # noqa: E501 - The value to be compared against a file attribute. # noqa: E501 + The value to be compared against a file attribute # noqa: E501 :return: The value of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. # noqa: E501 :rtype: str @@ -301,7 +301,7 @@ def value(self): def value(self, value): """Sets the value of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. - The value to be compared against a file attribute. # noqa: E501 + The value to be compared against a file attribute # noqa: E501 :param value: The value of this FilepoolPolicyFileMatchingPatternOrCriteriaItemAndCriteriaItem. # noqa: E501 :type: str diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_template.py b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_template.py similarity index 92% rename from isilon_sdk/isilon_sdk/v9_11_0/models/filepool_template.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/filepool_template.py index 0fa15a907..e576aebd7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_template.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_template.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -91,7 +91,7 @@ def __init__(self, actions=None, apply_order=None, birth_cluster_id=None, descri def actions(self): """Gets the actions of this FilepoolTemplate. # noqa: E501 - A list of actions to be taken for matching files. # noqa: E501 + A list of actions to be taken for matching files # noqa: E501 :return: The actions of this FilepoolTemplate. # noqa: E501 :rtype: list[FilepoolTemplateAction] @@ -102,7 +102,7 @@ def actions(self): def actions(self, actions): """Sets the actions of this FilepoolTemplate. - A list of actions to be taken for matching files. # noqa: E501 + A list of actions to be taken for matching files # noqa: E501 :param actions: The actions of this FilepoolTemplate. # noqa: E501 :type: list[FilepoolTemplateAction] @@ -114,7 +114,7 @@ def actions(self, actions): def apply_order(self): """Gets the apply_order of this FilepoolTemplate. # noqa: E501 - The order in which this policy should be applied (relative to other policies). # noqa: E501 + The order in which this policy should be applied (relative to other policies) # noqa: E501 :return: The apply_order of this FilepoolTemplate. # noqa: E501 :rtype: int @@ -125,7 +125,7 @@ def apply_order(self): def apply_order(self, apply_order): """Sets the apply_order of this FilepoolTemplate. - The order in which this policy should be applied (relative to other policies). # noqa: E501 + The order in which this policy should be applied (relative to other policies) # noqa: E501 :param apply_order: The apply_order of this FilepoolTemplate. # noqa: E501 :type: int @@ -141,7 +141,7 @@ def apply_order(self, apply_order): def birth_cluster_id(self): """Gets the birth_cluster_id of this FilepoolTemplate. # noqa: E501 - The guid assigned to the cluster on which the account was created. # noqa: E501 + The guid assigned to the cluster on which the account was created # noqa: E501 :return: The birth_cluster_id of this FilepoolTemplate. # noqa: E501 :rtype: str @@ -152,7 +152,7 @@ def birth_cluster_id(self): def birth_cluster_id(self, birth_cluster_id): """Sets the birth_cluster_id of this FilepoolTemplate. - The guid assigned to the cluster on which the account was created. # noqa: E501 + The guid assigned to the cluster on which the account was created # noqa: E501 :param birth_cluster_id: The birth_cluster_id of this FilepoolTemplate. # noqa: E501 :type: str @@ -168,7 +168,7 @@ def birth_cluster_id(self, birth_cluster_id): def description(self): """Gets the description of this FilepoolTemplate. # noqa: E501 - A description for this policy. # noqa: E501 + A description for this policy # noqa: E501 :return: The description of this FilepoolTemplate. # noqa: E501 :rtype: str @@ -179,7 +179,7 @@ def description(self): def description(self, description): """Sets the description of this FilepoolTemplate. - A description for this policy. # noqa: E501 + A description for this policy # noqa: E501 :param description: The description of this FilepoolTemplate. # noqa: E501 :type: str @@ -195,7 +195,7 @@ def description(self, description): def file_matching_pattern(self): """Gets the file_matching_pattern of this FilepoolTemplate. # noqa: E501 - The file matching rules for this policy. # noqa: E501 + The file matching rules for this policy # noqa: E501 :return: The file_matching_pattern of this FilepoolTemplate. # noqa: E501 :rtype: FilepoolPolicyFileMatchingPattern @@ -206,7 +206,7 @@ def file_matching_pattern(self): def file_matching_pattern(self, file_matching_pattern): """Sets the file_matching_pattern of this FilepoolTemplate. - The file matching rules for this policy. # noqa: E501 + The file matching rules for this policy # noqa: E501 :param file_matching_pattern: The file_matching_pattern of this FilepoolTemplate. # noqa: E501 :type: FilepoolPolicyFileMatchingPattern @@ -218,7 +218,7 @@ def file_matching_pattern(self, file_matching_pattern): def id(self): """Gets the id of this FilepoolTemplate. # noqa: E501 - A unique identifier for this policy. # noqa: E501 + A unique identifier for this policy # noqa: E501 :return: The id of this FilepoolTemplate. # noqa: E501 :rtype: int @@ -229,7 +229,7 @@ def id(self): def id(self, id): """Sets the id of this FilepoolTemplate. - A unique identifier for this policy. # noqa: E501 + A unique identifier for this policy # noqa: E501 :param id: The id of this FilepoolTemplate. # noqa: E501 :type: int @@ -241,7 +241,7 @@ def id(self, id): def name(self): """Gets the name of this FilepoolTemplate. # noqa: E501 - A unique name for this policy. # noqa: E501 + A unique name for this policy # noqa: E501 :return: The name of this FilepoolTemplate. # noqa: E501 :rtype: str @@ -252,7 +252,7 @@ def name(self): def name(self, name): """Sets the name of this FilepoolTemplate. - A unique name for this policy. # noqa: E501 + A unique name for this policy # noqa: E501 :param name: The name of this FilepoolTemplate. # noqa: E501 :type: str @@ -268,7 +268,7 @@ def name(self, name): def state(self): """Gets the state of this FilepoolTemplate. # noqa: E501 - Indicates whether this policy is in a good state (\"OK\") or disabled (\"disabled\"). # noqa: E501 + Indicates whether this policy is in a good state (\"OK\") or disabled (\"disabled\") # noqa: E501 :return: The state of this FilepoolTemplate. # noqa: E501 :rtype: str @@ -279,7 +279,7 @@ def state(self): def state(self, state): """Sets the state of this FilepoolTemplate. - Indicates whether this policy is in a good state (\"OK\") or disabled (\"disabled\"). # noqa: E501 + Indicates whether this policy is in a good state (\"OK\") or disabled (\"disabled\") # noqa: E501 :param state: The state of this FilepoolTemplate. # noqa: E501 :type: str @@ -297,7 +297,7 @@ def state(self, state): def state_details(self): """Gets the state_details of this FilepoolTemplate. # noqa: E501 - Gives further information to describe the state of this policy. # noqa: E501 + Gives further information to describe the state of this policy # noqa: E501 :return: The state_details of this FilepoolTemplate. # noqa: E501 :rtype: str @@ -308,7 +308,7 @@ def state_details(self): def state_details(self, state_details): """Sets the state_details of this FilepoolTemplate. - Gives further information to describe the state of this policy. # noqa: E501 + Gives further information to describe the state of this policy # noqa: E501 :param state_details: The state_details of this FilepoolTemplate. # noqa: E501 :type: str diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_task_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_template_action.py similarity index 51% rename from isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_task_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/filepool_template_action.py index 9f9f0ea72..f7526e771 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_task_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_template_action.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class SupportassistTaskItem(object): +class FilepoolTemplateAction(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -31,77 +31,77 @@ class SupportassistTaskItem(object): and the value is json key in definition. """ swagger_types = { - 'source': 'str', - 'task_params': 'SupportassistTaskItemTaskParams' + 'action_param': 'str', + 'action_type': 'str' } attribute_map = { - 'source': 'source', - 'task_params': 'task_params' + 'action_param': 'action_param', + 'action_type': 'action_type' } - def __init__(self, source=None, task_params=None): # noqa: E501 - """SupportassistTaskItem - a model defined in Swagger""" # noqa: E501 + def __init__(self, action_param=None, action_type=None): # noqa: E501 + """FilepoolTemplateAction - a model defined in Swagger""" # noqa: E501 - self._source = None - self._task_params = None + self._action_param = None + self._action_type = None self.discriminator = None - self.source = source - if task_params is not None: - self.task_params = task_params + if action_param is not None: + self.action_param = action_param + self.action_type = action_type @property - def source(self): - """Gets the source of this SupportassistTaskItem. # noqa: E501 + def action_param(self): + """Gets the action_param of this FilepoolTemplateAction. # noqa: E501 + Varies according to action_type # noqa: E501 - :return: The source of this SupportassistTaskItem. # noqa: E501 + :return: The action_param of this FilepoolTemplateAction. # noqa: E501 :rtype: str """ - return self._source + return self._action_param - @source.setter - def source(self, source): - """Sets the source of this SupportassistTaskItem. + @action_param.setter + def action_param(self, action_param): + """Sets the action_param of this FilepoolTemplateAction. + Varies according to action_type # noqa: E501 - :param source: The source of this SupportassistTaskItem. # noqa: E501 + :param action_param: The action_param of this FilepoolTemplateAction. # noqa: E501 :type: str """ - if source is None: - raise ValueError("Invalid value for `source`, must not be `None`") # noqa: E501 - allowed_values = ["LOG"] # noqa: E501 - if source not in allowed_values: - raise ValueError( - "Invalid value for `source` ({0}), must be one of {1}" # noqa: E501 - .format(source, allowed_values) - ) - self._source = source + self._action_param = action_param @property - def task_params(self): - """Gets the task_params of this SupportassistTaskItem. # noqa: E501 + def action_type(self): + """Gets the action_type of this FilepoolTemplateAction. # noqa: E501 - # noqa: E501 - :return: The task_params of this SupportassistTaskItem. # noqa: E501 - :rtype: SupportassistTaskItemTaskParams + :return: The action_type of this FilepoolTemplateAction. # noqa: E501 + :rtype: str """ - return self._task_params + return self._action_type - @task_params.setter - def task_params(self, task_params): - """Sets the task_params of this SupportassistTaskItem. + @action_type.setter + def action_type(self, action_type): + """Sets the action_type of this FilepoolTemplateAction. - # noqa: E501 - :param task_params: The task_params of this SupportassistTaskItem. # noqa: E501 - :type: SupportassistTaskItemTaskParams + :param action_type: The action_type of this FilepoolTemplateAction. # noqa: E501 + :type: str """ + if action_type is None: + raise ValueError("Invalid value for `action_type`, must not be `None`") # noqa: E501 + allowed_values = ["set_requested_protection", "set_data_access_pattern", "enable_coalescer", "apply_data_storage_policy", "apply_snapshot_storage_policy", "set_cloudpool_policy", "enable_packing"] # noqa: E501 + if action_type not in allowed_values: + raise ValueError( + "Invalid value for `action_type` ({0}), must be one of {1}" # noqa: E501 + .format(action_type, allowed_values) + ) - self._task_params = task_params + self._action_type = action_type def to_dict(self): """Returns the model properties as a dict""" @@ -124,7 +124,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(SupportassistTaskItem, dict): + if issubclass(FilepoolTemplateAction, dict): for key, value in self.items(): result[key] = value @@ -140,7 +140,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, SupportassistTaskItem): + if not isinstance(other, FilepoolTemplateAction): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_template_action_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_template_action_extended.py new file mode 100644 index 000000000..31b61f1dd --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_template_action_extended.py @@ -0,0 +1,150 @@ +# coding: utf-8 + +""" + Isilon SDK + + Isilon SDK - Language bindings for the OneFS API # noqa: E501 + + OpenAPI spec version: 15 + Contact: sdk@isilon.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + + +class FilepoolTemplateActionExtended(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'action_param': 'str', + 'action_type': 'str' + } + + attribute_map = { + 'action_param': 'action_param', + 'action_type': 'action_type' + } + + def __init__(self, action_param=None, action_type=None): # noqa: E501 + """FilepoolTemplateActionExtended - a model defined in Swagger""" # noqa: E501 + + self._action_param = None + self._action_type = None + self.discriminator = None + + if action_param is not None: + self.action_param = action_param + self.action_type = action_type + + @property + def action_param(self): + """Gets the action_param of this FilepoolTemplateActionExtended. # noqa: E501 + + Varies according to action_type # noqa: E501 + + :return: The action_param of this FilepoolTemplateActionExtended. # noqa: E501 + :rtype: str + """ + return self._action_param + + @action_param.setter + def action_param(self, action_param): + """Sets the action_param of this FilepoolTemplateActionExtended. + + Varies according to action_type # noqa: E501 + + :param action_param: The action_param of this FilepoolTemplateActionExtended. # noqa: E501 + :type: str + """ + + self._action_param = action_param + + @property + def action_type(self): + """Gets the action_type of this FilepoolTemplateActionExtended. # noqa: E501 + + + :return: The action_type of this FilepoolTemplateActionExtended. # noqa: E501 + :rtype: str + """ + return self._action_type + + @action_type.setter + def action_type(self, action_type): + """Sets the action_type of this FilepoolTemplateActionExtended. + + + :param action_type: The action_type of this FilepoolTemplateActionExtended. # noqa: E501 + :type: str + """ + if action_type is None: + raise ValueError("Invalid value for `action_type`, must not be `None`") # noqa: E501 + allowed_values = ["set_requested_protection", "set_data_access_pattern", "enable_coalescer", "apply_data_storage_policy", "apply_snapshot_storage_policy", "set_cloudpool_policy", "enable_packing"] # noqa: E501 + if action_type not in allowed_values: + raise ValueError( + "Invalid value for `action_type` ({0}), must be one of {1}" # noqa: E501 + .format(action_type, allowed_values) + ) + + self._action_type = action_type + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(FilepoolTemplateActionExtended, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, FilepoolTemplateActionExtended): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + """Returns true if both objects are not equal""" + return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_template_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_template_extended.py similarity index 93% rename from isilon_sdk/isilon_sdk/v9_11_0/models/filepool_template_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/filepool_template_extended.py index 210412ee9..f1b270bb6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_template_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_template_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -91,7 +91,7 @@ def __init__(self, actions=None, apply_order=None, birth_cluster_id=None, descri def actions(self): """Gets the actions of this FilepoolTemplateExtended. # noqa: E501 - A list of actions to be taken for matching files. # noqa: E501 + A list of actions to be taken for matching files # noqa: E501 :return: The actions of this FilepoolTemplateExtended. # noqa: E501 :rtype: list[FilepoolTemplateActionExtended] @@ -102,7 +102,7 @@ def actions(self): def actions(self, actions): """Sets the actions of this FilepoolTemplateExtended. - A list of actions to be taken for matching files. # noqa: E501 + A list of actions to be taken for matching files # noqa: E501 :param actions: The actions of this FilepoolTemplateExtended. # noqa: E501 :type: list[FilepoolTemplateActionExtended] @@ -114,7 +114,7 @@ def actions(self, actions): def apply_order(self): """Gets the apply_order of this FilepoolTemplateExtended. # noqa: E501 - The order in which this policy should be applied (relative to other policies). # noqa: E501 + The order in which this policy should be applied (relative to other policies) # noqa: E501 :return: The apply_order of this FilepoolTemplateExtended. # noqa: E501 :rtype: int @@ -125,7 +125,7 @@ def apply_order(self): def apply_order(self, apply_order): """Sets the apply_order of this FilepoolTemplateExtended. - The order in which this policy should be applied (relative to other policies). # noqa: E501 + The order in which this policy should be applied (relative to other policies) # noqa: E501 :param apply_order: The apply_order of this FilepoolTemplateExtended. # noqa: E501 :type: int @@ -141,7 +141,7 @@ def apply_order(self, apply_order): def birth_cluster_id(self): """Gets the birth_cluster_id of this FilepoolTemplateExtended. # noqa: E501 - The guid assigned to the cluster on which the account was created. # noqa: E501 + The guid assigned to the cluster on which the account was created # noqa: E501 :return: The birth_cluster_id of this FilepoolTemplateExtended. # noqa: E501 :rtype: str @@ -152,7 +152,7 @@ def birth_cluster_id(self): def birth_cluster_id(self, birth_cluster_id): """Sets the birth_cluster_id of this FilepoolTemplateExtended. - The guid assigned to the cluster on which the account was created. # noqa: E501 + The guid assigned to the cluster on which the account was created # noqa: E501 :param birth_cluster_id: The birth_cluster_id of this FilepoolTemplateExtended. # noqa: E501 :type: str @@ -168,7 +168,7 @@ def birth_cluster_id(self, birth_cluster_id): def description(self): """Gets the description of this FilepoolTemplateExtended. # noqa: E501 - A description for this policy. # noqa: E501 + A description for this policy # noqa: E501 :return: The description of this FilepoolTemplateExtended. # noqa: E501 :rtype: str @@ -179,7 +179,7 @@ def description(self): def description(self, description): """Sets the description of this FilepoolTemplateExtended. - A description for this policy. # noqa: E501 + A description for this policy # noqa: E501 :param description: The description of this FilepoolTemplateExtended. # noqa: E501 :type: str @@ -195,7 +195,7 @@ def description(self, description): def file_matching_pattern(self): """Gets the file_matching_pattern of this FilepoolTemplateExtended. # noqa: E501 - The file matching rules for this policy. # noqa: E501 + The file matching rules for this policy # noqa: E501 :return: The file_matching_pattern of this FilepoolTemplateExtended. # noqa: E501 :rtype: FilepoolPolicyFileMatchingPattern @@ -206,7 +206,7 @@ def file_matching_pattern(self): def file_matching_pattern(self, file_matching_pattern): """Sets the file_matching_pattern of this FilepoolTemplateExtended. - The file matching rules for this policy. # noqa: E501 + The file matching rules for this policy # noqa: E501 :param file_matching_pattern: The file_matching_pattern of this FilepoolTemplateExtended. # noqa: E501 :type: FilepoolPolicyFileMatchingPattern @@ -218,7 +218,7 @@ def file_matching_pattern(self, file_matching_pattern): def id(self): """Gets the id of this FilepoolTemplateExtended. # noqa: E501 - A unique identifier for this policy. # noqa: E501 + A unique identifier for this policy # noqa: E501 :return: The id of this FilepoolTemplateExtended. # noqa: E501 :rtype: int @@ -229,7 +229,7 @@ def id(self): def id(self, id): """Sets the id of this FilepoolTemplateExtended. - A unique identifier for this policy. # noqa: E501 + A unique identifier for this policy # noqa: E501 :param id: The id of this FilepoolTemplateExtended. # noqa: E501 :type: int @@ -241,7 +241,7 @@ def id(self, id): def name(self): """Gets the name of this FilepoolTemplateExtended. # noqa: E501 - A unique name for this policy. # noqa: E501 + A unique name for this policy # noqa: E501 :return: The name of this FilepoolTemplateExtended. # noqa: E501 :rtype: str @@ -252,7 +252,7 @@ def name(self): def name(self, name): """Sets the name of this FilepoolTemplateExtended. - A unique name for this policy. # noqa: E501 + A unique name for this policy # noqa: E501 :param name: The name of this FilepoolTemplateExtended. # noqa: E501 :type: str @@ -268,7 +268,7 @@ def name(self, name): def state(self): """Gets the state of this FilepoolTemplateExtended. # noqa: E501 - Indicates whether this policy is in a good state (\"OK\") or disabled (\"disabled\"). # noqa: E501 + Indicates whether this policy is in a good state (\"OK\") or disabled (\"disabled\") # noqa: E501 :return: The state of this FilepoolTemplateExtended. # noqa: E501 :rtype: str @@ -279,7 +279,7 @@ def state(self): def state(self, state): """Sets the state of this FilepoolTemplateExtended. - Indicates whether this policy is in a good state (\"OK\") or disabled (\"disabled\"). # noqa: E501 + Indicates whether this policy is in a good state (\"OK\") or disabled (\"disabled\") # noqa: E501 :param state: The state of this FilepoolTemplateExtended. # noqa: E501 :type: str @@ -297,7 +297,7 @@ def state(self, state): def state_details(self): """Gets the state_details of this FilepoolTemplateExtended. # noqa: E501 - Gives further information to describe the state of this policy. # noqa: E501 + Gives further information to describe the state of this policy # noqa: E501 :return: The state_details of this FilepoolTemplateExtended. # noqa: E501 :rtype: str @@ -308,7 +308,7 @@ def state_details(self): def state_details(self, state_details): """Sets the state_details of this FilepoolTemplateExtended. - Gives further information to describe the state of this policy. # noqa: E501 + Gives further information to describe the state of this policy # noqa: E501 :param state_details: The state_details of this FilepoolTemplateExtended. # noqa: E501 :type: str diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_templates.py b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_templates.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/filepool_templates.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/filepool_templates.py index 9170d9972..414dc957a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_templates.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_templates.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_templates_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_templates_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/filepool_templates_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/filepool_templates_extended.py index dc54c39c4..da73ee71d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/filepool_templates_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/filepool_templates_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/fsa_index.py b/isilon_sdk/isilon_sdk/v9_4_0/models/fsa_index.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/fsa_index.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/fsa_index.py index c89695f16..bbef81dd7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/fsa_index.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/fsa_index.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/fsa_result.py b/isilon_sdk/isilon_sdk/v9_4_0/models/fsa_result.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/fsa_result.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/fsa_result.py index 79e6807cf..fba48ddc6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/fsa_result.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/fsa_result.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/fsa_result_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/fsa_result_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/fsa_result_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/fsa_result_extended.py index 5cceb0e40..2294081ae 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/fsa_result_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/fsa_result_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/fsa_results.py b/isilon_sdk/isilon_sdk/v9_4_0/models/fsa_results.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/fsa_results.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/fsa_results.py index dbfd9cbb5..d2558d09e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/fsa_results.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/fsa_results.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/fsa_results_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/fsa_results_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/fsa_results_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/fsa_results_extended.py index 76eadf39c..6cf6c8b9e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/fsa_results_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/fsa_results_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/fsa_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/fsa_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/fsa_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/fsa_settings.py index d87c9801a..104e44345 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/fsa_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/fsa_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/fsa_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/fsa_settings_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/fsa_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/fsa_settings_settings.py index 3ec1ac1cb..c5385c5fc 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/fsa_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/fsa_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ftp_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ftp_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ftp_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ftp_settings.py index ee6f5bd2d..bc95a5f4a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ftp_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ftp_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ftp_settings_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ftp_settings_extended.py similarity index 91% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ftp_settings_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ftp_settings_extended.py index 117e28581..4227462e9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ftp_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ftp_settings_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -32,7 +32,6 @@ class FtpSettingsExtended(object): """ swagger_types = { 'accept_timeout': 'int', - 'active_mode': 'bool', 'allow_anon_access': 'bool', 'allow_anon_upload': 'bool', 'allow_dirlists': 'bool', @@ -65,7 +64,6 @@ class FtpSettingsExtended(object): attribute_map = { 'accept_timeout': 'accept_timeout', - 'active_mode': 'active_mode', 'allow_anon_access': 'allow_anon_access', 'allow_anon_upload': 'allow_anon_upload', 'allow_dirlists': 'allow_dirlists', @@ -96,11 +94,10 @@ class FtpSettingsExtended(object): 'user_config_dir': 'user_config_dir' } - def __init__(self, accept_timeout=None, active_mode=None, allow_anon_access=None, allow_anon_upload=None, allow_dirlists=None, allow_downloads=None, allow_local_access=None, allow_writes=None, always_chdir_homedir=None, anon_chown_username=None, anon_password_list=None, anon_root_path=None, anon_umask=None, ascii_mode=None, chroot_exception_list=None, chroot_local_mode=None, connect_timeout=None, data_timeout=None, denied_user_list=None, dirlist_localtime=None, dirlist_names=None, file_create_perm=None, limit_anon_passwords=None, local_root_path=None, local_umask=None, server_to_server=None, service=None, session_support=None, session_timeout=None, user_config_dir=None): # noqa: E501 + def __init__(self, accept_timeout=None, allow_anon_access=None, allow_anon_upload=None, allow_dirlists=None, allow_downloads=None, allow_local_access=None, allow_writes=None, always_chdir_homedir=None, anon_chown_username=None, anon_password_list=None, anon_root_path=None, anon_umask=None, ascii_mode=None, chroot_exception_list=None, chroot_local_mode=None, connect_timeout=None, data_timeout=None, denied_user_list=None, dirlist_localtime=None, dirlist_names=None, file_create_perm=None, limit_anon_passwords=None, local_root_path=None, local_umask=None, server_to_server=None, service=None, session_support=None, session_timeout=None, user_config_dir=None): # noqa: E501 """FtpSettingsExtended - a model defined in Swagger""" # noqa: E501 self._accept_timeout = None - self._active_mode = None self._allow_anon_access = None self._allow_anon_upload = None self._allow_dirlists = None @@ -133,8 +130,6 @@ def __init__(self, accept_timeout=None, active_mode=None, allow_anon_access=None if accept_timeout is not None: self.accept_timeout = accept_timeout - if active_mode is not None: - self.active_mode = active_mode if allow_anon_access is not None: self.allow_anon_access = allow_anon_access if allow_anon_upload is not None: @@ -219,29 +214,6 @@ def accept_timeout(self, accept_timeout): self._accept_timeout = accept_timeout - @property - def active_mode(self): - """Gets the active_mode of this FtpSettingsExtended. # noqa: E501 - - If enabled, connection is established via active mode. # noqa: E501 - - :return: The active_mode of this FtpSettingsExtended. # noqa: E501 - :rtype: bool - """ - return self._active_mode - - @active_mode.setter - def active_mode(self, active_mode): - """Sets the active_mode of this FtpSettingsExtended. - - If enabled, connection is established via active mode. # noqa: E501 - - :param active_mode: The active_mode of this FtpSettingsExtended. # noqa: E501 - :type: bool - """ - - self._active_mode = active_mode - @property def allow_anon_access(self): """Gets the allow_anon_access of this FtpSettingsExtended. # noqa: E501 @@ -423,10 +395,6 @@ def anon_chown_username(self, anon_chown_username): :param anon_chown_username: The anon_chown_username of this FtpSettingsExtended. # noqa: E501 :type: str """ - if anon_chown_username is not None and len(anon_chown_username) > 255: - raise ValueError("Invalid value for `anon_chown_username`, length must be less than or equal to `255`") # noqa: E501 - if anon_chown_username is not None and len(anon_chown_username) < 0: - raise ValueError("Invalid value for `anon_chown_username`, length must be greater than or equal to `0`") # noqa: E501 self._anon_chown_username = anon_chown_username @@ -473,10 +441,6 @@ def anon_root_path(self, anon_root_path): :param anon_root_path: The anon_root_path of this FtpSettingsExtended. # noqa: E501 :type: str """ - if anon_root_path is not None and len(anon_root_path) > 4096: - raise ValueError("Invalid value for `anon_root_path`, length must be less than or equal to `4096`") # noqa: E501 - if anon_root_path is not None and len(anon_root_path) < 0: - raise ValueError("Invalid value for `anon_root_path`, length must be greater than or equal to `0`") # noqa: E501 self._anon_root_path = anon_root_path @@ -769,10 +733,6 @@ def local_root_path(self, local_root_path): :param local_root_path: The local_root_path of this FtpSettingsExtended. # noqa: E501 :type: str """ - if local_root_path is not None and len(local_root_path) > 4096: - raise ValueError("Invalid value for `local_root_path`, length must be less than or equal to `4096`") # noqa: E501 - if local_root_path is not None and len(local_root_path) < 0: - raise ValueError("Invalid value for `local_root_path`, length must be greater than or equal to `0`") # noqa: E501 self._local_root_path = local_root_path @@ -919,10 +879,6 @@ def user_config_dir(self, user_config_dir): :param user_config_dir: The user_config_dir of this FtpSettingsExtended. # noqa: E501 :type: str """ - if user_config_dir is not None and len(user_config_dir) > 4096: - raise ValueError("Invalid value for `user_config_dir`, length must be less than or equal to `4096`") # noqa: E501 - if user_config_dir is not None and len(user_config_dir) < 0: - raise ValueError("Invalid value for `user_config_dir`, length must be greater than or equal to `0`") # noqa: E501 self._user_config_dir = user_config_dir diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ftp_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ftp_settings_settings.py similarity index 92% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ftp_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ftp_settings_settings.py index 0b15a0719..c90435dce 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ftp_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ftp_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -32,7 +32,6 @@ class FtpSettingsSettings(object): """ swagger_types = { 'accept_timeout': 'int', - 'active_mode': 'bool', 'allow_anon_access': 'bool', 'allow_anon_upload': 'bool', 'allow_dirlists': 'bool', @@ -65,7 +64,6 @@ class FtpSettingsSettings(object): attribute_map = { 'accept_timeout': 'accept_timeout', - 'active_mode': 'active_mode', 'allow_anon_access': 'allow_anon_access', 'allow_anon_upload': 'allow_anon_upload', 'allow_dirlists': 'allow_dirlists', @@ -96,11 +94,10 @@ class FtpSettingsSettings(object): 'user_config_dir': 'user_config_dir' } - def __init__(self, accept_timeout=None, active_mode=None, allow_anon_access=None, allow_anon_upload=None, allow_dirlists=None, allow_downloads=None, allow_local_access=None, allow_writes=None, always_chdir_homedir=None, anon_chown_username=None, anon_password_list=None, anon_root_path=None, anon_umask=None, ascii_mode=None, chroot_exception_list=None, chroot_local_mode=None, connect_timeout=None, data_timeout=None, denied_user_list=None, dirlist_localtime=None, dirlist_names=None, file_create_perm=None, limit_anon_passwords=None, local_root_path=None, local_umask=None, server_to_server=None, service=None, session_support=None, session_timeout=None, user_config_dir=None): # noqa: E501 + def __init__(self, accept_timeout=None, allow_anon_access=None, allow_anon_upload=None, allow_dirlists=None, allow_downloads=None, allow_local_access=None, allow_writes=None, always_chdir_homedir=None, anon_chown_username=None, anon_password_list=None, anon_root_path=None, anon_umask=None, ascii_mode=None, chroot_exception_list=None, chroot_local_mode=None, connect_timeout=None, data_timeout=None, denied_user_list=None, dirlist_localtime=None, dirlist_names=None, file_create_perm=None, limit_anon_passwords=None, local_root_path=None, local_umask=None, server_to_server=None, service=None, session_support=None, session_timeout=None, user_config_dir=None): # noqa: E501 """FtpSettingsSettings - a model defined in Swagger""" # noqa: E501 self._accept_timeout = None - self._active_mode = None self._allow_anon_access = None self._allow_anon_upload = None self._allow_dirlists = None @@ -133,8 +130,6 @@ def __init__(self, accept_timeout=None, active_mode=None, allow_anon_access=None if accept_timeout is not None: self.accept_timeout = accept_timeout - if active_mode is not None: - self.active_mode = active_mode if allow_anon_access is not None: self.allow_anon_access = allow_anon_access if allow_anon_upload is not None: @@ -219,29 +214,6 @@ def accept_timeout(self, accept_timeout): self._accept_timeout = accept_timeout - @property - def active_mode(self): - """Gets the active_mode of this FtpSettingsSettings. # noqa: E501 - - If enabled, connection is established via active mode. # noqa: E501 - - :return: The active_mode of this FtpSettingsSettings. # noqa: E501 - :rtype: bool - """ - return self._active_mode - - @active_mode.setter - def active_mode(self, active_mode): - """Sets the active_mode of this FtpSettingsSettings. - - If enabled, connection is established via active mode. # noqa: E501 - - :param active_mode: The active_mode of this FtpSettingsSettings. # noqa: E501 - :type: bool - """ - - self._active_mode = active_mode - @property def allow_anon_access(self): """Gets the allow_anon_access of this FtpSettingsSettings. # noqa: E501 @@ -423,10 +395,6 @@ def anon_chown_username(self, anon_chown_username): :param anon_chown_username: The anon_chown_username of this FtpSettingsSettings. # noqa: E501 :type: str """ - if anon_chown_username is not None and len(anon_chown_username) > 255: - raise ValueError("Invalid value for `anon_chown_username`, length must be less than or equal to `255`") # noqa: E501 - if anon_chown_username is not None and len(anon_chown_username) < 0: - raise ValueError("Invalid value for `anon_chown_username`, length must be greater than or equal to `0`") # noqa: E501 self._anon_chown_username = anon_chown_username @@ -473,10 +441,6 @@ def anon_root_path(self, anon_root_path): :param anon_root_path: The anon_root_path of this FtpSettingsSettings. # noqa: E501 :type: str """ - if anon_root_path is not None and len(anon_root_path) > 4096: - raise ValueError("Invalid value for `anon_root_path`, length must be less than or equal to `4096`") # noqa: E501 - if anon_root_path is not None and len(anon_root_path) < 0: - raise ValueError("Invalid value for `anon_root_path`, length must be greater than or equal to `0`") # noqa: E501 self._anon_root_path = anon_root_path @@ -787,10 +751,6 @@ def local_root_path(self, local_root_path): :param local_root_path: The local_root_path of this FtpSettingsSettings. # noqa: E501 :type: str """ - if local_root_path is not None and len(local_root_path) > 4096: - raise ValueError("Invalid value for `local_root_path`, length must be less than or equal to `4096`") # noqa: E501 - if local_root_path is not None and len(local_root_path) < 0: - raise ValueError("Invalid value for `local_root_path`, length must be greater than or equal to `0`") # noqa: E501 self._local_root_path = local_root_path @@ -937,10 +897,6 @@ def user_config_dir(self, user_config_dir): :param user_config_dir: The user_config_dir of this FtpSettingsSettings. # noqa: E501 :type: str """ - if user_config_dir is not None and len(user_config_dir) > 4096: - raise ValueError("Invalid value for `user_config_dir`, length must be less than or equal to `4096`") # noqa: E501 - if user_config_dir is not None and len(user_config_dir) < 0: - raise ValueError("Invalid value for `user_config_dir`, length must be greater than or equal to `0`") # noqa: E501 self._user_config_dir = user_config_dir diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/group_members.py b/isilon_sdk/isilon_sdk/v9_4_0/models/group_members.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/group_members.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/group_members.py index 9d66b4e70..9f177d03f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/group_members.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/group_members.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/groupnet_subnet.py b/isilon_sdk/isilon_sdk/v9_4_0/models/groupnet_subnet.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/models/groupnet_subnet.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/groupnet_subnet.py index 2a24a1e60..70bbc8bb9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/groupnet_subnet.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/groupnet_subnet.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -331,8 +331,8 @@ def sc_service_name(self, sc_service_name): raise ValueError("Invalid value for `sc_service_name`, length must be less than or equal to `2048`") # noqa: E501 if sc_service_name is not None and len(sc_service_name) < 0: raise ValueError("Invalid value for `sc_service_name`, length must be greater than or equal to `0`") # noqa: E501 - if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 - raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 + raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_service_name = sc_service_name diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/groupnet_subnet_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/groupnet_subnet_create_params.py similarity index 91% rename from isilon_sdk/isilon_sdk/v9_11_0/models/groupnet_subnet_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/groupnet_subnet_create_params.py index 12828d366..1b4e355f7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/groupnet_subnet_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/groupnet_subnet_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -42,8 +42,7 @@ class GroupnetSubnetCreateParams(object): 'sc_service_name': 'str', 'vlan_enabled': 'bool', 'vlan_id': 'int', - 'addr_family': 'str', - 'linklayer': 'str' + 'addr_family': 'str' } attribute_map = { @@ -58,11 +57,10 @@ class GroupnetSubnetCreateParams(object): 'sc_service_name': 'sc_service_name', 'vlan_enabled': 'vlan_enabled', 'vlan_id': 'vlan_id', - 'addr_family': 'addr_family', - 'linklayer': 'linklayer' + 'addr_family': 'addr_family' } - def __init__(self, description=None, dsr_addrs=None, gateway=None, gateway_priority=None, mtu=None, name=None, prefixlen=None, sc_service_addrs=None, sc_service_name=None, vlan_enabled=None, vlan_id=None, addr_family=None, linklayer=None): # noqa: E501 + def __init__(self, description=None, dsr_addrs=None, gateway=None, gateway_priority=None, mtu=None, name=None, prefixlen=None, sc_service_addrs=None, sc_service_name=None, vlan_enabled=None, vlan_id=None, addr_family=None): # noqa: E501 """GroupnetSubnetCreateParams - a model defined in Swagger""" # noqa: E501 self._description = None @@ -77,7 +75,6 @@ def __init__(self, description=None, dsr_addrs=None, gateway=None, gateway_prior self._vlan_enabled = None self._vlan_id = None self._addr_family = None - self._linklayer = None self.discriminator = None if description is not None: @@ -101,8 +98,6 @@ def __init__(self, description=None, dsr_addrs=None, gateway=None, gateway_prior if vlan_id is not None: self.vlan_id = vlan_id self.addr_family = addr_family - if linklayer is not None: - self.linklayer = linklayer @property def description(self): @@ -342,8 +337,8 @@ def sc_service_name(self, sc_service_name): raise ValueError("Invalid value for `sc_service_name`, length must be less than or equal to `2048`") # noqa: E501 if sc_service_name is not None and len(sc_service_name) < 0: raise ValueError("Invalid value for `sc_service_name`, length must be greater than or equal to `0`") # noqa: E501 - if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 - raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 + raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_service_name = sc_service_name @@ -428,35 +423,6 @@ def addr_family(self, addr_family): self._addr_family = addr_family - @property - def linklayer(self): - """Gets the linklayer of this GroupnetSubnetCreateParams. # noqa: E501 - - Specifies the type of network linklayer this Network Subnet uses. # noqa: E501 - - :return: The linklayer of this GroupnetSubnetCreateParams. # noqa: E501 - :rtype: str - """ - return self._linklayer - - @linklayer.setter - def linklayer(self, linklayer): - """Sets the linklayer of this GroupnetSubnetCreateParams. - - Specifies the type of network linklayer this Network Subnet uses. # noqa: E501 - - :param linklayer: The linklayer of this GroupnetSubnetCreateParams. # noqa: E501 - :type: str - """ - allowed_values = ["ethernet", "infiniband"] # noqa: E501 - if linklayer not in allowed_values: - raise ValueError( - "Invalid value for `linklayer` ({0}), must be one of {1}" # noqa: E501 - .format(linklayer, allowed_values) - ) - - self._linklayer = linklayer - def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/groupnet_subnet_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/groupnet_subnet_extended.py similarity index 87% rename from isilon_sdk/isilon_sdk/v9_11_0/models/groupnet_subnet_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/groupnet_subnet_extended.py index 1daaaad37..dd02b9c0b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/groupnet_subnet_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/groupnet_subnet_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -44,10 +44,8 @@ class GroupnetSubnetExtended(object): 'vlan_id': 'int', 'addr_family': 'str', 'base_addr': 'str', - 'firewall_policy': 'str', 'groupnet': 'str', 'id': 'str', - 'linklayer': 'str', 'pools': 'list[str]' } @@ -65,14 +63,12 @@ class GroupnetSubnetExtended(object): 'vlan_id': 'vlan_id', 'addr_family': 'addr_family', 'base_addr': 'base_addr', - 'firewall_policy': 'firewall_policy', 'groupnet': 'groupnet', 'id': 'id', - 'linklayer': 'linklayer', 'pools': 'pools' } - def __init__(self, description=None, dsr_addrs=None, gateway=None, gateway_priority=None, mtu=None, name=None, prefixlen=None, sc_service_addrs=None, sc_service_name=None, vlan_enabled=None, vlan_id=None, addr_family=None, base_addr=None, firewall_policy=None, groupnet=None, id=None, linklayer=None, pools=None): # noqa: E501 + def __init__(self, description=None, dsr_addrs=None, gateway=None, gateway_priority=None, mtu=None, name=None, prefixlen=None, sc_service_addrs=None, sc_service_name=None, vlan_enabled=None, vlan_id=None, addr_family=None, base_addr=None, groupnet=None, id=None, pools=None): # noqa: E501 """GroupnetSubnetExtended - a model defined in Swagger""" # noqa: E501 self._description = None @@ -88,10 +84,8 @@ def __init__(self, description=None, dsr_addrs=None, gateway=None, gateway_prior self._vlan_id = None self._addr_family = None self._base_addr = None - self._firewall_policy = None self._groupnet = None self._id = None - self._linklayer = None self._pools = None self.discriminator = None @@ -121,14 +115,10 @@ def __init__(self, description=None, dsr_addrs=None, gateway=None, gateway_prior self.addr_family = addr_family if base_addr is not None: self.base_addr = base_addr - if firewall_policy is not None: - self.firewall_policy = firewall_policy if groupnet is not None: self.groupnet = groupnet if id is not None: self.id = id - if linklayer is not None: - self.linklayer = linklayer if pools is not None: self.pools = pools @@ -366,8 +356,8 @@ def sc_service_name(self, sc_service_name): raise ValueError("Invalid value for `sc_service_name`, length must be less than or equal to `2048`") # noqa: E501 if sc_service_name is not None and len(sc_service_name) < 0: raise ValueError("Invalid value for `sc_service_name`, length must be greater than or equal to `0`") # noqa: E501 - if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 - raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 + raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_service_name = sc_service_name @@ -477,33 +467,6 @@ def base_addr(self, base_addr): self._base_addr = base_addr - @property - def firewall_policy(self): - """Gets the firewall_policy of this GroupnetSubnetExtended. # noqa: E501 - - Name of the Firewall Policy associated with this Network Subnet. # noqa: E501 - - :return: The firewall_policy of this GroupnetSubnetExtended. # noqa: E501 - :rtype: str - """ - return self._firewall_policy - - @firewall_policy.setter - def firewall_policy(self, firewall_policy): - """Sets the firewall_policy of this GroupnetSubnetExtended. - - Name of the Firewall Policy associated with this Network Subnet. # noqa: E501 - - :param firewall_policy: The firewall_policy of this GroupnetSubnetExtended. # noqa: E501 - :type: str - """ - if firewall_policy is not None and len(firewall_policy) > 32: - raise ValueError("Invalid value for `firewall_policy`, length must be less than or equal to `32`") # noqa: E501 - if firewall_policy is not None and len(firewall_policy) < 1: - raise ValueError("Invalid value for `firewall_policy`, length must be greater than or equal to `1`") # noqa: E501 - - self._firewall_policy = firewall_policy - @property def groupnet(self): """Gets the groupnet of this GroupnetSubnetExtended. # noqa: E501 @@ -558,35 +521,6 @@ def id(self, id): self._id = id - @property - def linklayer(self): - """Gets the linklayer of this GroupnetSubnetExtended. # noqa: E501 - - Specifies the type of network linklayer this Network Subnet uses. # noqa: E501 - - :return: The linklayer of this GroupnetSubnetExtended. # noqa: E501 - :rtype: str - """ - return self._linklayer - - @linklayer.setter - def linklayer(self, linklayer): - """Sets the linklayer of this GroupnetSubnetExtended. - - Specifies the type of network linklayer this Network Subnet uses. # noqa: E501 - - :param linklayer: The linklayer of this GroupnetSubnetExtended. # noqa: E501 - :type: str - """ - allowed_values = ["ethernet", "infiniband"] # noqa: E501 - if linklayer not in allowed_values: - raise ValueError( - "Invalid value for `linklayer` ({0}), must be one of {1}" # noqa: E501 - .format(linklayer, allowed_values) - ) - - self._linklayer = linklayer - @property def pools(self): """Gets the pools of this GroupnetSubnetExtended. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/groupnet_subnets.py b/isilon_sdk/isilon_sdk/v9_4_0/models/groupnet_subnets.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/groupnet_subnets.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/groupnet_subnets.py index 3391b0831..86e1ec293 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/groupnet_subnets.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/groupnet_subnets.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/groupnet_subnets_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/groupnet_subnets_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/groupnet_subnets_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/groupnet_subnets_extended.py index 4e653b5c9..fa18309e6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/groupnet_subnets_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/groupnet_subnets_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/groupnets_summary.py b/isilon_sdk/isilon_sdk/v9_4_0/models/groupnets_summary.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/groupnets_summary.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/groupnets_summary.py index d403e414d..1aacffc62 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/groupnets_summary.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/groupnets_summary.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/groupnets_summary_summary.py b/isilon_sdk/isilon_sdk/v9_4_0/models/groupnets_summary_summary.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/groupnets_summary_summary.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/groupnets_summary_summary.py index 10880bf84..56c72f88d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/groupnets_summary_summary.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/groupnets_summary_summary.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/groupnets_summary_summary_list_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/groupnets_summary_summary_list_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/groupnets_summary_summary_list_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/groupnets_summary_summary_list_item.py index ece3782dc..f2e88e737 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/groupnets_summary_summary_list_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/groupnets_summary_summary_list_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_reports.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hardening_apply_item.py similarity index 55% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hardening_reports.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hardening_apply_item.py index 2c99b58c7..5b9787417 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_reports.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hardening_apply_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class HardeningReports(object): +class HardeningApplyItem(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -31,41 +31,69 @@ class HardeningReports(object): and the value is json key in definition. """ swagger_types = { - 'report': 'HardeningReportsReport' + 'profile': 'str', + 'report': 'bool' } attribute_map = { + 'profile': 'profile', 'report': 'report' } - def __init__(self, report=None): # noqa: E501 - """HardeningReports - a model defined in Swagger""" # noqa: E501 + def __init__(self, profile=None, report=None): # noqa: E501 + """HardeningApplyItem - a model defined in Swagger""" # noqa: E501 + self._profile = None self._report = None self.discriminator = None + if profile is not None: + self.profile = profile if report is not None: self.report = report + @property + def profile(self): + """Gets the profile of this HardeningApplyItem. # noqa: E501 + + Hardening profile. # noqa: E501 + + :return: The profile of this HardeningApplyItem. # noqa: E501 + :rtype: str + """ + return self._profile + + @profile.setter + def profile(self, profile): + """Sets the profile of this HardeningApplyItem. + + Hardening profile. # noqa: E501 + + :param profile: The profile of this HardeningApplyItem. # noqa: E501 + :type: str + """ + + self._profile = profile + @property def report(self): - """Gets the report of this HardeningReports. # noqa: E501 + """Gets the report of this HardeningApplyItem. # noqa: E501 - A report for all profiles. # noqa: E501 + Option to only generate and display a report on current cluster configuration with respect to the expected configuration required to apply hardening. If this option is set to true, hardening is not applied after the report is displayed. By default, this option is false. # noqa: E501 - :return: The report of this HardeningReports. # noqa: E501 - :rtype: HardeningReportsReport + :return: The report of this HardeningApplyItem. # noqa: E501 + :rtype: bool """ return self._report @report.setter def report(self, report): - """Sets the report of this HardeningReports. + """Sets the report of this HardeningApplyItem. - A report for all profiles. # noqa: E501 + Option to only generate and display a report on current cluster configuration with respect to the expected configuration required to apply hardening. If this option is set to true, hardening is not applied after the report is displayed. By default, this option is false. # noqa: E501 - :param report: The report of this HardeningReports. # noqa: E501 - :type: HardeningReportsReport + :param report: The report of this HardeningApplyItem. # noqa: E501 + :type: bool """ self._report = report @@ -91,7 +119,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(HardeningReports, dict): + if issubclass(HardeningApplyItem, dict): for key, value in self.items(): result[key] = value @@ -107,7 +135,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, HardeningReports): + if not isinstance(other, HardeningApplyItem): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_apply_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hardening_resolve_item.py similarity index 71% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hardening_apply_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hardening_resolve_item.py index 012189b98..f748d57e7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_apply_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hardening_resolve_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class HardeningApplyItem(object): +class HardeningResolveItem(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -39,7 +39,7 @@ class HardeningApplyItem(object): } def __init__(self, profile=None): # noqa: E501 - """HardeningApplyItem - a model defined in Swagger""" # noqa: E501 + """HardeningResolveItem - a model defined in Swagger""" # noqa: E501 self._profile = None self.discriminator = None @@ -49,30 +49,24 @@ def __init__(self, profile=None): # noqa: E501 @property def profile(self): - """Gets the profile of this HardeningApplyItem. # noqa: E501 + """Gets the profile of this HardeningResolveItem. # noqa: E501 Hardening profile. # noqa: E501 - :return: The profile of this HardeningApplyItem. # noqa: E501 + :return: The profile of this HardeningResolveItem. # noqa: E501 :rtype: str """ return self._profile @profile.setter def profile(self, profile): - """Sets the profile of this HardeningApplyItem. + """Sets the profile of this HardeningResolveItem. Hardening profile. # noqa: E501 - :param profile: The profile of this HardeningApplyItem. # noqa: E501 + :param profile: The profile of this HardeningResolveItem. # noqa: E501 :type: str """ - if profile is not None and len(profile) > 256: - raise ValueError("Invalid value for `profile`, length must be less than or equal to `256`") # noqa: E501 - if profile is not None and len(profile) < 1: - raise ValueError("Invalid value for `profile`, length must be greater than or equal to `1`") # noqa: E501 - if profile is not None and not re.search(r'^([a-zA-Z0-9]|_|-)*$', profile): # noqa: E501 - raise ValueError(r"Invalid value for `profile`, must be a follow pattern or equal to `/^([a-zA-Z0-9]|_|-)*$/`") # noqa: E501 self._profile = profile @@ -97,7 +91,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(HardeningApplyItem, dict): + if issubclass(HardeningResolveItem, dict): for key, value in self.items(): result[key] = value @@ -113,7 +107,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, HardeningApplyItem): + if not isinstance(other, HardeningResolveItem): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_state.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hardening_state.py similarity index 94% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hardening_state.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hardening_state.py index 152c985ba..60470ca1b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_state.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hardening_state.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -51,7 +51,7 @@ def __init__(self, state=None): # noqa: E501 def state(self): """Gets the state of this HardeningState. # noqa: E501 - The state of hardening service. # noqa: E501 + The state of hardening operation on the cluster. # noqa: E501 :return: The state of this HardeningState. # noqa: E501 :rtype: HardeningStateState @@ -62,7 +62,7 @@ def state(self): def state(self, state): """Sets the state of this HardeningState. - The state of hardening service. # noqa: E501 + The state of hardening operation on the cluster. # noqa: E501 :param state: The state of this HardeningState. # noqa: E501 :type: HardeningStateState diff --git a/isilon_sdk/isilon_sdk/v9_4_0/models/hardening_state_state.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hardening_state_state.py new file mode 100644 index 000000000..a0e8d78d4 --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hardening_state_state.py @@ -0,0 +1,179 @@ +# coding: utf-8 + +""" + Isilon SDK + + Isilon SDK - Language bindings for the OneFS API # noqa: E501 + + OpenAPI spec version: 15 + Contact: sdk@isilon.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + + +class HardeningStateState(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'issues_file': 'str', + 'message': 'str', + 'state': 'str' + } + + attribute_map = { + 'issues_file': 'issues_file', + 'message': 'message', + 'state': 'state' + } + + def __init__(self, issues_file=None, message=None, state=None): # noqa: E501 + """HardeningStateState - a model defined in Swagger""" # noqa: E501 + + self._issues_file = None + self._message = None + self._state = None + self.discriminator = None + + if issues_file is not None: + self.issues_file = issues_file + if message is not None: + self.message = message + if state is not None: + self.state = state + + @property + def issues_file(self): + """Gets the issues_file of this HardeningStateState. # noqa: E501 + + Full contents name of issues file, or null if no issues file is configured. This file contains all issues found when the cluster configuration is checked against expected configuration. # noqa: E501 + + :return: The issues_file of this HardeningStateState. # noqa: E501 + :rtype: str + """ + return self._issues_file + + @issues_file.setter + def issues_file(self, issues_file): + """Sets the issues_file of this HardeningStateState. + + Full contents name of issues file, or null if no issues file is configured. This file contains all issues found when the cluster configuration is checked against expected configuration. # noqa: E501 + + :param issues_file: The issues_file of this HardeningStateState. # noqa: E501 + :type: str + """ + + self._issues_file = issues_file + + @property + def message(self): + """Gets the message of this HardeningStateState. # noqa: E501 + + This contains more information and details about the operation state. # noqa: E501 + + :return: The message of this HardeningStateState. # noqa: E501 + :rtype: str + """ + return self._message + + @message.setter + def message(self, message): + """Sets the message of this HardeningStateState. + + This contains more information and details about the operation state. # noqa: E501 + + :param message: The message of this HardeningStateState. # noqa: E501 + :type: str + """ + + self._message = message + + @property + def state(self): + """Gets the state of this HardeningStateState. # noqa: E501 + + The state of the hardening operation. In case there is no operation currently going on, this will display the last state of operation. # noqa: E501 + + :return: The state of this HardeningStateState. # noqa: E501 + :rtype: str + """ + return self._state + + @state.setter + def state(self, state): + """Sets the state of this HardeningStateState. + + The state of the hardening operation. In case there is no operation currently going on, this will display the last state of operation. # noqa: E501 + + :param state: The state of this HardeningStateState. # noqa: E501 + :type: str + """ + allowed_values = ["Disabled", "Checking_Before_Apply", "Issues_Found_Before_Apply", "Applying", "Enabled", "Checking_Before_Revert", "Issues_Found_Before_Revert", "Reverting", "Failed", "Resolving", "Issues_Resolved", "No_Issues_Found", "Resolved_failed", "Issues_Found_In_Report", "No_Issues_Found_In_Report", "Other"] # noqa: E501 + if state not in allowed_values: + raise ValueError( + "Invalid value for `state` ({0}), must be one of {1}" # noqa: E501 + .format(state, allowed_values) + ) + + self._state = state + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(HardeningStateState, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, HardeningStateState): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + """Returns true if both objects are not equal""" + return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/connectivity_status.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hardening_status.py similarity index 77% rename from isilon_sdk/isilon_sdk/v9_11_0/models/connectivity_status.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hardening_status.py index 335d93239..7df3808f4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/connectivity_status.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hardening_status.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class ConnectivityStatus(object): +class HardeningStatus(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -31,7 +31,7 @@ class ConnectivityStatus(object): and the value is json key in definition. """ swagger_types = { - 'status': 'ConnectivityStatusStatus' + 'status': 'HardeningStatusStatus' } attribute_map = { @@ -39,7 +39,7 @@ class ConnectivityStatus(object): } def __init__(self, status=None): # noqa: E501 - """ConnectivityStatus - a model defined in Swagger""" # noqa: E501 + """HardeningStatus - a model defined in Swagger""" # noqa: E501 self._status = None self.discriminator = None @@ -49,23 +49,23 @@ def __init__(self, status=None): # noqa: E501 @property def status(self): - """Gets the status of this ConnectivityStatus. # noqa: E501 + """Gets the status of this HardeningStatus. # noqa: E501 - # noqa: E501 + Hardening Status of the cluster. # noqa: E501 - :return: The status of this ConnectivityStatus. # noqa: E501 - :rtype: ConnectivityStatusStatus + :return: The status of this HardeningStatus. # noqa: E501 + :rtype: HardeningStatusStatus """ return self._status @status.setter def status(self, status): - """Sets the status of this ConnectivityStatus. + """Sets the status of this HardeningStatus. - # noqa: E501 + Hardening Status of the cluster. # noqa: E501 - :param status: The status of this ConnectivityStatus. # noqa: E501 - :type: ConnectivityStatusStatus + :param status: The status of this HardeningStatus. # noqa: E501 + :type: HardeningStatusStatus """ self._status = status @@ -91,7 +91,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(ConnectivityStatus, dict): + if issubclass(HardeningStatus, dict): for key, value in self.items(): result[key] = value @@ -107,7 +107,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, ConnectivityStatus): + if not isinstance(other, HardeningStatus): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_terms_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hardening_status_status.py similarity index 64% rename from isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_terms_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hardening_status_status.py index 21e77504d..5554f2af9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/supportassist_terms_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hardening_status_status.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class SupportassistTermsExtended(object): +class HardeningStatusStatus(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -31,45 +31,44 @@ class SupportassistTermsExtended(object): and the value is json key in definition. """ swagger_types = { - 'accepted': 'bool' + 'message': 'str' } attribute_map = { - 'accepted': 'accepted' + 'message': 'message' } - def __init__(self, accepted=None): # noqa: E501 - """SupportassistTermsExtended - a model defined in Swagger""" # noqa: E501 + def __init__(self, message=None): # noqa: E501 + """HardeningStatusStatus - a model defined in Swagger""" # noqa: E501 - self._accepted = None + self._message = None self.discriminator = None - self.accepted = accepted + if message is not None: + self.message = message @property - def accepted(self): - """Gets the accepted of this SupportassistTermsExtended. # noqa: E501 + def message(self): + """Gets the message of this HardeningStatusStatus. # noqa: E501 - Set Telemetry Notice as accepted or rejected. # noqa: E501 + Status text containing cluster-level and nodewise hardening status. Also includes hardening profile if hardening is enabled on at least one node. # noqa: E501 - :return: The accepted of this SupportassistTermsExtended. # noqa: E501 - :rtype: bool + :return: The message of this HardeningStatusStatus. # noqa: E501 + :rtype: str """ - return self._accepted + return self._message - @accepted.setter - def accepted(self, accepted): - """Sets the accepted of this SupportassistTermsExtended. + @message.setter + def message(self, message): + """Sets the message of this HardeningStatusStatus. - Set Telemetry Notice as accepted or rejected. # noqa: E501 + Status text containing cluster-level and nodewise hardening status. Also includes hardening profile if hardening is enabled on at least one node. # noqa: E501 - :param accepted: The accepted of this SupportassistTermsExtended. # noqa: E501 - :type: bool + :param message: The message of this HardeningStatusStatus. # noqa: E501 + :type: str """ - if accepted is None: - raise ValueError("Invalid value for `accepted`, must not be `None`") # noqa: E501 - self._accepted = accepted + self._message = message def to_dict(self): """Returns the model properties as a dict""" @@ -92,7 +91,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(SupportassistTermsExtended, dict): + if issubclass(HardeningStatusStatus, dict): for key, value in self.items(): result[key] = value @@ -108,7 +107,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, SupportassistTermsExtended): + if not isinstance(other, HardeningStatusStatus): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hardware_fcport.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hardware_fcport.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hardware_fcport.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hardware_fcport.py index a48c3aa0f..b490bc1eb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hardware_fcport.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hardware_fcport.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hardware_fcports.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hardware_fcports.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hardware_fcports.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hardware_fcports.py index 1ef52a90e..18dbb3bbb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hardware_fcports.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hardware_fcports.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hardware_fcports_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hardware_fcports_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hardware_fcports_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hardware_fcports_node.py index 40cbd140c..8fa6ae7f7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hardware_fcports_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hardware_fcports_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hardware_fcports_node_fcport.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hardware_fcports_node_fcport.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hardware_fcports_node_fcport.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hardware_fcports_node_fcport.py index 6d128851a..f5db4002a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hardware_fcports_node_fcport.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hardware_fcports_node_fcport.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hardware_tape_name_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hardware_tape_name_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hardware_tape_name_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hardware_tape_name_params.py index 7c2b0f42e..5800a277b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hardware_tape_name_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hardware_tape_name_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hardware_tapes.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hardware_tapes.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hardware_tapes.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hardware_tapes.py index 6c9a0d745..3cb54e2a6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hardware_tapes.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hardware_tapes.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hardware_tapes_devices.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hardware_tapes_devices.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hardware_tapes_devices.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hardware_tapes_devices.py index 067e5d125..433941971 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hardware_tapes_devices.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hardware_tapes_devices.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hardware_tapes_devices_media_changer.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hardware_tapes_devices_media_changer.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hardware_tapes_devices_media_changer.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hardware_tapes_devices_media_changer.py index 1c4b1f0c9..f750f0e62 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hardware_tapes_devices_media_changer.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hardware_tapes_devices_media_changer.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hardware_tapes_devices_media_changer_path.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hardware_tapes_devices_media_changer_path.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hardware_tapes_devices_media_changer_path.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hardware_tapes_devices_media_changer_path.py index 43517bf21..0e1e0e8ea 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hardware_tapes_devices_media_changer_path.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hardware_tapes_devices_media_changer_path.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_crypto_encryption_zone.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_crypto_encryption_zone.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_crypto_encryption_zone.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_crypto_encryption_zone.py index 720fbc708..598bac365 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_crypto_encryption_zone.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_crypto_encryption_zone.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_skip_optional.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_crypto_encryption_zones.py similarity index 64% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_skip_optional.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_crypto_encryption_zones.py index 616539177..ef577650c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_skip_optional.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_crypto_encryption_zones.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class ClusterSkipOptional(object): +class HdfsCryptoEncryptionZones(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -31,44 +31,42 @@ class ClusterSkipOptional(object): and the value is json key in definition. """ swagger_types = { - 'skip_optional': 'bool' + 'encryption_zones': 'list[HdfsCryptoEncryptionZonesEncryptionZone]' } attribute_map = { - 'skip_optional': 'skip_optional' + 'encryption_zones': 'encryption_zones' } - def __init__(self, skip_optional=None): # noqa: E501 - """ClusterSkipOptional - a model defined in Swagger""" # noqa: E501 + def __init__(self, encryption_zones=None): # noqa: E501 + """HdfsCryptoEncryptionZones - a model defined in Swagger""" # noqa: E501 - self._skip_optional = None + self._encryption_zones = None self.discriminator = None - if skip_optional is not None: - self.skip_optional = skip_optional + if encryption_zones is not None: + self.encryption_zones = encryption_zones @property - def skip_optional(self): - """Gets the skip_optional of this ClusterSkipOptional. # noqa: E501 + def encryption_zones(self): + """Gets the encryption_zones of this HdfsCryptoEncryptionZones. # noqa: E501 - Used to indicate that the optional pre-upgrade checks should notbe skipped. # noqa: E501 - :return: The skip_optional of this ClusterSkipOptional. # noqa: E501 - :rtype: bool + :return: The encryption_zones of this HdfsCryptoEncryptionZones. # noqa: E501 + :rtype: list[HdfsCryptoEncryptionZonesEncryptionZone] """ - return self._skip_optional + return self._encryption_zones - @skip_optional.setter - def skip_optional(self, skip_optional): - """Sets the skip_optional of this ClusterSkipOptional. + @encryption_zones.setter + def encryption_zones(self, encryption_zones): + """Sets the encryption_zones of this HdfsCryptoEncryptionZones. - Used to indicate that the optional pre-upgrade checks should notbe skipped. # noqa: E501 - :param skip_optional: The skip_optional of this ClusterSkipOptional. # noqa: E501 - :type: bool + :param encryption_zones: The encryption_zones of this HdfsCryptoEncryptionZones. # noqa: E501 + :type: list[HdfsCryptoEncryptionZonesEncryptionZone] """ - self._skip_optional = skip_optional + self._encryption_zones = encryption_zones def to_dict(self): """Returns the model properties as a dict""" @@ -91,7 +89,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(ClusterSkipOptional, dict): + if issubclass(HdfsCryptoEncryptionZones, dict): for key, value in self.items(): result[key] = value @@ -107,7 +105,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, ClusterSkipOptional): + if not isinstance(other, HdfsCryptoEncryptionZones): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_crypto_encryption_zones_encryption_zone.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_crypto_encryption_zones_encryption_zone.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_crypto_encryption_zones_encryption_zone.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_crypto_encryption_zones_encryption_zone.py index 606872cb9..1f304ff23 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_crypto_encryption_zones_encryption_zone.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_crypto_encryption_zones_encryption_zone.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_crypto_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_crypto_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_crypto_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_crypto_settings.py index a9289ecef..c095fb78e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_crypto_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_crypto_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_crypto_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_crypto_settings_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_crypto_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_crypto_settings_settings.py index f49a7f93f..a3e16a8bf 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_crypto_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_crypto_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_fsimage_job.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_fsimage_job.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_fsimage_job.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_fsimage_job.py index 87fa8720e..b7ff686b7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_fsimage_job.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_fsimage_job.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_fsimage_job_job.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_fsimage_job_job.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_fsimage_job_job.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_fsimage_job_job.py index a41a42eae..6e5311124 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_fsimage_job_job.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_fsimage_job_job.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_fsimage_job_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_fsimage_job_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_fsimage_job_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_fsimage_job_settings.py index eebe79884..6c6b8a546 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_fsimage_job_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_fsimage_job_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_fsimage_job_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_fsimage_job_settings_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_fsimage_job_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_fsimage_job_settings_settings.py index 1529ea8c7..d813634ef 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_fsimage_job_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_fsimage_job_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_fsimage_latest.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_fsimage_latest.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_fsimage_latest.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_fsimage_latest.py index 0c7d874ed..9ece37059 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_fsimage_latest.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_fsimage_latest.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_fsimage_latest_latest.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_fsimage_latest_latest.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_fsimage_latest_latest.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_fsimage_latest_latest.py index ab5b85978..ee3933bb1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_fsimage_latest_latest.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_fsimage_latest_latest.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_fsimage_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_fsimage_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_fsimage_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_fsimage_settings.py index dcf3f24fb..bb9ad952b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_fsimage_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_fsimage_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_fsimage_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_fsimage_settings_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_fsimage_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_fsimage_settings_settings.py index 4b576bd20..5d6b250bb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_fsimage_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_fsimage_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_inotify_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_inotify_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_inotify_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_inotify_settings.py index ed877d879..d7c192277 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_inotify_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_inotify_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_inotify_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_inotify_settings_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_inotify_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_inotify_settings_settings.py index 52438c0c3..68a2f77bb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_inotify_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_inotify_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_inotify_stream.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_inotify_stream.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_inotify_stream.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_inotify_stream.py index daa81208d..adceacf98 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_inotify_stream.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_inotify_stream.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_inotify_stream_stream.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_inotify_stream_stream.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_inotify_stream_stream.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_inotify_stream_stream.py index 44e709998..27a8dfbda 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_inotify_stream_stream.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_inotify_stream_stream.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_log_level.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_log_level.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_log_level.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_log_level.py index d30195aa4..6c5607fe8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_log_level.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_log_level.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_proxyuser.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_proxyuser.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_proxyuser.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_proxyuser.py index fc5d86cd3..729607851 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_proxyuser.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_proxyuser.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_proxyuser_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_proxyuser_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_proxyuser_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_proxyuser_create_params.py index c6be3acbe..66e3389b0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_proxyuser_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_proxyuser_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_proxyusers.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_proxyusers.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_proxyusers.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_proxyusers.py index df51fb78f..348b08568 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_proxyusers.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_proxyusers.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_proxyusers_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_proxyusers_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_proxyusers_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_proxyusers_extended.py index 9b53a3a7c..08a1689aa 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_proxyusers_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_proxyusers_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_rack.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_rack.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_rack.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_rack.py index 2acc07d89..e7a986aee 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_rack.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_rack.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_rack_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_rack_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_rack_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_rack_create_params.py index eb4bfb2cf..eed663c94 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_rack_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_rack_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_rack_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_rack_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_rack_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_rack_extended.py index 0ab0692c3..14e169a9d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_rack_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_rack_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_racks.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_racks.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_racks.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_racks.py index b30bab1a0..6570141c4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_racks.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_racks.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_racks_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_racks_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_racks_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_racks_extended.py index 9a9b75c5f..4024aee81 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_racks_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_racks_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_ranger_plugin_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_ranger_plugin_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_ranger_plugin_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_ranger_plugin_settings.py index 0ec40336c..4a852c298 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_ranger_plugin_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_ranger_plugin_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_ranger_plugin_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_ranger_plugin_settings_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_ranger_plugin_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_ranger_plugin_settings_settings.py index 4913cf3f5..03474b5f3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_ranger_plugin_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_ranger_plugin_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_settings.py index 3ff6bad89..c7eeee17b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_settings_global.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_settings_global.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_settings_global.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_settings_global.py index f69014c65..5184c7505 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_settings_global.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_settings_global.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_settings_global_global_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_settings_global_global_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_settings_global_global_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_settings_global_global_settings.py index fdbfa9a39..36eb79bb0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_settings_global_global_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_settings_global_global_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_settings_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_settings_settings.py index f7ad098c2..98d203686 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hdfs_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/hdfs_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_autoupdate.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_autoupdate.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_autoupdate.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_autoupdate.py index 6d170f26d..e5e65356a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_autoupdate.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_autoupdate.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_autoupdate_autoupdate.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_autoupdate_autoupdate.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_autoupdate_autoupdate.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_autoupdate_autoupdate.py index d9f16f07b..4eea15148 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_autoupdate_autoupdate.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_autoupdate_autoupdate.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_checklist.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_checklist.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_checklist.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_checklist.py index 4ac5b4087..589f751ff 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_checklist.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_checklist.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_checklist_delivery_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_checklist_delivery_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_checklist_delivery_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_checklist_delivery_item.py index 122302f57..da5bb664d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_checklist_delivery_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_checklist_delivery_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_checklist_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_checklist_extended.py similarity index 88% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_checklist_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_checklist_extended.py index bfeb65856..c4c0a4ab6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_checklist_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_checklist_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -35,7 +35,6 @@ class HealthcheckChecklistExtended(object): 'history': 'int', 'description': 'str', 'id': 'str', - 'internal': 'bool', 'items': 'list[HealthcheckChecklistItem]' } @@ -44,18 +43,16 @@ class HealthcheckChecklistExtended(object): 'history': 'history', 'description': 'description', 'id': 'id', - 'internal': 'internal', 'items': 'items' } - def __init__(self, delivery=None, history=None, description=None, id=None, internal=None, items=None): # noqa: E501 + def __init__(self, delivery=None, history=None, description=None, id=None, items=None): # noqa: E501 """HealthcheckChecklistExtended - a model defined in Swagger""" # noqa: E501 self._delivery = None self._history = None self._description = None self._id = None - self._internal = None self._items = None self.discriminator = None @@ -67,8 +64,6 @@ def __init__(self, delivery=None, history=None, description=None, id=None, inter self.description = description if id is not None: self.id = id - if internal is not None: - self.internal = internal if items is not None: self.items = items @@ -142,8 +137,8 @@ def description(self, description): :param description: The description of this HealthcheckChecklistExtended. # noqa: E501 :type: str """ - if description is not None and len(description) > 8192: - raise ValueError("Invalid value for `description`, length must be less than or equal to `8192`") # noqa: E501 + if description is not None and len(description) > 255: + raise ValueError("Invalid value for `description`, length must be less than or equal to `255`") # noqa: E501 if description is not None and len(description) < 0: raise ValueError("Invalid value for `description`, length must be greater than or equal to `0`") # noqa: E501 @@ -176,29 +171,6 @@ def id(self, id): self._id = id - @property - def internal(self): - """Gets the internal of this HealthcheckChecklistExtended. # noqa: E501 - - Hide checklist or not # noqa: E501 - - :return: The internal of this HealthcheckChecklistExtended. # noqa: E501 - :rtype: bool - """ - return self._internal - - @internal.setter - def internal(self, internal): - """Sets the internal of this HealthcheckChecklistExtended. - - Hide checklist or not # noqa: E501 - - :param internal: The internal of this HealthcheckChecklistExtended. # noqa: E501 - :type: bool - """ - - self._internal = internal - @property def items(self): """Gets the items of this HealthcheckChecklistExtended. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_checklist_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_checklist_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_checklist_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_checklist_item.py index c0ef0711a..79ae0a4d5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_checklist_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_checklist_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_checklist_item_thresholds.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_checklist_item_thresholds.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_checklist_item_thresholds.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_checklist_item_thresholds.py index 60fabf40e..6b37add43 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_checklist_item_thresholds.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_checklist_item_thresholds.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_checklists.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_checklists.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_checklists.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_checklists.py index 079e60453..072f853b6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_checklists.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_checklists.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_checklists_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_checklists_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_checklists_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_checklists_extended.py index 29abaae59..9e70637e4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_checklists_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_checklists_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_evaluation.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_evaluation.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_evaluation.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_evaluation.py index 984ffed7b..a8de407d1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_evaluation.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_evaluation.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_evaluation_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_evaluation_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_evaluation_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_evaluation_create_params.py index 7d93de833..dc42522dc 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_evaluation_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_evaluation_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_evaluation_detail.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_evaluation_detail.py similarity index 80% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_evaluation_detail.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_evaluation_detail.py index 85f9eded5..da5353e5d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_evaluation_detail.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_evaluation_detail.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -34,10 +34,8 @@ class HealthcheckEvaluationDetail(object): 'details': 'object', 'hash': 'str', 'id': 'str', - 'name': 'str', 'node': 'str', 'parameters': 'Empty', - 'passed': 'bool', 'status': 'str', 'value': 'int' } @@ -46,24 +44,20 @@ class HealthcheckEvaluationDetail(object): 'details': 'details', 'hash': 'hash', 'id': 'id', - 'name': 'name', 'node': 'node', 'parameters': 'parameters', - 'passed': 'passed', 'status': 'status', 'value': 'value' } - def __init__(self, details=None, hash=None, id=None, name=None, node=None, parameters=None, passed=None, status=None, value=None): # noqa: E501 + def __init__(self, details=None, hash=None, id=None, node=None, parameters=None, status=None, value=None): # noqa: E501 """HealthcheckEvaluationDetail - a model defined in Swagger""" # noqa: E501 self._details = None self._hash = None self._id = None - self._name = None self._node = None self._parameters = None - self._passed = None self._status = None self._value = None self.discriminator = None @@ -74,14 +68,10 @@ def __init__(self, details=None, hash=None, id=None, name=None, node=None, param self.hash = hash if id is not None: self.id = id - if name is not None: - self.name = name if node is not None: self.node = node if parameters is not None: self.parameters = parameters - if passed is not None: - self.passed = passed if status is not None: self.status = status if value is not None: @@ -164,33 +154,6 @@ def id(self, id): self._id = id - @property - def name(self): - """Gets the name of this HealthcheckEvaluationDetail. # noqa: E501 - - Name of item # noqa: E501 - - :return: The name of this HealthcheckEvaluationDetail. # noqa: E501 - :rtype: str - """ - return self._name - - @name.setter - def name(self, name): - """Sets the name of this HealthcheckEvaluationDetail. - - Name of item # noqa: E501 - - :param name: The name of this HealthcheckEvaluationDetail. # noqa: E501 - :type: str - """ - if name is not None and len(name) > 255: - raise ValueError("Invalid value for `name`, length must be less than or equal to `255`") # noqa: E501 - if name is not None and len(name) < 0: - raise ValueError("Invalid value for `name`, length must be greater than or equal to `0`") # noqa: E501 - - self._name = name - @property def node(self): """Gets the node of this HealthcheckEvaluationDetail. # noqa: E501 @@ -241,29 +204,6 @@ def parameters(self, parameters): self._parameters = parameters - @property - def passed(self): - """Gets the passed of this HealthcheckEvaluationDetail. # noqa: E501 - - True if the item returned no failures # noqa: E501 - - :return: The passed of this HealthcheckEvaluationDetail. # noqa: E501 - :rtype: bool - """ - return self._passed - - @passed.setter - def passed(self, passed): - """Sets the passed of this HealthcheckEvaluationDetail. - - True if the item returned no failures # noqa: E501 - - :param passed: The passed of this HealthcheckEvaluationDetail. # noqa: E501 - :type: bool - """ - - self._passed = passed - @property def status(self): """Gets the status of this HealthcheckEvaluationDetail. # noqa: E501 @@ -297,7 +237,7 @@ def status(self, status): def value(self): """Gets the value of this HealthcheckEvaluationDetail. # noqa: E501 - Normalized measured value 0 (bad) to 100 (perfect) or -1 for unsupported # noqa: E501 + Normalized measured value 0 (bad) to 100 (perfect) # noqa: E501 :return: The value of this HealthcheckEvaluationDetail. # noqa: E501 :rtype: int @@ -308,15 +248,15 @@ def value(self): def value(self, value): """Sets the value of this HealthcheckEvaluationDetail. - Normalized measured value 0 (bad) to 100 (perfect) or -1 for unsupported # noqa: E501 + Normalized measured value 0 (bad) to 100 (perfect) # noqa: E501 :param value: The value of this HealthcheckEvaluationDetail. # noqa: E501 :type: int """ if value is not None and value > 100: # noqa: E501 raise ValueError("Invalid value for `value`, must be a value less than or equal to `100`") # noqa: E501 - if value is not None and value < -1: # noqa: E501 - raise ValueError("Invalid value for `value`, must be a value greater than or equal to `-1`") # noqa: E501 + if value is not None and value < 0: # noqa: E501 + raise ValueError("Invalid value for `value`, must be a value greater than or equal to `0`") # noqa: E501 self._value = value diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_evaluation_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_evaluation_extended.py similarity index 81% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_evaluation_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_evaluation_extended.py index 7f2d92a7d..9935e724f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_evaluation_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_evaluation_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -37,10 +37,8 @@ class HealthcheckEvaluationExtended(object): 'id': 'str', 'overrides': 'list[HealthcheckEvaluationOverride]', 'parameters': 'Empty', - 'queue_time': 'float', 'result': 'str', 'run_status': 'str', - 'smartlog': 'HealthcheckEvaluationSmartlog', 'start_time': 'float' } @@ -51,14 +49,12 @@ class HealthcheckEvaluationExtended(object): 'id': 'id', 'overrides': 'overrides', 'parameters': 'parameters', - 'queue_time': 'queue_time', 'result': 'result', 'run_status': 'run_status', - 'smartlog': 'smartlog', 'start_time': 'start_time' } - def __init__(self, checklist_id=None, delivery=None, details=None, id=None, overrides=None, parameters=None, queue_time=None, result=None, run_status=None, smartlog=None, start_time=None): # noqa: E501 + def __init__(self, checklist_id=None, delivery=None, details=None, id=None, overrides=None, parameters=None, result=None, run_status=None, start_time=None): # noqa: E501 """HealthcheckEvaluationExtended - a model defined in Swagger""" # noqa: E501 self._checklist_id = None @@ -67,10 +63,8 @@ def __init__(self, checklist_id=None, delivery=None, details=None, id=None, over self._id = None self._overrides = None self._parameters = None - self._queue_time = None self._result = None self._run_status = None - self._smartlog = None self._start_time = None self.discriminator = None @@ -86,14 +80,10 @@ def __init__(self, checklist_id=None, delivery=None, details=None, id=None, over self.overrides = overrides if parameters is not None: self.parameters = parameters - if queue_time is not None: - self.queue_time = queue_time if result is not None: self.result = result if run_status is not None: self.run_status = run_status - if smartlog is not None: - self.smartlog = smartlog if start_time is not None: self.start_time = start_time @@ -243,33 +233,6 @@ def parameters(self, parameters): self._parameters = parameters - @property - def queue_time(self): - """Gets the queue_time of this HealthcheckEvaluationExtended. # noqa: E501 - - Specifies the queue time for a checklist or item. # noqa: E501 - - :return: The queue_time of this HealthcheckEvaluationExtended. # noqa: E501 - :rtype: float - """ - return self._queue_time - - @queue_time.setter - def queue_time(self, queue_time): - """Sets the queue_time of this HealthcheckEvaluationExtended. - - Specifies the queue time for a checklist or item. # noqa: E501 - - :param queue_time: The queue_time of this HealthcheckEvaluationExtended. # noqa: E501 - :type: float - """ - if queue_time is not None and queue_time > 18446744073709551615: # noqa: E501 - raise ValueError("Invalid value for `queue_time`, must be a value less than or equal to `18446744073709551615`") # noqa: E501 - if queue_time is not None and queue_time < 0: # noqa: E501 - raise ValueError("Invalid value for `queue_time`, must be a value greater than or equal to `0`") # noqa: E501 - - self._queue_time = queue_time - @property def result(self): """Gets the result of this HealthcheckEvaluationExtended. # noqa: E501 @@ -319,7 +282,7 @@ def run_status(self, run_status): :param run_status: The run_status of this HealthcheckEvaluationExtended. # noqa: E501 :type: str """ - allowed_values = ["CORRUPT", "QUEUED", "RUNNING", "PAUSED", "FAILED", "COMPLETED"] # noqa: E501 + allowed_values = ["QUEUED", "RUNNING", "PAUSED", "FAILED", "COMPLETED"] # noqa: E501 if run_status not in allowed_values: raise ValueError( "Invalid value for `run_status` ({0}), must be one of {1}" # noqa: E501 @@ -328,29 +291,6 @@ def run_status(self, run_status): self._run_status = run_status - @property - def smartlog(self): - """Gets the smartlog of this HealthcheckEvaluationExtended. # noqa: E501 - - Relevant information that may be needed for the diagnostics api. This object will be absent in the case where no relevant logs exist. # noqa: E501 - - :return: The smartlog of this HealthcheckEvaluationExtended. # noqa: E501 - :rtype: HealthcheckEvaluationSmartlog - """ - return self._smartlog - - @smartlog.setter - def smartlog(self, smartlog): - """Sets the smartlog of this HealthcheckEvaluationExtended. - - Relevant information that may be needed for the diagnostics api. This object will be absent in the case where no relevant logs exist. # noqa: E501 - - :param smartlog: The smartlog of this HealthcheckEvaluationExtended. # noqa: E501 - :type: HealthcheckEvaluationSmartlog - """ - - self._smartlog = smartlog - @property def start_time(self): """Gets the start_time of this HealthcheckEvaluationExtended. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_evaluation_override.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_evaluation_override.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_evaluation_override.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_evaluation_override.py index 7031285a6..647a6483b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_evaluation_override.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_evaluation_override.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_evaluations.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_evaluations.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_evaluations.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_evaluations.py index 4f0f85125..86a4c9293 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_evaluations.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_evaluations.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_evaluations_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_evaluations_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_evaluations_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_evaluations_extended.py index 4285019f4..3dc069608 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_evaluations_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_evaluations_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_item.py similarity index 87% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_item.py index e314c6a2e..0200b7e22 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -37,7 +37,6 @@ class HealthcheckItem(object): 'node': 'bool', 'parameters': 'list[HealthcheckItemParameter]', 'reference': 'str', - 'resolution': 'str', 'summary': 'str' } @@ -48,11 +47,10 @@ class HealthcheckItem(object): 'node': 'node', 'parameters': 'parameters', 'reference': 'reference', - 'resolution': 'resolution', 'summary': 'summary' } - def __init__(self, description=None, freshness=None, id=None, node=None, parameters=None, reference=None, resolution=None, summary=None): # noqa: E501 + def __init__(self, description=None, freshness=None, id=None, node=None, parameters=None, reference=None, summary=None): # noqa: E501 """HealthcheckItem - a model defined in Swagger""" # noqa: E501 self._description = None @@ -61,7 +59,6 @@ def __init__(self, description=None, freshness=None, id=None, node=None, paramet self._node = None self._parameters = None self._reference = None - self._resolution = None self._summary = None self.discriminator = None @@ -77,8 +74,6 @@ def __init__(self, description=None, freshness=None, id=None, node=None, paramet self.parameters = parameters if reference is not None: self.reference = reference - if resolution is not None: - self.resolution = resolution if summary is not None: self.summary = summary @@ -236,33 +231,6 @@ def reference(self, reference): self._reference = reference - @property - def resolution(self): - """Gets the resolution of this HealthcheckItem. # noqa: E501 - - Generalized resolution statement for this item. # noqa: E501 - - :return: The resolution of this HealthcheckItem. # noqa: E501 - :rtype: str - """ - return self._resolution - - @resolution.setter - def resolution(self, resolution): - """Sets the resolution of this HealthcheckItem. - - Generalized resolution statement for this item. # noqa: E501 - - :param resolution: The resolution of this HealthcheckItem. # noqa: E501 - :type: str - """ - if resolution is not None and len(resolution) > 8192: - raise ValueError("Invalid value for `resolution`, length must be less than or equal to `8192`") # noqa: E501 - if resolution is not None and len(resolution) < 0: - raise ValueError("Invalid value for `resolution`, length must be greater than or equal to `0`") # noqa: E501 - - self._resolution = resolution - @property def summary(self): """Gets the summary of this HealthcheckItem. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_item_parameter.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_item_parameter.py similarity index 84% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_item_parameter.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_item_parameter.py index 8e40adf04..050fddc92 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_item_parameter.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_item_parameter.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -82,10 +82,6 @@ def default(self, default): :param default: The default of this HealthcheckItemParameter. # noqa: E501 :type: str """ - if default is not None and len(default) > 255: - raise ValueError("Invalid value for `default`, length must be less than or equal to `255`") # noqa: E501 - if default is not None and len(default) < 0: - raise ValueError("Invalid value for `default`, length must be greater than or equal to `0`") # noqa: E501 self._default = default @@ -109,10 +105,6 @@ def description(self, description): :param description: The description of this HealthcheckItemParameter. # noqa: E501 :type: str """ - if description is not None and len(description) > 255: - raise ValueError("Invalid value for `description`, length must be less than or equal to `255`") # noqa: E501 - if description is not None and len(description) < 0: - raise ValueError("Invalid value for `description`, length must be greater than or equal to `0`") # noqa: E501 self._description = description @@ -159,10 +151,6 @@ def name(self, name): :param name: The name of this HealthcheckItemParameter. # noqa: E501 :type: str """ - if name is not None and len(name) > 255: - raise ValueError("Invalid value for `name`, length must be less than or equal to `255`") # noqa: E501 - if name is not None and len(name) < 1: - raise ValueError("Invalid value for `name`, length must be greater than or equal to `1`") # noqa: E501 self._name = name diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_items.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_items.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_items.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_items.py index e4faf66ce..2a5fe9815 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_items.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_items.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_items_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_items_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_items_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_items_extended.py index 831af0c75..b8228362f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_items_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_items_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_parameter.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_parameter.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_parameter.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_parameter.py index fec834438..316d79afa 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_parameter.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_parameter.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_parameter_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_parameter_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_parameter_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_parameter_create_params.py index e9cf6925b..5bb42473f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_parameter_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_parameter_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_parameters.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_parameters.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_parameters.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_parameters.py index 0e97ab2fc..b6d30bbc9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_parameters.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_parameters.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_parameters_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_parameters_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_parameters_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_parameters_extended.py index 3b1d0a320..701b9482b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_parameters_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_parameters_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_schedule.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_schedule.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_schedule.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_schedule.py index c4b6d801c..379b39407 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_schedule.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_schedule.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_schedule_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_schedule_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_schedule_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_schedule_create_params.py index 6a421ea1e..4f8d5d358 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_schedule_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_schedule_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_schedule_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_schedule_extended.py similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_schedule_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_schedule_extended.py index 74c103aca..a4fcc0796 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_schedule_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_schedule_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -76,7 +76,7 @@ def __init__(self, base=None, checklist=None, id=None, name=None, next_run=None, def base(self): """Gets the base of this HealthcheckScheduleExtended. # noqa: E501 - Seconds from Epoch when schedule was created. # noqa: E501 + Seconds from Epoc when schedule was created. # noqa: E501 :return: The base of this HealthcheckScheduleExtended. # noqa: E501 :rtype: str @@ -87,7 +87,7 @@ def base(self): def base(self, base): """Sets the base of this HealthcheckScheduleExtended. - Seconds from Epoch when schedule was created. # noqa: E501 + Seconds from Epoc when schedule was created. # noqa: E501 :param base: The base of this HealthcheckScheduleExtended. # noqa: E501 :type: str @@ -180,7 +180,7 @@ def name(self, name): def next_run(self): """Gets the next_run of this HealthcheckScheduleExtended. # noqa: E501 - Seconds from Epoch when next evaluation will run. # noqa: E501 + Seconds from Epoc when next evaluation will run. # noqa: E501 :return: The next_run of this HealthcheckScheduleExtended. # noqa: E501 :rtype: str @@ -191,7 +191,7 @@ def next_run(self): def next_run(self, next_run): """Sets the next_run of this HealthcheckScheduleExtended. - Seconds from Epoch when next evaluation will run. # noqa: E501 + Seconds from Epoc when next evaluation will run. # noqa: E501 :param next_run: The next_run of this HealthcheckScheduleExtended. # noqa: E501 :type: str diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_schedules.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_schedules.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_schedules.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_schedules.py index 6bd812325..59ec3c799 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_schedules.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_schedules.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_schedules_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_schedules_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_schedules_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_schedules_extended.py index 9e367cdee..1665daf37 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_schedules_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_schedules_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_version.py b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_version.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_version.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_version.py index f9910ca87..5a5eb457b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/healthcheck_version.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/healthcheck_version.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/histogram_stat_by.py b/isilon_sdk/isilon_sdk/v9_4_0/models/histogram_stat_by.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/histogram_stat_by.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/histogram_stat_by.py index a0b1fc46a..23b813c73 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/histogram_stat_by.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/histogram_stat_by.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/histogram_stat_by_breakout.py b/isilon_sdk/isilon_sdk/v9_4_0/models/histogram_stat_by_breakout.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/histogram_stat_by_breakout.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/histogram_stat_by_breakout.py index 66f193213..77141e686 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/histogram_stat_by_breakout.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/histogram_stat_by_breakout.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/history_file.py b/isilon_sdk/isilon_sdk/v9_4_0/models/history_file.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/history_file.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/history_file.py index 246875f5d..de2dd9b17 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/history_file.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/history_file.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/history_file_statistic.py b/isilon_sdk/isilon_sdk/v9_4_0/models/history_file_statistic.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/history_file_statistic.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/history_file_statistic.py index 635cfde5a..2200d7fb8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/history_file_statistic.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/history_file_statistic.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/http_service.py b/isilon_sdk/isilon_sdk/v9_4_0/models/http_service.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/http_service.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/http_service.py index 93b858b08..2dfcc03df 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/http_service.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/http_service.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/http_service_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/http_service_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/http_service_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/http_service_extended.py index 5fdc1e6d8..32057713c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/http_service_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/http_service_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/http_services.py b/isilon_sdk/isilon_sdk/v9_4_0/models/http_services.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/http_services.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/http_services.py index 53a7709c0..9008f72e8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/http_services.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/http_services.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/http_services_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/http_services_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/http_services_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/http_services_extended.py index 073d91960..518198a8e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/http_services_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/http_services_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/http_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/http_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/http_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/http_settings.py index 56af22b58..715537d72 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/http_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/http_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_4_0/models/http_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/http_settings_settings.py new file mode 100644 index 000000000..166cb75bb --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/http_settings_settings.py @@ -0,0 +1,319 @@ +# coding: utf-8 + +""" + Isilon SDK + + Isilon SDK - Language bindings for the OneFS API # noqa: E501 + + OpenAPI spec version: 15 + Contact: sdk@isilon.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + + +class HttpSettingsSettings(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'access_control': 'bool', + 'basic_authentication': 'bool', + 'dav': 'bool', + 'enable_access_log': 'bool', + 'https': 'bool', + 'integrated_authentication': 'bool', + 'server_root': 'str', + 'service': 'str' + } + + attribute_map = { + 'access_control': 'access_control', + 'basic_authentication': 'basic_authentication', + 'dav': 'dav', + 'enable_access_log': 'enable_access_log', + 'https': 'https', + 'integrated_authentication': 'integrated_authentication', + 'server_root': 'server_root', + 'service': 'service' + } + + def __init__(self, access_control=None, basic_authentication=None, dav=None, enable_access_log=None, https=None, integrated_authentication=None, server_root=None, service=None): # noqa: E501 + """HttpSettingsSettings - a model defined in Swagger""" # noqa: E501 + + self._access_control = None + self._basic_authentication = None + self._dav = None + self._enable_access_log = None + self._https = None + self._integrated_authentication = None + self._server_root = None + self._service = None + self.discriminator = None + + if access_control is not None: + self.access_control = access_control + if basic_authentication is not None: + self.basic_authentication = basic_authentication + if dav is not None: + self.dav = dav + if enable_access_log is not None: + self.enable_access_log = enable_access_log + if https is not None: + self.https = https + if integrated_authentication is not None: + self.integrated_authentication = integrated_authentication + if server_root is not None: + self.server_root = server_root + if service is not None: + self.service = service + + @property + def access_control(self): + """Gets the access_control of this HttpSettingsSettings. # noqa: E501 + + Enable Access Control Authentication # noqa: E501 + + :return: The access_control of this HttpSettingsSettings. # noqa: E501 + :rtype: bool + """ + return self._access_control + + @access_control.setter + def access_control(self, access_control): + """Sets the access_control of this HttpSettingsSettings. + + Enable Access Control Authentication # noqa: E501 + + :param access_control: The access_control of this HttpSettingsSettings. # noqa: E501 + :type: bool + """ + + self._access_control = access_control + + @property + def basic_authentication(self): + """Gets the basic_authentication of this HttpSettingsSettings. # noqa: E501 + + Enable Basic Authentication # noqa: E501 + + :return: The basic_authentication of this HttpSettingsSettings. # noqa: E501 + :rtype: bool + """ + return self._basic_authentication + + @basic_authentication.setter + def basic_authentication(self, basic_authentication): + """Sets the basic_authentication of this HttpSettingsSettings. + + Enable Basic Authentication # noqa: E501 + + :param basic_authentication: The basic_authentication of this HttpSettingsSettings. # noqa: E501 + :type: bool + """ + + self._basic_authentication = basic_authentication + + @property + def dav(self): + """Gets the dav of this HttpSettingsSettings. # noqa: E501 + + Enable DAV specification # noqa: E501 + + :return: The dav of this HttpSettingsSettings. # noqa: E501 + :rtype: bool + """ + return self._dav + + @dav.setter + def dav(self, dav): + """Sets the dav of this HttpSettingsSettings. + + Enable DAV specification # noqa: E501 + + :param dav: The dav of this HttpSettingsSettings. # noqa: E501 + :type: bool + """ + + self._dav = dav + + @property + def enable_access_log(self): + """Gets the enable_access_log of this HttpSettingsSettings. # noqa: E501 + + Enable HTTP access logging # noqa: E501 + + :return: The enable_access_log of this HttpSettingsSettings. # noqa: E501 + :rtype: bool + """ + return self._enable_access_log + + @enable_access_log.setter + def enable_access_log(self, enable_access_log): + """Sets the enable_access_log of this HttpSettingsSettings. + + Enable HTTP access logging # noqa: E501 + + :param enable_access_log: The enable_access_log of this HttpSettingsSettings. # noqa: E501 + :type: bool + """ + + self._enable_access_log = enable_access_log + + @property + def https(self): + """Gets the https of this HttpSettingsSettings. # noqa: E501 + + Use HTTPS transport # noqa: E501 + + :return: The https of this HttpSettingsSettings. # noqa: E501 + :rtype: bool + """ + return self._https + + @https.setter + def https(self, https): + """Sets the https of this HttpSettingsSettings. + + Use HTTPS transport # noqa: E501 + + :param https: The https of this HttpSettingsSettings. # noqa: E501 + :type: bool + """ + + self._https = https + + @property + def integrated_authentication(self): + """Gets the integrated_authentication of this HttpSettingsSettings. # noqa: E501 + + Enable Integrated Authentication # noqa: E501 + + :return: The integrated_authentication of this HttpSettingsSettings. # noqa: E501 + :rtype: bool + """ + return self._integrated_authentication + + @integrated_authentication.setter + def integrated_authentication(self, integrated_authentication): + """Sets the integrated_authentication of this HttpSettingsSettings. + + Enable Integrated Authentication # noqa: E501 + + :param integrated_authentication: The integrated_authentication of this HttpSettingsSettings. # noqa: E501 + :type: bool + """ + + self._integrated_authentication = integrated_authentication + + @property + def server_root(self): + """Gets the server_root of this HttpSettingsSettings. # noqa: E501 + + Document root directory. Must be within /ifs. # noqa: E501 + + :return: The server_root of this HttpSettingsSettings. # noqa: E501 + :rtype: str + """ + return self._server_root + + @server_root.setter + def server_root(self, server_root): + """Sets the server_root of this HttpSettingsSettings. + + Document root directory. Must be within /ifs. # noqa: E501 + + :param server_root: The server_root of this HttpSettingsSettings. # noqa: E501 + :type: str + """ + + self._server_root = server_root + + @property + def service(self): + """Gets the service of this HttpSettingsSettings. # noqa: E501 + + Enable/disable the HTTP service or redirect to WebUI. # noqa: E501 + + :return: The service of this HttpSettingsSettings. # noqa: E501 + :rtype: str + """ + return self._service + + @service.setter + def service(self, service): + """Sets the service of this HttpSettingsSettings. + + Enable/disable the HTTP service or redirect to WebUI. # noqa: E501 + + :param service: The service of this HttpSettingsSettings. # noqa: E501 + :type: str + """ + allowed_values = ["enabled", "disabled", "redirect"] # noqa: E501 + if service not in allowed_values: + raise ValueError( + "Invalid value for `service` ({0}), must be one of {1}" # noqa: E501 + .format(service, allowed_values) + ) + + self._service = service + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(HttpSettingsSettings, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, HttpSettingsSettings): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + """Returns true if both objects are not equal""" + return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_domains.py b/isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_domains.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_domains.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_domains.py index 45c383105..ac27e1733 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_domains.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_domains.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_domains_error.py b/isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_domains_error.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_domains_error.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_domains_error.py index 7d52e6ea0..3149abc25 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_domains_error.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_domains_error.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_domains_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_domains_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_domains_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_domains_extended.py index 20e04da13..b65787bc5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_domains_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_domains_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_domains_path.py b/isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_domains_path.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_domains_path.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_domains_path.py index 6d069b00a..4cd8bf046 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_domains_path.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_domains_path.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_lins.py b/isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_lins.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_lins.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_lins.py index 4e9a08cbe..4681a3800 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_lins.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_lins.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_lins_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_lins_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_lins_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_lins_extended.py index bd2428e8b..0988a8397 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_lins_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_lins_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_lins_path.py b/isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_lins_path.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_lins_path.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_lins_path.py index 67b93f05c..08a74a1a5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_lins_path.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_lins_path.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_zone.py b/isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_zone.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_zone.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_zone.py index 0e98b8d76..e2a120c08 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_zone.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_zone.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_zones.py b/isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_zones.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_zones.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_zones.py index bfef6f45b..05b34eee1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_zones.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_zones.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_zones_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_zones_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_zones_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_zones_extended.py index bb41bad95..6dc7cbf21 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/id_resolution_zones_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/id_resolution_zones_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/inline_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/inline_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/inline_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/inline_settings.py index b55fa3af6..0c60c094f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/inline_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/inline_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/inline_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/inline_settings_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/inline_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/inline_settings_settings.py index 278427307..327f3ce9a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/inline_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/inline_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/internal_networks_preferred_network.py b/isilon_sdk/isilon_sdk/v9_4_0/models/internal_networks_preferred_network.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/internal_networks_preferred_network.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/internal_networks_preferred_network.py index e34661ded..572d4512e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/internal_networks_preferred_network.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/internal_networks_preferred_network.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/internal_networks_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/internal_networks_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/internal_networks_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/internal_networks_settings.py index b92f02419..3ba4af7ee 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/internal_networks_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/internal_networks_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/internal_networks_settings_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/internal_networks_settings_extended.py similarity index 94% rename from isilon_sdk/isilon_sdk/v9_11_0/models/internal_networks_settings_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/internal_networks_settings_extended.py index a0ed884eb..3a1befd98 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/internal_networks_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/internal_networks_settings_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -50,7 +50,7 @@ def __init__(self, network=None): # noqa: E501 def network(self): """Gets the network of this InternalNetworksSettingsExtended. # noqa: E501 - Represents configuration properties per backend network # noqa: E501 + Represents configuraton properties per backend network # noqa: E501 :return: The network of this InternalNetworksSettingsExtended. # noqa: E501 :rtype: InternalNetworksSettingsNetwork @@ -61,7 +61,7 @@ def network(self): def network(self, network): """Sets the network of this InternalNetworksSettingsExtended. - Represents configuration properties per backend network # noqa: E501 + Represents configuraton properties per backend network # noqa: E501 :param network: The network of this InternalNetworksSettingsExtended. # noqa: E501 :type: InternalNetworksSettingsNetwork diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/internal_networks_settings_internal_networks_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/internal_networks_settings_internal_networks_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/internal_networks_settings_internal_networks_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/internal_networks_settings_internal_networks_settings.py index c3066c09d..6b376d789 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/internal_networks_settings_internal_networks_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/internal_networks_settings_internal_networks_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/internal_networks_settings_internal_networks_settings_network_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/internal_networks_settings_internal_networks_settings_network_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/internal_networks_settings_internal_networks_settings_network_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/internal_networks_settings_internal_networks_settings_network_item.py index 22091f5cf..cc9101bd0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/internal_networks_settings_internal_networks_settings_network_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/internal_networks_settings_internal_networks_settings_network_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/internal_networks_settings_internal_networks_settings_network_item_backend_config.py b/isilon_sdk/isilon_sdk/v9_4_0/models/internal_networks_settings_internal_networks_settings_network_item_backend_config.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/internal_networks_settings_internal_networks_settings_network_item_backend_config.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/internal_networks_settings_internal_networks_settings_network_item_backend_config.py index b0395af69..35f70c3f3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/internal_networks_settings_internal_networks_settings_network_item_backend_config.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/internal_networks_settings_internal_networks_settings_network_item_backend_config.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/internal_networks_settings_network.py b/isilon_sdk/isilon_sdk/v9_4_0/models/internal_networks_settings_network.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/internal_networks_settings_network.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/internal_networks_settings_network.py index 64cc4bf96..51a385b0e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/internal_networks_settings_network.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/internal_networks_settings_network.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/internal_networks_settings_network_backend_config.py b/isilon_sdk/isilon_sdk/v9_4_0/models/internal_networks_settings_network_backend_config.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/internal_networks_settings_network_backend_config.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/internal_networks_settings_network_backend_config.py index d67119d50..6d21d09a8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/internal_networks_settings_network_backend_config.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/internal_networks_settings_network_backend_config.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_event.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_event.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_event.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_event.py index bd534663d..e0d2bbfcb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_event.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_event.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_events.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_events.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_events.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_events.py index 3f18fa2c8..734d50adc 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_events.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_events.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_job.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_job.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_job.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_job.py index dae1ba895..a91361d72 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_job.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_job.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_job_avscan_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_job_avscan_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_job_avscan_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_job_avscan_params.py index 545a67211..ee0319f28 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_job_avscan_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_job_avscan_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_job_changelistcreate_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_job_changelistcreate_params.py similarity index 84% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_job_changelistcreate_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_job_changelistcreate_params.py index ce9ba4af3..f540fb62e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_job_changelistcreate_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_job_changelistcreate_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -34,26 +34,23 @@ class JobJobChangelistcreateParams(object): 'create_diffs': 'bool', 'newer_snapid': 'int', 'older_snapid': 'int', - 'retain_repstate': 'bool', - 'track_data_location': 'bool' + 'retain_repstate': 'bool' } attribute_map = { 'create_diffs': 'create_diffs', 'newer_snapid': 'newer_snapid', 'older_snapid': 'older_snapid', - 'retain_repstate': 'retain_repstate', - 'track_data_location': 'track_data_location' + 'retain_repstate': 'retain_repstate' } - def __init__(self, create_diffs=None, newer_snapid=None, older_snapid=None, retain_repstate=None, track_data_location=None): # noqa: E501 + def __init__(self, create_diffs=None, newer_snapid=None, older_snapid=None, retain_repstate=None): # noqa: E501 """JobJobChangelistcreateParams - a model defined in Swagger""" # noqa: E501 self._create_diffs = None self._newer_snapid = None self._older_snapid = None self._retain_repstate = None - self._track_data_location = None self.discriminator = None if create_diffs is not None: @@ -62,8 +59,6 @@ def __init__(self, create_diffs=None, newer_snapid=None, older_snapid=None, reta self.older_snapid = older_snapid if retain_repstate is not None: self.retain_repstate = retain_repstate - if track_data_location is not None: - self.track_data_location = track_data_location @property def create_diffs(self): @@ -141,8 +136,8 @@ def older_snapid(self, older_snapid): raise ValueError("Invalid value for `older_snapid`, must not be `None`") # noqa: E501 if older_snapid is not None and older_snapid > 9223372036854775807: # noqa: E501 raise ValueError("Invalid value for `older_snapid`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if older_snapid is not None and older_snapid < 0: # noqa: E501 - raise ValueError("Invalid value for `older_snapid`, must be a value greater than or equal to `0`") # noqa: E501 + if older_snapid is not None and older_snapid < 1: # noqa: E501 + raise ValueError("Invalid value for `older_snapid`, must be a value greater than or equal to `1`") # noqa: E501 self._older_snapid = older_snapid @@ -169,29 +164,6 @@ def retain_repstate(self, retain_repstate): self._retain_repstate = retain_repstate - @property - def track_data_location(self): - """Gets the track_data_location of this JobJobChangelistcreateParams. # noqa: E501 - - Whether to track data location. # noqa: E501 - - :return: The track_data_location of this JobJobChangelistcreateParams. # noqa: E501 - :rtype: bool - """ - return self._track_data_location - - @track_data_location.setter - def track_data_location(self, track_data_location): - """Sets the track_data_location of this JobJobChangelistcreateParams. - - Whether to track data location. # noqa: E501 - - :param track_data_location: The track_data_location of this JobJobChangelistcreateParams. # noqa: E501 - :type: bool - """ - - self._track_data_location = track_data_location - def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_job_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_job_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_job_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_job_create_params.py index a47eab763..4358912e0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_job_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_job_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_job_domainmark_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_job_domainmark_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_job_domainmark_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_job_domainmark_params.py index ea58501fb..50274cd65 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_job_domainmark_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_job_domainmark_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_job_esrsmftdownload_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_job_esrsmftdownload_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_job_esrsmftdownload_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_job_esrsmftdownload_params.py index 7308426d7..0d3a84567 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_job_esrsmftdownload_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_job_esrsmftdownload_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_job_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_job_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_job_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_job_extended.py index 888d77184..5b07aeffe 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_job_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_job_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_job_filepolicy_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_job_filepolicy_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_job_filepolicy_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_job_filepolicy_params.py index 70087bd1e..1f5713da3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_job_filepolicy_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_job_filepolicy_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_job_prepair_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_job_prepair_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_job_prepair_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_job_prepair_params.py index 8abe9fe60..a205f1eff 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_job_prepair_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_job_prepair_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_job_smartpoolstree_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_job_smartpoolstree_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_job_smartpoolstree_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_job_smartpoolstree_params.py index de7d76cb3..366fa26ca 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_job_smartpoolstree_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_job_smartpoolstree_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_job_snaprevert_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_job_snaprevert_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_job_snaprevert_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_job_snaprevert_params.py index d6d3e679e..a6ca3d17d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_job_snaprevert_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_job_snaprevert_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_job_summary.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_job_summary.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_job_summary.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_job_summary.py index ed2b8fe30..819a449a5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_job_summary.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_job_summary.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_job_summary_summary.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_job_summary_summary.py similarity index 87% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_job_summary_summary.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_job_summary_summary.py index 972b6a599..5bcea7ce2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_job_summary_summary.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_job_summary_summary.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -40,9 +40,7 @@ class JobJobSummarySummary(object): 'job_d_enabled': 'bool', 'next_jid': 'int', 'non_responding_nodes': 'list[int]', - 'pp_enabled': 'bool', 'run_degraded': 'bool', - 'smartthrottling_enabled': 'bool', 'stats_ready': 'bool' } @@ -56,13 +54,11 @@ class JobJobSummarySummary(object): 'job_d_enabled': 'job_d_enabled', 'next_jid': 'next_jid', 'non_responding_nodes': 'non_responding_nodes', - 'pp_enabled': 'pp_enabled', 'run_degraded': 'run_degraded', - 'smartthrottling_enabled': 'smartthrottling_enabled', 'stats_ready': 'stats_ready' } - def __init__(self, cluster_is_degraded=None, connected=None, coordinator=None, coordinator_lnn=None, disconnected_nodes=None, down_or_read_only_nodes=None, job_d_enabled=None, next_jid=None, non_responding_nodes=None, pp_enabled=None, run_degraded=None, smartthrottling_enabled=None, stats_ready=None): # noqa: E501 + def __init__(self, cluster_is_degraded=None, connected=None, coordinator=None, coordinator_lnn=None, disconnected_nodes=None, down_or_read_only_nodes=None, job_d_enabled=None, next_jid=None, non_responding_nodes=None, run_degraded=None, stats_ready=None): # noqa: E501 """JobJobSummarySummary - a model defined in Swagger""" # noqa: E501 self._cluster_is_degraded = None @@ -74,9 +70,7 @@ def __init__(self, cluster_is_degraded=None, connected=None, coordinator=None, c self._job_d_enabled = None self._next_jid = None self._non_responding_nodes = None - self._pp_enabled = None self._run_degraded = None - self._smartthrottling_enabled = None self._stats_ready = None self.discriminator = None @@ -92,9 +86,7 @@ def __init__(self, cluster_is_degraded=None, connected=None, coordinator=None, c self.next_jid = next_jid if non_responding_nodes is not None: self.non_responding_nodes = non_responding_nodes - self.pp_enabled = pp_enabled self.run_degraded = run_degraded - self.smartthrottling_enabled = smartthrottling_enabled self.stats_ready = stats_ready @property @@ -328,31 +320,6 @@ def non_responding_nodes(self, non_responding_nodes): self._non_responding_nodes = non_responding_nodes - @property - def pp_enabled(self): - """Gets the pp_enabled of this JobJobSummarySummary. # noqa: E501 - - Whether Job Engine uses SmartThrottling # noqa: E501 - - :return: The pp_enabled of this JobJobSummarySummary. # noqa: E501 - :rtype: bool - """ - return self._pp_enabled - - @pp_enabled.setter - def pp_enabled(self, pp_enabled): - """Sets the pp_enabled of this JobJobSummarySummary. - - Whether Job Engine uses SmartThrottling # noqa: E501 - - :param pp_enabled: The pp_enabled of this JobJobSummarySummary. # noqa: E501 - :type: bool - """ - if pp_enabled is None: - raise ValueError("Invalid value for `pp_enabled`, must not be `None`") # noqa: E501 - - self._pp_enabled = pp_enabled - @property def run_degraded(self): """Gets the run_degraded of this JobJobSummarySummary. # noqa: E501 @@ -378,31 +345,6 @@ def run_degraded(self, run_degraded): self._run_degraded = run_degraded - @property - def smartthrottling_enabled(self): - """Gets the smartthrottling_enabled of this JobJobSummarySummary. # noqa: E501 - - Whether Job Engine uses SmartThrottling # noqa: E501 - - :return: The smartthrottling_enabled of this JobJobSummarySummary. # noqa: E501 - :rtype: bool - """ - return self._smartthrottling_enabled - - @smartthrottling_enabled.setter - def smartthrottling_enabled(self, smartthrottling_enabled): - """Sets the smartthrottling_enabled of this JobJobSummarySummary. - - Whether Job Engine uses SmartThrottling # noqa: E501 - - :param smartthrottling_enabled: The smartthrottling_enabled of this JobJobSummarySummary. # noqa: E501 - :type: bool - """ - if smartthrottling_enabled is None: - raise ValueError("Invalid value for `smartthrottling_enabled`, must not be `None`") # noqa: E501 - - self._smartthrottling_enabled = smartthrottling_enabled - @property def stats_ready(self): """Gets the stats_ready of this JobJobSummarySummary. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_job_treedelete_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_job_treedelete_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_job_treedelete_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_job_treedelete_params.py index 5455d2d11..26d964d43 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_job_treedelete_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_job_treedelete_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_jobs.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_jobs.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_jobs.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_jobs.py index 738109e77..609d28a71 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_jobs.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_jobs.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_jobs_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_jobs_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_jobs_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_jobs_extended.py index 31fa52f0c..580c0b3c5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_jobs_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_jobs_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_policies.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_policies.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_policies.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_policies.py index f36864469..010670cf9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_policies.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_policies.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_policies_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_policies_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_policies_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_policies_extended.py index 34206d47e..d0ef7fb8d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_policies_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_policies_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_policy.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_policy.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_policy.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_policy.py index fbb55f16f..2e492134e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_policy.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_policy.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_policy_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_policy_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_policy_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_policy_create_params.py index cbe488211..a9170e1e1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_policy_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_policy_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_policy_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_policy_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_policy_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_policy_extended.py index 984edf03c..bdcb10735 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_policy_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_policy_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_policy_interval.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_policy_interval.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_policy_interval.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_policy_interval.py index 68c7729b0..50fea4a52 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_policy_interval.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_policy_interval.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_recent.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_recent.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_recent.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_recent.py index c67397f2c..cb503f362 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_recent.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_recent.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_recent_recent_job.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_recent_recent_job.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_recent_recent_job.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_recent_recent_job.py index 9065f4987..748f184b7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_recent_recent_job.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_recent_recent_job.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_report.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_report.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_report.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_report.py index ddbf4544c..b68ec84a1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_report.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_report.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_reports.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_reports.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_reports.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_reports.py index e827c4c0f..1283d08cd 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_reports.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_reports.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics.py index bda20ecae..d0768b057 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job.py index 0ae3cff89..b20e3222a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job_node.py index 02c7ebc13..37e5f7427 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job_node_cpu.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job_node_cpu.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job_node_cpu.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job_node_cpu.py index 76879cbf0..61478b192 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job_node_cpu.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job_node_cpu.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job_node_io.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job_node_io.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job_node_io.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job_node_io.py index 2957cec42..cd3528372 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job_node_io.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job_node_io.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job_node_io_read.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job_node_io_read.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job_node_io_read.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job_node_io_read.py index c391ed4f3..1e73f45b2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job_node_io_read.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job_node_io_read.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job_node_io_write.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job_node_io_write.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job_node_io_write.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job_node_io_write.py index 35097f490..373178c5f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job_node_io_write.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job_node_io_write.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job_node_memory.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job_node_memory.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job_node_memory.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job_node_memory.py index 824bb3cec..c31e219c4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job_node_memory.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job_node_memory.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job_node_memory_physical.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job_node_memory_physical.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job_node_memory_physical.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job_node_memory_physical.py index b6ea59bb2..7353948e6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job_node_memory_physical.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job_node_memory_physical.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job_node_memory_virtual.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job_node_memory_virtual.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job_node_memory_virtual.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job_node_memory_virtual.py index 157f9cdd8..cdc50bb04 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job_node_memory_virtual.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job_node_memory_virtual.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job_node_worker.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job_node_worker.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job_node_worker.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job_node_worker.py index afa18b94f..e622c29b5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_statistics_job_node_worker.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_statistics_job_node_worker.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_type.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_type.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_type.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_type.py index d4ae100da..e9ce6a76e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_type.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_type.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_type_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_type_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_type_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_type_extended.py index c69346102..ff14685b8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_type_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_type_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_types.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_types.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_types.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_types.py index 8a5cfe1d6..835f158a5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_types.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_types.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/job_types_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/job_types_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/job_types_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/job_types_extended.py index 783459ccc..5b5745413 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/job_types_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/job_types_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/kmip_server.py b/isilon_sdk/isilon_sdk/v9_4_0/models/kmip_server.py similarity index 88% rename from isilon_sdk/isilon_sdk/v9_11_0/models/kmip_server.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/kmip_server.py index 6bceb9eb5..387ed5e6c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/kmip_server.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/kmip_server.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -38,8 +38,7 @@ class KmipServer(object): 'host': 'str', 'minimum_tls_version': 'str', 'port': 'int', - 'retry_timeout': 'int', - 'tls_ciphers': 'str' + 'retry_timeout': 'int' } attribute_map = { @@ -50,11 +49,10 @@ class KmipServer(object): 'host': 'host', 'minimum_tls_version': 'minimum_tls_version', 'port': 'port', - 'retry_timeout': 'retry_timeout', - 'tls_ciphers': 'tls_ciphers' + 'retry_timeout': 'retry_timeout' } - def __init__(self, ca_cert_path=None, client_cert_password=None, client_cert_path=None, connection_timeout=None, host=None, minimum_tls_version=None, port=None, retry_timeout=None, tls_ciphers=None): # noqa: E501 + def __init__(self, ca_cert_path=None, client_cert_password=None, client_cert_path=None, connection_timeout=None, host=None, minimum_tls_version=None, port=None, retry_timeout=None): # noqa: E501 """KmipServer - a model defined in Swagger""" # noqa: E501 self._ca_cert_path = None @@ -65,7 +63,6 @@ def __init__(self, ca_cert_path=None, client_cert_password=None, client_cert_pat self._minimum_tls_version = None self._port = None self._retry_timeout = None - self._tls_ciphers = None self.discriminator = None if ca_cert_path is not None: @@ -84,8 +81,6 @@ def __init__(self, ca_cert_path=None, client_cert_password=None, client_cert_pat self.port = port if retry_timeout is not None: self.retry_timeout = retry_timeout - if tls_ciphers is not None: - self.tls_ciphers = tls_ciphers @property def ca_cert_path(self): @@ -226,7 +221,7 @@ def host(self, host): def minimum_tls_version(self): """Gets the minimum_tls_version of this KmipServer. # noqa: E501 - Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. Supported versions: '1.1', '1.2' and '1.3'. # noqa: E501 + Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. However other supported values are '1.0' and '1.1'. # noqa: E501 :return: The minimum_tls_version of this KmipServer. # noqa: E501 :rtype: str @@ -237,7 +232,7 @@ def minimum_tls_version(self): def minimum_tls_version(self, minimum_tls_version): """Sets the minimum_tls_version of this KmipServer. - Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. Supported versions: '1.1', '1.2' and '1.3'. # noqa: E501 + Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. However other supported values are '1.0' and '1.1'. # noqa: E501 :param minimum_tls_version: The minimum_tls_version of this KmipServer. # noqa: E501 :type: str @@ -305,33 +300,6 @@ def retry_timeout(self, retry_timeout): self._retry_timeout = retry_timeout - @property - def tls_ciphers(self): - """Gets the tls_ciphers of this KmipServer. # noqa: E501 - - TLS cipher suite to use for communication with the KMIP server. # noqa: E501 - - :return: The tls_ciphers of this KmipServer. # noqa: E501 - :rtype: str - """ - return self._tls_ciphers - - @tls_ciphers.setter - def tls_ciphers(self, tls_ciphers): - """Sets the tls_ciphers of this KmipServer. - - TLS cipher suite to use for communication with the KMIP server. # noqa: E501 - - :param tls_ciphers: The tls_ciphers of this KmipServer. # noqa: E501 - :type: str - """ - if tls_ciphers is not None and len(tls_ciphers) > 8192: - raise ValueError("Invalid value for `tls_ciphers`, length must be less than or equal to `8192`") # noqa: E501 - if tls_ciphers is not None and len(tls_ciphers) < 0: - raise ValueError("Invalid value for `tls_ciphers`, length must be greater than or equal to `0`") # noqa: E501 - - self._tls_ciphers = tls_ciphers - def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/kmip_server_ca_chain_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/kmip_server_ca_cert.py similarity index 69% rename from isilon_sdk/isilon_sdk/v9_11_0/models/kmip_server_ca_chain_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/kmip_server_ca_cert.py index 3ee517409..322c9ef98 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/kmip_server_ca_chain_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/kmip_server_ca_cert.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class KmipServerCaChainItem(object): +class KmipServerCaCert(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -33,7 +33,6 @@ class KmipServerCaChainItem(object): swagger_types = { 'expiration_date': 'int', 'fingerprint': 'str', - 'issuer': 'str', 'serial': 'int', 'subject': 'str' } @@ -41,17 +40,15 @@ class KmipServerCaChainItem(object): attribute_map = { 'expiration_date': 'expiration_date', 'fingerprint': 'fingerprint', - 'issuer': 'issuer', 'serial': 'serial', 'subject': 'subject' } - def __init__(self, expiration_date=None, fingerprint=None, issuer=None, serial=None, subject=None): # noqa: E501 - """KmipServerCaChainItem - a model defined in Swagger""" # noqa: E501 + def __init__(self, expiration_date=None, fingerprint=None, serial=None, subject=None): # noqa: E501 + """KmipServerCaCert - a model defined in Swagger""" # noqa: E501 self._expiration_date = None self._fingerprint = None - self._issuer = None self._serial = None self._subject = None self.discriminator = None @@ -60,8 +57,6 @@ def __init__(self, expiration_date=None, fingerprint=None, issuer=None, serial=N self.expiration_date = expiration_date if fingerprint is not None: self.fingerprint = fingerprint - if issuer is not None: - self.issuer = issuer if serial is not None: self.serial = serial if subject is not None: @@ -69,22 +64,22 @@ def __init__(self, expiration_date=None, fingerprint=None, issuer=None, serial=N @property def expiration_date(self): - """Gets the expiration_date of this KmipServerCaChainItem. # noqa: E501 + """Gets the expiration_date of this KmipServerCaCert. # noqa: E501 Certificate Authority (CA) certificate expiration date in UNIX timestamp format. # noqa: E501 - :return: The expiration_date of this KmipServerCaChainItem. # noqa: E501 + :return: The expiration_date of this KmipServerCaCert. # noqa: E501 :rtype: int """ return self._expiration_date @expiration_date.setter def expiration_date(self, expiration_date): - """Sets the expiration_date of this KmipServerCaChainItem. + """Sets the expiration_date of this KmipServerCaCert. Certificate Authority (CA) certificate expiration date in UNIX timestamp format. # noqa: E501 - :param expiration_date: The expiration_date of this KmipServerCaChainItem. # noqa: E501 + :param expiration_date: The expiration_date of this KmipServerCaCert. # noqa: E501 :type: int """ if expiration_date is not None and expiration_date > 9223372036854775807: # noqa: E501 @@ -96,22 +91,22 @@ def expiration_date(self, expiration_date): @property def fingerprint(self): - """Gets the fingerprint of this KmipServerCaChainItem. # noqa: E501 + """Gets the fingerprint of this KmipServerCaCert. # noqa: E501 Certification Authority (CA) certificate sha256 fingerprint. # noqa: E501 - :return: The fingerprint of this KmipServerCaChainItem. # noqa: E501 + :return: The fingerprint of this KmipServerCaCert. # noqa: E501 :rtype: str """ return self._fingerprint @fingerprint.setter def fingerprint(self, fingerprint): - """Sets the fingerprint of this KmipServerCaChainItem. + """Sets the fingerprint of this KmipServerCaCert. Certification Authority (CA) certificate sha256 fingerprint. # noqa: E501 - :param fingerprint: The fingerprint of this KmipServerCaChainItem. # noqa: E501 + :param fingerprint: The fingerprint of this KmipServerCaCert. # noqa: E501 :type: str """ if fingerprint is not None and len(fingerprint) > 255: @@ -121,51 +116,24 @@ def fingerprint(self, fingerprint): self._fingerprint = fingerprint - @property - def issuer(self): - """Gets the issuer of this KmipServerCaChainItem. # noqa: E501 - - Certification Authority (CA) certificate issuer field. # noqa: E501 - - :return: The issuer of this KmipServerCaChainItem. # noqa: E501 - :rtype: str - """ - return self._issuer - - @issuer.setter - def issuer(self, issuer): - """Sets the issuer of this KmipServerCaChainItem. - - Certification Authority (CA) certificate issuer field. # noqa: E501 - - :param issuer: The issuer of this KmipServerCaChainItem. # noqa: E501 - :type: str - """ - if issuer is not None and len(issuer) > 2048: - raise ValueError("Invalid value for `issuer`, length must be less than or equal to `2048`") # noqa: E501 - if issuer is not None and len(issuer) < 1: - raise ValueError("Invalid value for `issuer`, length must be greater than or equal to `1`") # noqa: E501 - - self._issuer = issuer - @property def serial(self): - """Gets the serial of this KmipServerCaChainItem. # noqa: E501 + """Gets the serial of this KmipServerCaCert. # noqa: E501 Certification Authority (CA) certificate serial number field. # noqa: E501 - :return: The serial of this KmipServerCaChainItem. # noqa: E501 + :return: The serial of this KmipServerCaCert. # noqa: E501 :rtype: int """ return self._serial @serial.setter def serial(self, serial): - """Sets the serial of this KmipServerCaChainItem. + """Sets the serial of this KmipServerCaCert. Certification Authority (CA) certificate serial number field. # noqa: E501 - :param serial: The serial of this KmipServerCaChainItem. # noqa: E501 + :param serial: The serial of this KmipServerCaCert. # noqa: E501 :type: int """ if serial is not None and serial > 9223372036854775807: # noqa: E501 @@ -177,26 +145,26 @@ def serial(self, serial): @property def subject(self): - """Gets the subject of this KmipServerCaChainItem. # noqa: E501 + """Gets the subject of this KmipServerCaCert. # noqa: E501 Certification Authority (CA) certificate subject field. # noqa: E501 - :return: The subject of this KmipServerCaChainItem. # noqa: E501 + :return: The subject of this KmipServerCaCert. # noqa: E501 :rtype: str """ return self._subject @subject.setter def subject(self, subject): - """Sets the subject of this KmipServerCaChainItem. + """Sets the subject of this KmipServerCaCert. Certification Authority (CA) certificate subject field. # noqa: E501 - :param subject: The subject of this KmipServerCaChainItem. # noqa: E501 + :param subject: The subject of this KmipServerCaCert. # noqa: E501 :type: str """ - if subject is not None and len(subject) > 2048: - raise ValueError("Invalid value for `subject`, length must be less than or equal to `2048`") # noqa: E501 + if subject is not None and len(subject) > 255: + raise ValueError("Invalid value for `subject`, length must be less than or equal to `255`") # noqa: E501 if subject is not None and len(subject) < 1: raise ValueError("Invalid value for `subject`, length must be greater than or equal to `1`") # noqa: E501 @@ -223,7 +191,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(KmipServerCaChainItem, dict): + if issubclass(KmipServerCaCert, dict): for key, value in self.items(): result[key] = value @@ -239,7 +207,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, KmipServerCaChainItem): + if not isinstance(other, KmipServerCaCert): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/kmip_server_client_cert.py b/isilon_sdk/isilon_sdk/v9_4_0/models/kmip_server_client_cert.py similarity index 84% rename from isilon_sdk/isilon_sdk/v9_11_0/models/kmip_server_client_cert.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/kmip_server_client_cert.py index 46c78491e..515ed34bc 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/kmip_server_client_cert.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/kmip_server_client_cert.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -33,7 +33,6 @@ class KmipServerClientCert(object): swagger_types = { 'expiration_date': 'int', 'fingerprint': 'str', - 'issuer': 'str', 'serial': 'int', 'subject': 'str' } @@ -41,17 +40,15 @@ class KmipServerClientCert(object): attribute_map = { 'expiration_date': 'expiration_date', 'fingerprint': 'fingerprint', - 'issuer': 'issuer', 'serial': 'serial', 'subject': 'subject' } - def __init__(self, expiration_date=None, fingerprint=None, issuer=None, serial=None, subject=None): # noqa: E501 + def __init__(self, expiration_date=None, fingerprint=None, serial=None, subject=None): # noqa: E501 """KmipServerClientCert - a model defined in Swagger""" # noqa: E501 self._expiration_date = None self._fingerprint = None - self._issuer = None self._serial = None self._subject = None self.discriminator = None @@ -60,8 +57,6 @@ def __init__(self, expiration_date=None, fingerprint=None, issuer=None, serial=N self.expiration_date = expiration_date if fingerprint is not None: self.fingerprint = fingerprint - if issuer is not None: - self.issuer = issuer if serial is not None: self.serial = serial if subject is not None: @@ -121,33 +116,6 @@ def fingerprint(self, fingerprint): self._fingerprint = fingerprint - @property - def issuer(self): - """Gets the issuer of this KmipServerClientCert. # noqa: E501 - - Cluster identity certificate issuer field. # noqa: E501 - - :return: The issuer of this KmipServerClientCert. # noqa: E501 - :rtype: str - """ - return self._issuer - - @issuer.setter - def issuer(self, issuer): - """Sets the issuer of this KmipServerClientCert. - - Cluster identity certificate issuer field. # noqa: E501 - - :param issuer: The issuer of this KmipServerClientCert. # noqa: E501 - :type: str - """ - if issuer is not None and len(issuer) > 2048: - raise ValueError("Invalid value for `issuer`, length must be less than or equal to `2048`") # noqa: E501 - if issuer is not None and len(issuer) < 1: - raise ValueError("Invalid value for `issuer`, length must be greater than or equal to `1`") # noqa: E501 - - self._issuer = issuer - @property def serial(self): """Gets the serial of this KmipServerClientCert. # noqa: E501 @@ -195,8 +163,8 @@ def subject(self, subject): :param subject: The subject of this KmipServerClientCert. # noqa: E501 :type: str """ - if subject is not None and len(subject) > 2048: - raise ValueError("Invalid value for `subject`, length must be less than or equal to `2048`") # noqa: E501 + if subject is not None and len(subject) > 255: + raise ValueError("Invalid value for `subject`, length must be less than or equal to `255`") # noqa: E501 if subject is not None and len(subject) < 1: raise ValueError("Invalid value for `subject`, length must be greater than or equal to `1`") # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/kmip_server_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/kmip_server_create_params.py similarity index 90% rename from isilon_sdk/isilon_sdk/v9_11_0/models/kmip_server_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/kmip_server_create_params.py index 045d3a87a..7f716452e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/kmip_server_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/kmip_server_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -39,7 +39,6 @@ class KmipServerCreateParams(object): 'minimum_tls_version': 'str', 'port': 'int', 'retry_timeout': 'int', - 'tls_ciphers': 'str', 'id': 'str' } @@ -52,11 +51,10 @@ class KmipServerCreateParams(object): 'minimum_tls_version': 'minimum_tls_version', 'port': 'port', 'retry_timeout': 'retry_timeout', - 'tls_ciphers': 'tls_ciphers', 'id': 'id' } - def __init__(self, ca_cert_path=None, client_cert_password=None, client_cert_path=None, connection_timeout=None, host=None, minimum_tls_version=None, port=None, retry_timeout=None, tls_ciphers=None, id=None): # noqa: E501 + def __init__(self, ca_cert_path=None, client_cert_password=None, client_cert_path=None, connection_timeout=None, host=None, minimum_tls_version=None, port=None, retry_timeout=None, id=None): # noqa: E501 """KmipServerCreateParams - a model defined in Swagger""" # noqa: E501 self._ca_cert_path = None @@ -67,7 +65,6 @@ def __init__(self, ca_cert_path=None, client_cert_password=None, client_cert_pat self._minimum_tls_version = None self._port = None self._retry_timeout = None - self._tls_ciphers = None self._id = None self.discriminator = None @@ -84,8 +81,6 @@ def __init__(self, ca_cert_path=None, client_cert_password=None, client_cert_pat self.port = port if retry_timeout is not None: self.retry_timeout = retry_timeout - if tls_ciphers is not None: - self.tls_ciphers = tls_ciphers self.id = id @property @@ -233,7 +228,7 @@ def host(self, host): def minimum_tls_version(self): """Gets the minimum_tls_version of this KmipServerCreateParams. # noqa: E501 - Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. Supported versions: '1.1', '1.2' and '1.3'. # noqa: E501 + Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. However other supported values are '1.0' and '1.1'. # noqa: E501 :return: The minimum_tls_version of this KmipServerCreateParams. # noqa: E501 :rtype: str @@ -244,7 +239,7 @@ def minimum_tls_version(self): def minimum_tls_version(self, minimum_tls_version): """Sets the minimum_tls_version of this KmipServerCreateParams. - Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. Supported versions: '1.1', '1.2' and '1.3'. # noqa: E501 + Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. However other supported values are '1.0' and '1.1'. # noqa: E501 :param minimum_tls_version: The minimum_tls_version of this KmipServerCreateParams. # noqa: E501 :type: str @@ -312,33 +307,6 @@ def retry_timeout(self, retry_timeout): self._retry_timeout = retry_timeout - @property - def tls_ciphers(self): - """Gets the tls_ciphers of this KmipServerCreateParams. # noqa: E501 - - TLS cipher suite to use for communication with the KMIP server. # noqa: E501 - - :return: The tls_ciphers of this KmipServerCreateParams. # noqa: E501 - :rtype: str - """ - return self._tls_ciphers - - @tls_ciphers.setter - def tls_ciphers(self, tls_ciphers): - """Sets the tls_ciphers of this KmipServerCreateParams. - - TLS cipher suite to use for communication with the KMIP server. # noqa: E501 - - :param tls_ciphers: The tls_ciphers of this KmipServerCreateParams. # noqa: E501 - :type: str - """ - if tls_ciphers is not None and len(tls_ciphers) > 8192: - raise ValueError("Invalid value for `tls_ciphers`, length must be less than or equal to `8192`") # noqa: E501 - if tls_ciphers is not None and len(tls_ciphers) < 0: - raise ValueError("Invalid value for `tls_ciphers`, length must be greater than or equal to `0`") # noqa: E501 - - self._tls_ciphers = tls_ciphers - @property def id(self): """Gets the id of this KmipServerCreateParams. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/kmip_server_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/kmip_server_extended.py similarity index 81% rename from isilon_sdk/isilon_sdk/v9_11_0/models/kmip_server_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/kmip_server_extended.py index 792408bd6..c8d4d9eae 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/kmip_server_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/kmip_server_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,33 +31,31 @@ class KmipServerExtended(object): and the value is json key in definition. """ swagger_types = { - 'ca_chain': 'list[KmipServerCaChainItem]', + 'ca_cert': 'KmipServerCaCert', 'client_cert': 'KmipServerClientCert', 'connection_timeout': 'int', 'host': 'str', 'id': 'str', 'minimum_tls_version': 'str', 'port': 'int', - 'retry_timeout': 'int', - 'tls_ciphers': 'str' + 'retry_timeout': 'int' } attribute_map = { - 'ca_chain': 'ca_chain', + 'ca_cert': 'ca_cert', 'client_cert': 'client_cert', 'connection_timeout': 'connection_timeout', 'host': 'host', 'id': 'id', 'minimum_tls_version': 'minimum_tls_version', 'port': 'port', - 'retry_timeout': 'retry_timeout', - 'tls_ciphers': 'tls_ciphers' + 'retry_timeout': 'retry_timeout' } - def __init__(self, ca_chain=None, client_cert=None, connection_timeout=None, host=None, id=None, minimum_tls_version=None, port=None, retry_timeout=None, tls_ciphers=None): # noqa: E501 + def __init__(self, ca_cert=None, client_cert=None, connection_timeout=None, host=None, id=None, minimum_tls_version=None, port=None, retry_timeout=None): # noqa: E501 """KmipServerExtended - a model defined in Swagger""" # noqa: E501 - self._ca_chain = None + self._ca_cert = None self._client_cert = None self._connection_timeout = None self._host = None @@ -65,11 +63,10 @@ def __init__(self, ca_chain=None, client_cert=None, connection_timeout=None, hos self._minimum_tls_version = None self._port = None self._retry_timeout = None - self._tls_ciphers = None self.discriminator = None - if ca_chain is not None: - self.ca_chain = ca_chain + if ca_cert is not None: + self.ca_cert = ca_cert if client_cert is not None: self.client_cert = client_cert if connection_timeout is not None: @@ -84,31 +81,29 @@ def __init__(self, ca_chain=None, client_cert=None, connection_timeout=None, hos self.port = port if retry_timeout is not None: self.retry_timeout = retry_timeout - if tls_ciphers is not None: - self.tls_ciphers = tls_ciphers @property - def ca_chain(self): - """Gets the ca_chain of this KmipServerExtended. # noqa: E501 + def ca_cert(self): + """Gets the ca_cert of this KmipServerExtended. # noqa: E501 - CA certificate chain. # noqa: E501 + # noqa: E501 - :return: The ca_chain of this KmipServerExtended. # noqa: E501 - :rtype: list[KmipServerCaChainItem] + :return: The ca_cert of this KmipServerExtended. # noqa: E501 + :rtype: KmipServerCaCert """ - return self._ca_chain + return self._ca_cert - @ca_chain.setter - def ca_chain(self, ca_chain): - """Sets the ca_chain of this KmipServerExtended. + @ca_cert.setter + def ca_cert(self, ca_cert): + """Sets the ca_cert of this KmipServerExtended. - CA certificate chain. # noqa: E501 + # noqa: E501 - :param ca_chain: The ca_chain of this KmipServerExtended. # noqa: E501 - :type: list[KmipServerCaChainItem] + :param ca_cert: The ca_cert of this KmipServerExtended. # noqa: E501 + :type: KmipServerCaCert """ - self._ca_chain = ca_chain + self._ca_cert = ca_cert @property def client_cert(self): @@ -220,7 +215,7 @@ def id(self, id): def minimum_tls_version(self): """Gets the minimum_tls_version of this KmipServerExtended. # noqa: E501 - Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. Supported versions: '1.1', '1.2' and '1.3'. # noqa: E501 + Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. However other supported values are '1.0' and '1.1'. # noqa: E501 :return: The minimum_tls_version of this KmipServerExtended. # noqa: E501 :rtype: str @@ -231,7 +226,7 @@ def minimum_tls_version(self): def minimum_tls_version(self, minimum_tls_version): """Sets the minimum_tls_version of this KmipServerExtended. - Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. Supported versions: '1.1', '1.2' and '1.3'. # noqa: E501 + Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. However other supported values are '1.0' and '1.1'. # noqa: E501 :param minimum_tls_version: The minimum_tls_version of this KmipServerExtended. # noqa: E501 :type: str @@ -299,33 +294,6 @@ def retry_timeout(self, retry_timeout): self._retry_timeout = retry_timeout - @property - def tls_ciphers(self): - """Gets the tls_ciphers of this KmipServerExtended. # noqa: E501 - - TLS cipher suite to use for communication with the KMIP server. # noqa: E501 - - :return: The tls_ciphers of this KmipServerExtended. # noqa: E501 - :rtype: str - """ - return self._tls_ciphers - - @tls_ciphers.setter - def tls_ciphers(self, tls_ciphers): - """Sets the tls_ciphers of this KmipServerExtended. - - TLS cipher suite to use for communication with the KMIP server. # noqa: E501 - - :param tls_ciphers: The tls_ciphers of this KmipServerExtended. # noqa: E501 - :type: str - """ - if tls_ciphers is not None and len(tls_ciphers) > 8192: - raise ValueError("Invalid value for `tls_ciphers`, length must be less than or equal to `8192`") # noqa: E501 - if tls_ciphers is not None and len(tls_ciphers) < 0: - raise ValueError("Invalid value for `tls_ciphers`, length must be greater than or equal to `0`") # noqa: E501 - - self._tls_ciphers = tls_ciphers - def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/kmip_server_extended_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/kmip_server_extended_extended.py similarity index 81% rename from isilon_sdk/isilon_sdk/v9_11_0/models/kmip_server_extended_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/kmip_server_extended_extended.py index bcdf699ee..daedda736 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/kmip_server_extended_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/kmip_server_extended_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,33 +31,31 @@ class KmipServerExtendedExtended(object): and the value is json key in definition. """ swagger_types = { - 'ca_chain': 'list[KmipServerCaChainItem]', + 'ca_cert': 'KmipServerCaCert', 'client_cert': 'KmipServerClientCert', 'connection_timeout': 'int', 'host': 'str', 'id': 'str', 'minimum_tls_version': 'str', 'port': 'int', - 'retry_timeout': 'int', - 'tls_ciphers': 'str' + 'retry_timeout': 'int' } attribute_map = { - 'ca_chain': 'ca_chain', + 'ca_cert': 'ca_cert', 'client_cert': 'client_cert', 'connection_timeout': 'connection_timeout', 'host': 'host', 'id': 'id', 'minimum_tls_version': 'minimum_tls_version', 'port': 'port', - 'retry_timeout': 'retry_timeout', - 'tls_ciphers': 'tls_ciphers' + 'retry_timeout': 'retry_timeout' } - def __init__(self, ca_chain=None, client_cert=None, connection_timeout=None, host=None, id=None, minimum_tls_version=None, port=None, retry_timeout=None, tls_ciphers=None): # noqa: E501 + def __init__(self, ca_cert=None, client_cert=None, connection_timeout=None, host=None, id=None, minimum_tls_version=None, port=None, retry_timeout=None): # noqa: E501 """KmipServerExtendedExtended - a model defined in Swagger""" # noqa: E501 - self._ca_chain = None + self._ca_cert = None self._client_cert = None self._connection_timeout = None self._host = None @@ -65,10 +63,9 @@ def __init__(self, ca_chain=None, client_cert=None, connection_timeout=None, hos self._minimum_tls_version = None self._port = None self._retry_timeout = None - self._tls_ciphers = None self.discriminator = None - self.ca_chain = ca_chain + self.ca_cert = ca_cert self.client_cert = client_cert self.connection_timeout = connection_timeout self.host = host @@ -76,32 +73,31 @@ def __init__(self, ca_chain=None, client_cert=None, connection_timeout=None, hos self.minimum_tls_version = minimum_tls_version self.port = port self.retry_timeout = retry_timeout - self.tls_ciphers = tls_ciphers @property - def ca_chain(self): - """Gets the ca_chain of this KmipServerExtendedExtended. # noqa: E501 + def ca_cert(self): + """Gets the ca_cert of this KmipServerExtendedExtended. # noqa: E501 - CA certificate chain. # noqa: E501 + # noqa: E501 - :return: The ca_chain of this KmipServerExtendedExtended. # noqa: E501 - :rtype: list[KmipServerCaChainItem] + :return: The ca_cert of this KmipServerExtendedExtended. # noqa: E501 + :rtype: KmipServerCaCert """ - return self._ca_chain + return self._ca_cert - @ca_chain.setter - def ca_chain(self, ca_chain): - """Sets the ca_chain of this KmipServerExtendedExtended. + @ca_cert.setter + def ca_cert(self, ca_cert): + """Sets the ca_cert of this KmipServerExtendedExtended. - CA certificate chain. # noqa: E501 + # noqa: E501 - :param ca_chain: The ca_chain of this KmipServerExtendedExtended. # noqa: E501 - :type: list[KmipServerCaChainItem] + :param ca_cert: The ca_cert of this KmipServerExtendedExtended. # noqa: E501 + :type: KmipServerCaCert """ - if ca_chain is None: - raise ValueError("Invalid value for `ca_chain`, must not be `None`") # noqa: E501 + if ca_cert is None: + raise ValueError("Invalid value for `ca_cert`, must not be `None`") # noqa: E501 - self._ca_chain = ca_chain + self._ca_cert = ca_cert @property def client_cert(self): @@ -221,7 +217,7 @@ def id(self, id): def minimum_tls_version(self): """Gets the minimum_tls_version of this KmipServerExtendedExtended. # noqa: E501 - Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. Supported versions: '1.1', '1.2' and '1.3'. # noqa: E501 + Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. However other supported values are '1.0' and '1.1'. # noqa: E501 :return: The minimum_tls_version of this KmipServerExtendedExtended. # noqa: E501 :rtype: str @@ -232,7 +228,7 @@ def minimum_tls_version(self): def minimum_tls_version(self, minimum_tls_version): """Sets the minimum_tls_version of this KmipServerExtendedExtended. - Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. Supported versions: '1.1', '1.2' and '1.3'. # noqa: E501 + Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. However other supported values are '1.0' and '1.1'. # noqa: E501 :param minimum_tls_version: The minimum_tls_version of this KmipServerExtendedExtended. # noqa: E501 :type: str @@ -306,35 +302,6 @@ def retry_timeout(self, retry_timeout): self._retry_timeout = retry_timeout - @property - def tls_ciphers(self): - """Gets the tls_ciphers of this KmipServerExtendedExtended. # noqa: E501 - - TLS cipher suite to use for communication with the KMIP server. # noqa: E501 - - :return: The tls_ciphers of this KmipServerExtendedExtended. # noqa: E501 - :rtype: str - """ - return self._tls_ciphers - - @tls_ciphers.setter - def tls_ciphers(self, tls_ciphers): - """Sets the tls_ciphers of this KmipServerExtendedExtended. - - TLS cipher suite to use for communication with the KMIP server. # noqa: E501 - - :param tls_ciphers: The tls_ciphers of this KmipServerExtendedExtended. # noqa: E501 - :type: str - """ - if tls_ciphers is None: - raise ValueError("Invalid value for `tls_ciphers`, must not be `None`") # noqa: E501 - if tls_ciphers is not None and len(tls_ciphers) > 8192: - raise ValueError("Invalid value for `tls_ciphers`, length must be less than or equal to `8192`") # noqa: E501 - if tls_ciphers is not None and len(tls_ciphers) < 0: - raise ValueError("Invalid value for `tls_ciphers`, length must be greater than or equal to `0`") # noqa: E501 - - self._tls_ciphers = tls_ciphers - def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/kmip_server_verify_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/kmip_server_verify_item.py similarity index 89% rename from isilon_sdk/isilon_sdk/v9_11_0/models/kmip_server_verify_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/kmip_server_verify_item.py index bfdeabc2c..7e29e6d5b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/kmip_server_verify_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/kmip_server_verify_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -38,8 +38,7 @@ class KmipServerVerifyItem(object): 'host': 'str', 'minimum_tls_version': 'str', 'port': 'int', - 'retry_timeout': 'int', - 'tls_ciphers': 'str' + 'retry_timeout': 'int' } attribute_map = { @@ -50,11 +49,10 @@ class KmipServerVerifyItem(object): 'host': 'host', 'minimum_tls_version': 'minimum_tls_version', 'port': 'port', - 'retry_timeout': 'retry_timeout', - 'tls_ciphers': 'tls_ciphers' + 'retry_timeout': 'retry_timeout' } - def __init__(self, ca_cert_path=None, client_cert_password=None, client_cert_path=None, connection_timeout=None, host=None, minimum_tls_version=None, port=None, retry_timeout=None, tls_ciphers=None): # noqa: E501 + def __init__(self, ca_cert_path=None, client_cert_password=None, client_cert_path=None, connection_timeout=None, host=None, minimum_tls_version=None, port=None, retry_timeout=None): # noqa: E501 """KmipServerVerifyItem - a model defined in Swagger""" # noqa: E501 self._ca_cert_path = None @@ -65,7 +63,6 @@ def __init__(self, ca_cert_path=None, client_cert_password=None, client_cert_pat self._minimum_tls_version = None self._port = None self._retry_timeout = None - self._tls_ciphers = None self.discriminator = None self.ca_cert_path = ca_cert_path @@ -81,8 +78,6 @@ def __init__(self, ca_cert_path=None, client_cert_password=None, client_cert_pat self.port = port if retry_timeout is not None: self.retry_timeout = retry_timeout - if tls_ciphers is not None: - self.tls_ciphers = tls_ciphers @property def ca_cert_path(self): @@ -229,7 +224,7 @@ def host(self, host): def minimum_tls_version(self): """Gets the minimum_tls_version of this KmipServerVerifyItem. # noqa: E501 - Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. Supported versions: '1.1', '1.2' and '1.3'. # noqa: E501 + Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. However other supported values are '1.0' and '1.1'. # noqa: E501 :return: The minimum_tls_version of this KmipServerVerifyItem. # noqa: E501 :rtype: str @@ -240,7 +235,7 @@ def minimum_tls_version(self): def minimum_tls_version(self, minimum_tls_version): """Sets the minimum_tls_version of this KmipServerVerifyItem. - Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. Supported versions: '1.1', '1.2' and '1.3'. # noqa: E501 + Denotes the minimum TLS version supported by the KTP. Default value is set to '1.2'. However other supported values are '1.0' and '1.1'. # noqa: E501 :param minimum_tls_version: The minimum_tls_version of this KmipServerVerifyItem. # noqa: E501 :type: str @@ -308,33 +303,6 @@ def retry_timeout(self, retry_timeout): self._retry_timeout = retry_timeout - @property - def tls_ciphers(self): - """Gets the tls_ciphers of this KmipServerVerifyItem. # noqa: E501 - - TLS cipher suite to use for communication with the KMIP server. # noqa: E501 - - :return: The tls_ciphers of this KmipServerVerifyItem. # noqa: E501 - :rtype: str - """ - return self._tls_ciphers - - @tls_ciphers.setter - def tls_ciphers(self, tls_ciphers): - """Sets the tls_ciphers of this KmipServerVerifyItem. - - TLS cipher suite to use for communication with the KMIP server. # noqa: E501 - - :param tls_ciphers: The tls_ciphers of this KmipServerVerifyItem. # noqa: E501 - :type: str - """ - if tls_ciphers is not None and len(tls_ciphers) > 8192: - raise ValueError("Invalid value for `tls_ciphers`, length must be less than or equal to `8192`") # noqa: E501 - if tls_ciphers is not None and len(tls_ciphers) < 0: - raise ValueError("Invalid value for `tls_ciphers`, length must be greater than or equal to `0`") # noqa: E501 - - self._tls_ciphers = tls_ciphers - def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/kmip_servers.py b/isilon_sdk/isilon_sdk/v9_4_0/models/kmip_servers.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/kmip_servers.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/kmip_servers.py index 424468751..5a8769c5d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/kmip_servers.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/kmip_servers.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/kmip_servers_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/kmip_servers_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/kmip_servers_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/kmip_servers_extended.py index 078b04387..ebbd12735 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/kmip_servers_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/kmip_servers_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/lfn.py b/isilon_sdk/isilon_sdk/v9_4_0/models/lfn.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/lfn.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/lfn.py index 26cf42205..52c0a7497 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/lfn.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/lfn.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/lfn_domain.py b/isilon_sdk/isilon_sdk/v9_4_0/models/lfn_domain.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/lfn_domain.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/lfn_domain.py index 3c54750c4..d5545c199 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/lfn_domain.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/lfn_domain.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/lfn_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/lfn_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/lfn_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/lfn_extended.py index 6a7b2537b..f0e742922 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/lfn_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/lfn_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/lfn_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/lfn_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/lfn_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/lfn_item.py index 21f6c7c6b..6d4d7f719 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/lfn_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/lfn_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/lfn_path_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/lfn_path_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/lfn_path_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/lfn_path_params.py index c8e0a8e97..8b069af74 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/lfn_path_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/lfn_path_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/license_activation.py b/isilon_sdk/isilon_sdk/v9_4_0/models/license_activation.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/license_activation.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/license_activation.py index 328bc111d..9140aee37 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/license_activation.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/license_activation.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/license_activation_elms_error.py b/isilon_sdk/isilon_sdk/v9_4_0/models/license_activation_elms_error.py similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/models/license_activation_elms_error.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/license_activation_elms_error.py index 801e05c50..c2fb8c062 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/license_activation_elms_error.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/license_activation_elms_error.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -83,7 +83,7 @@ def code(self, code): def error(self): """Gets the error of this LicenseActivationElmsError. # noqa: E501 - An error string returned from the SRS ELMS rest call # noqa: E501 + An error string retured from the SRS ELMS rest call # noqa: E501 :return: The error of this LicenseActivationElmsError. # noqa: E501 :rtype: str @@ -94,7 +94,7 @@ def error(self): def error(self, error): """Sets the error of this LicenseActivationElmsError. - An error string returned from the SRS ELMS rest call # noqa: E501 + An error string retured from the SRS ELMS rest call # noqa: E501 :param error: The error of this LicenseActivationElmsError. # noqa: E501 :type: str diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/license_activation_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/license_activation_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/license_activation_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/license_activation_item.py index efa987315..96e3d65ca 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/license_activation_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/license_activation_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/license_generate.py b/isilon_sdk/isilon_sdk/v9_4_0/models/license_generate.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/license_generate.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/license_generate.py index ffc2a9e45..2051d5542 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/license_generate.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/license_generate.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/license_generate_hardware_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/license_generate_hardware_item.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/models/license_generate_hardware_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/license_generate_hardware_item.py index ecd5eddf2..61e80537c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/license_generate_hardware_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/license_generate_hardware_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -167,8 +167,8 @@ def tier(self, tier): raise ValueError("Invalid value for `tier`, length must be less than or equal to `50`") # noqa: E501 if tier is not None and len(tier) < 1: raise ValueError("Invalid value for `tier`, length must be greater than or equal to `1`") # noqa: E501 - if tier is not None and not re.search(r'^NONINF$|^NO_TIER$|^[0-9]+$', tier): # noqa: E501 - raise ValueError(r"Invalid value for `tier`, must be a follow pattern or equal to `/^NONINF$|^NO_TIER$|^[0-9]+$/`") # noqa: E501 + if tier is not None and not re.search(r'^NONINF$|^NO_TIER$|^\\d+$', tier): # noqa: E501 + raise ValueError(r"Invalid value for `tier`, must be a follow pattern or equal to `/^NONINF$|^NO_TIER$|^\\d+$/`") # noqa: E501 self._tier = tier diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/license_license.py b/isilon_sdk/isilon_sdk/v9_4_0/models/license_license.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/models/license_license.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/license_license.py index 3a90ebeeb..697a0ae88 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/license_license.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/license_license.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -159,8 +159,8 @@ def expiration(self, expiration): raise ValueError("Invalid value for `expiration`, length must be less than or equal to `10`") # noqa: E501 if expiration is not None and len(expiration) < 10: raise ValueError("Invalid value for `expiration`, length must be greater than or equal to `10`") # noqa: E501 - if expiration is not None and not re.search(r'^[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]$', expiration): # noqa: E501 - raise ValueError(r"Invalid value for `expiration`, must be a follow pattern or equal to `/^[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]$/`") # noqa: E501 + if expiration is not None and not re.search(r'^\\d\\d\\d\\d-\\d\\d-\\d\\d$', expiration): # noqa: E501 + raise ValueError(r"Invalid value for `expiration`, must be a follow pattern or equal to `/^\\d\\d\\d\\d-\\d\\d-\\d\\d$/`") # noqa: E501 self._expiration = expiration diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/license_license_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/license_license_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/license_license_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/license_license_create_params.py index 03dda960c..6606b0df6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/license_license_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/license_license_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/license_license_tier.py b/isilon_sdk/isilon_sdk/v9_4_0/models/license_license_tier.py similarity index 91% rename from isilon_sdk/isilon_sdk/v9_11_0/models/license_license_tier.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/license_license_tier.py index ae3518aae..b644db6d8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/license_license_tier.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/license_license_tier.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -35,7 +35,6 @@ class LicenseLicenseTier(object): 'licensed_drive_capacity': 'int', 'licensed_node_count': 'int', 'licensed_nodes_with_seds_count': 'int', - 'platform': 'str', 'tier': 'str', 'used_drive_capacity': 'int', 'used_node_count': 'int', @@ -47,21 +46,19 @@ class LicenseLicenseTier(object): 'licensed_drive_capacity': 'licensed_drive_capacity', 'licensed_node_count': 'licensed_node_count', 'licensed_nodes_with_seds_count': 'licensed_nodes_with_seds_count', - 'platform': 'platform', 'tier': 'tier', 'used_drive_capacity': 'used_drive_capacity', 'used_node_count': 'used_node_count', 'used_nodes_with_seds_count': 'used_nodes_with_seds_count' } - def __init__(self, entitlements_exceeded_alerts=None, licensed_drive_capacity=None, licensed_node_count=None, licensed_nodes_with_seds_count=None, platform=None, tier=None, used_drive_capacity=None, used_node_count=None, used_nodes_with_seds_count=None): # noqa: E501 + def __init__(self, entitlements_exceeded_alerts=None, licensed_drive_capacity=None, licensed_node_count=None, licensed_nodes_with_seds_count=None, tier=None, used_drive_capacity=None, used_node_count=None, used_nodes_with_seds_count=None): # noqa: E501 """LicenseLicenseTier - a model defined in Swagger""" # noqa: E501 self._entitlements_exceeded_alerts = None self._licensed_drive_capacity = None self._licensed_node_count = None self._licensed_nodes_with_seds_count = None - self._platform = None self._tier = None self._used_drive_capacity = None self._used_node_count = None @@ -76,8 +73,6 @@ def __init__(self, entitlements_exceeded_alerts=None, licensed_drive_capacity=No self.licensed_node_count = licensed_node_count if licensed_nodes_with_seds_count is not None: self.licensed_nodes_with_seds_count = licensed_nodes_with_seds_count - if platform is not None: - self.platform = platform if tier is not None: self.tier = tier if used_drive_capacity is not None: @@ -191,33 +186,6 @@ def licensed_nodes_with_seds_count(self, licensed_nodes_with_seds_count): self._licensed_nodes_with_seds_count = licensed_nodes_with_seds_count - @property - def platform(self): - """Gets the platform of this LicenseLicenseTier. # noqa: E501 - - Platform # noqa: E501 - - :return: The platform of this LicenseLicenseTier. # noqa: E501 - :rtype: str - """ - return self._platform - - @platform.setter - def platform(self, platform): - """Sets the platform of this LicenseLicenseTier. - - Platform # noqa: E501 - - :param platform: The platform of this LicenseLicenseTier. # noqa: E501 - :type: str - """ - if platform is not None and len(platform) > 255: - raise ValueError("Invalid value for `platform`, length must be less than or equal to `255`") # noqa: E501 - if platform is not None and len(platform) < 0: - raise ValueError("Invalid value for `platform`, length must be greater than or equal to `0`") # noqa: E501 - - self._platform = platform - @property def tier(self): """Gets the tier of this LicenseLicenseTier. # noqa: E501 @@ -242,8 +210,8 @@ def tier(self, tier): raise ValueError("Invalid value for `tier`, length must be less than or equal to `50`") # noqa: E501 if tier is not None and len(tier) < 1: raise ValueError("Invalid value for `tier`, length must be greater than or equal to `1`") # noqa: E501 - if tier is not None and not re.search(r'^NONINF$|^NO_TIER$|^[0-9]+$', tier): # noqa: E501 - raise ValueError(r"Invalid value for `tier`, must be a follow pattern or equal to `/^NONINF$|^NO_TIER$|^[0-9]+$/`") # noqa: E501 + if tier is not None and not re.search(r'^NONINF$|^NO_TIER$|^\\d+$', tier): # noqa: E501 + raise ValueError(r"Invalid value for `tier`, must be a follow pattern or equal to `/^NONINF$|^NO_TIER$|^\\d+$/`") # noqa: E501 self._tier = tier diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/license_license_tier_entitlements_exceeded_alert.py b/isilon_sdk/isilon_sdk/v9_4_0/models/license_license_tier_entitlements_exceeded_alert.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/license_license_tier_entitlements_exceeded_alert.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/license_license_tier_entitlements_exceeded_alert.py index b9db20544..3456a7461 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/license_license_tier_entitlements_exceeded_alert.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/license_license_tier_entitlements_exceeded_alert.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/license_licenses.py b/isilon_sdk/isilon_sdk/v9_4_0/models/license_licenses.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/license_licenses.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/license_licenses.py index 6dde71a6f..dc7f4df14 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/license_licenses.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/license_licenses.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/license_licenses_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/license_licenses_extended.py similarity index 90% rename from isilon_sdk/isilon_sdk/v9_11_0/models/license_licenses_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/license_licenses_extended.py index 531dd16f7..c3ca01480 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/license_licenses_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/license_licenses_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -35,7 +35,6 @@ class LicenseLicensesExtended(object): 'activation_incomplete_alert': 'bool', 'base_only_licenses': 'list[str]', 'evaluatable': 'list[str]', - 'guid': 'str', 'resume': 'str', 'swid': 'str', 'total': 'int', @@ -47,21 +46,19 @@ class LicenseLicensesExtended(object): 'activation_incomplete_alert': 'activation_incomplete_alert', 'base_only_licenses': 'base_only_licenses', 'evaluatable': 'evaluatable', - 'guid': 'guid', 'resume': 'resume', 'swid': 'swid', 'total': 'total', 'valid_signature': 'valid_signature' } - def __init__(self, licenses=None, activation_incomplete_alert=None, base_only_licenses=None, evaluatable=None, guid=None, resume=None, swid=None, total=None, valid_signature=None): # noqa: E501 + def __init__(self, licenses=None, activation_incomplete_alert=None, base_only_licenses=None, evaluatable=None, resume=None, swid=None, total=None, valid_signature=None): # noqa: E501 """LicenseLicensesExtended - a model defined in Swagger""" # noqa: E501 self._licenses = None self._activation_incomplete_alert = None self._base_only_licenses = None self._evaluatable = None - self._guid = None self._resume = None self._swid = None self._total = None @@ -73,8 +70,6 @@ def __init__(self, licenses=None, activation_incomplete_alert=None, base_only_li self.activation_incomplete_alert = activation_incomplete_alert self.base_only_licenses = base_only_licenses self.evaluatable = evaluatable - if guid is not None: - self.guid = guid if resume is not None: self.resume = resume if swid is not None: @@ -175,33 +170,6 @@ def evaluatable(self, evaluatable): self._evaluatable = evaluatable - @property - def guid(self): - """Gets the guid of this LicenseLicensesExtended. # noqa: E501 - - Cluster GUID # noqa: E501 - - :return: The guid of this LicenseLicensesExtended. # noqa: E501 - :rtype: str - """ - return self._guid - - @guid.setter - def guid(self, guid): - """Sets the guid of this LicenseLicensesExtended. - - Cluster GUID # noqa: E501 - - :param guid: The guid of this LicenseLicensesExtended. # noqa: E501 - :type: str - """ - if guid is not None and len(guid) > 255: - raise ValueError("Invalid value for `guid`, length must be less than or equal to `255`") # noqa: E501 - if guid is not None and len(guid) < 1: - raise ValueError("Invalid value for `guid`, length must be greater than or equal to `1`") # noqa: E501 - - self._guid = guid - @property def resume(self): """Gets the resume of this LicenseLicensesExtended. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_dump.py b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_dump.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/mapping_dump.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/mapping_dump.py index 551bd90ed..435961f12 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_dump.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_dump.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_identities.py b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_identities.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/mapping_identities.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/mapping_identities.py index bd7021f8e..9c8fe64c0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_identities.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_identities.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_identities_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_identities_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/mapping_identities_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/mapping_identities_create_params.py index 9dfe38494..1a3a0b7a9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_identities_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_identities_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_identities_target.py b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_identities_target.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/mapping_identities_target.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/mapping_identities_target.py index 2cd1c615a..278a1d514 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_identities_target.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_identities_target.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_identity.py b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_identity.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/mapping_identity.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/mapping_identity.py index 4e857cc0d..3584f1d45 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_identity.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_identity.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_identity_target.py b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_identity_target.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/mapping_identity_target.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/mapping_identity_target.py index c28efa727..f2e542cb6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_identity_target.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_identity_target.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_lookup.py b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_lookup.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_lookup.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_lookup.py index 0809f4786..da125713f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_lookup.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_lookup.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_lookup_mapping_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_lookup_mapping_item.py similarity index 95% rename from isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_lookup_mapping_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_lookup_mapping_item.py index 4eb4c4f2b..9e4020fd1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_lookup_mapping_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_lookup_mapping_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -33,8 +33,8 @@ class MappingUsersLookupMappingItem(object): swagger_types = { 'groups': 'list[MappingUsersLookupMappingItemGroup]', 'object_history': 'list[AuthGroupObjectHistoryItem]', - 'privileges': 'list[AuthIdNtokenPrivilegeItem]', - 'user': 'AuthUserExtended', + 'privileges': 'list[MappingUsersLookupMappingItemPrivilege]', + 'user': 'MappingUsersLookupMappingItemUser', 'zid': 'int', 'zone': 'str' } @@ -120,7 +120,7 @@ def privileges(self): :return: The privileges of this MappingUsersLookupMappingItem. # noqa: E501 - :rtype: list[AuthIdNtokenPrivilegeItem] + :rtype: list[MappingUsersLookupMappingItemPrivilege] """ return self._privileges @@ -130,7 +130,7 @@ def privileges(self, privileges): :param privileges: The privileges of this MappingUsersLookupMappingItem. # noqa: E501 - :type: list[AuthIdNtokenPrivilegeItem] + :type: list[MappingUsersLookupMappingItemPrivilege] """ self._privileges = privileges @@ -142,7 +142,7 @@ def user(self): Specifies the configuration properties for a user. # noqa: E501 :return: The user of this MappingUsersLookupMappingItem. # noqa: E501 - :rtype: AuthUserExtended + :rtype: MappingUsersLookupMappingItemUser """ return self._user @@ -153,7 +153,7 @@ def user(self, user): Specifies the configuration properties for a user. # noqa: E501 :param user: The user of this MappingUsersLookupMappingItem. # noqa: E501 - :type: AuthUserExtended + :type: MappingUsersLookupMappingItemUser """ self._user = user diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_lookup_mapping_item_group.py b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_lookup_mapping_item_group.py similarity index 88% rename from isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_lookup_mapping_item_group.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_lookup_mapping_item_group.py index 1f8fae41a..72d1aaf17 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_lookup_mapping_item_group.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_lookup_mapping_item_group.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,7 +31,6 @@ class MappingUsersLookupMappingItemGroup(object): and the value is json key in definition. """ swagger_types = { - 'disable_when_inactive': 'bool', 'dn': 'str', 'dns_domain': 'str', 'domain': 'str', @@ -46,7 +45,6 @@ class MappingUsersLookupMappingItemGroup(object): 'gid': 'AuthAccessAccessItemFileGroup', 'home_directory': 'str', 'id': 'str', - 'last_logon': 'int', 'locked': 'bool', 'max_password_age': 'int', 'member_of': 'list[AuthAccessAccessItemFileGroup]', @@ -64,7 +62,6 @@ class MappingUsersLookupMappingItemGroup(object): 'sam_account_name': 'str', 'shell': 'str', 'sid': 'AuthAccessAccessItemFileGroup', - 'ssh_public_keys': 'list[str]', 'type': 'str', 'uid': 'AuthAccessAccessItemFileGroup', 'upn': 'str', @@ -72,7 +69,6 @@ class MappingUsersLookupMappingItemGroup(object): } attribute_map = { - 'disable_when_inactive': 'disable_when_inactive', 'dn': 'dn', 'dns_domain': 'dns_domain', 'domain': 'domain', @@ -87,7 +83,6 @@ class MappingUsersLookupMappingItemGroup(object): 'gid': 'gid', 'home_directory': 'home_directory', 'id': 'id', - 'last_logon': 'last_logon', 'locked': 'locked', 'max_password_age': 'max_password_age', 'member_of': 'member_of', @@ -105,17 +100,15 @@ class MappingUsersLookupMappingItemGroup(object): 'sam_account_name': 'sam_account_name', 'shell': 'shell', 'sid': 'sid', - 'ssh_public_keys': 'ssh_public_keys', 'type': 'type', 'uid': 'uid', 'upn': 'upn', 'user_can_change_password': 'user_can_change_password' } - def __init__(self, disable_when_inactive=None, dn=None, dns_domain=None, domain=None, email=None, enabled=None, expired=None, expiry=None, gecos=None, generated_gid=None, generated_uid=None, generated_upn=None, gid=None, home_directory=None, id=None, last_logon=None, locked=None, max_password_age=None, member_of=None, name=None, object_history=None, on_disk_group_identity=None, on_disk_user_identity=None, password_expired=None, password_expires=None, password_expiry=None, password_last_set=None, primary_group_sid=None, prompt_password_change=None, provider=None, sam_account_name=None, shell=None, sid=None, ssh_public_keys=None, type=None, uid=None, upn=None, user_can_change_password=None): # noqa: E501 + def __init__(self, dn=None, dns_domain=None, domain=None, email=None, enabled=None, expired=None, expiry=None, gecos=None, generated_gid=None, generated_uid=None, generated_upn=None, gid=None, home_directory=None, id=None, locked=None, max_password_age=None, member_of=None, name=None, object_history=None, on_disk_group_identity=None, on_disk_user_identity=None, password_expired=None, password_expires=None, password_expiry=None, password_last_set=None, primary_group_sid=None, prompt_password_change=None, provider=None, sam_account_name=None, shell=None, sid=None, type=None, uid=None, upn=None, user_can_change_password=None): # noqa: E501 """MappingUsersLookupMappingItemGroup - a model defined in Swagger""" # noqa: E501 - self._disable_when_inactive = None self._dn = None self._dns_domain = None self._domain = None @@ -130,7 +123,6 @@ def __init__(self, disable_when_inactive=None, dn=None, dns_domain=None, domain= self._gid = None self._home_directory = None self._id = None - self._last_logon = None self._locked = None self._max_password_age = None self._member_of = None @@ -148,15 +140,12 @@ def __init__(self, disable_when_inactive=None, dn=None, dns_domain=None, domain= self._sam_account_name = None self._shell = None self._sid = None - self._ssh_public_keys = None self._type = None self._uid = None self._upn = None self._user_can_change_password = None self.discriminator = None - if disable_when_inactive is not None: - self.disable_when_inactive = disable_when_inactive if dn is not None: self.dn = dn if dns_domain is not None: @@ -184,8 +173,6 @@ def __init__(self, disable_when_inactive=None, dn=None, dns_domain=None, domain= if home_directory is not None: self.home_directory = home_directory self.id = id - if last_logon is not None: - self.last_logon = last_logon if locked is not None: self.locked = locked if max_password_age is not None: @@ -219,8 +206,6 @@ def __init__(self, disable_when_inactive=None, dn=None, dns_domain=None, domain= self.shell = shell if sid is not None: self.sid = sid - if ssh_public_keys is not None: - self.ssh_public_keys = ssh_public_keys self.type = type if uid is not None: self.uid = uid @@ -229,29 +214,6 @@ def __init__(self, disable_when_inactive=None, dn=None, dns_domain=None, domain= if user_can_change_password is not None: self.user_can_change_password = user_can_change_password - @property - def disable_when_inactive(self): - """Gets the disable_when_inactive of this MappingUsersLookupMappingItemGroup. # noqa: E501 - - The user account will be disabled when inactive beyond a period of time. # noqa: E501 - - :return: The disable_when_inactive of this MappingUsersLookupMappingItemGroup. # noqa: E501 - :rtype: bool - """ - return self._disable_when_inactive - - @disable_when_inactive.setter - def disable_when_inactive(self, disable_when_inactive): - """Sets the disable_when_inactive of this MappingUsersLookupMappingItemGroup. - - The user account will be disabled when inactive beyond a period of time. # noqa: E501 - - :param disable_when_inactive: The disable_when_inactive of this MappingUsersLookupMappingItemGroup. # noqa: E501 - :type: bool - """ - - self._disable_when_inactive = disable_when_inactive - @property def dn(self): """Gets the dn of this MappingUsersLookupMappingItemGroup. # noqa: E501 @@ -356,7 +318,7 @@ def email(self, email): def enabled(self): """Gets the enabled of this MappingUsersLookupMappingItemGroup. # noqa: E501 - True, if the authenticated user is enabled. # noqa: E501 + If true, the authenticated user is enabled. # noqa: E501 :return: The enabled of this MappingUsersLookupMappingItemGroup. # noqa: E501 :rtype: bool @@ -367,7 +329,7 @@ def enabled(self): def enabled(self, enabled): """Sets the enabled of this MappingUsersLookupMappingItemGroup. - True, if the authenticated user is enabled. # noqa: E501 + If true, the authenticated user is enabled. # noqa: E501 :param enabled: The enabled of this MappingUsersLookupMappingItemGroup. # noqa: E501 :type: bool @@ -379,7 +341,7 @@ def enabled(self, enabled): def expired(self): """Gets the expired of this MappingUsersLookupMappingItemGroup. # noqa: E501 - True, if the authenticated user has expired. # noqa: E501 + If true, the authenticated auth user is expired. # noqa: E501 :return: The expired of this MappingUsersLookupMappingItemGroup. # noqa: E501 :rtype: bool @@ -390,7 +352,7 @@ def expired(self): def expired(self, expired): """Sets the expired of this MappingUsersLookupMappingItemGroup. - True, if the authenticated user has expired. # noqa: E501 + If true, the authenticated auth user is expired. # noqa: E501 :param expired: The expired of this MappingUsersLookupMappingItemGroup. # noqa: E501 :type: bool @@ -452,7 +414,7 @@ def gecos(self, gecos): def generated_gid(self): """Gets the generated_gid of this MappingUsersLookupMappingItemGroup. # noqa: E501 - True, if the GID was generated. # noqa: E501 + If true, indicates that the GID was generated. # noqa: E501 :return: The generated_gid of this MappingUsersLookupMappingItemGroup. # noqa: E501 :rtype: bool @@ -463,7 +425,7 @@ def generated_gid(self): def generated_gid(self, generated_gid): """Sets the generated_gid of this MappingUsersLookupMappingItemGroup. - True, if the GID was generated. # noqa: E501 + If true, indicates that the GID was generated. # noqa: E501 :param generated_gid: The generated_gid of this MappingUsersLookupMappingItemGroup. # noqa: E501 :type: bool @@ -475,7 +437,7 @@ def generated_gid(self, generated_gid): def generated_uid(self): """Gets the generated_uid of this MappingUsersLookupMappingItemGroup. # noqa: E501 - True, if the UID was generated. # noqa: E501 + If true, indicates that the UID was generated. # noqa: E501 :return: The generated_uid of this MappingUsersLookupMappingItemGroup. # noqa: E501 :rtype: bool @@ -486,7 +448,7 @@ def generated_uid(self): def generated_uid(self, generated_uid): """Sets the generated_uid of this MappingUsersLookupMappingItemGroup. - True, if the UID was generated. # noqa: E501 + If true, indicates that the UID was generated. # noqa: E501 :param generated_uid: The generated_uid of this MappingUsersLookupMappingItemGroup. # noqa: E501 :type: bool @@ -498,7 +460,7 @@ def generated_uid(self, generated_uid): def generated_upn(self): """Gets the generated_upn of this MappingUsersLookupMappingItemGroup. # noqa: E501 - True, if the UPN was generated. # noqa: E501 + If true, indicates that the UPN was generated. # noqa: E501 :return: The generated_upn of this MappingUsersLookupMappingItemGroup. # noqa: E501 :rtype: bool @@ -509,7 +471,7 @@ def generated_upn(self): def generated_upn(self, generated_upn): """Sets the generated_upn of this MappingUsersLookupMappingItemGroup. - True, if the UPN was generated. # noqa: E501 + If true, indicates that the UPN was generated. # noqa: E501 :param generated_upn: The generated_upn of this MappingUsersLookupMappingItemGroup. # noqa: E501 :type: bool @@ -594,36 +556,11 @@ def id(self, id): self._id = id - @property - def last_logon(self): - """Gets the last_logon of this MappingUsersLookupMappingItemGroup. # noqa: E501 - - - :return: The last_logon of this MappingUsersLookupMappingItemGroup. # noqa: E501 - :rtype: int - """ - return self._last_logon - - @last_logon.setter - def last_logon(self, last_logon): - """Sets the last_logon of this MappingUsersLookupMappingItemGroup. - - - :param last_logon: The last_logon of this MappingUsersLookupMappingItemGroup. # noqa: E501 - :type: int - """ - if last_logon is not None and last_logon > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `last_logon`, must be a value less than or equal to `4294967295`") # noqa: E501 - if last_logon is not None and last_logon < 0: # noqa: E501 - raise ValueError("Invalid value for `last_logon`, must be a value greater than or equal to `0`") # noqa: E501 - - self._last_logon = last_logon - @property def locked(self): """Gets the locked of this MappingUsersLookupMappingItemGroup. # noqa: E501 - If true, indicates that the account is locked. # noqa: E501 + If true, the account is locked out. # noqa: E501 :return: The locked of this MappingUsersLookupMappingItemGroup. # noqa: E501 :rtype: bool @@ -634,7 +571,7 @@ def locked(self): def locked(self, locked): """Sets the locked of this MappingUsersLookupMappingItemGroup. - If true, indicates that the account is locked. # noqa: E501 + If true, the account is locked out. # noqa: E501 :param locked: The locked of this MappingUsersLookupMappingItemGroup. # noqa: E501 :type: bool @@ -905,7 +842,7 @@ def primary_group_sid(self, primary_group_sid): def prompt_password_change(self): """Gets the prompt_password_change of this MappingUsersLookupMappingItemGroup. # noqa: E501 - Prompts the user to change their password at the next login. # noqa: E501 + If true, prompts the user to change their password on next login. # noqa: E501 :return: The prompt_password_change of this MappingUsersLookupMappingItemGroup. # noqa: E501 :rtype: bool @@ -916,7 +853,7 @@ def prompt_password_change(self): def prompt_password_change(self, prompt_password_change): """Sets the prompt_password_change of this MappingUsersLookupMappingItemGroup. - Prompts the user to change their password at the next login. # noqa: E501 + If true, prompts the user to change their password on next login. # noqa: E501 :param prompt_password_change: The prompt_password_change of this MappingUsersLookupMappingItemGroup. # noqa: E501 :type: bool @@ -1022,29 +959,6 @@ def sid(self, sid): self._sid = sid - @property - def ssh_public_keys(self): - """Gets the ssh_public_keys of this MappingUsersLookupMappingItemGroup. # noqa: E501 - - Specifies the user's LDAP SSH Public Key. # noqa: E501 - - :return: The ssh_public_keys of this MappingUsersLookupMappingItemGroup. # noqa: E501 - :rtype: list[str] - """ - return self._ssh_public_keys - - @ssh_public_keys.setter - def ssh_public_keys(self, ssh_public_keys): - """Sets the ssh_public_keys of this MappingUsersLookupMappingItemGroup. - - Specifies the user's LDAP SSH Public Key. # noqa: E501 - - :param ssh_public_keys: The ssh_public_keys of this MappingUsersLookupMappingItemGroup. # noqa: E501 - :type: list[str] - """ - - self._ssh_public_keys = ssh_public_keys - @property def type(self): """Gets the type of this MappingUsersLookupMappingItemGroup. # noqa: E501 @@ -1126,7 +1040,7 @@ def upn(self, upn): def user_can_change_password(self): """Gets the user_can_change_password of this MappingUsersLookupMappingItemGroup. # noqa: E501 - Specifies whether the password for the user can be changed. # noqa: E501 + If true, the user password can be changed. # noqa: E501 :return: The user_can_change_password of this MappingUsersLookupMappingItemGroup. # noqa: E501 :rtype: bool @@ -1137,7 +1051,7 @@ def user_can_change_password(self): def user_can_change_password(self, user_can_change_password): """Sets the user_can_change_password of this MappingUsersLookupMappingItemGroup. - Specifies whether the password for the user can be changed. # noqa: E501 + If true, the user password can be changed. # noqa: E501 :param user_can_change_password: The user_can_change_password of this MappingUsersLookupMappingItemGroup. # noqa: E501 :type: bool diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_list_profile.py b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_lookup_mapping_item_privilege.py similarity index 50% rename from isilon_sdk/isilon_sdk/v9_11_0/models/hardening_list_profile.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_lookup_mapping_item_privilege.py index a9897a54e..a3cba2287 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/hardening_list_profile.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_lookup_mapping_item_privilege.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class HardeningListProfile(object): +class MappingUsersLookupMappingItemPrivilege(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -31,108 +31,109 @@ class HardeningListProfile(object): and the value is json key in definition. """ swagger_types = { - 'applied': 'bool', - 'description': 'str', - 'name': 'str' + 'id': 'str', + 'name': 'str', + 'read_only': 'bool' } attribute_map = { - 'applied': 'applied', - 'description': 'description', - 'name': 'name' + 'id': 'id', + 'name': 'name', + 'read_only': 'read_only' } - def __init__(self, applied=None, description=None, name=None): # noqa: E501 - """HardeningListProfile - a model defined in Swagger""" # noqa: E501 + def __init__(self, id=None, name=None, read_only=None): # noqa: E501 + """MappingUsersLookupMappingItemPrivilege - a model defined in Swagger""" # noqa: E501 - self._applied = None - self._description = None + self._id = None self._name = None + self._read_only = None self.discriminator = None - if applied is not None: - self.applied = applied - if description is not None: - self.description = description + self.id = id if name is not None: self.name = name + if read_only is not None: + self.read_only = read_only @property - def applied(self): - """Gets the applied of this HardeningListProfile. # noqa: E501 + def id(self): + """Gets the id of this MappingUsersLookupMappingItemPrivilege. # noqa: E501 - Indicates whether the profile has been applied # noqa: E501 + Specifies the ID of the privilege. # noqa: E501 - :return: The applied of this HardeningListProfile. # noqa: E501 - :rtype: bool + :return: The id of this MappingUsersLookupMappingItemPrivilege. # noqa: E501 + :rtype: str """ - return self._applied + return self._id - @applied.setter - def applied(self, applied): - """Sets the applied of this HardeningListProfile. + @id.setter + def id(self, id): + """Sets the id of this MappingUsersLookupMappingItemPrivilege. - Indicates whether the profile has been applied # noqa: E501 + Specifies the ID of the privilege. # noqa: E501 - :param applied: The applied of this HardeningListProfile. # noqa: E501 - :type: bool + :param id: The id of this MappingUsersLookupMappingItemPrivilege. # noqa: E501 + :type: str """ + if id is None: + raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 + if id is not None and len(id) > 255: + raise ValueError("Invalid value for `id`, length must be less than or equal to `255`") # noqa: E501 + if id is not None and len(id) < 0: + raise ValueError("Invalid value for `id`, length must be greater than or equal to `0`") # noqa: E501 - self._applied = applied + self._id = id @property - def description(self): - """Gets the description of this HardeningListProfile. # noqa: E501 + def name(self): + """Gets the name of this MappingUsersLookupMappingItemPrivilege. # noqa: E501 - Description of the profile # noqa: E501 + Specifies the name of the privilege. # noqa: E501 - :return: The description of this HardeningListProfile. # noqa: E501 + :return: The name of this MappingUsersLookupMappingItemPrivilege. # noqa: E501 :rtype: str """ - return self._description + return self._name - @description.setter - def description(self, description): - """Sets the description of this HardeningListProfile. + @name.setter + def name(self, name): + """Sets the name of this MappingUsersLookupMappingItemPrivilege. - Description of the profile # noqa: E501 + Specifies the name of the privilege. # noqa: E501 - :param description: The description of this HardeningListProfile. # noqa: E501 + :param name: The name of this MappingUsersLookupMappingItemPrivilege. # noqa: E501 :type: str """ - if description is not None and len(description) > 255: - raise ValueError("Invalid value for `description`, length must be less than or equal to `255`") # noqa: E501 - if description is not None and len(description) < 1: - raise ValueError("Invalid value for `description`, length must be greater than or equal to `1`") # noqa: E501 + if name is not None and len(name) > 255: + raise ValueError("Invalid value for `name`, length must be less than or equal to `255`") # noqa: E501 + if name is not None and len(name) < 0: + raise ValueError("Invalid value for `name`, length must be greater than or equal to `0`") # noqa: E501 - self._description = description + self._name = name @property - def name(self): - """Gets the name of this HardeningListProfile. # noqa: E501 + def read_only(self): + """Gets the read_only of this MappingUsersLookupMappingItemPrivilege. # noqa: E501 - Profile name # noqa: E501 + True, if the privilege is read-only. # noqa: E501 - :return: The name of this HardeningListProfile. # noqa: E501 - :rtype: str + :return: The read_only of this MappingUsersLookupMappingItemPrivilege. # noqa: E501 + :rtype: bool """ - return self._name + return self._read_only - @name.setter - def name(self, name): - """Sets the name of this HardeningListProfile. + @read_only.setter + def read_only(self, read_only): + """Sets the read_only of this MappingUsersLookupMappingItemPrivilege. - Profile name # noqa: E501 + True, if the privilege is read-only. # noqa: E501 - :param name: The name of this HardeningListProfile. # noqa: E501 - :type: str + :param read_only: The read_only of this MappingUsersLookupMappingItemPrivilege. # noqa: E501 + :type: bool """ - if name is not None and len(name) > 255: - raise ValueError("Invalid value for `name`, length must be less than or equal to `255`") # noqa: E501 - if name is not None and len(name) < 1: - raise ValueError("Invalid value for `name`, length must be greater than or equal to `1`") # noqa: E501 - self._name = name + self._read_only = read_only def to_dict(self): """Returns the model properties as a dict""" @@ -155,7 +156,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(HardeningListProfile, dict): + if issubclass(MappingUsersLookupMappingItemPrivilege, dict): for key, value in self.items(): result[key] = value @@ -171,7 +172,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, HardeningListProfile): + if not isinstance(other, MappingUsersLookupMappingItemPrivilege): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_lookup_mapping_item_user.py b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_lookup_mapping_item_user.py new file mode 100644 index 000000000..42eaf6a71 --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_lookup_mapping_item_user.py @@ -0,0 +1,1113 @@ +# coding: utf-8 + +""" + Isilon SDK + + Isilon SDK - Language bindings for the OneFS API # noqa: E501 + + OpenAPI spec version: 15 + Contact: sdk@isilon.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + + +class MappingUsersLookupMappingItemUser(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'dn': 'str', + 'dns_domain': 'str', + 'domain': 'str', + 'email': 'str', + 'enabled': 'bool', + 'expired': 'bool', + 'expiry': 'int', + 'gecos': 'str', + 'generated_gid': 'bool', + 'generated_uid': 'bool', + 'generated_upn': 'bool', + 'gid': 'AuthAccessAccessItemFileGroup', + 'home_directory': 'str', + 'id': 'str', + 'locked': 'bool', + 'max_password_age': 'int', + 'member_of': 'list[AuthAccessAccessItemFileGroup]', + 'name': 'str', + 'object_history': 'list[AuthGroupObjectHistoryItem]', + 'on_disk_group_identity': 'AuthAccessAccessItemFileGroup', + 'on_disk_user_identity': 'AuthAccessAccessItemFileGroup', + 'password_expired': 'bool', + 'password_expires': 'bool', + 'password_expiry': 'int', + 'password_last_set': 'int', + 'primary_group_sid': 'AuthAccessAccessItemFileGroup', + 'prompt_password_change': 'bool', + 'provider': 'str', + 'sam_account_name': 'str', + 'shell': 'str', + 'sid': 'AuthAccessAccessItemFileGroup', + 'type': 'str', + 'uid': 'AuthAccessAccessItemFileGroup', + 'upn': 'str', + 'user_can_change_password': 'bool' + } + + attribute_map = { + 'dn': 'dn', + 'dns_domain': 'dns_domain', + 'domain': 'domain', + 'email': 'email', + 'enabled': 'enabled', + 'expired': 'expired', + 'expiry': 'expiry', + 'gecos': 'gecos', + 'generated_gid': 'generated_gid', + 'generated_uid': 'generated_uid', + 'generated_upn': 'generated_upn', + 'gid': 'gid', + 'home_directory': 'home_directory', + 'id': 'id', + 'locked': 'locked', + 'max_password_age': 'max_password_age', + 'member_of': 'member_of', + 'name': 'name', + 'object_history': 'object_history', + 'on_disk_group_identity': 'on_disk_group_identity', + 'on_disk_user_identity': 'on_disk_user_identity', + 'password_expired': 'password_expired', + 'password_expires': 'password_expires', + 'password_expiry': 'password_expiry', + 'password_last_set': 'password_last_set', + 'primary_group_sid': 'primary_group_sid', + 'prompt_password_change': 'prompt_password_change', + 'provider': 'provider', + 'sam_account_name': 'sam_account_name', + 'shell': 'shell', + 'sid': 'sid', + 'type': 'type', + 'uid': 'uid', + 'upn': 'upn', + 'user_can_change_password': 'user_can_change_password' + } + + def __init__(self, dn=None, dns_domain=None, domain=None, email=None, enabled=None, expired=None, expiry=None, gecos=None, generated_gid=None, generated_uid=None, generated_upn=None, gid=None, home_directory=None, id=None, locked=None, max_password_age=None, member_of=None, name=None, object_history=None, on_disk_group_identity=None, on_disk_user_identity=None, password_expired=None, password_expires=None, password_expiry=None, password_last_set=None, primary_group_sid=None, prompt_password_change=None, provider=None, sam_account_name=None, shell=None, sid=None, type=None, uid=None, upn=None, user_can_change_password=None): # noqa: E501 + """MappingUsersLookupMappingItemUser - a model defined in Swagger""" # noqa: E501 + + self._dn = None + self._dns_domain = None + self._domain = None + self._email = None + self._enabled = None + self._expired = None + self._expiry = None + self._gecos = None + self._generated_gid = None + self._generated_uid = None + self._generated_upn = None + self._gid = None + self._home_directory = None + self._id = None + self._locked = None + self._max_password_age = None + self._member_of = None + self._name = None + self._object_history = None + self._on_disk_group_identity = None + self._on_disk_user_identity = None + self._password_expired = None + self._password_expires = None + self._password_expiry = None + self._password_last_set = None + self._primary_group_sid = None + self._prompt_password_change = None + self._provider = None + self._sam_account_name = None + self._shell = None + self._sid = None + self._type = None + self._uid = None + self._upn = None + self._user_can_change_password = None + self.discriminator = None + + if dn is not None: + self.dn = dn + if dns_domain is not None: + self.dns_domain = dns_domain + if domain is not None: + self.domain = domain + if email is not None: + self.email = email + self.enabled = enabled + self.expired = expired + if expiry is not None: + self.expiry = expiry + if gecos is not None: + self.gecos = gecos + if generated_gid is not None: + self.generated_gid = generated_gid + if generated_uid is not None: + self.generated_uid = generated_uid + if generated_upn is not None: + self.generated_upn = generated_upn + if gid is not None: + self.gid = gid + if home_directory is not None: + self.home_directory = home_directory + self.id = id + self.locked = locked + if max_password_age is not None: + self.max_password_age = max_password_age + if member_of is not None: + self.member_of = member_of + self.name = name + if object_history is not None: + self.object_history = object_history + if on_disk_group_identity is not None: + self.on_disk_group_identity = on_disk_group_identity + if on_disk_user_identity is not None: + self.on_disk_user_identity = on_disk_user_identity + self.password_expired = password_expired + self.password_expires = password_expires + if password_expiry is not None: + self.password_expiry = password_expiry + if password_last_set is not None: + self.password_last_set = password_last_set + if primary_group_sid is not None: + self.primary_group_sid = primary_group_sid + self.prompt_password_change = prompt_password_change + if provider is not None: + self.provider = provider + if sam_account_name is not None: + self.sam_account_name = sam_account_name + if shell is not None: + self.shell = shell + if sid is not None: + self.sid = sid + self.type = type + if uid is not None: + self.uid = uid + if upn is not None: + self.upn = upn + self.user_can_change_password = user_can_change_password + + @property + def dn(self): + """Gets the dn of this MappingUsersLookupMappingItemUser. # noqa: E501 + + + :return: The dn of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: str + """ + return self._dn + + @dn.setter + def dn(self, dn): + """Sets the dn of this MappingUsersLookupMappingItemUser. + + + :param dn: The dn of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: str + """ + if dn is not None and len(dn) > 8192: + raise ValueError("Invalid value for `dn`, length must be less than or equal to `8192`") # noqa: E501 + if dn is not None and len(dn) < 0: + raise ValueError("Invalid value for `dn`, length must be greater than or equal to `0`") # noqa: E501 + + self._dn = dn + + @property + def dns_domain(self): + """Gets the dns_domain of this MappingUsersLookupMappingItemUser. # noqa: E501 + + + :return: The dns_domain of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: str + """ + return self._dns_domain + + @dns_domain.setter + def dns_domain(self, dns_domain): + """Sets the dns_domain of this MappingUsersLookupMappingItemUser. + + + :param dns_domain: The dns_domain of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: str + """ + if dns_domain is not None and len(dns_domain) > 255: + raise ValueError("Invalid value for `dns_domain`, length must be less than or equal to `255`") # noqa: E501 + if dns_domain is not None and len(dns_domain) < 0: + raise ValueError("Invalid value for `dns_domain`, length must be greater than or equal to `0`") # noqa: E501 + + self._dns_domain = dns_domain + + @property + def domain(self): + """Gets the domain of this MappingUsersLookupMappingItemUser. # noqa: E501 + + + :return: The domain of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: str + """ + return self._domain + + @domain.setter + def domain(self, domain): + """Sets the domain of this MappingUsersLookupMappingItemUser. + + + :param domain: The domain of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: str + """ + if domain is not None and len(domain) > 255: + raise ValueError("Invalid value for `domain`, length must be less than or equal to `255`") # noqa: E501 + if domain is not None and len(domain) < 0: + raise ValueError("Invalid value for `domain`, length must be greater than or equal to `0`") # noqa: E501 + + self._domain = domain + + @property + def email(self): + """Gets the email of this MappingUsersLookupMappingItemUser. # noqa: E501 + + + :return: The email of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: str + """ + return self._email + + @email.setter + def email(self, email): + """Sets the email of this MappingUsersLookupMappingItemUser. + + + :param email: The email of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: str + """ + if email is not None and len(email) > 255: + raise ValueError("Invalid value for `email`, length must be less than or equal to `255`") # noqa: E501 + if email is not None and len(email) < 0: + raise ValueError("Invalid value for `email`, length must be greater than or equal to `0`") # noqa: E501 + + self._email = email + + @property + def enabled(self): + """Gets the enabled of this MappingUsersLookupMappingItemUser. # noqa: E501 + + True, if the authenticated user is enabled. # noqa: E501 + + :return: The enabled of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: bool + """ + return self._enabled + + @enabled.setter + def enabled(self, enabled): + """Sets the enabled of this MappingUsersLookupMappingItemUser. + + True, if the authenticated user is enabled. # noqa: E501 + + :param enabled: The enabled of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: bool + """ + if enabled is None: + raise ValueError("Invalid value for `enabled`, must not be `None`") # noqa: E501 + + self._enabled = enabled + + @property + def expired(self): + """Gets the expired of this MappingUsersLookupMappingItemUser. # noqa: E501 + + True, if the authenticated user has expired. # noqa: E501 + + :return: The expired of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: bool + """ + return self._expired + + @expired.setter + def expired(self, expired): + """Sets the expired of this MappingUsersLookupMappingItemUser. + + True, if the authenticated user has expired. # noqa: E501 + + :param expired: The expired of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: bool + """ + if expired is None: + raise ValueError("Invalid value for `expired`, must not be `None`") # noqa: E501 + + self._expired = expired + + @property + def expiry(self): + """Gets the expiry of this MappingUsersLookupMappingItemUser. # noqa: E501 + + + :return: The expiry of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: int + """ + return self._expiry + + @expiry.setter + def expiry(self, expiry): + """Sets the expiry of this MappingUsersLookupMappingItemUser. + + + :param expiry: The expiry of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: int + """ + if expiry is not None and expiry > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `expiry`, must be a value less than or equal to `4294967295`") # noqa: E501 + if expiry is not None and expiry < 0: # noqa: E501 + raise ValueError("Invalid value for `expiry`, must be a value greater than or equal to `0`") # noqa: E501 + + self._expiry = expiry + + @property + def gecos(self): + """Gets the gecos of this MappingUsersLookupMappingItemUser. # noqa: E501 + + + :return: The gecos of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: str + """ + return self._gecos + + @gecos.setter + def gecos(self, gecos): + """Sets the gecos of this MappingUsersLookupMappingItemUser. + + + :param gecos: The gecos of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: str + """ + if gecos is not None and len(gecos) > 255: + raise ValueError("Invalid value for `gecos`, length must be less than or equal to `255`") # noqa: E501 + if gecos is not None and len(gecos) < 0: + raise ValueError("Invalid value for `gecos`, length must be greater than or equal to `0`") # noqa: E501 + + self._gecos = gecos + + @property + def generated_gid(self): + """Gets the generated_gid of this MappingUsersLookupMappingItemUser. # noqa: E501 + + True, if the GID was generated. # noqa: E501 + + :return: The generated_gid of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: bool + """ + return self._generated_gid + + @generated_gid.setter + def generated_gid(self, generated_gid): + """Sets the generated_gid of this MappingUsersLookupMappingItemUser. + + True, if the GID was generated. # noqa: E501 + + :param generated_gid: The generated_gid of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: bool + """ + + self._generated_gid = generated_gid + + @property + def generated_uid(self): + """Gets the generated_uid of this MappingUsersLookupMappingItemUser. # noqa: E501 + + True, if the UID was generated. # noqa: E501 + + :return: The generated_uid of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: bool + """ + return self._generated_uid + + @generated_uid.setter + def generated_uid(self, generated_uid): + """Sets the generated_uid of this MappingUsersLookupMappingItemUser. + + True, if the UID was generated. # noqa: E501 + + :param generated_uid: The generated_uid of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: bool + """ + + self._generated_uid = generated_uid + + @property + def generated_upn(self): + """Gets the generated_upn of this MappingUsersLookupMappingItemUser. # noqa: E501 + + True, if the UPN was generated. # noqa: E501 + + :return: The generated_upn of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: bool + """ + return self._generated_upn + + @generated_upn.setter + def generated_upn(self, generated_upn): + """Sets the generated_upn of this MappingUsersLookupMappingItemUser. + + True, if the UPN was generated. # noqa: E501 + + :param generated_upn: The generated_upn of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: bool + """ + + self._generated_upn = generated_upn + + @property + def gid(self): + """Gets the gid of this MappingUsersLookupMappingItemUser. # noqa: E501 + + Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'. # noqa: E501 + + :return: The gid of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: AuthAccessAccessItemFileGroup + """ + return self._gid + + @gid.setter + def gid(self, gid): + """Sets the gid of this MappingUsersLookupMappingItemUser. + + Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'. # noqa: E501 + + :param gid: The gid of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: AuthAccessAccessItemFileGroup + """ + + self._gid = gid + + @property + def home_directory(self): + """Gets the home_directory of this MappingUsersLookupMappingItemUser. # noqa: E501 + + + :return: The home_directory of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: str + """ + return self._home_directory + + @home_directory.setter + def home_directory(self, home_directory): + """Sets the home_directory of this MappingUsersLookupMappingItemUser. + + + :param home_directory: The home_directory of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: str + """ + if home_directory is not None and len(home_directory) > 4096: + raise ValueError("Invalid value for `home_directory`, length must be less than or equal to `4096`") # noqa: E501 + if home_directory is not None and len(home_directory) < 0: + raise ValueError("Invalid value for `home_directory`, length must be greater than or equal to `0`") # noqa: E501 + + self._home_directory = home_directory + + @property + def id(self): + """Gets the id of this MappingUsersLookupMappingItemUser. # noqa: E501 + + Specifies the user or group ID. # noqa: E501 + + :return: The id of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: str + """ + return self._id + + @id.setter + def id(self, id): + """Sets the id of this MappingUsersLookupMappingItemUser. + + Specifies the user or group ID. # noqa: E501 + + :param id: The id of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: str + """ + if id is None: + raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 + if id is not None and len(id) > 255: + raise ValueError("Invalid value for `id`, length must be less than or equal to `255`") # noqa: E501 + if id is not None and len(id) < 0: + raise ValueError("Invalid value for `id`, length must be greater than or equal to `0`") # noqa: E501 + + self._id = id + + @property + def locked(self): + """Gets the locked of this MappingUsersLookupMappingItemUser. # noqa: E501 + + If true, indicates that the account is locked. # noqa: E501 + + :return: The locked of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: bool + """ + return self._locked + + @locked.setter + def locked(self, locked): + """Sets the locked of this MappingUsersLookupMappingItemUser. + + If true, indicates that the account is locked. # noqa: E501 + + :param locked: The locked of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: bool + """ + if locked is None: + raise ValueError("Invalid value for `locked`, must not be `None`") # noqa: E501 + + self._locked = locked + + @property + def max_password_age(self): + """Gets the max_password_age of this MappingUsersLookupMappingItemUser. # noqa: E501 + + Specifies the maximum time in seconds allowed before the password expires. # noqa: E501 + + :return: The max_password_age of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: int + """ + return self._max_password_age + + @max_password_age.setter + def max_password_age(self, max_password_age): + """Sets the max_password_age of this MappingUsersLookupMappingItemUser. + + Specifies the maximum time in seconds allowed before the password expires. # noqa: E501 + + :param max_password_age: The max_password_age of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: int + """ + + self._max_password_age = max_password_age + + @property + def member_of(self): + """Gets the member_of of this MappingUsersLookupMappingItemUser. # noqa: E501 + + + :return: The member_of of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: list[AuthAccessAccessItemFileGroup] + """ + return self._member_of + + @member_of.setter + def member_of(self, member_of): + """Sets the member_of of this MappingUsersLookupMappingItemUser. + + + :param member_of: The member_of of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: list[AuthAccessAccessItemFileGroup] + """ + + self._member_of = member_of + + @property + def name(self): + """Gets the name of this MappingUsersLookupMappingItemUser. # noqa: E501 + + Specifies a user or group name. # noqa: E501 + + :return: The name of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: str + """ + return self._name + + @name.setter + def name(self, name): + """Sets the name of this MappingUsersLookupMappingItemUser. + + Specifies a user or group name. # noqa: E501 + + :param name: The name of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: str + """ + if name is None: + raise ValueError("Invalid value for `name`, must not be `None`") # noqa: E501 + if name is not None and len(name) > 255: + raise ValueError("Invalid value for `name`, length must be less than or equal to `255`") # noqa: E501 + if name is not None and len(name) < 0: + raise ValueError("Invalid value for `name`, length must be greater than or equal to `0`") # noqa: E501 + + self._name = name + + @property + def object_history(self): + """Gets the object_history of this MappingUsersLookupMappingItemUser. # noqa: E501 + + + :return: The object_history of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: list[AuthGroupObjectHistoryItem] + """ + return self._object_history + + @object_history.setter + def object_history(self, object_history): + """Sets the object_history of this MappingUsersLookupMappingItemUser. + + + :param object_history: The object_history of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: list[AuthGroupObjectHistoryItem] + """ + + self._object_history = object_history + + @property + def on_disk_group_identity(self): + """Gets the on_disk_group_identity of this MappingUsersLookupMappingItemUser. # noqa: E501 + + Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'. # noqa: E501 + + :return: The on_disk_group_identity of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: AuthAccessAccessItemFileGroup + """ + return self._on_disk_group_identity + + @on_disk_group_identity.setter + def on_disk_group_identity(self, on_disk_group_identity): + """Sets the on_disk_group_identity of this MappingUsersLookupMappingItemUser. + + Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'. # noqa: E501 + + :param on_disk_group_identity: The on_disk_group_identity of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: AuthAccessAccessItemFileGroup + """ + + self._on_disk_group_identity = on_disk_group_identity + + @property + def on_disk_user_identity(self): + """Gets the on_disk_user_identity of this MappingUsersLookupMappingItemUser. # noqa: E501 + + Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'. # noqa: E501 + + :return: The on_disk_user_identity of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: AuthAccessAccessItemFileGroup + """ + return self._on_disk_user_identity + + @on_disk_user_identity.setter + def on_disk_user_identity(self, on_disk_user_identity): + """Sets the on_disk_user_identity of this MappingUsersLookupMappingItemUser. + + Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'. # noqa: E501 + + :param on_disk_user_identity: The on_disk_user_identity of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: AuthAccessAccessItemFileGroup + """ + + self._on_disk_user_identity = on_disk_user_identity + + @property + def password_expired(self): + """Gets the password_expired of this MappingUsersLookupMappingItemUser. # noqa: E501 + + If true, the password has expired. # noqa: E501 + + :return: The password_expired of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: bool + """ + return self._password_expired + + @password_expired.setter + def password_expired(self, password_expired): + """Sets the password_expired of this MappingUsersLookupMappingItemUser. + + If true, the password has expired. # noqa: E501 + + :param password_expired: The password_expired of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: bool + """ + if password_expired is None: + raise ValueError("Invalid value for `password_expired`, must not be `None`") # noqa: E501 + + self._password_expired = password_expired + + @property + def password_expires(self): + """Gets the password_expires of this MappingUsersLookupMappingItemUser. # noqa: E501 + + If true, the password is allowed to expire. # noqa: E501 + + :return: The password_expires of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: bool + """ + return self._password_expires + + @password_expires.setter + def password_expires(self, password_expires): + """Sets the password_expires of this MappingUsersLookupMappingItemUser. + + If true, the password is allowed to expire. # noqa: E501 + + :param password_expires: The password_expires of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: bool + """ + if password_expires is None: + raise ValueError("Invalid value for `password_expires`, must not be `None`") # noqa: E501 + + self._password_expires = password_expires + + @property + def password_expiry(self): + """Gets the password_expiry of this MappingUsersLookupMappingItemUser. # noqa: E501 + + + :return: The password_expiry of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: int + """ + return self._password_expiry + + @password_expiry.setter + def password_expiry(self, password_expiry): + """Sets the password_expiry of this MappingUsersLookupMappingItemUser. + + + :param password_expiry: The password_expiry of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: int + """ + if password_expiry is not None and password_expiry > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `password_expiry`, must be a value less than or equal to `4294967295`") # noqa: E501 + if password_expiry is not None and password_expiry < 0: # noqa: E501 + raise ValueError("Invalid value for `password_expiry`, must be a value greater than or equal to `0`") # noqa: E501 + + self._password_expiry = password_expiry + + @property + def password_last_set(self): + """Gets the password_last_set of this MappingUsersLookupMappingItemUser. # noqa: E501 + + + :return: The password_last_set of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: int + """ + return self._password_last_set + + @password_last_set.setter + def password_last_set(self, password_last_set): + """Sets the password_last_set of this MappingUsersLookupMappingItemUser. + + + :param password_last_set: The password_last_set of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: int + """ + if password_last_set is not None and password_last_set > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `password_last_set`, must be a value less than or equal to `4294967295`") # noqa: E501 + if password_last_set is not None and password_last_set < 0: # noqa: E501 + raise ValueError("Invalid value for `password_last_set`, must be a value greater than or equal to `0`") # noqa: E501 + + self._password_last_set = password_last_set + + @property + def primary_group_sid(self): + """Gets the primary_group_sid of this MappingUsersLookupMappingItemUser. # noqa: E501 + + Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'. # noqa: E501 + + :return: The primary_group_sid of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: AuthAccessAccessItemFileGroup + """ + return self._primary_group_sid + + @primary_group_sid.setter + def primary_group_sid(self, primary_group_sid): + """Sets the primary_group_sid of this MappingUsersLookupMappingItemUser. + + Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'. # noqa: E501 + + :param primary_group_sid: The primary_group_sid of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: AuthAccessAccessItemFileGroup + """ + + self._primary_group_sid = primary_group_sid + + @property + def prompt_password_change(self): + """Gets the prompt_password_change of this MappingUsersLookupMappingItemUser. # noqa: E501 + + Prompts the user to change their password at the next login. # noqa: E501 + + :return: The prompt_password_change of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: bool + """ + return self._prompt_password_change + + @prompt_password_change.setter + def prompt_password_change(self, prompt_password_change): + """Sets the prompt_password_change of this MappingUsersLookupMappingItemUser. + + Prompts the user to change their password at the next login. # noqa: E501 + + :param prompt_password_change: The prompt_password_change of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: bool + """ + if prompt_password_change is None: + raise ValueError("Invalid value for `prompt_password_change`, must not be `None`") # noqa: E501 + + self._prompt_password_change = prompt_password_change + + @property + def provider(self): + """Gets the provider of this MappingUsersLookupMappingItemUser. # noqa: E501 + + + :return: The provider of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: str + """ + return self._provider + + @provider.setter + def provider(self, provider): + """Sets the provider of this MappingUsersLookupMappingItemUser. + + + :param provider: The provider of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: str + """ + if provider is not None and len(provider) > 255: + raise ValueError("Invalid value for `provider`, length must be less than or equal to `255`") # noqa: E501 + if provider is not None and len(provider) < 0: + raise ValueError("Invalid value for `provider`, length must be greater than or equal to `0`") # noqa: E501 + + self._provider = provider + + @property + def sam_account_name(self): + """Gets the sam_account_name of this MappingUsersLookupMappingItemUser. # noqa: E501 + + + :return: The sam_account_name of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: str + """ + return self._sam_account_name + + @sam_account_name.setter + def sam_account_name(self, sam_account_name): + """Sets the sam_account_name of this MappingUsersLookupMappingItemUser. + + + :param sam_account_name: The sam_account_name of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: str + """ + if sam_account_name is not None and len(sam_account_name) > 255: + raise ValueError("Invalid value for `sam_account_name`, length must be less than or equal to `255`") # noqa: E501 + if sam_account_name is not None and len(sam_account_name) < 0: + raise ValueError("Invalid value for `sam_account_name`, length must be greater than or equal to `0`") # noqa: E501 + + self._sam_account_name = sam_account_name + + @property + def shell(self): + """Gets the shell of this MappingUsersLookupMappingItemUser. # noqa: E501 + + + :return: The shell of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: str + """ + return self._shell + + @shell.setter + def shell(self, shell): + """Sets the shell of this MappingUsersLookupMappingItemUser. + + + :param shell: The shell of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: str + """ + if shell is not None and len(shell) > 4096: + raise ValueError("Invalid value for `shell`, length must be less than or equal to `4096`") # noqa: E501 + if shell is not None and len(shell) < 0: + raise ValueError("Invalid value for `shell`, length must be greater than or equal to `0`") # noqa: E501 + + self._shell = shell + + @property + def sid(self): + """Gets the sid of this MappingUsersLookupMappingItemUser. # noqa: E501 + + Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'. # noqa: E501 + + :return: The sid of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: AuthAccessAccessItemFileGroup + """ + return self._sid + + @sid.setter + def sid(self, sid): + """Sets the sid of this MappingUsersLookupMappingItemUser. + + Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'. # noqa: E501 + + :param sid: The sid of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: AuthAccessAccessItemFileGroup + """ + + self._sid = sid + + @property + def type(self): + """Gets the type of this MappingUsersLookupMappingItemUser. # noqa: E501 + + Specifies the object type. # noqa: E501 + + :return: The type of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: str + """ + return self._type + + @type.setter + def type(self, type): + """Sets the type of this MappingUsersLookupMappingItemUser. + + Specifies the object type. # noqa: E501 + + :param type: The type of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: str + """ + if type is None: + raise ValueError("Invalid value for `type`, must not be `None`") # noqa: E501 + if type is not None and len(type) > 255: + raise ValueError("Invalid value for `type`, length must be less than or equal to `255`") # noqa: E501 + if type is not None and len(type) < 0: + raise ValueError("Invalid value for `type`, length must be greater than or equal to `0`") # noqa: E501 + + self._type = type + + @property + def uid(self): + """Gets the uid of this MappingUsersLookupMappingItemUser. # noqa: E501 + + Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'. # noqa: E501 + + :return: The uid of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: AuthAccessAccessItemFileGroup + """ + return self._uid + + @uid.setter + def uid(self, uid): + """Sets the uid of this MappingUsersLookupMappingItemUser. + + Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'. # noqa: E501 + + :param uid: The uid of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: AuthAccessAccessItemFileGroup + """ + + self._uid = uid + + @property + def upn(self): + """Gets the upn of this MappingUsersLookupMappingItemUser. # noqa: E501 + + + :return: The upn of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: str + """ + return self._upn + + @upn.setter + def upn(self, upn): + """Sets the upn of this MappingUsersLookupMappingItemUser. + + + :param upn: The upn of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: str + """ + if upn is not None and len(upn) > 255: + raise ValueError("Invalid value for `upn`, length must be less than or equal to `255`") # noqa: E501 + if upn is not None and len(upn) < 0: + raise ValueError("Invalid value for `upn`, length must be greater than or equal to `0`") # noqa: E501 + + self._upn = upn + + @property + def user_can_change_password(self): + """Gets the user_can_change_password of this MappingUsersLookupMappingItemUser. # noqa: E501 + + Specifies whether the password for the user can be changed. # noqa: E501 + + :return: The user_can_change_password of this MappingUsersLookupMappingItemUser. # noqa: E501 + :rtype: bool + """ + return self._user_can_change_password + + @user_can_change_password.setter + def user_can_change_password(self, user_can_change_password): + """Sets the user_can_change_password of this MappingUsersLookupMappingItemUser. + + Specifies whether the password for the user can be changed. # noqa: E501 + + :param user_can_change_password: The user_can_change_password of this MappingUsersLookupMappingItemUser. # noqa: E501 + :type: bool + """ + if user_can_change_password is None: + raise ValueError("Invalid value for `user_can_change_password`, must not be `None`") # noqa: E501 + + self._user_can_change_password = user_can_change_password + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(MappingUsersLookupMappingItemUser, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, MappingUsersLookupMappingItemUser): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + """Returns true if both objects are not equal""" + return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules.py b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules.py index 543db58ad..f9c264287 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_extended.py index b6dee667e..6b96502b8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_parameters.py b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_parameters.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_parameters.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_parameters.py index ff7858277..b31439e09 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_parameters.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_parameters.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_parameters_default_unix_user.py b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_parameters_default_unix_user.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_parameters_default_unix_user.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_parameters_default_unix_user.py index 87b910540..426c60b20 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_parameters_default_unix_user.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_parameters_default_unix_user.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rule.py b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rule.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rule.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rule.py index e316128c1..d9e318dfc 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rule.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rule.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rule_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rule_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rule_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rule_extended.py index b99633fe3..86495dfdb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rule_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rule_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rule_options.py b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rule_options.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rule_options.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rule_options.py index dd234a206..9df2b9660 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rule_options.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rule_options.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rule_options_default_user.py b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rule_options_default_user.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rule_options_default_user.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rule_options_default_user.py index e821afd7e..2c5601dff 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rule_options_default_user.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rule_options_default_user.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rule_options_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rule_options_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rule_options_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rule_options_extended.py index 2e11050ff..fb2a5f859 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rule_options_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rule_options_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rule_user1.py b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rule_user1.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rule_user1.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rule_user1.py index 09f1e1af5..cb542dc0d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rule_user1.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rule_user1.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rule_user2.py b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rule_user2.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rule_user2.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rule_user2.py index a8b921b98..de3fbfbfb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rule_user2.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rule_user2.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rules.py b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rules.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rules.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rules.py index 49ca2db49..dbfd93f77 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rules.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rules.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rules_parameters.py b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rules_parameters.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rules_parameters.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rules_parameters.py index a89380eb2..31381d8cd 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rules_parameters.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rules_parameters.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rules_parameters_default_unix_user.py b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rules_parameters_default_unix_user.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rules_parameters_default_unix_user.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rules_parameters_default_unix_user.py index 5198d6cb1..c6382d854 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/mapping_users_rules_rules_parameters_default_unix_user.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/mapping_users_rules_rules_parameters_default_unix_user.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/member_object.py b/isilon_sdk/isilon_sdk/v9_4_0/models/member_object.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/member_object.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/member_object.py index 96ccdb8a2..e0b46b4c7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/member_object.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/member_object.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/name_lin.py b/isilon_sdk/isilon_sdk/v9_4_0/models/name_lin.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/name_lin.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/name_lin.py index 2074861b3..c45578d52 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/name_lin.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/name_lin.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/name_lins.py b/isilon_sdk/isilon_sdk/v9_4_0/models/name_lins.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/name_lins.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/name_lins.py index a93066f08..3ef77a9ef 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/name_lins.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/name_lins.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/name_lins_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/name_lins_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/name_lins_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/name_lins_extended.py index d9ce13eca..5b8ff8557 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/name_lins_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/name_lins_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/namespace_access_points.py b/isilon_sdk/isilon_sdk/v9_4_0/models/namespace_access_points.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/namespace_access_points.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/namespace_access_points.py index 1ff7f8b90..6f8db3963 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/namespace_access_points.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/namespace_access_points.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/namespace_access_points_namespaces.py b/isilon_sdk/isilon_sdk/v9_4_0/models/namespace_access_points_namespaces.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/namespace_access_points_namespaces.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/namespace_access_points_namespaces.py index f56a32c3b..79e509f3b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/namespace_access_points_namespaces.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/namespace_access_points_namespaces.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/namespace_acl.py b/isilon_sdk/isilon_sdk/v9_4_0/models/namespace_acl.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/namespace_acl.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/namespace_acl.py index 8304bd1a0..ffc936012 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/namespace_acl.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/namespace_acl.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/namespace_metadata.py b/isilon_sdk/isilon_sdk/v9_4_0/models/namespace_metadata.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/namespace_metadata.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/namespace_metadata.py index 0a177d55c..3d949c32e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/namespace_metadata.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/namespace_metadata.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/namespace_metadata_attrs.py b/isilon_sdk/isilon_sdk/v9_4_0/models/namespace_metadata_attrs.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/namespace_metadata_attrs.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/namespace_metadata_attrs.py index b71b02cc6..a1151f69b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/namespace_metadata_attrs.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/namespace_metadata_attrs.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/namespace_metadata_list.py b/isilon_sdk/isilon_sdk/v9_4_0/models/namespace_metadata_list.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/namespace_metadata_list.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/namespace_metadata_list.py index 4df3d99c1..cedcd4ee1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/namespace_metadata_list.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/namespace_metadata_list.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/namespace_metadata_list_attrs.py b/isilon_sdk/isilon_sdk/v9_4_0/models/namespace_metadata_list_attrs.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/namespace_metadata_list_attrs.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/namespace_metadata_list_attrs.py index fed978ff0..3ead60d97 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/namespace_metadata_list_attrs.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/namespace_metadata_list_attrs.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/namespace_object.py b/isilon_sdk/isilon_sdk/v9_4_0/models/namespace_object.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/namespace_object.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/namespace_object.py index 8e79d6943..cb2df686a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/namespace_object.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/namespace_object.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/namespace_objects.py b/isilon_sdk/isilon_sdk/v9_4_0/models/namespace_objects.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/namespace_objects.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/namespace_objects.py index 6776a9158..90a07b71b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/namespace_objects.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/namespace_objects.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_backup.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_backup.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_backup.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_backup.py index 34d89d140..899f96891 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_backup.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_backup.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_backup_context.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_backup_context.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_backup_context.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_backup_context.py index a77eba905..74668d8fa 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_backup_context.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_backup_context.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_backup_context_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_backup_context_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_backup_context_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_backup_context_extended.py index cd7aa2dcc..4bdc4a278 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_backup_context_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_backup_context_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_backup_context_session.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_backup_context_session.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_backup_context_session.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_backup_context_session.py index 296bcff46..0a1a24360 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_backup_context_session.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_backup_context_session.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_backup_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_backup_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_backup_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_backup_extended.py index b1f1c6d1b..6959a69f0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_backup_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_backup_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_bre.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_bre.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_bre.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_bre.py index 7e895038c..258b9613e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_bre.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_bre.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_bre_context.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_bre_context.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_bre_context.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_bre_context.py index 5e1b4e8ed..32dc3dc36 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_bre_context.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_bre_context.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_bre_context_env_variable.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_bre_context_env_variable.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_bre_context_env_variable.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_bre_context_env_variable.py index 49e04bdd6..64c9cc242 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_bre_context_env_variable.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_bre_context_env_variable.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_bre_context_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_bre_context_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_bre_context_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_bre_context_extended.py index 48717f0c1..b72d9b88b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_bre_context_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_bre_context_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_bre_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_bre_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_bre_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_bre_extended.py index 99d82a2d8..aa409e964 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_contexts_bre_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_contexts_bre_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_diagnostics.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_diagnostics.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_diagnostics.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_diagnostics.py index ad825f9e8..641c13f19 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_diagnostics.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_diagnostics.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_diagnostics_diagnostics.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_diagnostics_diagnostics.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_diagnostics_diagnostics.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_diagnostics_diagnostics.py index 523538906..9781a2e56 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_diagnostics_diagnostics.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_diagnostics_diagnostics.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_dumpdate.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_dumpdate.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_dumpdate.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_dumpdate.py index 6c24851e7..0271b490f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_dumpdate.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_dumpdate.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_dumpdates.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_dumpdates.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_dumpdates.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_dumpdates.py index b66796d1a..bb6ada908 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_dumpdates.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_dumpdates.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_logs.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_logs.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_logs.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_logs.py index 02c679755..771646f4b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_logs.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_logs.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_logs_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_logs_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_logs_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_logs_node.py index 865949d32..446207ae6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_logs_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_logs_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_session.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_session.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_session.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_session.py index 6d52d677e..07ad25b97 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_session.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_session.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_sessions.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_sessions.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_sessions.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_sessions.py index 1096ad421..5aaa33346 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_sessions.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_sessions.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_sessions_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_sessions_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_sessions_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_sessions_extended.py index 05ae15b84..81b9e14be 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_sessions_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_sessions_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_sessions_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_sessions_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_sessions_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_sessions_node.py index 8e7b675a4..dd644f813 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_sessions_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_sessions_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_sessions_node_session.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_sessions_node_session.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_sessions_node_session.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_sessions_node_session.py index bc551945d..bada0a3ef 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_sessions_node_session.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_sessions_node_session.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_dmas.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_dmas.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_dmas.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_dmas.py index e430acddc..b880b0095 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_dmas.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_dmas.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_dmas_dmavendor.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_dmas_dmavendor.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_dmas_dmavendor.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_dmas_dmavendor.py index a050206dc..38ba82bc1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_dmas_dmavendor.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_dmas_dmavendor.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_global.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_global.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_global.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_global.py index 2db3f0ce9..df1271121 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_global.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_global.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_global_global.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_global_global.py similarity index 91% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_global_global.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_global_global.py index 9d09201ea..fa60f28e3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_global_global.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_global_global.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -40,8 +40,7 @@ class NdmpSettingsGlobalGlobal(object): 'port': 'int', 'service': 'bool', 'stub_file_open_timeout': 'int', - 'throttler_cpu_threshold': 'int', - 'vmem_size': 'int' + 'throttler_cpu_threshold': 'int' } attribute_map = { @@ -54,11 +53,10 @@ class NdmpSettingsGlobalGlobal(object): 'port': 'port', 'service': 'service', 'stub_file_open_timeout': 'stub_file_open_timeout', - 'throttler_cpu_threshold': 'throttler_cpu_threshold', - 'vmem_size': 'vmem_size' + 'throttler_cpu_threshold': 'throttler_cpu_threshold' } - def __init__(self, bre_max_num_contexts=None, dma=None, enable_redirector=None, enable_throttler=None, msb_context_retention_duration=None, msr_context_retention_duration=None, port=None, service=None, stub_file_open_timeout=None, throttler_cpu_threshold=None, vmem_size=None): # noqa: E501 + def __init__(self, bre_max_num_contexts=None, dma=None, enable_redirector=None, enable_throttler=None, msb_context_retention_duration=None, msr_context_retention_duration=None, port=None, service=None, stub_file_open_timeout=None, throttler_cpu_threshold=None): # noqa: E501 """NdmpSettingsGlobalGlobal - a model defined in Swagger""" # noqa: E501 self._bre_max_num_contexts = None @@ -71,7 +69,6 @@ def __init__(self, bre_max_num_contexts=None, dma=None, enable_redirector=None, self._service = None self._stub_file_open_timeout = None self._throttler_cpu_threshold = None - self._vmem_size = None self.discriminator = None if bre_max_num_contexts is not None: @@ -94,8 +91,6 @@ def __init__(self, bre_max_num_contexts=None, dma=None, enable_redirector=None, self.stub_file_open_timeout = stub_file_open_timeout if throttler_cpu_threshold is not None: self.throttler_cpu_threshold = throttler_cpu_threshold - if vmem_size is not None: - self.vmem_size = vmem_size @property def bre_max_num_contexts(self): @@ -353,33 +348,6 @@ def throttler_cpu_threshold(self, throttler_cpu_threshold): self._throttler_cpu_threshold = throttler_cpu_threshold - @property - def vmem_size(self): - """Gets the vmem_size of this NdmpSettingsGlobalGlobal. # noqa: E501 - - NDMP Vmem size in mebibytes. # noqa: E501 - - :return: The vmem_size of this NdmpSettingsGlobalGlobal. # noqa: E501 - :rtype: int - """ - return self._vmem_size - - @vmem_size.setter - def vmem_size(self, vmem_size): - """Sets the vmem_size of this NdmpSettingsGlobalGlobal. - - NDMP Vmem size in mebibytes. # noqa: E501 - - :param vmem_size: The vmem_size of this NdmpSettingsGlobalGlobal. # noqa: E501 - :type: int - """ - if vmem_size is not None and vmem_size > 8192: # noqa: E501 - raise ValueError("Invalid value for `vmem_size`, must be a value less than or equal to `8192`") # noqa: E501 - if vmem_size is not None and vmem_size < 512: # noqa: E501 - raise ValueError("Invalid value for `vmem_size`, must be a value greater than or equal to `512`") # noqa: E501 - - self._vmem_size = vmem_size - def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_preferred_ip.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_preferred_ip.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_preferred_ip.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_preferred_ip.py index d803ec1b2..5f8774e66 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_preferred_ip.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_preferred_ip.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_preferred_ip_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_preferred_ip_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_preferred_ip_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_preferred_ip_create_params.py index 6a6027511..ed65551f0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_preferred_ip_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_preferred_ip_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_preferred_ip_data_subnet.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_preferred_ip_data_subnet.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_preferred_ip_data_subnet.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_preferred_ip_data_subnet.py index 2c7d77748..e5c7bfd29 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_preferred_ip_data_subnet.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_preferred_ip_data_subnet.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_preferred_ips.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_preferred_ips.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_preferred_ips.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_preferred_ips.py index 791249bb8..822ae9367 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_preferred_ips.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_preferred_ips.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_preferred_ips_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_preferred_ips_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_preferred_ips_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_preferred_ips_extended.py index 3b58c36ce..79e2069c0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_preferred_ips_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_preferred_ips_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_preferred_ips_preference.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_preferred_ips_preference.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_preferred_ips_preference.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_preferred_ips_preference.py index 63cd9bcd7..1beeff733 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_preferred_ips_preference.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_preferred_ips_preference.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_variable.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_variable.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_variable.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_variable.py index 7f7b812a5..bffea711d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_variable.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_variable.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_variable_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_variable_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_variable_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_variable_create_params.py index 679acab24..7a19b25ec 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_variable_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_variable_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_variables.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_variables.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_variables.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_variables.py index c69ec9b08..7a769d523 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_variables.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_variables.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_variables_variable.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_variables_variable.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_variables_variable.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_variables_variable.py index aa9d411a7..924a11cd7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_variables_variable.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_variables_variable.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_variables_variable_path_variable.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_variables_variable_path_variable.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_variables_variable_path_variable.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_variables_variable_path_variable.py index cef8592b0..9bc479e0f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_settings_variables_variable_path_variable.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_settings_variables_variable_path_variable.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_user.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_user.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_user.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_user.py index 2934e0fe8..7e390340d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_user.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_user.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_user_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_user_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_user_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_user_create_params.py index f6bae3096..3961d6a1d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_user_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_user_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_user_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_user_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_user_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_user_extended.py index 1d64e382f..3c3fbb16a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_user_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_user_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_users.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_users.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_users.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_users.py index 5b30476ce..7f9b992f5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_users.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_users.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_users_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_users_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_users_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_users_extended.py index 6dcf76c1b..092ebf641 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ndmp_users_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ndmp_users_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/network_dnscache.py b/isilon_sdk/isilon_sdk/v9_4_0/models/network_dnscache.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/network_dnscache.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/network_dnscache.py index 2c5524bf8..8826cf8f9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/network_dnscache.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/network_dnscache.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/network_dnscache_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/network_dnscache_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/network_dnscache_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/network_dnscache_extended.py index 2de30bd52..e965878ce 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/network_dnscache_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/network_dnscache_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/network_dnscache_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/network_dnscache_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/network_dnscache_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/network_dnscache_settings.py index 96b002fc4..365cd9dba 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/network_dnscache_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/network_dnscache_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/network_external.py b/isilon_sdk/isilon_sdk/v9_4_0/models/network_external.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/network_external.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/network_external.py index 84f7769b1..fb929b766 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/network_external.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/network_external.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_4_0/models/network_external_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/network_external_extended.py new file mode 100644 index 000000000..630e0f576 --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/network_external_extended.py @@ -0,0 +1,205 @@ +# coding: utf-8 + +""" + Isilon SDK + + Isilon SDK - Language bindings for the OneFS API # noqa: E501 + + OpenAPI spec version: 15 + Contact: sdk@isilon.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + + +class NetworkExternalExtended(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'ipv6_auto_config_enabled': 'bool', + 'sbr': 'bool', + 'sc_rebalance_delay': 'int', + 'tcp_ports': 'list[int]' + } + + attribute_map = { + 'ipv6_auto_config_enabled': 'ipv6_auto_config_enabled', + 'sbr': 'sbr', + 'sc_rebalance_delay': 'sc_rebalance_delay', + 'tcp_ports': 'tcp_ports' + } + + def __init__(self, ipv6_auto_config_enabled=None, sbr=None, sc_rebalance_delay=None, tcp_ports=None): # noqa: E501 + """NetworkExternalExtended - a model defined in Swagger""" # noqa: E501 + + self._ipv6_auto_config_enabled = None + self._sbr = None + self._sc_rebalance_delay = None + self._tcp_ports = None + self.discriminator = None + + if ipv6_auto_config_enabled is not None: + self.ipv6_auto_config_enabled = ipv6_auto_config_enabled + if sbr is not None: + self.sbr = sbr + if sc_rebalance_delay is not None: + self.sc_rebalance_delay = sc_rebalance_delay + if tcp_ports is not None: + self.tcp_ports = tcp_ports + + @property + def ipv6_auto_config_enabled(self): + """Gets the ipv6_auto_config_enabled of this NetworkExternalExtended. # noqa: E501 + + True if rtsold daemon is enabled. When set to false, the rtsold service is disabled, and IPv6 auto configuration is disabled # noqa: E501 + + :return: The ipv6_auto_config_enabled of this NetworkExternalExtended. # noqa: E501 + :rtype: bool + """ + return self._ipv6_auto_config_enabled + + @ipv6_auto_config_enabled.setter + def ipv6_auto_config_enabled(self, ipv6_auto_config_enabled): + """Sets the ipv6_auto_config_enabled of this NetworkExternalExtended. + + True if rtsold daemon is enabled. When set to false, the rtsold service is disabled, and IPv6 auto configuration is disabled # noqa: E501 + + :param ipv6_auto_config_enabled: The ipv6_auto_config_enabled of this NetworkExternalExtended. # noqa: E501 + :type: bool + """ + + self._ipv6_auto_config_enabled = ipv6_auto_config_enabled + + @property + def sbr(self): + """Gets the sbr of this NetworkExternalExtended. # noqa: E501 + + Enable or disable Source Based Routing (Defaults to false) # noqa: E501 + + :return: The sbr of this NetworkExternalExtended. # noqa: E501 + :rtype: bool + """ + return self._sbr + + @sbr.setter + def sbr(self, sbr): + """Sets the sbr of this NetworkExternalExtended. + + Enable or disable Source Based Routing (Defaults to false) # noqa: E501 + + :param sbr: The sbr of this NetworkExternalExtended. # noqa: E501 + :type: bool + """ + + self._sbr = sbr + + @property + def sc_rebalance_delay(self): + """Gets the sc_rebalance_delay of this NetworkExternalExtended. # noqa: E501 + + Delay in seconds for IP rebalance. # noqa: E501 + + :return: The sc_rebalance_delay of this NetworkExternalExtended. # noqa: E501 + :rtype: int + """ + return self._sc_rebalance_delay + + @sc_rebalance_delay.setter + def sc_rebalance_delay(self, sc_rebalance_delay): + """Sets the sc_rebalance_delay of this NetworkExternalExtended. + + Delay in seconds for IP rebalance. # noqa: E501 + + :param sc_rebalance_delay: The sc_rebalance_delay of this NetworkExternalExtended. # noqa: E501 + :type: int + """ + if sc_rebalance_delay is not None and sc_rebalance_delay > 10: # noqa: E501 + raise ValueError("Invalid value for `sc_rebalance_delay`, must be a value less than or equal to `10`") # noqa: E501 + if sc_rebalance_delay is not None and sc_rebalance_delay < 0: # noqa: E501 + raise ValueError("Invalid value for `sc_rebalance_delay`, must be a value greater than or equal to `0`") # noqa: E501 + + self._sc_rebalance_delay = sc_rebalance_delay + + @property + def tcp_ports(self): + """Gets the tcp_ports of this NetworkExternalExtended. # noqa: E501 + + List of client TCP ports. # noqa: E501 + + :return: The tcp_ports of this NetworkExternalExtended. # noqa: E501 + :rtype: list[int] + """ + return self._tcp_ports + + @tcp_ports.setter + def tcp_ports(self, tcp_ports): + """Sets the tcp_ports of this NetworkExternalExtended. + + List of client TCP ports. # noqa: E501 + + :param tcp_ports: The tcp_ports of this NetworkExternalExtended. # noqa: E501 + :type: list[int] + """ + + self._tcp_ports = tcp_ports + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(NetworkExternalExtended, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, NetworkExternalExtended): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + """Returns true if both objects are not equal""" + return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_4_0/models/network_external_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/network_external_settings.py new file mode 100644 index 000000000..12f47892a --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/network_external_settings.py @@ -0,0 +1,242 @@ +# coding: utf-8 + +""" + Isilon SDK + + Isilon SDK - Language bindings for the OneFS API # noqa: E501 + + OpenAPI spec version: 15 + Contact: sdk@isilon.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + + +class NetworkExternalSettings(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'default_groupnet': 'str', + 'ipv6_auto_config_enabled': 'bool', + 'sbr': 'bool', + 'sc_rebalance_delay': 'int', + 'tcp_ports': 'list[int]' + } + + attribute_map = { + 'default_groupnet': 'default_groupnet', + 'ipv6_auto_config_enabled': 'ipv6_auto_config_enabled', + 'sbr': 'sbr', + 'sc_rebalance_delay': 'sc_rebalance_delay', + 'tcp_ports': 'tcp_ports' + } + + def __init__(self, default_groupnet=None, ipv6_auto_config_enabled=None, sbr=None, sc_rebalance_delay=None, tcp_ports=None): # noqa: E501 + """NetworkExternalSettings - a model defined in Swagger""" # noqa: E501 + + self._default_groupnet = None + self._ipv6_auto_config_enabled = None + self._sbr = None + self._sc_rebalance_delay = None + self._tcp_ports = None + self.discriminator = None + + self.default_groupnet = default_groupnet + self.ipv6_auto_config_enabled = ipv6_auto_config_enabled + self.sbr = sbr + self.sc_rebalance_delay = sc_rebalance_delay + self.tcp_ports = tcp_ports + + @property + def default_groupnet(self): + """Gets the default_groupnet of this NetworkExternalSettings. # noqa: E501 + + Default client-side DNS settings for non-multitenancy aware programs # noqa: E501 + + :return: The default_groupnet of this NetworkExternalSettings. # noqa: E501 + :rtype: str + """ + return self._default_groupnet + + @default_groupnet.setter + def default_groupnet(self, default_groupnet): + """Sets the default_groupnet of this NetworkExternalSettings. + + Default client-side DNS settings for non-multitenancy aware programs # noqa: E501 + + :param default_groupnet: The default_groupnet of this NetworkExternalSettings. # noqa: E501 + :type: str + """ + if default_groupnet is None: + raise ValueError("Invalid value for `default_groupnet`, must not be `None`") # noqa: E501 + if default_groupnet is not None and len(default_groupnet) > 32: + raise ValueError("Invalid value for `default_groupnet`, length must be less than or equal to `32`") # noqa: E501 + if default_groupnet is not None and len(default_groupnet) < 0: + raise ValueError("Invalid value for `default_groupnet`, length must be greater than or equal to `0`") # noqa: E501 + + self._default_groupnet = default_groupnet + + @property + def ipv6_auto_config_enabled(self): + """Gets the ipv6_auto_config_enabled of this NetworkExternalSettings. # noqa: E501 + + True if rtsold daemon is enabled. When set to false, the rtsold service is disabled, and IPv6 auto configuration is disabled # noqa: E501 + + :return: The ipv6_auto_config_enabled of this NetworkExternalSettings. # noqa: E501 + :rtype: bool + """ + return self._ipv6_auto_config_enabled + + @ipv6_auto_config_enabled.setter + def ipv6_auto_config_enabled(self, ipv6_auto_config_enabled): + """Sets the ipv6_auto_config_enabled of this NetworkExternalSettings. + + True if rtsold daemon is enabled. When set to false, the rtsold service is disabled, and IPv6 auto configuration is disabled # noqa: E501 + + :param ipv6_auto_config_enabled: The ipv6_auto_config_enabled of this NetworkExternalSettings. # noqa: E501 + :type: bool + """ + if ipv6_auto_config_enabled is None: + raise ValueError("Invalid value for `ipv6_auto_config_enabled`, must not be `None`") # noqa: E501 + + self._ipv6_auto_config_enabled = ipv6_auto_config_enabled + + @property + def sbr(self): + """Gets the sbr of this NetworkExternalSettings. # noqa: E501 + + Enable or disable Source Based Routing (Defaults to false) # noqa: E501 + + :return: The sbr of this NetworkExternalSettings. # noqa: E501 + :rtype: bool + """ + return self._sbr + + @sbr.setter + def sbr(self, sbr): + """Sets the sbr of this NetworkExternalSettings. + + Enable or disable Source Based Routing (Defaults to false) # noqa: E501 + + :param sbr: The sbr of this NetworkExternalSettings. # noqa: E501 + :type: bool + """ + if sbr is None: + raise ValueError("Invalid value for `sbr`, must not be `None`") # noqa: E501 + + self._sbr = sbr + + @property + def sc_rebalance_delay(self): + """Gets the sc_rebalance_delay of this NetworkExternalSettings. # noqa: E501 + + Delay in seconds for IP rebalance. # noqa: E501 + + :return: The sc_rebalance_delay of this NetworkExternalSettings. # noqa: E501 + :rtype: int + """ + return self._sc_rebalance_delay + + @sc_rebalance_delay.setter + def sc_rebalance_delay(self, sc_rebalance_delay): + """Sets the sc_rebalance_delay of this NetworkExternalSettings. + + Delay in seconds for IP rebalance. # noqa: E501 + + :param sc_rebalance_delay: The sc_rebalance_delay of this NetworkExternalSettings. # noqa: E501 + :type: int + """ + if sc_rebalance_delay is None: + raise ValueError("Invalid value for `sc_rebalance_delay`, must not be `None`") # noqa: E501 + if sc_rebalance_delay is not None and sc_rebalance_delay > 10: # noqa: E501 + raise ValueError("Invalid value for `sc_rebalance_delay`, must be a value less than or equal to `10`") # noqa: E501 + if sc_rebalance_delay is not None and sc_rebalance_delay < 0: # noqa: E501 + raise ValueError("Invalid value for `sc_rebalance_delay`, must be a value greater than or equal to `0`") # noqa: E501 + + self._sc_rebalance_delay = sc_rebalance_delay + + @property + def tcp_ports(self): + """Gets the tcp_ports of this NetworkExternalSettings. # noqa: E501 + + List of client TCP ports. # noqa: E501 + + :return: The tcp_ports of this NetworkExternalSettings. # noqa: E501 + :rtype: list[int] + """ + return self._tcp_ports + + @tcp_ports.setter + def tcp_ports(self, tcp_ports): + """Sets the tcp_ports of this NetworkExternalSettings. + + List of client TCP ports. # noqa: E501 + + :param tcp_ports: The tcp_ports of this NetworkExternalSettings. # noqa: E501 + :type: list[int] + """ + if tcp_ports is None: + raise ValueError("Invalid value for `tcp_ports`, must not be `None`") # noqa: E501 + + self._tcp_ports = tcp_ports + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(NetworkExternalSettings, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, NetworkExternalSettings): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + """Returns true if both objects are not equal""" + return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/network_groupnet.py b/isilon_sdk/isilon_sdk/v9_4_0/models/network_groupnet.py similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/models/network_groupnet.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/network_groupnet.py index 38b7a9aea..e109eb4da 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/network_groupnet.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/network_groupnet.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -264,7 +264,7 @@ def name(self, name): def server_side_dns_search(self): """Gets the server_side_dns_search of this NetworkGroupnet. # noqa: E501 - Enable or disable appending nodes DNS search list to client DNS inquiries directed at SmartConnect service IP. # noqa: E501 + Enable or disable appending nodes DNS search list to client DNS inquiries directed at SmartConnect service IP. # noqa: E501 :return: The server_side_dns_search of this NetworkGroupnet. # noqa: E501 :rtype: bool @@ -275,7 +275,7 @@ def server_side_dns_search(self): def server_side_dns_search(self, server_side_dns_search): """Sets the server_side_dns_search of this NetworkGroupnet. - Enable or disable appending nodes DNS search list to client DNS inquiries directed at SmartConnect service IP. # noqa: E501 + Enable or disable appending nodes DNS search list to client DNS inquiries directed at SmartConnect service IP. # noqa: E501 :param server_side_dns_search: The server_side_dns_search of this NetworkGroupnet. # noqa: E501 :type: bool diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/network_groupnet_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/network_groupnet_create_params.py similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/models/network_groupnet_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/network_groupnet_create_params.py index 70365334c..ecb94829f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/network_groupnet_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/network_groupnet_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -265,7 +265,7 @@ def name(self, name): def server_side_dns_search(self): """Gets the server_side_dns_search of this NetworkGroupnetCreateParams. # noqa: E501 - Enable or disable appending nodes DNS search list to client DNS inquiries directed at SmartConnect service IP. # noqa: E501 + Enable or disable appending nodes DNS search list to client DNS inquiries directed at SmartConnect service IP. # noqa: E501 :return: The server_side_dns_search of this NetworkGroupnetCreateParams. # noqa: E501 :rtype: bool @@ -276,7 +276,7 @@ def server_side_dns_search(self): def server_side_dns_search(self, server_side_dns_search): """Sets the server_side_dns_search of this NetworkGroupnetCreateParams. - Enable or disable appending nodes DNS search list to client DNS inquiries directed at SmartConnect service IP. # noqa: E501 + Enable or disable appending nodes DNS search list to client DNS inquiries directed at SmartConnect service IP. # noqa: E501 :param server_side_dns_search: The server_side_dns_search of this NetworkGroupnetCreateParams. # noqa: E501 :type: bool diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/network_groupnet_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/network_groupnet_extended.py similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/models/network_groupnet_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/network_groupnet_extended.py index ff2c5d291..34b6def5c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/network_groupnet_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/network_groupnet_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -274,7 +274,7 @@ def name(self, name): def server_side_dns_search(self): """Gets the server_side_dns_search of this NetworkGroupnetExtended. # noqa: E501 - Enable or disable appending nodes DNS search list to client DNS inquiries directed at SmartConnect service IP. # noqa: E501 + Enable or disable appending nodes DNS search list to client DNS inquiries directed at SmartConnect service IP. # noqa: E501 :return: The server_side_dns_search of this NetworkGroupnetExtended. # noqa: E501 :rtype: bool @@ -285,7 +285,7 @@ def server_side_dns_search(self): def server_side_dns_search(self, server_side_dns_search): """Sets the server_side_dns_search of this NetworkGroupnetExtended. - Enable or disable appending nodes DNS search list to client DNS inquiries directed at SmartConnect service IP. # noqa: E501 + Enable or disable appending nodes DNS search list to client DNS inquiries directed at SmartConnect service IP. # noqa: E501 :param server_side_dns_search: The server_side_dns_search of this NetworkGroupnetExtended. # noqa: E501 :type: bool diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/network_groupnets.py b/isilon_sdk/isilon_sdk/v9_4_0/models/network_groupnets.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/network_groupnets.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/network_groupnets.py index 231943ed8..afa7cb793 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/network_groupnets.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/network_groupnets.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/network_groupnets_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/network_groupnets_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/network_groupnets_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/network_groupnets_extended.py index 3739390a1..5a3aba3b8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/network_groupnets_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/network_groupnets_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/network_interface.py b/isilon_sdk/isilon_sdk/v9_4_0/models/network_interface.py similarity index 86% rename from isilon_sdk/isilon_sdk/v9_11_0/models/network_interface.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/network_interface.py index 8bb5bd6c9..d96250295 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/network_interface.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/network_interface.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -36,9 +36,7 @@ class NetworkInterface(object): 'ip_addrs': 'list[str]', 'ipv4_gateway': 'str', 'ipv6_gateway': 'str', - 'linklayer': 'str', 'lnn': 'int', - 'macaddr': 'str', 'mtu': 'int', 'name': 'str', 'nic_name': 'str', @@ -55,9 +53,7 @@ class NetworkInterface(object): 'ip_addrs': 'ip_addrs', 'ipv4_gateway': 'ipv4_gateway', 'ipv6_gateway': 'ipv6_gateway', - 'linklayer': 'linklayer', 'lnn': 'lnn', - 'macaddr': 'macaddr', 'mtu': 'mtu', 'name': 'name', 'nic_name': 'nic_name', @@ -68,7 +64,7 @@ class NetworkInterface(object): 'vlans': 'vlans' } - def __init__(self, flags=None, id=None, ip_addrs=None, ipv4_gateway=None, ipv6_gateway=None, linklayer=None, lnn=None, macaddr=None, mtu=None, name=None, nic_name=None, owners=None, speed=None, status=None, type=None, vlans=None): # noqa: E501 + def __init__(self, flags=None, id=None, ip_addrs=None, ipv4_gateway=None, ipv6_gateway=None, lnn=None, mtu=None, name=None, nic_name=None, owners=None, speed=None, status=None, type=None, vlans=None): # noqa: E501 """NetworkInterface - a model defined in Swagger""" # noqa: E501 self._flags = None @@ -76,9 +72,7 @@ def __init__(self, flags=None, id=None, ip_addrs=None, ipv4_gateway=None, ipv6_g self._ip_addrs = None self._ipv4_gateway = None self._ipv6_gateway = None - self._linklayer = None self._lnn = None - self._macaddr = None self._mtu = None self._name = None self._nic_name = None @@ -96,10 +90,7 @@ def __init__(self, flags=None, id=None, ip_addrs=None, ipv4_gateway=None, ipv6_g self.ipv4_gateway = ipv4_gateway if ipv6_gateway is not None: self.ipv6_gateway = ipv6_gateway - self.linklayer = linklayer self.lnn = lnn - if macaddr is not None: - self.macaddr = macaddr if mtu is not None: self.mtu = mtu self.name = name @@ -212,8 +203,8 @@ def ipv4_gateway(self, ipv4_gateway): raise ValueError("Invalid value for `ipv4_gateway`, length must be less than or equal to `16`") # noqa: E501 if ipv4_gateway is not None and len(ipv4_gateway) < 1: raise ValueError("Invalid value for `ipv4_gateway`, length must be greater than or equal to `1`") # noqa: E501 - if ipv4_gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ipv4_gateway): # noqa: E501 - raise ValueError(r"Invalid value for `ipv4_gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if ipv4_gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ipv4_gateway): # noqa: E501 + raise ValueError(r"Invalid value for `ipv4_gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._ipv4_gateway = ipv4_gateway @@ -244,37 +235,6 @@ def ipv6_gateway(self, ipv6_gateway): self._ipv6_gateway = ipv6_gateway - @property - def linklayer(self): - """Gets the linklayer of this NetworkInterface. # noqa: E501 - - Specifies the type of network linklayer this interface uses. # noqa: E501 - - :return: The linklayer of this NetworkInterface. # noqa: E501 - :rtype: str - """ - return self._linklayer - - @linklayer.setter - def linklayer(self, linklayer): - """Sets the linklayer of this NetworkInterface. - - Specifies the type of network linklayer this interface uses. # noqa: E501 - - :param linklayer: The linklayer of this NetworkInterface. # noqa: E501 - :type: str - """ - if linklayer is None: - raise ValueError("Invalid value for `linklayer`, must not be `None`") # noqa: E501 - allowed_values = ["ethernet", "infiniband"] # noqa: E501 - if linklayer not in allowed_values: - raise ValueError( - "Invalid value for `linklayer` ({0}), must be one of {1}" # noqa: E501 - .format(linklayer, allowed_values) - ) - - self._linklayer = linklayer - @property def lnn(self): """Gets the lnn of this NetworkInterface. # noqa: E501 @@ -304,33 +264,6 @@ def lnn(self, lnn): self._lnn = lnn - @property - def macaddr(self): - """Gets the macaddr of this NetworkInterface. # noqa: E501 - - The MAC address of the interface. # noqa: E501 - - :return: The macaddr of this NetworkInterface. # noqa: E501 - :rtype: str - """ - return self._macaddr - - @macaddr.setter - def macaddr(self, macaddr): - """Sets the macaddr of this NetworkInterface. - - The MAC address of the interface. # noqa: E501 - - :param macaddr: The macaddr of this NetworkInterface. # noqa: E501 - :type: str - """ - if macaddr is not None and len(macaddr) > 128: - raise ValueError("Invalid value for `macaddr`, length must be less than or equal to `128`") # noqa: E501 - if macaddr is not None and len(macaddr) < 1: - raise ValueError("Invalid value for `macaddr`, length must be greater than or equal to `1`") # noqa: E501 - - self._macaddr = macaddr - @property def mtu(self): """Gets the mtu of this NetworkInterface. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/network_interface_owner.py b/isilon_sdk/isilon_sdk/v9_4_0/models/network_interface_owner.py similarity index 80% rename from isilon_sdk/isilon_sdk/v9_11_0/models/network_interface_owner.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/network_interface_owner.py index cfc5ae90b..4d8c5c9a3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/network_interface_owner.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/network_interface_owner.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -36,9 +36,7 @@ class NetworkInterfaceOwner(object): 'id': 'str', 'ip_addrs': 'list[str]', 'pool': 'str', - 'prefixlen': 'int', 'subnet': 'str', - 'subtype': 'str', 'type': 'str', 'vlan_id': 'int' } @@ -49,14 +47,12 @@ class NetworkInterfaceOwner(object): 'id': 'id', 'ip_addrs': 'ip_addrs', 'pool': 'pool', - 'prefixlen': 'prefixlen', 'subnet': 'subnet', - 'subtype': 'subtype', 'type': 'type', 'vlan_id': 'vlan_id' } - def __init__(self, access_zone=None, groupnet=None, id=None, ip_addrs=None, pool=None, prefixlen=None, subnet=None, subtype=None, type=None, vlan_id=None): # noqa: E501 + def __init__(self, access_zone=None, groupnet=None, id=None, ip_addrs=None, pool=None, subnet=None, type=None, vlan_id=None): # noqa: E501 """NetworkInterfaceOwner - a model defined in Swagger""" # noqa: E501 self._access_zone = None @@ -64,9 +60,7 @@ def __init__(self, access_zone=None, groupnet=None, id=None, ip_addrs=None, pool self._id = None self._ip_addrs = None self._pool = None - self._prefixlen = None self._subnet = None - self._subtype = None self._type = None self._vlan_id = None self.discriminator = None @@ -81,12 +75,8 @@ def __init__(self, access_zone=None, groupnet=None, id=None, ip_addrs=None, pool self.ip_addrs = ip_addrs if pool is not None: self.pool = pool - if prefixlen is not None: - self.prefixlen = prefixlen if subnet is not None: self.subnet = subnet - if subtype is not None: - self.subtype = subtype if type is not None: self.type = type if vlan_id is not None: @@ -219,33 +209,6 @@ def pool(self, pool): self._pool = pool - @property - def prefixlen(self): - """Gets the prefixlen of this NetworkInterfaceOwner. # noqa: E501 - - Prefix length of the subnet this owner belongs to. # noqa: E501 - - :return: The prefixlen of this NetworkInterfaceOwner. # noqa: E501 - :rtype: int - """ - return self._prefixlen - - @prefixlen.setter - def prefixlen(self, prefixlen): - """Sets the prefixlen of this NetworkInterfaceOwner. - - Prefix length of the subnet this owner belongs to. # noqa: E501 - - :param prefixlen: The prefixlen of this NetworkInterfaceOwner. # noqa: E501 - :type: int - """ - if prefixlen is not None and prefixlen > 128: # noqa: E501 - raise ValueError("Invalid value for `prefixlen`, must be a value less than or equal to `128`") # noqa: E501 - if prefixlen is not None and prefixlen < 0: # noqa: E501 - raise ValueError("Invalid value for `prefixlen`, must be a value greater than or equal to `0`") # noqa: E501 - - self._prefixlen = prefixlen - @property def subnet(self): """Gets the subnet of this NetworkInterfaceOwner. # noqa: E501 @@ -271,33 +234,6 @@ def subnet(self, subnet): self._subnet = subnet - @property - def subtype(self): - """Gets the subtype of this NetworkInterfaceOwner. # noqa: E501 - - Name of the system allocating the IPs for this Network Pool. # noqa: E501 - - :return: The subtype of this NetworkInterfaceOwner. # noqa: E501 - :rtype: str - """ - return self._subtype - - @subtype.setter - def subtype(self, subtype): - """Sets the subtype of this NetworkInterfaceOwner. - - Name of the system allocating the IPs for this Network Pool. # noqa: E501 - - :param subtype: The subtype of this NetworkInterfaceOwner. # noqa: E501 - :type: str - """ - if subtype is not None and len(subtype) > 128: - raise ValueError("Invalid value for `subtype`, length must be less than or equal to `128`") # noqa: E501 - if subtype is not None and len(subtype) < 0: - raise ValueError("Invalid value for `subtype`, length must be greater than or equal to `0`") # noqa: E501 - - self._subtype = subtype - @property def type(self): """Gets the type of this NetworkInterfaceOwner. # noqa: E501 @@ -318,7 +254,7 @@ def type(self, type): :param type: The type of this NetworkInterfaceOwner. # noqa: E501 :type: str """ - allowed_values = ["static", "dynamic", "smartconnect_service", "ipv6_link_local", "internal", "externally_managed"] # noqa: E501 + allowed_values = ["static", "dynamic", "smartconnect_service", "ipv6_link_local", "internal"] # noqa: E501 if type not in allowed_values: raise ValueError( "Invalid value for `type` ({0}), must be one of {1}" # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/network_interface_vlan.py b/isilon_sdk/isilon_sdk/v9_4_0/models/network_interface_vlan.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/models/network_interface_vlan.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/network_interface_vlan.py index 9b46291a9..2e8447c6f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/network_interface_vlan.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/network_interface_vlan.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -197,8 +197,8 @@ def ipv4_gateway(self, ipv4_gateway): raise ValueError("Invalid value for `ipv4_gateway`, length must be less than or equal to `16`") # noqa: E501 if ipv4_gateway is not None and len(ipv4_gateway) < 1: raise ValueError("Invalid value for `ipv4_gateway`, length must be greater than or equal to `1`") # noqa: E501 - if ipv4_gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ipv4_gateway): # noqa: E501 - raise ValueError(r"Invalid value for `ipv4_gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if ipv4_gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ipv4_gateway): # noqa: E501 + raise ValueError(r"Invalid value for `ipv4_gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._ipv4_gateway = ipv4_gateway diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/network_interfaces.py b/isilon_sdk/isilon_sdk/v9_4_0/models/network_interfaces.py similarity index 86% rename from isilon_sdk/isilon_sdk/v9_11_0/models/network_interfaces.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/network_interfaces.py index 8e6b14abc..8aae13c8a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/network_interfaces.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/network_interfaces.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,30 +31,25 @@ class NetworkInterfaces(object): and the value is json key in definition. """ swagger_types = { - 'errors': 'list[NodeStatusCpuError]', 'interfaces': 'list[NetworkInterface]', 'resume': 'str', 'total': 'int' } attribute_map = { - 'errors': 'errors', 'interfaces': 'interfaces', 'resume': 'resume', 'total': 'total' } - def __init__(self, errors=None, interfaces=None, resume=None, total=None): # noqa: E501 + def __init__(self, interfaces=None, resume=None, total=None): # noqa: E501 """NetworkInterfaces - a model defined in Swagger""" # noqa: E501 - self._errors = None self._interfaces = None self._resume = None self._total = None self.discriminator = None - if errors is not None: - self.errors = errors if interfaces is not None: self.interfaces = interfaces if resume is not None: @@ -62,27 +57,6 @@ def __init__(self, errors=None, interfaces=None, resume=None, total=None): # no if total is not None: self.total = total - @property - def errors(self): - """Gets the errors of this NetworkInterfaces. # noqa: E501 - - - :return: The errors of this NetworkInterfaces. # noqa: E501 - :rtype: list[NodeStatusCpuError] - """ - return self._errors - - @errors.setter - def errors(self, errors): - """Sets the errors of this NetworkInterfaces. - - - :param errors: The errors of this NetworkInterfaces. # noqa: E501 - :type: list[NodeStatusCpuError] - """ - - self._errors = errors - @property def interfaces(self): """Gets the interfaces of this NetworkInterfaces. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/policies_policy_rules_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/network_interfaces_extended.py similarity index 62% rename from isilon_sdk/isilon_sdk/v9_11_0/models/policies_policy_rules_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/network_interfaces_extended.py index 89e2e9b64..adaa61195 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/policies_policy_rules_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/network_interfaces_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class PoliciesPolicyRulesExtended(object): +class NetworkInterfacesExtended(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -31,71 +31,76 @@ class PoliciesPolicyRulesExtended(object): and the value is json key in definition. """ swagger_types = { - 'rules': 'list[PoliciesPolicyRulesRule]', + 'interfaces': 'list[NetworkInterface]', 'resume': 'str', - 'total': 'int' + 'total': 'int', + 'errors': 'list[NodeStatusCpuError]' } attribute_map = { - 'rules': 'rules', + 'interfaces': 'interfaces', 'resume': 'resume', - 'total': 'total' + 'total': 'total', + 'errors': 'errors' } - def __init__(self, rules=None, resume=None, total=None): # noqa: E501 - """PoliciesPolicyRulesExtended - a model defined in Swagger""" # noqa: E501 + def __init__(self, interfaces=None, resume=None, total=None, errors=None): # noqa: E501 + """NetworkInterfacesExtended - a model defined in Swagger""" # noqa: E501 - self._rules = None + self._interfaces = None self._resume = None self._total = None + self._errors = None self.discriminator = None - if rules is not None: - self.rules = rules + if interfaces is not None: + self.interfaces = interfaces if resume is not None: self.resume = resume if total is not None: self.total = total + if errors is not None: + self.errors = errors @property - def rules(self): - """Gets the rules of this PoliciesPolicyRulesExtended. # noqa: E501 + def interfaces(self): + """Gets the interfaces of this NetworkInterfacesExtended. # noqa: E501 - :return: The rules of this PoliciesPolicyRulesExtended. # noqa: E501 - :rtype: list[PoliciesPolicyRulesRule] + :return: The interfaces of this NetworkInterfacesExtended. # noqa: E501 + :rtype: list[NetworkInterface] """ - return self._rules + return self._interfaces - @rules.setter - def rules(self, rules): - """Sets the rules of this PoliciesPolicyRulesExtended. + @interfaces.setter + def interfaces(self, interfaces): + """Sets the interfaces of this NetworkInterfacesExtended. - :param rules: The rules of this PoliciesPolicyRulesExtended. # noqa: E501 - :type: list[PoliciesPolicyRulesRule] + :param interfaces: The interfaces of this NetworkInterfacesExtended. # noqa: E501 + :type: list[NetworkInterface] """ - self._rules = rules + self._interfaces = interfaces @property def resume(self): - """Gets the resume of this PoliciesPolicyRulesExtended. # noqa: E501 + """Gets the resume of this NetworkInterfacesExtended. # noqa: E501 Provide this token as the 'resume' query argument to continue listing results. # noqa: E501 - :return: The resume of this PoliciesPolicyRulesExtended. # noqa: E501 + :return: The resume of this NetworkInterfacesExtended. # noqa: E501 :rtype: str """ return self._resume @resume.setter def resume(self, resume): - """Sets the resume of this PoliciesPolicyRulesExtended. + """Sets the resume of this NetworkInterfacesExtended. Provide this token as the 'resume' query argument to continue listing results. # noqa: E501 - :param resume: The resume of this PoliciesPolicyRulesExtended. # noqa: E501 + :param resume: The resume of this NetworkInterfacesExtended. # noqa: E501 :type: str """ if resume is not None and len(resume) > 8192: @@ -107,22 +112,22 @@ def resume(self, resume): @property def total(self): - """Gets the total of this PoliciesPolicyRulesExtended. # noqa: E501 + """Gets the total of this NetworkInterfacesExtended. # noqa: E501 Total number of items available. # noqa: E501 - :return: The total of this PoliciesPolicyRulesExtended. # noqa: E501 + :return: The total of this NetworkInterfacesExtended. # noqa: E501 :rtype: int """ return self._total @total.setter def total(self, total): - """Sets the total of this PoliciesPolicyRulesExtended. + """Sets the total of this NetworkInterfacesExtended. Total number of items available. # noqa: E501 - :param total: The total of this PoliciesPolicyRulesExtended. # noqa: E501 + :param total: The total of this NetworkInterfacesExtended. # noqa: E501 :type: int """ if total is not None and total > 9223372036854775807: # noqa: E501 @@ -132,6 +137,27 @@ def total(self, total): self._total = total + @property + def errors(self): + """Gets the errors of this NetworkInterfacesExtended. # noqa: E501 + + + :return: The errors of this NetworkInterfacesExtended. # noqa: E501 + :rtype: list[NodeStatusCpuError] + """ + return self._errors + + @errors.setter + def errors(self, errors): + """Sets the errors of this NetworkInterfacesExtended. + + + :param errors: The errors of this NetworkInterfacesExtended. # noqa: E501 + :type: list[NodeStatusCpuError] + """ + + self._errors = errors + def to_dict(self): """Returns the model properties as a dict""" result = {} @@ -153,7 +179,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(PoliciesPolicyRulesExtended, dict): + if issubclass(NetworkInterfacesExtended, dict): for key, value in self.items(): result[key] = value @@ -169,7 +195,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, PoliciesPolicyRulesExtended): + if not isinstance(other, NetworkInterfacesExtended): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/network_pool.py b/isilon_sdk/isilon_sdk/v9_4_0/models/network_pool.py similarity index 78% rename from isilon_sdk/isilon_sdk/v9_11_0/models/network_pool.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/network_pool.py index 94c6f4c6e..7592d989e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/network_pool.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/network_pool.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -36,18 +36,15 @@ class NetworkPool(object): 'aggregation_mode': 'str', 'alloc_method': 'str', 'description': 'str', - 'external_manager': 'str', - 'firewall_policy': 'str', 'groupnet': 'str', 'id': 'str', 'ifaces': 'list[SubnetsSubnetPoolIface]', - 'ipv6_perform_dad': 'bool', - 'linklayer': 'str', 'name': 'str', - 'nfs_rroce_only': 'bool', + 'nfsv3_rroce_only': 'bool', 'ranges': 'list[SubnetsSubnetPoolRange]', 'rebalance_policy': 'str', 'rules': 'list[str]', + 'sc_auto_unsuspend_delay': 'int', 'sc_connect_policy': 'str', 'sc_dns_zone': 'str', 'sc_dns_zone_aliases': 'list[str]', @@ -65,18 +62,15 @@ class NetworkPool(object): 'aggregation_mode': 'aggregation_mode', 'alloc_method': 'alloc_method', 'description': 'description', - 'external_manager': 'external_manager', - 'firewall_policy': 'firewall_policy', 'groupnet': 'groupnet', 'id': 'id', 'ifaces': 'ifaces', - 'ipv6_perform_dad': 'ipv6_perform_dad', - 'linklayer': 'linklayer', 'name': 'name', - 'nfs_rroce_only': 'nfs_rroce_only', + 'nfsv3_rroce_only': 'nfsv3_rroce_only', 'ranges': 'ranges', 'rebalance_policy': 'rebalance_policy', 'rules': 'rules', + 'sc_auto_unsuspend_delay': 'sc_auto_unsuspend_delay', 'sc_connect_policy': 'sc_connect_policy', 'sc_dns_zone': 'sc_dns_zone', 'sc_dns_zone_aliases': 'sc_dns_zone_aliases', @@ -88,7 +82,7 @@ class NetworkPool(object): 'subnet': 'subnet' } - def __init__(self, access_zone=None, addr_family=None, aggregation_mode=None, alloc_method=None, description=None, external_manager=None, firewall_policy=None, groupnet=None, id=None, ifaces=None, ipv6_perform_dad=None, linklayer=None, name=None, nfs_rroce_only=None, ranges=None, rebalance_policy=None, rules=None, sc_connect_policy=None, sc_dns_zone=None, sc_dns_zone_aliases=None, sc_failover_policy=None, sc_subnet=None, sc_suspended_nodes=None, sc_ttl=None, static_routes=None, subnet=None): # noqa: E501 + def __init__(self, access_zone=None, addr_family=None, aggregation_mode=None, alloc_method=None, description=None, groupnet=None, id=None, ifaces=None, name=None, nfsv3_rroce_only=None, ranges=None, rebalance_policy=None, rules=None, sc_auto_unsuspend_delay=None, sc_connect_policy=None, sc_dns_zone=None, sc_dns_zone_aliases=None, sc_failover_policy=None, sc_subnet=None, sc_suspended_nodes=None, sc_ttl=None, static_routes=None, subnet=None): # noqa: E501 """NetworkPool - a model defined in Swagger""" # noqa: E501 self._access_zone = None @@ -96,18 +90,15 @@ def __init__(self, access_zone=None, addr_family=None, aggregation_mode=None, al self._aggregation_mode = None self._alloc_method = None self._description = None - self._external_manager = None - self._firewall_policy = None self._groupnet = None self._id = None self._ifaces = None - self._ipv6_perform_dad = None - self._linklayer = None self._name = None - self._nfs_rroce_only = None + self._nfsv3_rroce_only = None self._ranges = None self._rebalance_policy = None self._rules = None + self._sc_auto_unsuspend_delay = None self._sc_connect_policy = None self._sc_dns_zone = None self._sc_dns_zone_aliases = None @@ -129,30 +120,24 @@ def __init__(self, access_zone=None, addr_family=None, aggregation_mode=None, al self.alloc_method = alloc_method if description is not None: self.description = description - if external_manager is not None: - self.external_manager = external_manager - if firewall_policy is not None: - self.firewall_policy = firewall_policy if groupnet is not None: self.groupnet = groupnet if id is not None: self.id = id if ifaces is not None: self.ifaces = ifaces - if ipv6_perform_dad is not None: - self.ipv6_perform_dad = ipv6_perform_dad - if linklayer is not None: - self.linklayer = linklayer if name is not None: self.name = name - if nfs_rroce_only is not None: - self.nfs_rroce_only = nfs_rroce_only + if nfsv3_rroce_only is not None: + self.nfsv3_rroce_only = nfsv3_rroce_only if ranges is not None: self.ranges = ranges if rebalance_policy is not None: self.rebalance_policy = rebalance_policy if rules is not None: self.rules = rules + if sc_auto_unsuspend_delay is not None: + self.sc_auto_unsuspend_delay = sc_auto_unsuspend_delay if sc_connect_policy is not None: self.sc_connect_policy = sc_connect_policy if sc_dns_zone is not None: @@ -232,7 +217,7 @@ def addr_family(self, addr_family): def aggregation_mode(self): """Gets the aggregation_mode of this NetworkPool. # noqa: E501 - OneFS supports the following NIC aggregation modes. 'fec' was renamed to 'loadbalance' in OneFS 9.7. # noqa: E501 + OneFS supports the following NIC aggregation modes. # noqa: E501 :return: The aggregation_mode of this NetworkPool. # noqa: E501 :rtype: str @@ -243,12 +228,12 @@ def aggregation_mode(self): def aggregation_mode(self, aggregation_mode): """Sets the aggregation_mode of this NetworkPool. - OneFS supports the following NIC aggregation modes. 'fec' was renamed to 'loadbalance' in OneFS 9.7. # noqa: E501 + OneFS supports the following NIC aggregation modes. # noqa: E501 :param aggregation_mode: The aggregation_mode of this NetworkPool. # noqa: E501 :type: str """ - allowed_values = ["roundrobin", "failover", "lacp", "loadbalance", "none"] # noqa: E501 + allowed_values = ["roundrobin", "failover", "lacp", "fec"] # noqa: E501 if aggregation_mode not in allowed_values: raise ValueError( "Invalid value for `aggregation_mode` ({0}), must be one of {1}" # noqa: E501 @@ -277,7 +262,7 @@ def alloc_method(self, alloc_method): :param alloc_method: The alloc_method of this NetworkPool. # noqa: E501 :type: str """ - allowed_values = ["dynamic", "static", "externally_managed"] # noqa: E501 + allowed_values = ["dynamic", "static"] # noqa: E501 if alloc_method not in allowed_values: raise ValueError( "Invalid value for `alloc_method` ({0}), must be one of {1}" # noqa: E501 @@ -313,60 +298,6 @@ def description(self, description): self._description = description - @property - def external_manager(self): - """Gets the external_manager of this NetworkPool. # noqa: E501 - - Name of the system allocating the IPs for this Network Pool. # noqa: E501 - - :return: The external_manager of this NetworkPool. # noqa: E501 - :rtype: str - """ - return self._external_manager - - @external_manager.setter - def external_manager(self, external_manager): - """Sets the external_manager of this NetworkPool. - - Name of the system allocating the IPs for this Network Pool. # noqa: E501 - - :param external_manager: The external_manager of this NetworkPool. # noqa: E501 - :type: str - """ - if external_manager is not None and len(external_manager) > 128: - raise ValueError("Invalid value for `external_manager`, length must be less than or equal to `128`") # noqa: E501 - if external_manager is not None and len(external_manager) < 0: - raise ValueError("Invalid value for `external_manager`, length must be greater than or equal to `0`") # noqa: E501 - - self._external_manager = external_manager - - @property - def firewall_policy(self): - """Gets the firewall_policy of this NetworkPool. # noqa: E501 - - Name of the Firewall Policy associated with this Network Pool. # noqa: E501 - - :return: The firewall_policy of this NetworkPool. # noqa: E501 - :rtype: str - """ - return self._firewall_policy - - @firewall_policy.setter - def firewall_policy(self, firewall_policy): - """Sets the firewall_policy of this NetworkPool. - - Name of the Firewall Policy associated with this Network Pool. # noqa: E501 - - :param firewall_policy: The firewall_policy of this NetworkPool. # noqa: E501 - :type: str - """ - if firewall_policy is not None and len(firewall_policy) > 32: - raise ValueError("Invalid value for `firewall_policy`, length must be less than or equal to `32`") # noqa: E501 - if firewall_policy is not None and len(firewall_policy) < 1: - raise ValueError("Invalid value for `firewall_policy`, length must be greater than or equal to `1`") # noqa: E501 - - self._firewall_policy = firewall_policy - @property def groupnet(self): """Gets the groupnet of this NetworkPool. # noqa: E501 @@ -444,58 +375,6 @@ def ifaces(self, ifaces): self._ifaces = ifaces - @property - def ipv6_perform_dad(self): - """Gets the ipv6_perform_dad of this NetworkPool. # noqa: E501 - - Indicates if the Network Pool should perform IPv6 Duplicate Address Detection when configuring the IPs. Only applies to IPv6 Network Pools. # noqa: E501 - - :return: The ipv6_perform_dad of this NetworkPool. # noqa: E501 - :rtype: bool - """ - return self._ipv6_perform_dad - - @ipv6_perform_dad.setter - def ipv6_perform_dad(self, ipv6_perform_dad): - """Sets the ipv6_perform_dad of this NetworkPool. - - Indicates if the Network Pool should perform IPv6 Duplicate Address Detection when configuring the IPs. Only applies to IPv6 Network Pools. # noqa: E501 - - :param ipv6_perform_dad: The ipv6_perform_dad of this NetworkPool. # noqa: E501 - :type: bool - """ - - self._ipv6_perform_dad = ipv6_perform_dad - - @property - def linklayer(self): - """Gets the linklayer of this NetworkPool. # noqa: E501 - - Specifies the type of network linklayer this Network Pool uses. # noqa: E501 - - :return: The linklayer of this NetworkPool. # noqa: E501 - :rtype: str - """ - return self._linklayer - - @linklayer.setter - def linklayer(self, linklayer): - """Sets the linklayer of this NetworkPool. - - Specifies the type of network linklayer this Network Pool uses. # noqa: E501 - - :param linklayer: The linklayer of this NetworkPool. # noqa: E501 - :type: str - """ - allowed_values = ["ethernet", "infiniband"] # noqa: E501 - if linklayer not in allowed_values: - raise ValueError( - "Invalid value for `linklayer` ({0}), must be one of {1}" # noqa: E501 - .format(linklayer, allowed_values) - ) - - self._linklayer = linklayer - @property def name(self): """Gets the name of this NetworkPool. # noqa: E501 @@ -526,27 +405,27 @@ def name(self, name): self._name = name @property - def nfs_rroce_only(self): - """Gets the nfs_rroce_only of this NetworkPool. # noqa: E501 + def nfsv3_rroce_only(self): + """Gets the nfsv3_rroce_only of this NetworkPool. # noqa: E501 Indicates that pool contains only RDMA RRoCE capable interfaces. # noqa: E501 - :return: The nfs_rroce_only of this NetworkPool. # noqa: E501 + :return: The nfsv3_rroce_only of this NetworkPool. # noqa: E501 :rtype: bool """ - return self._nfs_rroce_only + return self._nfsv3_rroce_only - @nfs_rroce_only.setter - def nfs_rroce_only(self, nfs_rroce_only): - """Sets the nfs_rroce_only of this NetworkPool. + @nfsv3_rroce_only.setter + def nfsv3_rroce_only(self, nfsv3_rroce_only): + """Sets the nfsv3_rroce_only of this NetworkPool. Indicates that pool contains only RDMA RRoCE capable interfaces. # noqa: E501 - :param nfs_rroce_only: The nfs_rroce_only of this NetworkPool. # noqa: E501 + :param nfsv3_rroce_only: The nfsv3_rroce_only of this NetworkPool. # noqa: E501 :type: bool """ - self._nfs_rroce_only = nfs_rroce_only + self._nfsv3_rroce_only = nfsv3_rroce_only @property def ranges(self): @@ -575,7 +454,7 @@ def ranges(self, ranges): def rebalance_policy(self): """Gets the rebalance_policy of this NetworkPool. # noqa: E501 - Rebalance policy. # noqa: E501 + Rebalance policy.. # noqa: E501 :return: The rebalance_policy of this NetworkPool. # noqa: E501 :rtype: str @@ -586,7 +465,7 @@ def rebalance_policy(self): def rebalance_policy(self, rebalance_policy): """Sets the rebalance_policy of this NetworkPool. - Rebalance policy. # noqa: E501 + Rebalance policy.. # noqa: E501 :param rebalance_policy: The rebalance_policy of this NetworkPool. # noqa: E501 :type: str @@ -623,6 +502,33 @@ def rules(self, rules): self._rules = rules + @property + def sc_auto_unsuspend_delay(self): + """Gets the sc_auto_unsuspend_delay of this NetworkPool. # noqa: E501 + + Time delay in seconds before a node which has been automatically unsuspended becomes usable in SmartConnect responses for pool zones. # noqa: E501 + + :return: The sc_auto_unsuspend_delay of this NetworkPool. # noqa: E501 + :rtype: int + """ + return self._sc_auto_unsuspend_delay + + @sc_auto_unsuspend_delay.setter + def sc_auto_unsuspend_delay(self, sc_auto_unsuspend_delay): + """Sets the sc_auto_unsuspend_delay of this NetworkPool. + + Time delay in seconds before a node which has been automatically unsuspended becomes usable in SmartConnect responses for pool zones. # noqa: E501 + + :param sc_auto_unsuspend_delay: The sc_auto_unsuspend_delay of this NetworkPool. # noqa: E501 + :type: int + """ + if sc_auto_unsuspend_delay is not None and sc_auto_unsuspend_delay > 86400: # noqa: E501 + raise ValueError("Invalid value for `sc_auto_unsuspend_delay`, must be a value less than or equal to `86400`") # noqa: E501 + if sc_auto_unsuspend_delay is not None and sc_auto_unsuspend_delay < 0: # noqa: E501 + raise ValueError("Invalid value for `sc_auto_unsuspend_delay`, must be a value greater than or equal to `0`") # noqa: E501 + + self._sc_auto_unsuspend_delay = sc_auto_unsuspend_delay + @property def sc_connect_policy(self): """Gets the sc_connect_policy of this NetworkPool. # noqa: E501 @@ -676,8 +582,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone @@ -814,7 +720,7 @@ def sc_ttl(self, sc_ttl): def static_routes(self): """Gets the static_routes of this NetworkPool. # noqa: E501 - List of configured static routes in this network pool # noqa: E501 + List of interface members in this pool. # noqa: E501 :return: The static_routes of this NetworkPool. # noqa: E501 :rtype: list[SubnetsSubnetPoolStaticRoute] @@ -825,7 +731,7 @@ def static_routes(self): def static_routes(self, static_routes): """Sets the static_routes of this NetworkPool. - List of configured static routes in this network pool # noqa: E501 + List of interface members in this pool. # noqa: E501 :param static_routes: The static_routes of this NetworkPool. # noqa: E501 :type: list[SubnetsSubnetPoolStaticRoute] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/network_pools.py b/isilon_sdk/isilon_sdk/v9_4_0/models/network_pools.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/network_pools.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/network_pools.py index 717d70001..de8d163f7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/network_pools.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/network_pools.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_alias.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_alias.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_alias.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_alias.py index fca484e6a..63f429eb9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_alias.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_alias.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_alias_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_alias_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_alias_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_alias_create_params.py index 6f71b6094..f3e15cccb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_alias_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_alias_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_alias_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_alias_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_alias_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_alias_extended.py index 19a1ef989..981e3af94 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_alias_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_alias_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_aliases.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_aliases.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_aliases.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_aliases.py index cda028a1c..4b5e92dc6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_aliases.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_aliases.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_aliases_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_aliases_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_aliases_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_aliases_extended.py index 6a376ebb5..a16cd0b34 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_aliases_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_aliases_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_check.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_check.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_check.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_check.py index 6c8f5c1fb..058cd5bee 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_check.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_check.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_check_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_check_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_check_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_check_extended.py index 7b83d7783..5b8ea99c6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_check_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_check_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_export.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_export.py similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_export.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_export.py index 228bcfbf6..d3d404c7a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_export.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_export.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -496,7 +496,7 @@ def description(self, description): def directory_transfer_size(self): """Gets the directory_transfer_size of this NfsExport. # noqa: E501 - Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :return: The directory_transfer_size of this NfsExport. # noqa: E501 :rtype: int @@ -507,7 +507,7 @@ def directory_transfer_size(self): def directory_transfer_size(self, directory_transfer_size): """Sets the directory_transfer_size of this NfsExport. - Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :param directory_transfer_size: The directory_transfer_size of this NfsExport. # noqa: E501 :type: int @@ -884,7 +884,7 @@ def read_only_clients(self, read_only_clients): def read_transfer_max_size(self): """Gets the read_transfer_max_size of this NfsExport. # noqa: E501 - Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :return: The read_transfer_max_size of this NfsExport. # noqa: E501 :rtype: int @@ -895,7 +895,7 @@ def read_transfer_max_size(self): def read_transfer_max_size(self, read_transfer_max_size): """Sets the read_transfer_max_size of this NfsExport. - Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :param read_transfer_max_size: The read_transfer_max_size of this NfsExport. # noqa: E501 :type: int @@ -938,7 +938,7 @@ def read_transfer_multiple(self, read_transfer_multiple): def read_transfer_size(self): """Gets the read_transfer_size of this NfsExport. # noqa: E501 - Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :return: The read_transfer_size of this NfsExport. # noqa: E501 :rtype: int @@ -949,13 +949,13 @@ def read_transfer_size(self): def read_transfer_size(self, read_transfer_size): """Sets the read_transfer_size of this NfsExport. - Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :param read_transfer_size: The read_transfer_size of this NfsExport. # noqa: E501 :type: int """ - if read_transfer_size is not None and read_transfer_size > 1048576: # noqa: E501 - raise ValueError("Invalid value for `read_transfer_size`, must be a value less than or equal to `1048576`") # noqa: E501 + if read_transfer_size is not None and read_transfer_size > 131072: # noqa: E501 + raise ValueError("Invalid value for `read_transfer_size`, must be a value less than or equal to `131072`") # noqa: E501 if read_transfer_size is not None and read_transfer_size < 0: # noqa: E501 raise ValueError("Invalid value for `read_transfer_size`, must be a value greater than or equal to `0`") # noqa: E501 @@ -1237,7 +1237,7 @@ def write_datasync_action(self, write_datasync_action): def write_datasync_reply(self): """Gets the write_datasync_reply of this NfsExport. # noqa: E501 - The synchronization type. # noqa: E501 + Specifies the synchronization type. # noqa: E501 :return: The write_datasync_reply of this NfsExport. # noqa: E501 :rtype: str @@ -1248,7 +1248,7 @@ def write_datasync_reply(self): def write_datasync_reply(self, write_datasync_reply): """Sets the write_datasync_reply of this NfsExport. - The synchronization type. # noqa: E501 + Specifies the synchronization type. # noqa: E501 :param write_datasync_reply: The write_datasync_reply of this NfsExport. # noqa: E501 :type: str @@ -1283,7 +1283,7 @@ def write_filesync_action(self, write_filesync_action): def write_filesync_reply(self): """Gets the write_filesync_reply of this NfsExport. # noqa: E501 - The synchronization type. # noqa: E501 + Specifies the synchronization type. # noqa: E501 :return: The write_filesync_reply of this NfsExport. # noqa: E501 :rtype: str @@ -1294,7 +1294,7 @@ def write_filesync_reply(self): def write_filesync_reply(self, write_filesync_reply): """Sets the write_filesync_reply of this NfsExport. - The synchronization type. # noqa: E501 + Specifies the synchronization type. # noqa: E501 :param write_filesync_reply: The write_filesync_reply of this NfsExport. # noqa: E501 :type: str @@ -1306,7 +1306,7 @@ def write_filesync_reply(self, write_filesync_reply): def write_transfer_max_size(self): """Gets the write_transfer_max_size of this NfsExport. # noqa: E501 - Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :return: The write_transfer_max_size of this NfsExport. # noqa: E501 :rtype: int @@ -1317,7 +1317,7 @@ def write_transfer_max_size(self): def write_transfer_max_size(self, write_transfer_max_size): """Sets the write_transfer_max_size of this NfsExport. - Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :param write_transfer_max_size: The write_transfer_max_size of this NfsExport. # noqa: E501 :type: int @@ -1360,7 +1360,7 @@ def write_transfer_multiple(self, write_transfer_multiple): def write_transfer_size(self): """Gets the write_transfer_size of this NfsExport. # noqa: E501 - Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :return: The write_transfer_size of this NfsExport. # noqa: E501 :rtype: int @@ -1371,13 +1371,13 @@ def write_transfer_size(self): def write_transfer_size(self, write_transfer_size): """Sets the write_transfer_size of this NfsExport. - Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :param write_transfer_size: The write_transfer_size of this NfsExport. # noqa: E501 :type: int """ - if write_transfer_size is not None and write_transfer_size > 1048576: # noqa: E501 - raise ValueError("Invalid value for `write_transfer_size`, must be a value less than or equal to `1048576`") # noqa: E501 + if write_transfer_size is not None and write_transfer_size > 524288: # noqa: E501 + raise ValueError("Invalid value for `write_transfer_size`, must be a value less than or equal to `524288`") # noqa: E501 if write_transfer_size is not None and write_transfer_size < 0: # noqa: E501 raise ValueError("Invalid value for `write_transfer_size`, must be a value greater than or equal to `0`") # noqa: E501 @@ -1410,7 +1410,7 @@ def write_unstable_action(self, write_unstable_action): def write_unstable_reply(self): """Gets the write_unstable_reply of this NfsExport. # noqa: E501 - The synchronization type. # noqa: E501 + Specifies the synchronization type. # noqa: E501 :return: The write_unstable_reply of this NfsExport. # noqa: E501 :rtype: str @@ -1421,7 +1421,7 @@ def write_unstable_reply(self): def write_unstable_reply(self, write_unstable_reply): """Sets the write_unstable_reply of this NfsExport. - The synchronization type. # noqa: E501 + Specifies the synchronization type. # noqa: E501 :param write_unstable_reply: The write_unstable_reply of this NfsExport. # noqa: E501 :type: str diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_export_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_export_create_params.py similarity index 92% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_export_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_export_create_params.py index 73ffd1e23..bc7df9e2a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_export_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_export_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -43,13 +43,13 @@ class NfsExportCreateParams(object): 'directory_transfer_size': 'int', 'encoding': 'str', 'link_max': 'int', - 'map_all': 'NfsExportMapAll', - 'map_failure': 'NfsExportMapAll', + 'map_all': 'NfsSettingsExportSettingsMapAll', + 'map_failure': 'NfsSettingsExportSettingsMapAll', 'map_full': 'bool', 'map_lookup_uid': 'bool', - 'map_non_root': 'NfsExportMapAll', + 'map_non_root': 'NfsSettingsExportSettingsMapAll', 'map_retry': 'bool', - 'map_root': 'NfsExportMapAll', + 'map_root': 'NfsSettingsExportSettingsMapAll', 'max_file_size': 'int', 'name_max_size': 'int', 'no_truncate': 'bool', @@ -78,7 +78,6 @@ class NfsExportCreateParams(object): 'write_transfer_size': 'int', 'write_unstable_action': 'str', 'write_unstable_reply': 'str', - 'create_path': 'bool', 'zone': 'str' } @@ -130,11 +129,10 @@ class NfsExportCreateParams(object): 'write_transfer_size': 'write_transfer_size', 'write_unstable_action': 'write_unstable_action', 'write_unstable_reply': 'write_unstable_reply', - 'create_path': 'create_path', 'zone': 'zone' } - def __init__(self, all_dirs=None, block_size=None, can_set_time=None, case_insensitive=None, case_preserving=None, chown_restricted=None, clients=None, commit_asynchronous=None, description=None, directory_transfer_size=None, encoding=None, link_max=None, map_all=None, map_failure=None, map_full=None, map_lookup_uid=None, map_non_root=None, map_retry=None, map_root=None, max_file_size=None, name_max_size=None, no_truncate=None, paths=None, read_only=None, read_only_clients=None, read_transfer_max_size=None, read_transfer_multiple=None, read_transfer_size=None, read_write_clients=None, readdirplus=None, readdirplus_prefetch=None, return_32bit_file_ids=None, root_clients=None, security_flavors=None, setattr_asynchronous=None, snapshot=None, symlinks=None, time_delta=None, write_datasync_action=None, write_datasync_reply=None, write_filesync_action=None, write_filesync_reply=None, write_transfer_max_size=None, write_transfer_multiple=None, write_transfer_size=None, write_unstable_action=None, write_unstable_reply=None, create_path=None, zone=None): # noqa: E501 + def __init__(self, all_dirs=None, block_size=None, can_set_time=None, case_insensitive=None, case_preserving=None, chown_restricted=None, clients=None, commit_asynchronous=None, description=None, directory_transfer_size=None, encoding=None, link_max=None, map_all=None, map_failure=None, map_full=None, map_lookup_uid=None, map_non_root=None, map_retry=None, map_root=None, max_file_size=None, name_max_size=None, no_truncate=None, paths=None, read_only=None, read_only_clients=None, read_transfer_max_size=None, read_transfer_multiple=None, read_transfer_size=None, read_write_clients=None, readdirplus=None, readdirplus_prefetch=None, return_32bit_file_ids=None, root_clients=None, security_flavors=None, setattr_asynchronous=None, snapshot=None, symlinks=None, time_delta=None, write_datasync_action=None, write_datasync_reply=None, write_filesync_action=None, write_filesync_reply=None, write_transfer_max_size=None, write_transfer_multiple=None, write_transfer_size=None, write_unstable_action=None, write_unstable_reply=None, zone=None): # noqa: E501 """NfsExportCreateParams - a model defined in Swagger""" # noqa: E501 self._all_dirs = None @@ -184,7 +182,6 @@ def __init__(self, all_dirs=None, block_size=None, can_set_time=None, case_insen self._write_transfer_size = None self._write_unstable_action = None self._write_unstable_reply = None - self._create_path = None self._zone = None self.discriminator = None @@ -281,8 +278,6 @@ def __init__(self, all_dirs=None, block_size=None, can_set_time=None, case_insen self.write_unstable_action = write_unstable_action if write_unstable_reply is not None: self.write_unstable_reply = write_unstable_reply - if create_path is not None: - self.create_path = create_path if zone is not None: self.zone = zone @@ -494,10 +489,6 @@ def description(self, description): :param description: The description of this NfsExportCreateParams. # noqa: E501 :type: str """ - if description is not None and len(description) > 8192: - raise ValueError("Invalid value for `description`, length must be less than or equal to `8192`") # noqa: E501 - if description is not None and len(description) < 0: - raise ValueError("Invalid value for `description`, length must be greater than or equal to `0`") # noqa: E501 self._description = description @@ -505,7 +496,7 @@ def description(self, description): def directory_transfer_size(self): """Gets the directory_transfer_size of this NfsExportCreateParams. # noqa: E501 - Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :return: The directory_transfer_size of this NfsExportCreateParams. # noqa: E501 :rtype: int @@ -516,13 +507,13 @@ def directory_transfer_size(self): def directory_transfer_size(self, directory_transfer_size): """Sets the directory_transfer_size of this NfsExportCreateParams. - Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :param directory_transfer_size: The directory_transfer_size of this NfsExportCreateParams. # noqa: E501 :type: int """ - if directory_transfer_size is not None and directory_transfer_size > 131072: # noqa: E501 - raise ValueError("Invalid value for `directory_transfer_size`, must be a value less than or equal to `131072`") # noqa: E501 + if directory_transfer_size is not None and directory_transfer_size > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `directory_transfer_size`, must be a value less than or equal to `4294967295`") # noqa: E501 if directory_transfer_size is not None and directory_transfer_size < 0: # noqa: E501 raise ValueError("Invalid value for `directory_transfer_size`, must be a value greater than or equal to `0`") # noqa: E501 @@ -548,10 +539,6 @@ def encoding(self, encoding): :param encoding: The encoding of this NfsExportCreateParams. # noqa: E501 :type: str """ - if encoding is not None and len(encoding) > 255: - raise ValueError("Invalid value for `encoding`, length must be less than or equal to `255`") # noqa: E501 - if encoding is not None and len(encoding) < 0: - raise ValueError("Invalid value for `encoding`, length must be greater than or equal to `0`") # noqa: E501 self._encoding = encoding @@ -589,7 +576,7 @@ def map_all(self): User and group mapping. # noqa: E501 :return: The map_all of this NfsExportCreateParams. # noqa: E501 - :rtype: NfsExportMapAll + :rtype: NfsSettingsExportSettingsMapAll """ return self._map_all @@ -600,7 +587,7 @@ def map_all(self, map_all): User and group mapping. # noqa: E501 :param map_all: The map_all of this NfsExportCreateParams. # noqa: E501 - :type: NfsExportMapAll + :type: NfsSettingsExportSettingsMapAll """ self._map_all = map_all @@ -612,7 +599,7 @@ def map_failure(self): User and group mapping. # noqa: E501 :return: The map_failure of this NfsExportCreateParams. # noqa: E501 - :rtype: NfsExportMapAll + :rtype: NfsSettingsExportSettingsMapAll """ return self._map_failure @@ -623,7 +610,7 @@ def map_failure(self, map_failure): User and group mapping. # noqa: E501 :param map_failure: The map_failure of this NfsExportCreateParams. # noqa: E501 - :type: NfsExportMapAll + :type: NfsSettingsExportSettingsMapAll """ self._map_failure = map_failure @@ -681,7 +668,7 @@ def map_non_root(self): User and group mapping. # noqa: E501 :return: The map_non_root of this NfsExportCreateParams. # noqa: E501 - :rtype: NfsExportMapAll + :rtype: NfsSettingsExportSettingsMapAll """ return self._map_non_root @@ -692,7 +679,7 @@ def map_non_root(self, map_non_root): User and group mapping. # noqa: E501 :param map_non_root: The map_non_root of this NfsExportCreateParams. # noqa: E501 - :type: NfsExportMapAll + :type: NfsSettingsExportSettingsMapAll """ self._map_non_root = map_non_root @@ -727,7 +714,7 @@ def map_root(self): User and group mapping. # noqa: E501 :return: The map_root of this NfsExportCreateParams. # noqa: E501 - :rtype: NfsExportMapAll + :rtype: NfsSettingsExportSettingsMapAll """ return self._map_root @@ -738,7 +725,7 @@ def map_root(self, map_root): User and group mapping. # noqa: E501 :param map_root: The map_root of this NfsExportCreateParams. # noqa: E501 - :type: NfsExportMapAll + :type: NfsSettingsExportSettingsMapAll """ self._map_root = map_root @@ -763,10 +750,6 @@ def max_file_size(self, max_file_size): :param max_file_size: The max_file_size of this NfsExportCreateParams. # noqa: E501 :type: int """ - if max_file_size is not None and max_file_size > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `max_file_size`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if max_file_size is not None and max_file_size < 0: # noqa: E501 - raise ValueError("Invalid value for `max_file_size`, must be a value greater than or equal to `0`") # noqa: E501 self._max_file_size = max_file_size @@ -895,7 +878,7 @@ def read_only_clients(self, read_only_clients): def read_transfer_max_size(self): """Gets the read_transfer_max_size of this NfsExportCreateParams. # noqa: E501 - Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :return: The read_transfer_max_size of this NfsExportCreateParams. # noqa: E501 :rtype: int @@ -906,13 +889,13 @@ def read_transfer_max_size(self): def read_transfer_max_size(self, read_transfer_max_size): """Sets the read_transfer_max_size of this NfsExportCreateParams. - Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :param read_transfer_max_size: The read_transfer_max_size of this NfsExportCreateParams. # noqa: E501 :type: int """ - if read_transfer_max_size is not None and read_transfer_max_size > 1048576: # noqa: E501 - raise ValueError("Invalid value for `read_transfer_max_size`, must be a value less than or equal to `1048576`") # noqa: E501 + if read_transfer_max_size is not None and read_transfer_max_size > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `read_transfer_max_size`, must be a value less than or equal to `4294967295`") # noqa: E501 if read_transfer_max_size is not None and read_transfer_max_size < 0: # noqa: E501 raise ValueError("Invalid value for `read_transfer_max_size`, must be a value greater than or equal to `0`") # noqa: E501 @@ -949,7 +932,7 @@ def read_transfer_multiple(self, read_transfer_multiple): def read_transfer_size(self): """Gets the read_transfer_size of this NfsExportCreateParams. # noqa: E501 - Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :return: The read_transfer_size of this NfsExportCreateParams. # noqa: E501 :rtype: int @@ -960,13 +943,13 @@ def read_transfer_size(self): def read_transfer_size(self, read_transfer_size): """Sets the read_transfer_size of this NfsExportCreateParams. - Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :param read_transfer_size: The read_transfer_size of this NfsExportCreateParams. # noqa: E501 :type: int """ - if read_transfer_size is not None and read_transfer_size > 1048576: # noqa: E501 - raise ValueError("Invalid value for `read_transfer_size`, must be a value less than or equal to `1048576`") # noqa: E501 + if read_transfer_size is not None and read_transfer_size > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `read_transfer_size`, must be a value less than or equal to `4294967295`") # noqa: E501 if read_transfer_size is not None and read_transfer_size < 0: # noqa: E501 raise ValueError("Invalid value for `read_transfer_size`, must be a value greater than or equal to `0`") # noqa: E501 @@ -1164,10 +1147,6 @@ def snapshot(self, snapshot): :param snapshot: The snapshot of this NfsExportCreateParams. # noqa: E501 :type: str """ - if snapshot is not None and len(snapshot) > 255: - raise ValueError("Invalid value for `snapshot`, length must be less than or equal to `255`") # noqa: E501 - if snapshot is not None and len(snapshot) < 0: - raise ValueError("Invalid value for `snapshot`, length must be greater than or equal to `0`") # noqa: E501 self._snapshot = snapshot @@ -1214,10 +1193,6 @@ def time_delta(self, time_delta): :param time_delta: The time_delta of this NfsExportCreateParams. # noqa: E501 :type: float """ - if time_delta is not None and time_delta > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `time_delta`, must be a value less than or equal to `4294967295`") # noqa: E501 - if time_delta is not None and time_delta < 0: # noqa: E501 - raise ValueError("Invalid value for `time_delta`, must be a value greater than or equal to `0`") # noqa: E501 self._time_delta = time_delta @@ -1248,7 +1223,7 @@ def write_datasync_action(self, write_datasync_action): def write_datasync_reply(self): """Gets the write_datasync_reply of this NfsExportCreateParams. # noqa: E501 - The synchronization type. # noqa: E501 + Specifies the synchronization type. # noqa: E501 :return: The write_datasync_reply of this NfsExportCreateParams. # noqa: E501 :rtype: str @@ -1259,7 +1234,7 @@ def write_datasync_reply(self): def write_datasync_reply(self, write_datasync_reply): """Sets the write_datasync_reply of this NfsExportCreateParams. - The synchronization type. # noqa: E501 + Specifies the synchronization type. # noqa: E501 :param write_datasync_reply: The write_datasync_reply of this NfsExportCreateParams. # noqa: E501 :type: str @@ -1294,7 +1269,7 @@ def write_filesync_action(self, write_filesync_action): def write_filesync_reply(self): """Gets the write_filesync_reply of this NfsExportCreateParams. # noqa: E501 - The synchronization type. # noqa: E501 + Specifies the synchronization type. # noqa: E501 :return: The write_filesync_reply of this NfsExportCreateParams. # noqa: E501 :rtype: str @@ -1305,7 +1280,7 @@ def write_filesync_reply(self): def write_filesync_reply(self, write_filesync_reply): """Sets the write_filesync_reply of this NfsExportCreateParams. - The synchronization type. # noqa: E501 + Specifies the synchronization type. # noqa: E501 :param write_filesync_reply: The write_filesync_reply of this NfsExportCreateParams. # noqa: E501 :type: str @@ -1317,7 +1292,7 @@ def write_filesync_reply(self, write_filesync_reply): def write_transfer_max_size(self): """Gets the write_transfer_max_size of this NfsExportCreateParams. # noqa: E501 - Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :return: The write_transfer_max_size of this NfsExportCreateParams. # noqa: E501 :rtype: int @@ -1328,13 +1303,13 @@ def write_transfer_max_size(self): def write_transfer_max_size(self, write_transfer_max_size): """Sets the write_transfer_max_size of this NfsExportCreateParams. - Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :param write_transfer_max_size: The write_transfer_max_size of this NfsExportCreateParams. # noqa: E501 :type: int """ - if write_transfer_max_size is not None and write_transfer_max_size > 1048576: # noqa: E501 - raise ValueError("Invalid value for `write_transfer_max_size`, must be a value less than or equal to `1048576`") # noqa: E501 + if write_transfer_max_size is not None and write_transfer_max_size > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `write_transfer_max_size`, must be a value less than or equal to `4294967295`") # noqa: E501 if write_transfer_max_size is not None and write_transfer_max_size < 0: # noqa: E501 raise ValueError("Invalid value for `write_transfer_max_size`, must be a value greater than or equal to `0`") # noqa: E501 @@ -1371,7 +1346,7 @@ def write_transfer_multiple(self, write_transfer_multiple): def write_transfer_size(self): """Gets the write_transfer_size of this NfsExportCreateParams. # noqa: E501 - Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :return: The write_transfer_size of this NfsExportCreateParams. # noqa: E501 :rtype: int @@ -1382,13 +1357,13 @@ def write_transfer_size(self): def write_transfer_size(self, write_transfer_size): """Sets the write_transfer_size of this NfsExportCreateParams. - Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :param write_transfer_size: The write_transfer_size of this NfsExportCreateParams. # noqa: E501 :type: int """ - if write_transfer_size is not None and write_transfer_size > 1048576: # noqa: E501 - raise ValueError("Invalid value for `write_transfer_size`, must be a value less than or equal to `1048576`") # noqa: E501 + if write_transfer_size is not None and write_transfer_size > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `write_transfer_size`, must be a value less than or equal to `4294967295`") # noqa: E501 if write_transfer_size is not None and write_transfer_size < 0: # noqa: E501 raise ValueError("Invalid value for `write_transfer_size`, must be a value greater than or equal to `0`") # noqa: E501 @@ -1421,7 +1396,7 @@ def write_unstable_action(self, write_unstable_action): def write_unstable_reply(self): """Gets the write_unstable_reply of this NfsExportCreateParams. # noqa: E501 - The synchronization type. # noqa: E501 + Specifies the synchronization type. # noqa: E501 :return: The write_unstable_reply of this NfsExportCreateParams. # noqa: E501 :rtype: str @@ -1432,7 +1407,7 @@ def write_unstable_reply(self): def write_unstable_reply(self, write_unstable_reply): """Sets the write_unstable_reply of this NfsExportCreateParams. - The synchronization type. # noqa: E501 + Specifies the synchronization type. # noqa: E501 :param write_unstable_reply: The write_unstable_reply of this NfsExportCreateParams. # noqa: E501 :type: str @@ -1440,29 +1415,6 @@ def write_unstable_reply(self, write_unstable_reply): self._write_unstable_reply = write_unstable_reply - @property - def create_path(self): - """Gets the create_path of this NfsExportCreateParams. # noqa: E501 - - Create path if does not exist. # noqa: E501 - - :return: The create_path of this NfsExportCreateParams. # noqa: E501 - :rtype: bool - """ - return self._create_path - - @create_path.setter - def create_path(self, create_path): - """Sets the create_path of this NfsExportCreateParams. - - Create path if does not exist. # noqa: E501 - - :param create_path: The create_path of this NfsExportCreateParams. # noqa: E501 - :type: bool - """ - - self._create_path = create_path - @property def zone(self): """Gets the zone of this NfsExportCreateParams. # noqa: E501 @@ -1483,10 +1435,6 @@ def zone(self, zone): :param zone: The zone of this NfsExportCreateParams. # noqa: E501 :type: str """ - if zone is not None and len(zone) > 255: - raise ValueError("Invalid value for `zone`, length must be less than or equal to `255`") # noqa: E501 - if zone is not None and len(zone) < 0: - raise ValueError("Invalid value for `zone`, length must be greater than or equal to `0`") # noqa: E501 self._zone = zone diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_export_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_export_extended.py similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_export_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_export_extended.py index 974eb921a..9cc262057 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_export_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_export_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -39,11 +39,9 @@ class NfsExportExtended(object): 'chown_restricted': 'bool', 'clients': 'list[str]', 'commit_asynchronous': 'bool', - 'conflicting_paths': 'list[str]', 'description': 'str', 'directory_transfer_size': 'int', 'encoding': 'str', - 'id': 'int', 'link_max': 'int', 'map_all': 'NfsExportMapAll', 'map_failure': 'NfsExportMapAll', @@ -71,7 +69,6 @@ class NfsExportExtended(object): 'snapshot': 'str', 'symlinks': 'bool', 'time_delta': 'float', - 'unresolved_clients': 'list[str]', 'write_datasync_action': 'str', 'write_datasync_reply': 'str', 'write_filesync_action': 'str', @@ -81,6 +78,9 @@ class NfsExportExtended(object): 'write_transfer_size': 'int', 'write_unstable_action': 'str', 'write_unstable_reply': 'str', + 'conflicting_paths': 'list[str]', + 'id': 'int', + 'unresolved_clients': 'list[str]', 'zone': 'str' } @@ -93,11 +93,9 @@ class NfsExportExtended(object): 'chown_restricted': 'chown_restricted', 'clients': 'clients', 'commit_asynchronous': 'commit_asynchronous', - 'conflicting_paths': 'conflicting_paths', 'description': 'description', 'directory_transfer_size': 'directory_transfer_size', 'encoding': 'encoding', - 'id': 'id', 'link_max': 'link_max', 'map_all': 'map_all', 'map_failure': 'map_failure', @@ -125,7 +123,6 @@ class NfsExportExtended(object): 'snapshot': 'snapshot', 'symlinks': 'symlinks', 'time_delta': 'time_delta', - 'unresolved_clients': 'unresolved_clients', 'write_datasync_action': 'write_datasync_action', 'write_datasync_reply': 'write_datasync_reply', 'write_filesync_action': 'write_filesync_action', @@ -135,10 +132,13 @@ class NfsExportExtended(object): 'write_transfer_size': 'write_transfer_size', 'write_unstable_action': 'write_unstable_action', 'write_unstable_reply': 'write_unstable_reply', + 'conflicting_paths': 'conflicting_paths', + 'id': 'id', + 'unresolved_clients': 'unresolved_clients', 'zone': 'zone' } - def __init__(self, all_dirs=None, block_size=None, can_set_time=None, case_insensitive=None, case_preserving=None, chown_restricted=None, clients=None, commit_asynchronous=None, conflicting_paths=None, description=None, directory_transfer_size=None, encoding=None, id=None, link_max=None, map_all=None, map_failure=None, map_full=None, map_lookup_uid=None, map_non_root=None, map_retry=None, map_root=None, max_file_size=None, name_max_size=None, no_truncate=None, paths=None, read_only=None, read_only_clients=None, read_transfer_max_size=None, read_transfer_multiple=None, read_transfer_size=None, read_write_clients=None, readdirplus=None, readdirplus_prefetch=None, return_32bit_file_ids=None, root_clients=None, security_flavors=None, setattr_asynchronous=None, snapshot=None, symlinks=None, time_delta=None, unresolved_clients=None, write_datasync_action=None, write_datasync_reply=None, write_filesync_action=None, write_filesync_reply=None, write_transfer_max_size=None, write_transfer_multiple=None, write_transfer_size=None, write_unstable_action=None, write_unstable_reply=None, zone=None): # noqa: E501 + def __init__(self, all_dirs=None, block_size=None, can_set_time=None, case_insensitive=None, case_preserving=None, chown_restricted=None, clients=None, commit_asynchronous=None, description=None, directory_transfer_size=None, encoding=None, link_max=None, map_all=None, map_failure=None, map_full=None, map_lookup_uid=None, map_non_root=None, map_retry=None, map_root=None, max_file_size=None, name_max_size=None, no_truncate=None, paths=None, read_only=None, read_only_clients=None, read_transfer_max_size=None, read_transfer_multiple=None, read_transfer_size=None, read_write_clients=None, readdirplus=None, readdirplus_prefetch=None, return_32bit_file_ids=None, root_clients=None, security_flavors=None, setattr_asynchronous=None, snapshot=None, symlinks=None, time_delta=None, write_datasync_action=None, write_datasync_reply=None, write_filesync_action=None, write_filesync_reply=None, write_transfer_max_size=None, write_transfer_multiple=None, write_transfer_size=None, write_unstable_action=None, write_unstable_reply=None, conflicting_paths=None, id=None, unresolved_clients=None, zone=None): # noqa: E501 """NfsExportExtended - a model defined in Swagger""" # noqa: E501 self._all_dirs = None @@ -149,11 +149,9 @@ def __init__(self, all_dirs=None, block_size=None, can_set_time=None, case_insen self._chown_restricted = None self._clients = None self._commit_asynchronous = None - self._conflicting_paths = None self._description = None self._directory_transfer_size = None self._encoding = None - self._id = None self._link_max = None self._map_all = None self._map_failure = None @@ -181,7 +179,6 @@ def __init__(self, all_dirs=None, block_size=None, can_set_time=None, case_insen self._snapshot = None self._symlinks = None self._time_delta = None - self._unresolved_clients = None self._write_datasync_action = None self._write_datasync_reply = None self._write_filesync_action = None @@ -191,6 +188,9 @@ def __init__(self, all_dirs=None, block_size=None, can_set_time=None, case_insen self._write_transfer_size = None self._write_unstable_action = None self._write_unstable_reply = None + self._conflicting_paths = None + self._id = None + self._unresolved_clients = None self._zone = None self.discriminator = None @@ -210,16 +210,12 @@ def __init__(self, all_dirs=None, block_size=None, can_set_time=None, case_insen self.clients = clients if commit_asynchronous is not None: self.commit_asynchronous = commit_asynchronous - if conflicting_paths is not None: - self.conflicting_paths = conflicting_paths if description is not None: self.description = description if directory_transfer_size is not None: self.directory_transfer_size = directory_transfer_size if encoding is not None: self.encoding = encoding - if id is not None: - self.id = id if link_max is not None: self.link_max = link_max if map_all is not None: @@ -274,8 +270,6 @@ def __init__(self, all_dirs=None, block_size=None, can_set_time=None, case_insen self.symlinks = symlinks if time_delta is not None: self.time_delta = time_delta - if unresolved_clients is not None: - self.unresolved_clients = unresolved_clients if write_datasync_action is not None: self.write_datasync_action = write_datasync_action if write_datasync_reply is not None: @@ -294,6 +288,12 @@ def __init__(self, all_dirs=None, block_size=None, can_set_time=None, case_insen self.write_unstable_action = write_unstable_action if write_unstable_reply is not None: self.write_unstable_reply = write_unstable_reply + if conflicting_paths is not None: + self.conflicting_paths = conflicting_paths + if id is not None: + self.id = id + if unresolved_clients is not None: + self.unresolved_clients = unresolved_clients if zone is not None: self.zone = zone @@ -485,29 +485,6 @@ def commit_asynchronous(self, commit_asynchronous): self._commit_asynchronous = commit_asynchronous - @property - def conflicting_paths(self): - """Gets the conflicting_paths of this NfsExportExtended. # noqa: E501 - - Reports the paths that conflict with another export. # noqa: E501 - - :return: The conflicting_paths of this NfsExportExtended. # noqa: E501 - :rtype: list[str] - """ - return self._conflicting_paths - - @conflicting_paths.setter - def conflicting_paths(self, conflicting_paths): - """Sets the conflicting_paths of this NfsExportExtended. - - Reports the paths that conflict with another export. # noqa: E501 - - :param conflicting_paths: The conflicting_paths of this NfsExportExtended. # noqa: E501 - :type: list[str] - """ - - self._conflicting_paths = conflicting_paths - @property def description(self): """Gets the description of this NfsExportExtended. # noqa: E501 @@ -539,7 +516,7 @@ def description(self, description): def directory_transfer_size(self): """Gets the directory_transfer_size of this NfsExportExtended. # noqa: E501 - Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :return: The directory_transfer_size of this NfsExportExtended. # noqa: E501 :rtype: int @@ -550,7 +527,7 @@ def directory_transfer_size(self): def directory_transfer_size(self, directory_transfer_size): """Sets the directory_transfer_size of this NfsExportExtended. - Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :param directory_transfer_size: The directory_transfer_size of this NfsExportExtended. # noqa: E501 :type: int @@ -589,33 +566,6 @@ def encoding(self, encoding): self._encoding = encoding - @property - def id(self): - """Gets the id of this NfsExportExtended. # noqa: E501 - - Specifies the system-assigned ID for the export. This ID is returned when an export is created through the POST method. # noqa: E501 - - :return: The id of this NfsExportExtended. # noqa: E501 - :rtype: int - """ - return self._id - - @id.setter - def id(self, id): - """Sets the id of this NfsExportExtended. - - Specifies the system-assigned ID for the export. This ID is returned when an export is created through the POST method. # noqa: E501 - - :param id: The id of this NfsExportExtended. # noqa: E501 - :type: int - """ - if id is not None and id > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `id`, must be a value less than or equal to `4294967295`") # noqa: E501 - if id is not None and id < 0: # noqa: E501 - raise ValueError("Invalid value for `id`, must be a value greater than or equal to `0`") # noqa: E501 - - self._id = id - @property def link_max(self): """Gets the link_max of this NfsExportExtended. # noqa: E501 @@ -954,7 +904,7 @@ def read_only_clients(self, read_only_clients): def read_transfer_max_size(self): """Gets the read_transfer_max_size of this NfsExportExtended. # noqa: E501 - Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :return: The read_transfer_max_size of this NfsExportExtended. # noqa: E501 :rtype: int @@ -965,7 +915,7 @@ def read_transfer_max_size(self): def read_transfer_max_size(self, read_transfer_max_size): """Sets the read_transfer_max_size of this NfsExportExtended. - Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :param read_transfer_max_size: The read_transfer_max_size of this NfsExportExtended. # noqa: E501 :type: int @@ -1008,7 +958,7 @@ def read_transfer_multiple(self, read_transfer_multiple): def read_transfer_size(self): """Gets the read_transfer_size of this NfsExportExtended. # noqa: E501 - Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :return: The read_transfer_size of this NfsExportExtended. # noqa: E501 :rtype: int @@ -1019,13 +969,13 @@ def read_transfer_size(self): def read_transfer_size(self, read_transfer_size): """Sets the read_transfer_size of this NfsExportExtended. - Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :param read_transfer_size: The read_transfer_size of this NfsExportExtended. # noqa: E501 :type: int """ - if read_transfer_size is not None and read_transfer_size > 1048576: # noqa: E501 - raise ValueError("Invalid value for `read_transfer_size`, must be a value less than or equal to `1048576`") # noqa: E501 + if read_transfer_size is not None and read_transfer_size > 131072: # noqa: E501 + raise ValueError("Invalid value for `read_transfer_size`, must be a value less than or equal to `131072`") # noqa: E501 if read_transfer_size is not None and read_transfer_size < 0: # noqa: E501 raise ValueError("Invalid value for `read_transfer_size`, must be a value greater than or equal to `0`") # noqa: E501 @@ -1280,29 +1230,6 @@ def time_delta(self, time_delta): self._time_delta = time_delta - @property - def unresolved_clients(self): - """Gets the unresolved_clients of this NfsExportExtended. # noqa: E501 - - Reports clients that cannot be resolved. # noqa: E501 - - :return: The unresolved_clients of this NfsExportExtended. # noqa: E501 - :rtype: list[str] - """ - return self._unresolved_clients - - @unresolved_clients.setter - def unresolved_clients(self, unresolved_clients): - """Sets the unresolved_clients of this NfsExportExtended. - - Reports clients that cannot be resolved. # noqa: E501 - - :param unresolved_clients: The unresolved_clients of this NfsExportExtended. # noqa: E501 - :type: list[str] - """ - - self._unresolved_clients = unresolved_clients - @property def write_datasync_action(self): """Gets the write_datasync_action of this NfsExportExtended. # noqa: E501 @@ -1399,7 +1326,7 @@ def write_filesync_reply(self, write_filesync_reply): def write_transfer_max_size(self): """Gets the write_transfer_max_size of this NfsExportExtended. # noqa: E501 - Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :return: The write_transfer_max_size of this NfsExportExtended. # noqa: E501 :rtype: int @@ -1410,7 +1337,7 @@ def write_transfer_max_size(self): def write_transfer_max_size(self, write_transfer_max_size): """Sets the write_transfer_max_size of this NfsExportExtended. - Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :param write_transfer_max_size: The write_transfer_max_size of this NfsExportExtended. # noqa: E501 :type: int @@ -1453,7 +1380,7 @@ def write_transfer_multiple(self, write_transfer_multiple): def write_transfer_size(self): """Gets the write_transfer_size of this NfsExportExtended. # noqa: E501 - Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :return: The write_transfer_size of this NfsExportExtended. # noqa: E501 :rtype: int @@ -1464,13 +1391,13 @@ def write_transfer_size(self): def write_transfer_size(self, write_transfer_size): """Sets the write_transfer_size of this NfsExportExtended. - Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server. # noqa: E501 + Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 :param write_transfer_size: The write_transfer_size of this NfsExportExtended. # noqa: E501 :type: int """ - if write_transfer_size is not None and write_transfer_size > 1048576: # noqa: E501 - raise ValueError("Invalid value for `write_transfer_size`, must be a value less than or equal to `1048576`") # noqa: E501 + if write_transfer_size is not None and write_transfer_size > 524288: # noqa: E501 + raise ValueError("Invalid value for `write_transfer_size`, must be a value less than or equal to `524288`") # noqa: E501 if write_transfer_size is not None and write_transfer_size < 0: # noqa: E501 raise ValueError("Invalid value for `write_transfer_size`, must be a value greater than or equal to `0`") # noqa: E501 @@ -1522,6 +1449,79 @@ def write_unstable_reply(self, write_unstable_reply): self._write_unstable_reply = write_unstable_reply + @property + def conflicting_paths(self): + """Gets the conflicting_paths of this NfsExportExtended. # noqa: E501 + + Reports the paths that conflict with another export. # noqa: E501 + + :return: The conflicting_paths of this NfsExportExtended. # noqa: E501 + :rtype: list[str] + """ + return self._conflicting_paths + + @conflicting_paths.setter + def conflicting_paths(self, conflicting_paths): + """Sets the conflicting_paths of this NfsExportExtended. + + Reports the paths that conflict with another export. # noqa: E501 + + :param conflicting_paths: The conflicting_paths of this NfsExportExtended. # noqa: E501 + :type: list[str] + """ + + self._conflicting_paths = conflicting_paths + + @property + def id(self): + """Gets the id of this NfsExportExtended. # noqa: E501 + + Specifies the system-assigned ID for the export. This ID is returned when an export is created through the POST method. # noqa: E501 + + :return: The id of this NfsExportExtended. # noqa: E501 + :rtype: int + """ + return self._id + + @id.setter + def id(self, id): + """Sets the id of this NfsExportExtended. + + Specifies the system-assigned ID for the export. This ID is returned when an export is created through the POST method. # noqa: E501 + + :param id: The id of this NfsExportExtended. # noqa: E501 + :type: int + """ + if id is not None and id > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `id`, must be a value less than or equal to `4294967295`") # noqa: E501 + if id is not None and id < 0: # noqa: E501 + raise ValueError("Invalid value for `id`, must be a value greater than or equal to `0`") # noqa: E501 + + self._id = id + + @property + def unresolved_clients(self): + """Gets the unresolved_clients of this NfsExportExtended. # noqa: E501 + + Reports clients that cannot be resolved. # noqa: E501 + + :return: The unresolved_clients of this NfsExportExtended. # noqa: E501 + :rtype: list[str] + """ + return self._unresolved_clients + + @unresolved_clients.setter + def unresolved_clients(self, unresolved_clients): + """Sets the unresolved_clients of this NfsExportExtended. + + Reports clients that cannot be resolved. # noqa: E501 + + :param unresolved_clients: The unresolved_clients of this NfsExportExtended. # noqa: E501 + :type: list[str] + """ + + self._unresolved_clients = unresolved_clients + @property def zone(self): """Gets the zone of this NfsExportExtended. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_export_extended_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_export_extended_extended.py new file mode 100644 index 000000000..00e1d9f85 --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_export_extended_extended.py @@ -0,0 +1,1568 @@ +# coding: utf-8 + +""" + Isilon SDK + + Isilon SDK - Language bindings for the OneFS API # noqa: E501 + + OpenAPI spec version: 15 + Contact: sdk@isilon.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + + +class NfsExportExtendedExtended(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'all_dirs': 'bool', + 'block_size': 'int', + 'can_set_time': 'bool', + 'case_insensitive': 'bool', + 'case_preserving': 'bool', + 'chown_restricted': 'bool', + 'clients': 'list[str]', + 'commit_asynchronous': 'bool', + 'conflicting_paths': 'list[str]', + 'description': 'str', + 'directory_transfer_size': 'int', + 'encoding': 'str', + 'id': 'int', + 'link_max': 'int', + 'map_all': 'NfsSettingsExportSettingsMapAll', + 'map_failure': 'NfsSettingsExportSettingsMapAll', + 'map_full': 'bool', + 'map_lookup_uid': 'bool', + 'map_non_root': 'NfsSettingsExportSettingsMapAll', + 'map_retry': 'bool', + 'map_root': 'NfsSettingsExportSettingsMapAll', + 'max_file_size': 'int', + 'name_max_size': 'int', + 'no_truncate': 'bool', + 'paths': 'list[str]', + 'read_only': 'bool', + 'read_only_clients': 'list[str]', + 'read_transfer_max_size': 'int', + 'read_transfer_multiple': 'int', + 'read_transfer_size': 'int', + 'read_write_clients': 'list[str]', + 'readdirplus': 'bool', + 'readdirplus_prefetch': 'int', + 'return_32bit_file_ids': 'bool', + 'root_clients': 'list[str]', + 'security_flavors': 'list[str]', + 'setattr_asynchronous': 'bool', + 'snapshot': 'str', + 'symlinks': 'bool', + 'time_delta': 'float', + 'unresolved_clients': 'list[str]', + 'write_datasync_action': 'str', + 'write_datasync_reply': 'str', + 'write_filesync_action': 'str', + 'write_filesync_reply': 'str', + 'write_transfer_max_size': 'int', + 'write_transfer_multiple': 'int', + 'write_transfer_size': 'int', + 'write_unstable_action': 'str', + 'write_unstable_reply': 'str', + 'zone': 'str' + } + + attribute_map = { + 'all_dirs': 'all_dirs', + 'block_size': 'block_size', + 'can_set_time': 'can_set_time', + 'case_insensitive': 'case_insensitive', + 'case_preserving': 'case_preserving', + 'chown_restricted': 'chown_restricted', + 'clients': 'clients', + 'commit_asynchronous': 'commit_asynchronous', + 'conflicting_paths': 'conflicting_paths', + 'description': 'description', + 'directory_transfer_size': 'directory_transfer_size', + 'encoding': 'encoding', + 'id': 'id', + 'link_max': 'link_max', + 'map_all': 'map_all', + 'map_failure': 'map_failure', + 'map_full': 'map_full', + 'map_lookup_uid': 'map_lookup_uid', + 'map_non_root': 'map_non_root', + 'map_retry': 'map_retry', + 'map_root': 'map_root', + 'max_file_size': 'max_file_size', + 'name_max_size': 'name_max_size', + 'no_truncate': 'no_truncate', + 'paths': 'paths', + 'read_only': 'read_only', + 'read_only_clients': 'read_only_clients', + 'read_transfer_max_size': 'read_transfer_max_size', + 'read_transfer_multiple': 'read_transfer_multiple', + 'read_transfer_size': 'read_transfer_size', + 'read_write_clients': 'read_write_clients', + 'readdirplus': 'readdirplus', + 'readdirplus_prefetch': 'readdirplus_prefetch', + 'return_32bit_file_ids': 'return_32bit_file_ids', + 'root_clients': 'root_clients', + 'security_flavors': 'security_flavors', + 'setattr_asynchronous': 'setattr_asynchronous', + 'snapshot': 'snapshot', + 'symlinks': 'symlinks', + 'time_delta': 'time_delta', + 'unresolved_clients': 'unresolved_clients', + 'write_datasync_action': 'write_datasync_action', + 'write_datasync_reply': 'write_datasync_reply', + 'write_filesync_action': 'write_filesync_action', + 'write_filesync_reply': 'write_filesync_reply', + 'write_transfer_max_size': 'write_transfer_max_size', + 'write_transfer_multiple': 'write_transfer_multiple', + 'write_transfer_size': 'write_transfer_size', + 'write_unstable_action': 'write_unstable_action', + 'write_unstable_reply': 'write_unstable_reply', + 'zone': 'zone' + } + + def __init__(self, all_dirs=None, block_size=None, can_set_time=None, case_insensitive=None, case_preserving=None, chown_restricted=None, clients=None, commit_asynchronous=None, conflicting_paths=None, description=None, directory_transfer_size=None, encoding=None, id=None, link_max=None, map_all=None, map_failure=None, map_full=None, map_lookup_uid=None, map_non_root=None, map_retry=None, map_root=None, max_file_size=None, name_max_size=None, no_truncate=None, paths=None, read_only=None, read_only_clients=None, read_transfer_max_size=None, read_transfer_multiple=None, read_transfer_size=None, read_write_clients=None, readdirplus=None, readdirplus_prefetch=None, return_32bit_file_ids=None, root_clients=None, security_flavors=None, setattr_asynchronous=None, snapshot=None, symlinks=None, time_delta=None, unresolved_clients=None, write_datasync_action=None, write_datasync_reply=None, write_filesync_action=None, write_filesync_reply=None, write_transfer_max_size=None, write_transfer_multiple=None, write_transfer_size=None, write_unstable_action=None, write_unstable_reply=None, zone=None): # noqa: E501 + """NfsExportExtendedExtended - a model defined in Swagger""" # noqa: E501 + + self._all_dirs = None + self._block_size = None + self._can_set_time = None + self._case_insensitive = None + self._case_preserving = None + self._chown_restricted = None + self._clients = None + self._commit_asynchronous = None + self._conflicting_paths = None + self._description = None + self._directory_transfer_size = None + self._encoding = None + self._id = None + self._link_max = None + self._map_all = None + self._map_failure = None + self._map_full = None + self._map_lookup_uid = None + self._map_non_root = None + self._map_retry = None + self._map_root = None + self._max_file_size = None + self._name_max_size = None + self._no_truncate = None + self._paths = None + self._read_only = None + self._read_only_clients = None + self._read_transfer_max_size = None + self._read_transfer_multiple = None + self._read_transfer_size = None + self._read_write_clients = None + self._readdirplus = None + self._readdirplus_prefetch = None + self._return_32bit_file_ids = None + self._root_clients = None + self._security_flavors = None + self._setattr_asynchronous = None + self._snapshot = None + self._symlinks = None + self._time_delta = None + self._unresolved_clients = None + self._write_datasync_action = None + self._write_datasync_reply = None + self._write_filesync_action = None + self._write_filesync_reply = None + self._write_transfer_max_size = None + self._write_transfer_multiple = None + self._write_transfer_size = None + self._write_unstable_action = None + self._write_unstable_reply = None + self._zone = None + self.discriminator = None + + if all_dirs is not None: + self.all_dirs = all_dirs + if block_size is not None: + self.block_size = block_size + if can_set_time is not None: + self.can_set_time = can_set_time + if case_insensitive is not None: + self.case_insensitive = case_insensitive + if case_preserving is not None: + self.case_preserving = case_preserving + if chown_restricted is not None: + self.chown_restricted = chown_restricted + if clients is not None: + self.clients = clients + if commit_asynchronous is not None: + self.commit_asynchronous = commit_asynchronous + if conflicting_paths is not None: + self.conflicting_paths = conflicting_paths + if description is not None: + self.description = description + if directory_transfer_size is not None: + self.directory_transfer_size = directory_transfer_size + if encoding is not None: + self.encoding = encoding + if id is not None: + self.id = id + if link_max is not None: + self.link_max = link_max + if map_all is not None: + self.map_all = map_all + if map_failure is not None: + self.map_failure = map_failure + if map_full is not None: + self.map_full = map_full + if map_lookup_uid is not None: + self.map_lookup_uid = map_lookup_uid + if map_non_root is not None: + self.map_non_root = map_non_root + if map_retry is not None: + self.map_retry = map_retry + if map_root is not None: + self.map_root = map_root + if max_file_size is not None: + self.max_file_size = max_file_size + if name_max_size is not None: + self.name_max_size = name_max_size + if no_truncate is not None: + self.no_truncate = no_truncate + if paths is not None: + self.paths = paths + if read_only is not None: + self.read_only = read_only + if read_only_clients is not None: + self.read_only_clients = read_only_clients + if read_transfer_max_size is not None: + self.read_transfer_max_size = read_transfer_max_size + if read_transfer_multiple is not None: + self.read_transfer_multiple = read_transfer_multiple + if read_transfer_size is not None: + self.read_transfer_size = read_transfer_size + if read_write_clients is not None: + self.read_write_clients = read_write_clients + if readdirplus is not None: + self.readdirplus = readdirplus + if readdirplus_prefetch is not None: + self.readdirplus_prefetch = readdirplus_prefetch + if return_32bit_file_ids is not None: + self.return_32bit_file_ids = return_32bit_file_ids + if root_clients is not None: + self.root_clients = root_clients + if security_flavors is not None: + self.security_flavors = security_flavors + if setattr_asynchronous is not None: + self.setattr_asynchronous = setattr_asynchronous + if snapshot is not None: + self.snapshot = snapshot + if symlinks is not None: + self.symlinks = symlinks + if time_delta is not None: + self.time_delta = time_delta + if unresolved_clients is not None: + self.unresolved_clients = unresolved_clients + if write_datasync_action is not None: + self.write_datasync_action = write_datasync_action + if write_datasync_reply is not None: + self.write_datasync_reply = write_datasync_reply + if write_filesync_action is not None: + self.write_filesync_action = write_filesync_action + if write_filesync_reply is not None: + self.write_filesync_reply = write_filesync_reply + if write_transfer_max_size is not None: + self.write_transfer_max_size = write_transfer_max_size + if write_transfer_multiple is not None: + self.write_transfer_multiple = write_transfer_multiple + if write_transfer_size is not None: + self.write_transfer_size = write_transfer_size + if write_unstable_action is not None: + self.write_unstable_action = write_unstable_action + if write_unstable_reply is not None: + self.write_unstable_reply = write_unstable_reply + if zone is not None: + self.zone = zone + + @property + def all_dirs(self): + """Gets the all_dirs of this NfsExportExtendedExtended. # noqa: E501 + + True if all directories under the specified paths are mountable. # noqa: E501 + + :return: The all_dirs of this NfsExportExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._all_dirs + + @all_dirs.setter + def all_dirs(self, all_dirs): + """Sets the all_dirs of this NfsExportExtendedExtended. + + True if all directories under the specified paths are mountable. # noqa: E501 + + :param all_dirs: The all_dirs of this NfsExportExtendedExtended. # noqa: E501 + :type: bool + """ + + self._all_dirs = all_dirs + + @property + def block_size(self): + """Gets the block_size of this NfsExportExtendedExtended. # noqa: E501 + + Specifies the block size returned by the NFS statfs procedure. # noqa: E501 + + :return: The block_size of this NfsExportExtendedExtended. # noqa: E501 + :rtype: int + """ + return self._block_size + + @block_size.setter + def block_size(self, block_size): + """Sets the block_size of this NfsExportExtendedExtended. + + Specifies the block size returned by the NFS statfs procedure. # noqa: E501 + + :param block_size: The block_size of this NfsExportExtendedExtended. # noqa: E501 + :type: int + """ + if block_size is not None and block_size > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `block_size`, must be a value less than or equal to `4294967295`") # noqa: E501 + if block_size is not None and block_size < 0: # noqa: E501 + raise ValueError("Invalid value for `block_size`, must be a value greater than or equal to `0`") # noqa: E501 + + self._block_size = block_size + + @property + def can_set_time(self): + """Gets the can_set_time of this NfsExportExtendedExtended. # noqa: E501 + + True if the client can set file times through the NFS set attribute request. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. # noqa: E501 + + :return: The can_set_time of this NfsExportExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._can_set_time + + @can_set_time.setter + def can_set_time(self, can_set_time): + """Sets the can_set_time of this NfsExportExtendedExtended. + + True if the client can set file times through the NFS set attribute request. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. # noqa: E501 + + :param can_set_time: The can_set_time of this NfsExportExtendedExtended. # noqa: E501 + :type: bool + """ + + self._can_set_time = can_set_time + + @property + def case_insensitive(self): + """Gets the case_insensitive of this NfsExportExtendedExtended. # noqa: E501 + + True if the case is ignored for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. # noqa: E501 + + :return: The case_insensitive of this NfsExportExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._case_insensitive + + @case_insensitive.setter + def case_insensitive(self, case_insensitive): + """Sets the case_insensitive of this NfsExportExtendedExtended. + + True if the case is ignored for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. # noqa: E501 + + :param case_insensitive: The case_insensitive of this NfsExportExtendedExtended. # noqa: E501 + :type: bool + """ + + self._case_insensitive = case_insensitive + + @property + def case_preserving(self): + """Gets the case_preserving of this NfsExportExtendedExtended. # noqa: E501 + + True if the case is preserved for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. # noqa: E501 + + :return: The case_preserving of this NfsExportExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._case_preserving + + @case_preserving.setter + def case_preserving(self, case_preserving): + """Sets the case_preserving of this NfsExportExtendedExtended. + + True if the case is preserved for file names. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. # noqa: E501 + + :param case_preserving: The case_preserving of this NfsExportExtendedExtended. # noqa: E501 + :type: bool + """ + + self._case_preserving = case_preserving + + @property + def chown_restricted(self): + """Gets the chown_restricted of this NfsExportExtendedExtended. # noqa: E501 + + True if the superuser can change file ownership. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. # noqa: E501 + + :return: The chown_restricted of this NfsExportExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._chown_restricted + + @chown_restricted.setter + def chown_restricted(self, chown_restricted): + """Sets the chown_restricted of this NfsExportExtendedExtended. + + True if the superuser can change file ownership. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. # noqa: E501 + + :param chown_restricted: The chown_restricted of this NfsExportExtendedExtended. # noqa: E501 + :type: bool + """ + + self._chown_restricted = chown_restricted + + @property + def clients(self): + """Gets the clients of this NfsExportExtendedExtended. # noqa: E501 + + Specifies the clients with root access to the export. # noqa: E501 + + :return: The clients of this NfsExportExtendedExtended. # noqa: E501 + :rtype: list[str] + """ + return self._clients + + @clients.setter + def clients(self, clients): + """Sets the clients of this NfsExportExtendedExtended. + + Specifies the clients with root access to the export. # noqa: E501 + + :param clients: The clients of this NfsExportExtendedExtended. # noqa: E501 + :type: list[str] + """ + + self._clients = clients + + @property + def commit_asynchronous(self): + """Gets the commit_asynchronous of this NfsExportExtendedExtended. # noqa: E501 + + True if NFS commit requests execute asynchronously. # noqa: E501 + + :return: The commit_asynchronous of this NfsExportExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._commit_asynchronous + + @commit_asynchronous.setter + def commit_asynchronous(self, commit_asynchronous): + """Sets the commit_asynchronous of this NfsExportExtendedExtended. + + True if NFS commit requests execute asynchronously. # noqa: E501 + + :param commit_asynchronous: The commit_asynchronous of this NfsExportExtendedExtended. # noqa: E501 + :type: bool + """ + + self._commit_asynchronous = commit_asynchronous + + @property + def conflicting_paths(self): + """Gets the conflicting_paths of this NfsExportExtendedExtended. # noqa: E501 + + Reports the paths that conflict with another export. # noqa: E501 + + :return: The conflicting_paths of this NfsExportExtendedExtended. # noqa: E501 + :rtype: list[str] + """ + return self._conflicting_paths + + @conflicting_paths.setter + def conflicting_paths(self, conflicting_paths): + """Sets the conflicting_paths of this NfsExportExtendedExtended. + + Reports the paths that conflict with another export. # noqa: E501 + + :param conflicting_paths: The conflicting_paths of this NfsExportExtendedExtended. # noqa: E501 + :type: list[str] + """ + + self._conflicting_paths = conflicting_paths + + @property + def description(self): + """Gets the description of this NfsExportExtendedExtended. # noqa: E501 + + Specifies the user-defined string that is used to identify the export. # noqa: E501 + + :return: The description of this NfsExportExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._description + + @description.setter + def description(self, description): + """Sets the description of this NfsExportExtendedExtended. + + Specifies the user-defined string that is used to identify the export. # noqa: E501 + + :param description: The description of this NfsExportExtendedExtended. # noqa: E501 + :type: str + """ + + self._description = description + + @property + def directory_transfer_size(self): + """Gets the directory_transfer_size of this NfsExportExtendedExtended. # noqa: E501 + + Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 + + :return: The directory_transfer_size of this NfsExportExtendedExtended. # noqa: E501 + :rtype: int + """ + return self._directory_transfer_size + + @directory_transfer_size.setter + def directory_transfer_size(self, directory_transfer_size): + """Sets the directory_transfer_size of this NfsExportExtendedExtended. + + Specifies the preferred size for directory read operations. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 + + :param directory_transfer_size: The directory_transfer_size of this NfsExportExtendedExtended. # noqa: E501 + :type: int + """ + if directory_transfer_size is not None and directory_transfer_size > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `directory_transfer_size`, must be a value less than or equal to `4294967295`") # noqa: E501 + if directory_transfer_size is not None and directory_transfer_size < 0: # noqa: E501 + raise ValueError("Invalid value for `directory_transfer_size`, must be a value greater than or equal to `0`") # noqa: E501 + + self._directory_transfer_size = directory_transfer_size + + @property + def encoding(self): + """Gets the encoding of this NfsExportExtendedExtended. # noqa: E501 + + Specifies the default character set encoding of the clients connecting to the export, unless otherwise specified. # noqa: E501 + + :return: The encoding of this NfsExportExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._encoding + + @encoding.setter + def encoding(self, encoding): + """Sets the encoding of this NfsExportExtendedExtended. + + Specifies the default character set encoding of the clients connecting to the export, unless otherwise specified. # noqa: E501 + + :param encoding: The encoding of this NfsExportExtendedExtended. # noqa: E501 + :type: str + """ + + self._encoding = encoding + + @property + def id(self): + """Gets the id of this NfsExportExtendedExtended. # noqa: E501 + + Specifies the system-assigned ID for the export. This ID is returned when an export is created through the POST method. # noqa: E501 + + :return: The id of this NfsExportExtendedExtended. # noqa: E501 + :rtype: int + """ + return self._id + + @id.setter + def id(self, id): + """Sets the id of this NfsExportExtendedExtended. + + Specifies the system-assigned ID for the export. This ID is returned when an export is created through the POST method. # noqa: E501 + + :param id: The id of this NfsExportExtendedExtended. # noqa: E501 + :type: int + """ + + self._id = id + + @property + def link_max(self): + """Gets the link_max of this NfsExportExtendedExtended. # noqa: E501 + + Specifies the reported maximum number of links to a file. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. # noqa: E501 + + :return: The link_max of this NfsExportExtendedExtended. # noqa: E501 + :rtype: int + """ + return self._link_max + + @link_max.setter + def link_max(self, link_max): + """Sets the link_max of this NfsExportExtendedExtended. + + Specifies the reported maximum number of links to a file. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. # noqa: E501 + + :param link_max: The link_max of this NfsExportExtendedExtended. # noqa: E501 + :type: int + """ + if link_max is not None and link_max > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `link_max`, must be a value less than or equal to `4294967295`") # noqa: E501 + if link_max is not None and link_max < 0: # noqa: E501 + raise ValueError("Invalid value for `link_max`, must be a value greater than or equal to `0`") # noqa: E501 + + self._link_max = link_max + + @property + def map_all(self): + """Gets the map_all of this NfsExportExtendedExtended. # noqa: E501 + + User and group mapping. # noqa: E501 + + :return: The map_all of this NfsExportExtendedExtended. # noqa: E501 + :rtype: NfsSettingsExportSettingsMapAll + """ + return self._map_all + + @map_all.setter + def map_all(self, map_all): + """Sets the map_all of this NfsExportExtendedExtended. + + User and group mapping. # noqa: E501 + + :param map_all: The map_all of this NfsExportExtendedExtended. # noqa: E501 + :type: NfsSettingsExportSettingsMapAll + """ + + self._map_all = map_all + + @property + def map_failure(self): + """Gets the map_failure of this NfsExportExtendedExtended. # noqa: E501 + + User and group mapping. # noqa: E501 + + :return: The map_failure of this NfsExportExtendedExtended. # noqa: E501 + :rtype: NfsSettingsExportSettingsMapAll + """ + return self._map_failure + + @map_failure.setter + def map_failure(self, map_failure): + """Sets the map_failure of this NfsExportExtendedExtended. + + User and group mapping. # noqa: E501 + + :param map_failure: The map_failure of this NfsExportExtendedExtended. # noqa: E501 + :type: NfsSettingsExportSettingsMapAll + """ + + self._map_failure = map_failure + + @property + def map_full(self): + """Gets the map_full of this NfsExportExtendedExtended. # noqa: E501 + + True if user mappings query the OneFS user database. When set to false, user mappings only query local authentication. # noqa: E501 + + :return: The map_full of this NfsExportExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._map_full + + @map_full.setter + def map_full(self, map_full): + """Sets the map_full of this NfsExportExtendedExtended. + + True if user mappings query the OneFS user database. When set to false, user mappings only query local authentication. # noqa: E501 + + :param map_full: The map_full of this NfsExportExtendedExtended. # noqa: E501 + :type: bool + """ + + self._map_full = map_full + + @property + def map_lookup_uid(self): + """Gets the map_lookup_uid of this NfsExportExtendedExtended. # noqa: E501 + + True if incoming user IDs (UIDs) are mapped to users in the OneFS user database. When set to false, incoming UIDs are applied directly to file operations. # noqa: E501 + + :return: The map_lookup_uid of this NfsExportExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._map_lookup_uid + + @map_lookup_uid.setter + def map_lookup_uid(self, map_lookup_uid): + """Sets the map_lookup_uid of this NfsExportExtendedExtended. + + True if incoming user IDs (UIDs) are mapped to users in the OneFS user database. When set to false, incoming UIDs are applied directly to file operations. # noqa: E501 + + :param map_lookup_uid: The map_lookup_uid of this NfsExportExtendedExtended. # noqa: E501 + :type: bool + """ + + self._map_lookup_uid = map_lookup_uid + + @property + def map_non_root(self): + """Gets the map_non_root of this NfsExportExtendedExtended. # noqa: E501 + + User and group mapping. # noqa: E501 + + :return: The map_non_root of this NfsExportExtendedExtended. # noqa: E501 + :rtype: NfsSettingsExportSettingsMapAll + """ + return self._map_non_root + + @map_non_root.setter + def map_non_root(self, map_non_root): + """Sets the map_non_root of this NfsExportExtendedExtended. + + User and group mapping. # noqa: E501 + + :param map_non_root: The map_non_root of this NfsExportExtendedExtended. # noqa: E501 + :type: NfsSettingsExportSettingsMapAll + """ + + self._map_non_root = map_non_root + + @property + def map_retry(self): + """Gets the map_retry of this NfsExportExtendedExtended. # noqa: E501 + + Determines whether searches for users specified in 'map_all', 'map_root' or 'map_nonroot' are retried if the search fails. # noqa: E501 + + :return: The map_retry of this NfsExportExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._map_retry + + @map_retry.setter + def map_retry(self, map_retry): + """Sets the map_retry of this NfsExportExtendedExtended. + + Determines whether searches for users specified in 'map_all', 'map_root' or 'map_nonroot' are retried if the search fails. # noqa: E501 + + :param map_retry: The map_retry of this NfsExportExtendedExtended. # noqa: E501 + :type: bool + """ + + self._map_retry = map_retry + + @property + def map_root(self): + """Gets the map_root of this NfsExportExtendedExtended. # noqa: E501 + + User and group mapping. # noqa: E501 + + :return: The map_root of this NfsExportExtendedExtended. # noqa: E501 + :rtype: NfsSettingsExportSettingsMapAll + """ + return self._map_root + + @map_root.setter + def map_root(self, map_root): + """Sets the map_root of this NfsExportExtendedExtended. + + User and group mapping. # noqa: E501 + + :param map_root: The map_root of this NfsExportExtendedExtended. # noqa: E501 + :type: NfsSettingsExportSettingsMapAll + """ + + self._map_root = map_root + + @property + def max_file_size(self): + """Gets the max_file_size of this NfsExportExtendedExtended. # noqa: E501 + + Specifies the maximum file size for any file accessed from the export. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. # noqa: E501 + + :return: The max_file_size of this NfsExportExtendedExtended. # noqa: E501 + :rtype: int + """ + return self._max_file_size + + @max_file_size.setter + def max_file_size(self, max_file_size): + """Sets the max_file_size of this NfsExportExtendedExtended. + + Specifies the maximum file size for any file accessed from the export. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. # noqa: E501 + + :param max_file_size: The max_file_size of this NfsExportExtendedExtended. # noqa: E501 + :type: int + """ + + self._max_file_size = max_file_size + + @property + def name_max_size(self): + """Gets the name_max_size of this NfsExportExtendedExtended. # noqa: E501 + + Specifies the reported maximum length of a file name. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. # noqa: E501 + + :return: The name_max_size of this NfsExportExtendedExtended. # noqa: E501 + :rtype: int + """ + return self._name_max_size + + @name_max_size.setter + def name_max_size(self, name_max_size): + """Sets the name_max_size of this NfsExportExtendedExtended. + + Specifies the reported maximum length of a file name. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. # noqa: E501 + + :param name_max_size: The name_max_size of this NfsExportExtendedExtended. # noqa: E501 + :type: int + """ + if name_max_size is not None and name_max_size > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `name_max_size`, must be a value less than or equal to `4294967295`") # noqa: E501 + if name_max_size is not None and name_max_size < 0: # noqa: E501 + raise ValueError("Invalid value for `name_max_size`, must be a value greater than or equal to `0`") # noqa: E501 + + self._name_max_size = name_max_size + + @property + def no_truncate(self): + """Gets the no_truncate of this NfsExportExtendedExtended. # noqa: E501 + + True if long file names result in an error. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. # noqa: E501 + + :return: The no_truncate of this NfsExportExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._no_truncate + + @no_truncate.setter + def no_truncate(self, no_truncate): + """Sets the no_truncate of this NfsExportExtendedExtended. + + True if long file names result in an error. This parameter does not affect server behavior, but is included to accommodate legacy client requirements. # noqa: E501 + + :param no_truncate: The no_truncate of this NfsExportExtendedExtended. # noqa: E501 + :type: bool + """ + + self._no_truncate = no_truncate + + @property + def paths(self): + """Gets the paths of this NfsExportExtendedExtended. # noqa: E501 + + Specifies the paths under /ifs that are exported. # noqa: E501 + + :return: The paths of this NfsExportExtendedExtended. # noqa: E501 + :rtype: list[str] + """ + return self._paths + + @paths.setter + def paths(self, paths): + """Sets the paths of this NfsExportExtendedExtended. + + Specifies the paths under /ifs that are exported. # noqa: E501 + + :param paths: The paths of this NfsExportExtendedExtended. # noqa: E501 + :type: list[str] + """ + + self._paths = paths + + @property + def read_only(self): + """Gets the read_only of this NfsExportExtendedExtended. # noqa: E501 + + True if the export is set to read-only. # noqa: E501 + + :return: The read_only of this NfsExportExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._read_only + + @read_only.setter + def read_only(self, read_only): + """Sets the read_only of this NfsExportExtendedExtended. + + True if the export is set to read-only. # noqa: E501 + + :param read_only: The read_only of this NfsExportExtendedExtended. # noqa: E501 + :type: bool + """ + + self._read_only = read_only + + @property + def read_only_clients(self): + """Gets the read_only_clients of this NfsExportExtendedExtended. # noqa: E501 + + Specifies the clients with read-only access to the export. # noqa: E501 + + :return: The read_only_clients of this NfsExportExtendedExtended. # noqa: E501 + :rtype: list[str] + """ + return self._read_only_clients + + @read_only_clients.setter + def read_only_clients(self, read_only_clients): + """Sets the read_only_clients of this NfsExportExtendedExtended. + + Specifies the clients with read-only access to the export. # noqa: E501 + + :param read_only_clients: The read_only_clients of this NfsExportExtendedExtended. # noqa: E501 + :type: list[str] + """ + + self._read_only_clients = read_only_clients + + @property + def read_transfer_max_size(self): + """Gets the read_transfer_max_size of this NfsExportExtendedExtended. # noqa: E501 + + Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 + + :return: The read_transfer_max_size of this NfsExportExtendedExtended. # noqa: E501 + :rtype: int + """ + return self._read_transfer_max_size + + @read_transfer_max_size.setter + def read_transfer_max_size(self, read_transfer_max_size): + """Sets the read_transfer_max_size of this NfsExportExtendedExtended. + + Specifies the maximum buffer size that clients should use on NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 + + :param read_transfer_max_size: The read_transfer_max_size of this NfsExportExtendedExtended. # noqa: E501 + :type: int + """ + if read_transfer_max_size is not None and read_transfer_max_size > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `read_transfer_max_size`, must be a value less than or equal to `4294967295`") # noqa: E501 + if read_transfer_max_size is not None and read_transfer_max_size < 0: # noqa: E501 + raise ValueError("Invalid value for `read_transfer_max_size`, must be a value greater than or equal to `0`") # noqa: E501 + + self._read_transfer_max_size = read_transfer_max_size + + @property + def read_transfer_multiple(self): + """Gets the read_transfer_multiple of this NfsExportExtendedExtended. # noqa: E501 + + Specifies the preferred multiple size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 + + :return: The read_transfer_multiple of this NfsExportExtendedExtended. # noqa: E501 + :rtype: int + """ + return self._read_transfer_multiple + + @read_transfer_multiple.setter + def read_transfer_multiple(self, read_transfer_multiple): + """Sets the read_transfer_multiple of this NfsExportExtendedExtended. + + Specifies the preferred multiple size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 + + :param read_transfer_multiple: The read_transfer_multiple of this NfsExportExtendedExtended. # noqa: E501 + :type: int + """ + if read_transfer_multiple is not None and read_transfer_multiple > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `read_transfer_multiple`, must be a value less than or equal to `4294967295`") # noqa: E501 + if read_transfer_multiple is not None and read_transfer_multiple < 0: # noqa: E501 + raise ValueError("Invalid value for `read_transfer_multiple`, must be a value greater than or equal to `0`") # noqa: E501 + + self._read_transfer_multiple = read_transfer_multiple + + @property + def read_transfer_size(self): + """Gets the read_transfer_size of this NfsExportExtendedExtended. # noqa: E501 + + Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 + + :return: The read_transfer_size of this NfsExportExtendedExtended. # noqa: E501 + :rtype: int + """ + return self._read_transfer_size + + @read_transfer_size.setter + def read_transfer_size(self, read_transfer_size): + """Sets the read_transfer_size of this NfsExportExtendedExtended. + + Specifies the preferred size for NFS read requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 + + :param read_transfer_size: The read_transfer_size of this NfsExportExtendedExtended. # noqa: E501 + :type: int + """ + if read_transfer_size is not None and read_transfer_size > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `read_transfer_size`, must be a value less than or equal to `4294967295`") # noqa: E501 + if read_transfer_size is not None and read_transfer_size < 0: # noqa: E501 + raise ValueError("Invalid value for `read_transfer_size`, must be a value greater than or equal to `0`") # noqa: E501 + + self._read_transfer_size = read_transfer_size + + @property + def read_write_clients(self): + """Gets the read_write_clients of this NfsExportExtendedExtended. # noqa: E501 + + Specifies the clients with both read and write access to the export, even when the export is set to read-only. # noqa: E501 + + :return: The read_write_clients of this NfsExportExtendedExtended. # noqa: E501 + :rtype: list[str] + """ + return self._read_write_clients + + @read_write_clients.setter + def read_write_clients(self, read_write_clients): + """Sets the read_write_clients of this NfsExportExtendedExtended. + + Specifies the clients with both read and write access to the export, even when the export is set to read-only. # noqa: E501 + + :param read_write_clients: The read_write_clients of this NfsExportExtendedExtended. # noqa: E501 + :type: list[str] + """ + + self._read_write_clients = read_write_clients + + @property + def readdirplus(self): + """Gets the readdirplus of this NfsExportExtendedExtended. # noqa: E501 + + True if 'readdirplus' requests are enabled. Enabling this property might improve network performance and is only available for NFSv3. # noqa: E501 + + :return: The readdirplus of this NfsExportExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._readdirplus + + @readdirplus.setter + def readdirplus(self, readdirplus): + """Sets the readdirplus of this NfsExportExtendedExtended. + + True if 'readdirplus' requests are enabled. Enabling this property might improve network performance and is only available for NFSv3. # noqa: E501 + + :param readdirplus: The readdirplus of this NfsExportExtendedExtended. # noqa: E501 + :type: bool + """ + + self._readdirplus = readdirplus + + @property + def readdirplus_prefetch(self): + """Gets the readdirplus_prefetch of this NfsExportExtendedExtended. # noqa: E501 + + Sets the number of directory entries that are prefetched when a 'readdirplus' request is processed. (Deprecated.) # noqa: E501 + + :return: The readdirplus_prefetch of this NfsExportExtendedExtended. # noqa: E501 + :rtype: int + """ + return self._readdirplus_prefetch + + @readdirplus_prefetch.setter + def readdirplus_prefetch(self, readdirplus_prefetch): + """Sets the readdirplus_prefetch of this NfsExportExtendedExtended. + + Sets the number of directory entries that are prefetched when a 'readdirplus' request is processed. (Deprecated.) # noqa: E501 + + :param readdirplus_prefetch: The readdirplus_prefetch of this NfsExportExtendedExtended. # noqa: E501 + :type: int + """ + if readdirplus_prefetch is not None and readdirplus_prefetch > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `readdirplus_prefetch`, must be a value less than or equal to `4294967295`") # noqa: E501 + if readdirplus_prefetch is not None and readdirplus_prefetch < 0: # noqa: E501 + raise ValueError("Invalid value for `readdirplus_prefetch`, must be a value greater than or equal to `0`") # noqa: E501 + + self._readdirplus_prefetch = readdirplus_prefetch + + @property + def return_32bit_file_ids(self): + """Gets the return_32bit_file_ids of this NfsExportExtendedExtended. # noqa: E501 + + Limits the size of file identifiers returned by NFSv3+ to 32-bit values (may require remount). # noqa: E501 + + :return: The return_32bit_file_ids of this NfsExportExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._return_32bit_file_ids + + @return_32bit_file_ids.setter + def return_32bit_file_ids(self, return_32bit_file_ids): + """Sets the return_32bit_file_ids of this NfsExportExtendedExtended. + + Limits the size of file identifiers returned by NFSv3+ to 32-bit values (may require remount). # noqa: E501 + + :param return_32bit_file_ids: The return_32bit_file_ids of this NfsExportExtendedExtended. # noqa: E501 + :type: bool + """ + + self._return_32bit_file_ids = return_32bit_file_ids + + @property + def root_clients(self): + """Gets the root_clients of this NfsExportExtendedExtended. # noqa: E501 + + Clients that have root access to the export. # noqa: E501 + + :return: The root_clients of this NfsExportExtendedExtended. # noqa: E501 + :rtype: list[str] + """ + return self._root_clients + + @root_clients.setter + def root_clients(self, root_clients): + """Sets the root_clients of this NfsExportExtendedExtended. + + Clients that have root access to the export. # noqa: E501 + + :param root_clients: The root_clients of this NfsExportExtendedExtended. # noqa: E501 + :type: list[str] + """ + + self._root_clients = root_clients + + @property + def security_flavors(self): + """Gets the security_flavors of this NfsExportExtendedExtended. # noqa: E501 + + Specifies the authentication types that are supported for this export. # noqa: E501 + + :return: The security_flavors of this NfsExportExtendedExtended. # noqa: E501 + :rtype: list[str] + """ + return self._security_flavors + + @security_flavors.setter + def security_flavors(self, security_flavors): + """Sets the security_flavors of this NfsExportExtendedExtended. + + Specifies the authentication types that are supported for this export. # noqa: E501 + + :param security_flavors: The security_flavors of this NfsExportExtendedExtended. # noqa: E501 + :type: list[str] + """ + allowed_values = ["unix", "krb5", "krb5i", "krb5p"] # noqa: E501 + if not set(security_flavors).issubset(set(allowed_values)): + raise ValueError( + "Invalid values for `security_flavors` [{0}], must be a subset of [{1}]" # noqa: E501 + .format(", ".join(map(str, set(security_flavors) - set(allowed_values))), # noqa: E501 + ", ".join(map(str, allowed_values))) + ) + + self._security_flavors = security_flavors + + @property + def setattr_asynchronous(self): + """Gets the setattr_asynchronous of this NfsExportExtendedExtended. # noqa: E501 + + True if set attribute operations execute asynchronously. # noqa: E501 + + :return: The setattr_asynchronous of this NfsExportExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._setattr_asynchronous + + @setattr_asynchronous.setter + def setattr_asynchronous(self, setattr_asynchronous): + """Sets the setattr_asynchronous of this NfsExportExtendedExtended. + + True if set attribute operations execute asynchronously. # noqa: E501 + + :param setattr_asynchronous: The setattr_asynchronous of this NfsExportExtendedExtended. # noqa: E501 + :type: bool + """ + + self._setattr_asynchronous = setattr_asynchronous + + @property + def snapshot(self): + """Gets the snapshot of this NfsExportExtendedExtended. # noqa: E501 + + Specifies the snapshot for all mounts. # noqa: E501 + + :return: The snapshot of this NfsExportExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._snapshot + + @snapshot.setter + def snapshot(self, snapshot): + """Sets the snapshot of this NfsExportExtendedExtended. + + Specifies the snapshot for all mounts. # noqa: E501 + + :param snapshot: The snapshot of this NfsExportExtendedExtended. # noqa: E501 + :type: str + """ + + self._snapshot = snapshot + + @property + def symlinks(self): + """Gets the symlinks of this NfsExportExtendedExtended. # noqa: E501 + + True if symlinks are supported. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 + + :return: The symlinks of this NfsExportExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._symlinks + + @symlinks.setter + def symlinks(self, symlinks): + """Sets the symlinks of this NfsExportExtendedExtended. + + True if symlinks are supported. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 + + :param symlinks: The symlinks of this NfsExportExtendedExtended. # noqa: E501 + :type: bool + """ + + self._symlinks = symlinks + + @property + def time_delta(self): + """Gets the time_delta of this NfsExportExtendedExtended. # noqa: E501 + + Specifies the resolution of all time values that are returned to the clients # noqa: E501 + + :return: The time_delta of this NfsExportExtendedExtended. # noqa: E501 + :rtype: float + """ + return self._time_delta + + @time_delta.setter + def time_delta(self, time_delta): + """Sets the time_delta of this NfsExportExtendedExtended. + + Specifies the resolution of all time values that are returned to the clients # noqa: E501 + + :param time_delta: The time_delta of this NfsExportExtendedExtended. # noqa: E501 + :type: float + """ + + self._time_delta = time_delta + + @property + def unresolved_clients(self): + """Gets the unresolved_clients of this NfsExportExtendedExtended. # noqa: E501 + + Reports clients that cannot be resolved. # noqa: E501 + + :return: The unresolved_clients of this NfsExportExtendedExtended. # noqa: E501 + :rtype: list[str] + """ + return self._unresolved_clients + + @unresolved_clients.setter + def unresolved_clients(self, unresolved_clients): + """Sets the unresolved_clients of this NfsExportExtendedExtended. + + Reports clients that cannot be resolved. # noqa: E501 + + :param unresolved_clients: The unresolved_clients of this NfsExportExtendedExtended. # noqa: E501 + :type: list[str] + """ + + self._unresolved_clients = unresolved_clients + + @property + def write_datasync_action(self): + """Gets the write_datasync_action of this NfsExportExtendedExtended. # noqa: E501 + + Specifies the synchronization type. # noqa: E501 + + :return: The write_datasync_action of this NfsExportExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._write_datasync_action + + @write_datasync_action.setter + def write_datasync_action(self, write_datasync_action): + """Sets the write_datasync_action of this NfsExportExtendedExtended. + + Specifies the synchronization type. # noqa: E501 + + :param write_datasync_action: The write_datasync_action of this NfsExportExtendedExtended. # noqa: E501 + :type: str + """ + + self._write_datasync_action = write_datasync_action + + @property + def write_datasync_reply(self): + """Gets the write_datasync_reply of this NfsExportExtendedExtended. # noqa: E501 + + Specifies the synchronization type. # noqa: E501 + + :return: The write_datasync_reply of this NfsExportExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._write_datasync_reply + + @write_datasync_reply.setter + def write_datasync_reply(self, write_datasync_reply): + """Sets the write_datasync_reply of this NfsExportExtendedExtended. + + Specifies the synchronization type. # noqa: E501 + + :param write_datasync_reply: The write_datasync_reply of this NfsExportExtendedExtended. # noqa: E501 + :type: str + """ + + self._write_datasync_reply = write_datasync_reply + + @property + def write_filesync_action(self): + """Gets the write_filesync_action of this NfsExportExtendedExtended. # noqa: E501 + + Specifies the synchronization type. # noqa: E501 + + :return: The write_filesync_action of this NfsExportExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._write_filesync_action + + @write_filesync_action.setter + def write_filesync_action(self, write_filesync_action): + """Sets the write_filesync_action of this NfsExportExtendedExtended. + + Specifies the synchronization type. # noqa: E501 + + :param write_filesync_action: The write_filesync_action of this NfsExportExtendedExtended. # noqa: E501 + :type: str + """ + + self._write_filesync_action = write_filesync_action + + @property + def write_filesync_reply(self): + """Gets the write_filesync_reply of this NfsExportExtendedExtended. # noqa: E501 + + Specifies the synchronization type. # noqa: E501 + + :return: The write_filesync_reply of this NfsExportExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._write_filesync_reply + + @write_filesync_reply.setter + def write_filesync_reply(self, write_filesync_reply): + """Sets the write_filesync_reply of this NfsExportExtendedExtended. + + Specifies the synchronization type. # noqa: E501 + + :param write_filesync_reply: The write_filesync_reply of this NfsExportExtendedExtended. # noqa: E501 + :type: str + """ + + self._write_filesync_reply = write_filesync_reply + + @property + def write_transfer_max_size(self): + """Gets the write_transfer_max_size of this NfsExportExtendedExtended. # noqa: E501 + + Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 + + :return: The write_transfer_max_size of this NfsExportExtendedExtended. # noqa: E501 + :rtype: int + """ + return self._write_transfer_max_size + + @write_transfer_max_size.setter + def write_transfer_max_size(self, write_transfer_max_size): + """Sets the write_transfer_max_size of this NfsExportExtendedExtended. + + Specifies the maximum buffer size that clients should use on NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 + + :param write_transfer_max_size: The write_transfer_max_size of this NfsExportExtendedExtended. # noqa: E501 + :type: int + """ + if write_transfer_max_size is not None and write_transfer_max_size > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `write_transfer_max_size`, must be a value less than or equal to `4294967295`") # noqa: E501 + if write_transfer_max_size is not None and write_transfer_max_size < 0: # noqa: E501 + raise ValueError("Invalid value for `write_transfer_max_size`, must be a value greater than or equal to `0`") # noqa: E501 + + self._write_transfer_max_size = write_transfer_max_size + + @property + def write_transfer_multiple(self): + """Gets the write_transfer_multiple of this NfsExportExtendedExtended. # noqa: E501 + + Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 + + :return: The write_transfer_multiple of this NfsExportExtendedExtended. # noqa: E501 + :rtype: int + """ + return self._write_transfer_multiple + + @write_transfer_multiple.setter + def write_transfer_multiple(self, write_transfer_multiple): + """Sets the write_transfer_multiple of this NfsExportExtendedExtended. + + Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 + + :param write_transfer_multiple: The write_transfer_multiple of this NfsExportExtendedExtended. # noqa: E501 + :type: int + """ + if write_transfer_multiple is not None and write_transfer_multiple > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `write_transfer_multiple`, must be a value less than or equal to `4294967295`") # noqa: E501 + if write_transfer_multiple is not None and write_transfer_multiple < 0: # noqa: E501 + raise ValueError("Invalid value for `write_transfer_multiple`, must be a value greater than or equal to `0`") # noqa: E501 + + self._write_transfer_multiple = write_transfer_multiple + + @property + def write_transfer_size(self): + """Gets the write_transfer_size of this NfsExportExtendedExtended. # noqa: E501 + + Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 + + :return: The write_transfer_size of this NfsExportExtendedExtended. # noqa: E501 + :rtype: int + """ + return self._write_transfer_size + + @write_transfer_size.setter + def write_transfer_size(self, write_transfer_size): + """Sets the write_transfer_size of this NfsExportExtendedExtended. + + Specifies the preferred multiple size for NFS write requests. This value is used to advise the client of optimal settings for the server, but is not enforced. # noqa: E501 + + :param write_transfer_size: The write_transfer_size of this NfsExportExtendedExtended. # noqa: E501 + :type: int + """ + if write_transfer_size is not None and write_transfer_size > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `write_transfer_size`, must be a value less than or equal to `4294967295`") # noqa: E501 + if write_transfer_size is not None and write_transfer_size < 0: # noqa: E501 + raise ValueError("Invalid value for `write_transfer_size`, must be a value greater than or equal to `0`") # noqa: E501 + + self._write_transfer_size = write_transfer_size + + @property + def write_unstable_action(self): + """Gets the write_unstable_action of this NfsExportExtendedExtended. # noqa: E501 + + Specifies the synchronization type. # noqa: E501 + + :return: The write_unstable_action of this NfsExportExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._write_unstable_action + + @write_unstable_action.setter + def write_unstable_action(self, write_unstable_action): + """Sets the write_unstable_action of this NfsExportExtendedExtended. + + Specifies the synchronization type. # noqa: E501 + + :param write_unstable_action: The write_unstable_action of this NfsExportExtendedExtended. # noqa: E501 + :type: str + """ + + self._write_unstable_action = write_unstable_action + + @property + def write_unstable_reply(self): + """Gets the write_unstable_reply of this NfsExportExtendedExtended. # noqa: E501 + + Specifies the synchronization type. # noqa: E501 + + :return: The write_unstable_reply of this NfsExportExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._write_unstable_reply + + @write_unstable_reply.setter + def write_unstable_reply(self, write_unstable_reply): + """Sets the write_unstable_reply of this NfsExportExtendedExtended. + + Specifies the synchronization type. # noqa: E501 + + :param write_unstable_reply: The write_unstable_reply of this NfsExportExtendedExtended. # noqa: E501 + :type: str + """ + + self._write_unstable_reply = write_unstable_reply + + @property + def zone(self): + """Gets the zone of this NfsExportExtendedExtended. # noqa: E501 + + Specifies the zone in which the export is valid. # noqa: E501 + + :return: The zone of this NfsExportExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._zone + + @zone.setter + def zone(self, zone): + """Sets the zone of this NfsExportExtendedExtended. + + Specifies the zone in which the export is valid. # noqa: E501 + + :param zone: The zone of this NfsExportExtendedExtended. # noqa: E501 + :type: str + """ + + self._zone = zone + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(NfsExportExtendedExtended, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, NfsExportExtendedExtended): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + """Returns true if both objects are not equal""" + return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_export_map_all.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_export_map_all.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_export_map_all.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_export_map_all.py index 12c5225f9..9320b7c67 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_export_map_all.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_export_map_all.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_export_map_all_secondary_groups.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_export_map_all_secondary_groups.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_export_map_all_secondary_groups.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_export_map_all_secondary_groups.py index 8e9b03f18..e64d29945 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_export_map_all_secondary_groups.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_export_map_all_secondary_groups.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_exports.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_exports.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_exports.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_exports.py index b0168ad24..f85961eb3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_exports.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_exports.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_exports_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_exports_extended.py similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_exports_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_exports_extended.py index 1264eca73..42d8cf706 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_exports_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_exports_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -32,7 +32,7 @@ class NfsExportsExtended(object): """ swagger_types = { 'digest': 'str', - 'exports': 'list[NfsExportExtended]', + 'exports': 'list[NfsExportExtendedExtended]', 'resume': 'str', 'total': 'int' } @@ -91,7 +91,7 @@ def exports(self): :return: The exports of this NfsExportsExtended. # noqa: E501 - :rtype: list[NfsExportExtended] + :rtype: list[NfsExportExtendedExtended] """ return self._exports @@ -101,7 +101,7 @@ def exports(self, exports): :param exports: The exports of this NfsExportsExtended. # noqa: E501 - :type: list[NfsExportExtended] + :type: list[NfsExportExtendedExtended] """ self._exports = exports diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_exports_summary.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_exports_summary.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_exports_summary.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_exports_summary.py index 73d45da0f..a619d0af5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_exports_summary.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_exports_summary.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_exports_summary_summary.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_exports_summary_summary.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_exports_summary_summary.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_exports_summary_summary.py index ac600e8db..21fa80f55 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_exports_summary_summary.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_exports_summary_summary.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_log_level.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_log_level.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_log_level.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_log_level.py index 114188d4f..28c156cfd 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_log_level.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_log_level.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_netgroup.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_netgroup.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_netgroup.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_netgroup.py index 4da37dc7f..6e58e7d99 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_netgroup.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_netgroup.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_netgroup_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_netgroup_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_netgroup_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_netgroup_settings.py index 66551561d..f558662b6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_netgroup_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_netgroup_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_nlm_locks.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_nlm_locks.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_nlm_locks.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_nlm_locks.py index 52a72efad..92a99e9a3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_nlm_locks.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_nlm_locks.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_nlm_locks_lock.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_nlm_locks_lock.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_nlm_locks_lock.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_nlm_locks_lock.py index 80acc08c5..269646e60 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_nlm_locks_lock.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_nlm_locks_lock.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_nlm_sessions.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_nlm_sessions.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_nlm_sessions.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_nlm_sessions.py index 9008d4032..048ac32c9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_nlm_sessions.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_nlm_sessions.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_nlm_sessions_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_nlm_sessions_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_nlm_sessions_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_nlm_sessions_extended.py index be17ede87..5168742f9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_nlm_sessions_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_nlm_sessions_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_nlm_sessions_session.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_nlm_sessions_session.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_nlm_sessions_session.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_nlm_sessions_session.py index 608896207..9c85acc15 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_nlm_sessions_session.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_nlm_sessions_session.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_nlm_waiters.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_nlm_waiters.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_nlm_waiters.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_nlm_waiters.py index 69807b1ea..78f9943b1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_nlm_waiters.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_nlm_waiters.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_settings_export.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_settings_export.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_settings_export.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_settings_export.py index d2e1aa331..35647ff82 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_settings_export.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_settings_export.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_settings_export_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_settings_export_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_settings_export_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_settings_export_settings.py index 71098b83d..41b0f5dee 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_settings_export_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_settings_export_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_settings_export_settings_map_all.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_settings_export_settings_map_all.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_settings_export_settings_map_all.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_settings_export_settings_map_all.py index 69701b2f5..2f8eb6945 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_settings_export_settings_map_all.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_settings_export_settings_map_all.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_settings_global.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_settings_global.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_settings_global.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_settings_global.py index 25e3fa49c..ace4b2e86 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_settings_global.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_settings_global.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_settings_global_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_settings_global_settings.py similarity index 90% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_settings_global_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_settings_global_settings.py index d5e608efd..bc7c677ac 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_settings_global_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_settings_global_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,8 +31,8 @@ class NfsSettingsGlobalSettings(object): and the value is json key in definition. """ swagger_types = { - 'nfs_rdma_enabled': 'bool', 'nfsv3_enabled': 'bool', + 'nfsv3_rdma_enabled': 'bool', 'nfsv40_enabled': 'bool', 'nfsv41_enabled': 'bool', 'nfsv42_enabled': 'bool', @@ -44,8 +44,8 @@ class NfsSettingsGlobalSettings(object): } attribute_map = { - 'nfs_rdma_enabled': 'nfs_rdma_enabled', 'nfsv3_enabled': 'nfsv3_enabled', + 'nfsv3_rdma_enabled': 'nfsv3_rdma_enabled', 'nfsv40_enabled': 'nfsv40_enabled', 'nfsv41_enabled': 'nfsv41_enabled', 'nfsv42_enabled': 'nfsv42_enabled', @@ -56,11 +56,11 @@ class NfsSettingsGlobalSettings(object): 'service': 'service' } - def __init__(self, nfs_rdma_enabled=None, nfsv3_enabled=None, nfsv40_enabled=None, nfsv41_enabled=None, nfsv42_enabled=None, nfsv4_enabled=None, rpc_maxthreads=None, rpc_minthreads=None, rquota_enabled=None, service=None): # noqa: E501 + def __init__(self, nfsv3_enabled=None, nfsv3_rdma_enabled=None, nfsv40_enabled=None, nfsv41_enabled=None, nfsv42_enabled=None, nfsv4_enabled=None, rpc_maxthreads=None, rpc_minthreads=None, rquota_enabled=None, service=None): # noqa: E501 """NfsSettingsGlobalSettings - a model defined in Swagger""" # noqa: E501 - self._nfs_rdma_enabled = None self._nfsv3_enabled = None + self._nfsv3_rdma_enabled = None self._nfsv40_enabled = None self._nfsv41_enabled = None self._nfsv42_enabled = None @@ -71,10 +71,10 @@ def __init__(self, nfs_rdma_enabled=None, nfsv3_enabled=None, nfsv40_enabled=Non self._service = None self.discriminator = None - if nfs_rdma_enabled is not None: - self.nfs_rdma_enabled = nfs_rdma_enabled if nfsv3_enabled is not None: self.nfsv3_enabled = nfsv3_enabled + if nfsv3_rdma_enabled is not None: + self.nfsv3_rdma_enabled = nfsv3_rdma_enabled if nfsv40_enabled is not None: self.nfsv40_enabled = nfsv40_enabled if nfsv41_enabled is not None: @@ -93,50 +93,50 @@ def __init__(self, nfs_rdma_enabled=None, nfsv3_enabled=None, nfsv40_enabled=Non self.service = service @property - def nfs_rdma_enabled(self): - """Gets the nfs_rdma_enabled of this NfsSettingsGlobalSettings. # noqa: E501 + def nfsv3_enabled(self): + """Gets the nfsv3_enabled of this NfsSettingsGlobalSettings. # noqa: E501 - True if the RDMA is enabled for NFS # noqa: E501 + True if NFSv3 is enabled. # noqa: E501 - :return: The nfs_rdma_enabled of this NfsSettingsGlobalSettings. # noqa: E501 + :return: The nfsv3_enabled of this NfsSettingsGlobalSettings. # noqa: E501 :rtype: bool """ - return self._nfs_rdma_enabled + return self._nfsv3_enabled - @nfs_rdma_enabled.setter - def nfs_rdma_enabled(self, nfs_rdma_enabled): - """Sets the nfs_rdma_enabled of this NfsSettingsGlobalSettings. + @nfsv3_enabled.setter + def nfsv3_enabled(self, nfsv3_enabled): + """Sets the nfsv3_enabled of this NfsSettingsGlobalSettings. - True if the RDMA is enabled for NFS # noqa: E501 + True if NFSv3 is enabled. # noqa: E501 - :param nfs_rdma_enabled: The nfs_rdma_enabled of this NfsSettingsGlobalSettings. # noqa: E501 + :param nfsv3_enabled: The nfsv3_enabled of this NfsSettingsGlobalSettings. # noqa: E501 :type: bool """ - self._nfs_rdma_enabled = nfs_rdma_enabled + self._nfsv3_enabled = nfsv3_enabled @property - def nfsv3_enabled(self): - """Gets the nfsv3_enabled of this NfsSettingsGlobalSettings. # noqa: E501 + def nfsv3_rdma_enabled(self): + """Gets the nfsv3_rdma_enabled of this NfsSettingsGlobalSettings. # noqa: E501 - True if NFSv3 is enabled. # noqa: E501 + True if the RDMA is enabled for NFSv3. # noqa: E501 - :return: The nfsv3_enabled of this NfsSettingsGlobalSettings. # noqa: E501 + :return: The nfsv3_rdma_enabled of this NfsSettingsGlobalSettings. # noqa: E501 :rtype: bool """ - return self._nfsv3_enabled + return self._nfsv3_rdma_enabled - @nfsv3_enabled.setter - def nfsv3_enabled(self, nfsv3_enabled): - """Sets the nfsv3_enabled of this NfsSettingsGlobalSettings. + @nfsv3_rdma_enabled.setter + def nfsv3_rdma_enabled(self, nfsv3_rdma_enabled): + """Sets the nfsv3_rdma_enabled of this NfsSettingsGlobalSettings. - True if NFSv3 is enabled. # noqa: E501 + True if the RDMA is enabled for NFSv3. # noqa: E501 - :param nfsv3_enabled: The nfsv3_enabled of this NfsSettingsGlobalSettings. # noqa: E501 + :param nfsv3_rdma_enabled: The nfsv3_rdma_enabled of this NfsSettingsGlobalSettings. # noqa: E501 :type: bool """ - self._nfsv3_enabled = nfsv3_enabled + self._nfsv3_rdma_enabled = nfsv3_rdma_enabled @property def nfsv40_enabled(self): diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_settings_zone.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_settings_zone.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_settings_zone.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_settings_zone.py index 2fc0cefa5..16dc636f1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_settings_zone.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_settings_zone.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_settings_zone_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_settings_zone_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nfs_settings_zone_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nfs_settings_zone_settings.py index 91c481836..6eaaa6106 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nfs_settings_zone_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nfs_settings_zone_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig.py index bbe7f5c96..512c30fe0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_extended.py index c3a4fa6b2..7c24dcfb8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_node.py index 1839e6fbe..257e54f3a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_node_alert.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_node_alert.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_node_alert.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_node_alert.py index 1984b81c9..986e3cd25 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_node_alert.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_node_alert.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_node_allow.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_node_allow.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_node_allow.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_node_allow.py index 1993855ce..b98de281a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_node_allow.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_node_allow.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_node_automatic_replacement_recognition.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_node_automatic_replacement_recognition.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_node_automatic_replacement_recognition.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_node_automatic_replacement_recognition.py index f5a0d1ddf..60a6617b8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_node_automatic_replacement_recognition.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_node_automatic_replacement_recognition.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_node_instant_secure_erase.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_node_instant_secure_erase.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_node_instant_secure_erase.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_node_instant_secure_erase.py index f51a3bd5e..cba461e3f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_node_instant_secure_erase.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_node_instant_secure_erase.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_node_log.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_node_log.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_node_log.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_node_log.py index 90750eb74..e02e20e34 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_node_log.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_node_log.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_node_reboot.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_node_reboot.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_node_reboot.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_node_reboot.py index f6e9d97a7..1ae7ff68f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_node_reboot.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_node_reboot.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_node_spin_wait.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_node_spin_wait.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_node_spin_wait.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_node_spin_wait.py index 97346b083..3cd1305e3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_node_spin_wait.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_node_spin_wait.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_node_stall.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_node_stall.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_node_stall.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_node_stall.py index 44bb2a4ee..3291809bf 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_node_stall.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_node_stall.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_stall.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_stall.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_stall.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_stall.py index 1c61e6f09..e62a2821c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_driveconfig_stall.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_driveconfig_stall.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_drives.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_drives.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_drives.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_drives.py index fa7b662c9..89a375fc8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_drives.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_drives.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_drives_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_drives_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_drives_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_drives_node.py index b3127be01..b60782a03 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_drives_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_drives_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_drives_node_drive.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_drives_node_drive.py similarity index 95% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_drives_node_drive.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_drives_node_drive.py index 1f4a81e47..d46d420ee 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_drives_node_drive.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_drives_node_drive.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -51,7 +51,6 @@ class NodeDrivesNodeDrive(object): 'present': 'bool', 'purpose': 'str', 'purpose_description': 'str', - 'sed_compliance_level': 'str', 'serial': 'str', 'ui_state': 'str', 'wwn': 'str', @@ -80,7 +79,6 @@ class NodeDrivesNodeDrive(object): 'present': 'present', 'purpose': 'purpose', 'purpose_description': 'purpose_description', - 'sed_compliance_level': 'sed_compliance_level', 'serial': 'serial', 'ui_state': 'ui_state', 'wwn': 'wwn', @@ -88,7 +86,7 @@ class NodeDrivesNodeDrive(object): 'y_loc': 'y_loc' } - def __init__(self, bay_group=None, baynum=None, blocks=None, chassis=None, devname=None, firmware=None, format_progress=None, handle=None, interface_type=None, lnum=None, locnstr=None, logical_block_length=None, media_class=None, media_type=None, model=None, pending_actions=None, physical_block_length=None, present=None, purpose=None, purpose_description=None, sed_compliance_level=None, serial=None, ui_state=None, wwn=None, x_loc=None, y_loc=None): # noqa: E501 + def __init__(self, bay_group=None, baynum=None, blocks=None, chassis=None, devname=None, firmware=None, format_progress=None, handle=None, interface_type=None, lnum=None, locnstr=None, logical_block_length=None, media_class=None, media_type=None, model=None, pending_actions=None, physical_block_length=None, present=None, purpose=None, purpose_description=None, serial=None, ui_state=None, wwn=None, x_loc=None, y_loc=None): # noqa: E501 """NodeDrivesNodeDrive - a model defined in Swagger""" # noqa: E501 self._bay_group = None @@ -111,7 +109,6 @@ def __init__(self, bay_group=None, baynum=None, blocks=None, chassis=None, devna self._present = None self._purpose = None self._purpose_description = None - self._sed_compliance_level = None self._serial = None self._ui_state = None self._wwn = None @@ -159,8 +156,6 @@ def __init__(self, bay_group=None, baynum=None, blocks=None, chassis=None, devna self.purpose = purpose if purpose_description is not None: self.purpose_description = purpose_description - if sed_compliance_level is not None: - self.sed_compliance_level = sed_compliance_level if serial is not None: self.serial = serial if ui_state is not None: @@ -700,33 +695,6 @@ def purpose_description(self, purpose_description): self._purpose_description = purpose_description - @property - def sed_compliance_level(self): - """Gets the sed_compliance_level of this NodeDrivesNodeDrive. # noqa: E501 - - String representation of this drive's SED compliance level. # noqa: E501 - - :return: The sed_compliance_level of this NodeDrivesNodeDrive. # noqa: E501 - :rtype: str - """ - return self._sed_compliance_level - - @sed_compliance_level.setter - def sed_compliance_level(self, sed_compliance_level): - """Sets the sed_compliance_level of this NodeDrivesNodeDrive. - - String representation of this drive's SED compliance level. # noqa: E501 - - :param sed_compliance_level: The sed_compliance_level of this NodeDrivesNodeDrive. # noqa: E501 - :type: str - """ - if sed_compliance_level is not None and len(sed_compliance_level) > 255: - raise ValueError("Invalid value for `sed_compliance_level`, length must be less than or equal to `255`") # noqa: E501 - if sed_compliance_level is not None and len(sed_compliance_level) < 0: - raise ValueError("Invalid value for `sed_compliance_level`, length must be greater than or equal to `0`") # noqa: E501 - - self._sed_compliance_level = sed_compliance_level - @property def serial(self): """Gets the serial of this NodeDrivesNodeDrive. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_drives_node_drive_firmware.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_drives_node_drive_firmware.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_drives_node_drive_firmware.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_drives_node_drive_firmware.py index 19243f148..482aac88e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_drives_node_drive_firmware.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_drives_node_drive_firmware.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_drives_purposelist.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_drives_purposelist.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_drives_purposelist.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_drives_purposelist.py index 8454fd37d..4d5ee72e3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_drives_purposelist.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_drives_purposelist.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_drives_purposelist_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_drives_purposelist_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_drives_purposelist_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_drives_purposelist_node.py index 9d2375b68..bd71ba1cc 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_drives_purposelist_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_drives_purposelist_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_drives_purposelist_node_purpose.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_drives_purposelist_node_purpose.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_drives_purposelist_node_purpose.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_drives_purposelist_node_purpose.py index db90f1518..05a12eb0b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_drives_purposelist_node_purpose.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_drives_purposelist_node_purpose.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_hardware.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_hardware.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_hardware.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_hardware.py index 1feaf171d..0c9d7afa8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_hardware.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_hardware.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_hardware_fast.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_hardware_fast.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_hardware_fast.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_hardware_fast.py index dc04df241..9deaa4d31 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_hardware_fast.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_hardware_fast.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_hardware_fast_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_hardware_fast_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_hardware_fast_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_hardware_fast_node.py index ba9394a23..65b9246e3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_hardware_fast_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_hardware_fast_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_hardware_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_hardware_node.py similarity index 89% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_hardware_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_hardware_node.py index ac391eae9..d35c35531 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_hardware_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_hardware_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -51,7 +51,6 @@ class NodeHardwareNode(object): 'model_code': 'str', 'motherboard': 'str', 'net_interfaces': 'str', - 'node_id': 'str', 'node_slot_id': 'int', 'nvram': 'str', 'peer_serial_number': 'str', @@ -60,16 +59,12 @@ class NodeHardwareNode(object): 'processor': 'str', 'product': 'str', 'ram': 'int', - 'region': 'str', - 'resource_group': 'str', 'serial_number': 'str', 'series': 'str', 'sled_drive_count': 'int', 'storage_class': 'str', - 'subscription_id': 'str', 'tier': 'int', - 'top_level_assembly_serial_number': 'str', - 'volume_type': 'str' + 'top_level_assembly_serial_number': 'str' } attribute_map = { @@ -93,7 +88,6 @@ class NodeHardwareNode(object): 'model_code': 'model_code', 'motherboard': 'motherboard', 'net_interfaces': 'net_interfaces', - 'node_id': 'node_id', 'node_slot_id': 'node_slot_id', 'nvram': 'nvram', 'peer_serial_number': 'peer_serial_number', @@ -102,19 +96,15 @@ class NodeHardwareNode(object): 'processor': 'processor', 'product': 'product', 'ram': 'ram', - 'region': 'region', - 'resource_group': 'resource_group', 'serial_number': 'serial_number', 'series': 'series', 'sled_drive_count': 'sled_drive_count', 'storage_class': 'storage_class', - 'subscription_id': 'subscription_id', 'tier': 'tier', - 'top_level_assembly_serial_number': 'top_level_assembly_serial_number', - 'volume_type': 'volume_type' + 'top_level_assembly_serial_number': 'top_level_assembly_serial_number' } - def __init__(self, chassis=None, chassis_code=None, chassis_depth=None, _class=None, compute_type=None, configuration_id=None, cpu=None, disk_controller=None, disk_expander=None, family_code=None, generation_code=None, hwgen=None, id=None, infiniband=None, lcd_version=None, lnn=None, model=None, model_code=None, motherboard=None, net_interfaces=None, node_id=None, node_slot_id=None, nvram=None, peer_serial_number=None, performance_code=None, powersupplies=None, processor=None, product=None, ram=None, region=None, resource_group=None, serial_number=None, series=None, sled_drive_count=None, storage_class=None, subscription_id=None, tier=None, top_level_assembly_serial_number=None, volume_type=None): # noqa: E501 + def __init__(self, chassis=None, chassis_code=None, chassis_depth=None, _class=None, compute_type=None, configuration_id=None, cpu=None, disk_controller=None, disk_expander=None, family_code=None, generation_code=None, hwgen=None, id=None, infiniband=None, lcd_version=None, lnn=None, model=None, model_code=None, motherboard=None, net_interfaces=None, node_slot_id=None, nvram=None, peer_serial_number=None, performance_code=None, powersupplies=None, processor=None, product=None, ram=None, serial_number=None, series=None, sled_drive_count=None, storage_class=None, tier=None, top_level_assembly_serial_number=None): # noqa: E501 """NodeHardwareNode - a model defined in Swagger""" # noqa: E501 self._chassis = None @@ -137,7 +127,6 @@ def __init__(self, chassis=None, chassis_code=None, chassis_depth=None, _class=N self._model_code = None self._motherboard = None self._net_interfaces = None - self._node_id = None self._node_slot_id = None self._nvram = None self._peer_serial_number = None @@ -146,16 +135,12 @@ def __init__(self, chassis=None, chassis_code=None, chassis_depth=None, _class=N self._processor = None self._product = None self._ram = None - self._region = None - self._resource_group = None self._serial_number = None self._series = None self._sled_drive_count = None self._storage_class = None - self._subscription_id = None self._tier = None self._top_level_assembly_serial_number = None - self._volume_type = None self.discriminator = None if chassis is not None: @@ -198,7 +183,6 @@ def __init__(self, chassis=None, chassis_code=None, chassis_depth=None, _class=N self.motherboard = motherboard if net_interfaces is not None: self.net_interfaces = net_interfaces - self.node_id = node_id if node_slot_id is not None: self.node_slot_id = node_slot_id if nvram is not None: @@ -215,8 +199,6 @@ def __init__(self, chassis=None, chassis_code=None, chassis_depth=None, _class=N self.product = product if ram is not None: self.ram = ram - self.region = region - self.resource_group = resource_group if serial_number is not None: self.serial_number = serial_number if series is not None: @@ -225,11 +207,9 @@ def __init__(self, chassis=None, chassis_code=None, chassis_depth=None, _class=N self.sled_drive_count = sled_drive_count if storage_class is not None: self.storage_class = storage_class - self.subscription_id = subscription_id if tier is not None: self.tier = tier self.top_level_assembly_serial_number = top_level_assembly_serial_number - self.volume_type = volume_type @property def chassis(self): @@ -667,7 +647,7 @@ def lnn(self, lnn): def model(self): """Gets the model of this NodeHardwareNode. # noqa: E501 - PowerScale node model identifier string (X410, Infinity-H500, etc.). # noqa: E501 + PowerScale node model identifier string (S200, X410, Infinity-H500, etc.). # noqa: E501 :return: The model of this NodeHardwareNode. # noqa: E501 :rtype: str @@ -678,7 +658,7 @@ def model(self): def model(self, model): """Sets the model of this NodeHardwareNode. - PowerScale node model identifier string (X410, Infinity-H500, etc.). # noqa: E501 + PowerScale node model identifier string (S200, X410, Infinity-H500, etc.). # noqa: E501 :param model: The model of this NodeHardwareNode. # noqa: E501 :type: str @@ -694,7 +674,7 @@ def model(self, model): def model_code(self): """Gets the model_code of this NodeHardwareNode. # noqa: E501 - PowerScale node model code string (X410, H500, etc.). # noqa: E501 + PowerScale node model code string (S200, X410, H500, etc.). # noqa: E501 :return: The model_code of this NodeHardwareNode. # noqa: E501 :rtype: str @@ -705,7 +685,7 @@ def model_code(self): def model_code(self, model_code): """Sets the model_code of this NodeHardwareNode. - PowerScale node model code string (X410, H500, etc.). # noqa: E501 + PowerScale node model code string (S200, X410, H500, etc.). # noqa: E501 :param model_code: The model_code of this NodeHardwareNode. # noqa: E501 :type: str @@ -771,31 +751,6 @@ def net_interfaces(self, net_interfaces): self._net_interfaces = net_interfaces - @property - def node_id(self): - """Gets the node_id of this NodeHardwareNode. # noqa: E501 - - Node id of the queried node # noqa: E501 - - :return: The node_id of this NodeHardwareNode. # noqa: E501 - :rtype: str - """ - return self._node_id - - @node_id.setter - def node_id(self, node_id): - """Sets the node_id of this NodeHardwareNode. - - Node id of the queried node # noqa: E501 - - :param node_id: The node_id of this NodeHardwareNode. # noqa: E501 - :type: str - """ - if node_id is None: - raise ValueError("Invalid value for `node_id`, must not be `None`") # noqa: E501 - - self._node_id = node_id - @property def node_slot_id(self): """Gets the node_slot_id of this NodeHardwareNode. # noqa: E501 @@ -1004,56 +959,6 @@ def ram(self, ram): self._ram = ram - @property - def region(self): - """Gets the region of this NodeHardwareNode. # noqa: E501 - - Region of the queried node # noqa: E501 - - :return: The region of this NodeHardwareNode. # noqa: E501 - :rtype: str - """ - return self._region - - @region.setter - def region(self, region): - """Sets the region of this NodeHardwareNode. - - Region of the queried node # noqa: E501 - - :param region: The region of this NodeHardwareNode. # noqa: E501 - :type: str - """ - if region is None: - raise ValueError("Invalid value for `region`, must not be `None`") # noqa: E501 - - self._region = region - - @property - def resource_group(self): - """Gets the resource_group of this NodeHardwareNode. # noqa: E501 - - Resource group of the queried node # noqa: E501 - - :return: The resource_group of this NodeHardwareNode. # noqa: E501 - :rtype: str - """ - return self._resource_group - - @resource_group.setter - def resource_group(self, resource_group): - """Sets the resource_group of this NodeHardwareNode. - - Resource group of the queried node # noqa: E501 - - :param resource_group: The resource_group of this NodeHardwareNode. # noqa: E501 - :type: str - """ - if resource_group is None: - raise ValueError("Invalid value for `resource_group`, must not be `None`") # noqa: E501 - - self._resource_group = resource_group - @property def serial_number(self): """Gets the serial_number of this NodeHardwareNode. # noqa: E501 @@ -1162,31 +1067,6 @@ def storage_class(self, storage_class): self._storage_class = storage_class - @property - def subscription_id(self): - """Gets the subscription_id of this NodeHardwareNode. # noqa: E501 - - Subscription id of the queried node # noqa: E501 - - :return: The subscription_id of this NodeHardwareNode. # noqa: E501 - :rtype: str - """ - return self._subscription_id - - @subscription_id.setter - def subscription_id(self, subscription_id): - """Sets the subscription_id of this NodeHardwareNode. - - Subscription id of the queried node # noqa: E501 - - :param subscription_id: The subscription_id of this NodeHardwareNode. # noqa: E501 - :type: str - """ - if subscription_id is None: - raise ValueError("Invalid value for `subscription_id`, must not be `None`") # noqa: E501 - - self._subscription_id = subscription_id - @property def tier(self): """Gets the tier of this NodeHardwareNode. # noqa: E501 @@ -1243,31 +1123,6 @@ def top_level_assembly_serial_number(self, top_level_assembly_serial_number): self._top_level_assembly_serial_number = top_level_assembly_serial_number - @property - def volume_type(self): - """Gets the volume_type of this NodeHardwareNode. # noqa: E501 - - Volume type of the queried node # noqa: E501 - - :return: The volume_type of this NodeHardwareNode. # noqa: E501 - :rtype: str - """ - return self._volume_type - - @volume_type.setter - def volume_type(self, volume_type): - """Sets the volume_type of this NodeHardwareNode. - - Volume type of the queried node # noqa: E501 - - :param volume_type: The volume_type of this NodeHardwareNode. # noqa: E501 - :type: str - """ - if volume_type is None: - raise ValueError("Invalid value for `volume_type`, must not be `None`") # noqa: E501 - - self._volume_type = volume_type - def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_internal_ip_address.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_internal_ip_address.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_internal_ip_address.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_internal_ip_address.py index c12a47b45..4c8697408 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_internal_ip_address.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_internal_ip_address.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_internal_ip_address_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_internal_ip_address_node.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_internal_ip_address_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_internal_ip_address_node.py index e59e7346e..f8ddafcfa 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_internal_ip_address_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_internal_ip_address_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -146,8 +146,8 @@ def internal_ip_address(self, internal_ip_address): raise ValueError("Invalid value for `internal_ip_address`, length must be less than or equal to `45`") # noqa: E501 if internal_ip_address is not None and len(internal_ip_address) < 2: raise ValueError("Invalid value for `internal_ip_address`, length must be greater than or equal to `2`") # noqa: E501 - if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 - raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 + raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._internal_ip_address = internal_ip_address diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_partitions.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_partitions.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_partitions.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_partitions.py index 1fa004538..ad02c7998 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_partitions.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_partitions.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_partitions_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_partitions_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_partitions_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_partitions_node.py index 9656c232d..549b5b838 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_partitions_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_partitions_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_sensors.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_sensors.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_sensors.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_sensors.py index ba9c32cd7..01876847e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_sensors.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_sensors.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_sensors_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_sensors_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_sensors_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_sensors_node.py index d8ca2e1d4..504bbaaad 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_sensors_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_sensors_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_sleds.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_sleds.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_sleds.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_sleds.py index 3dc2ca940..4434c5d8f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_sleds.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_sleds.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_sleds_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_sleds_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_sleds_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_sleds_node.py index c328585e2..19d1557a8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_sleds_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_sleds_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_state.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_state.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_state.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_state.py index b16a33d33..4f93fe74d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_state.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_state.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_state_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_state_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_state_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_state_node.py index 6dd74089f..cd61b9580 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_state_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_state_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_state_node_readonly.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_state_node_readonly.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_state_node_readonly.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_state_node_readonly.py index eacb353d3..8bfad762c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_state_node_readonly.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_state_node_readonly.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_state_node_servicelight.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_state_node_servicelight.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_state_node_servicelight.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_state_node_servicelight.py index 169de0304..40353f147 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_state_node_servicelight.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_state_node_servicelight.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_state_node_smartfail.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_state_node_smartfail.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_state_node_smartfail.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_state_node_smartfail.py index 551f3cb8f..22fcad599 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_state_node_smartfail.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_state_node_smartfail.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_state_readonly.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_state_readonly.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_state_readonly.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_state_readonly.py index 47a6ef255..ef87371d3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_state_readonly.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_state_readonly.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_state_readonly_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_state_readonly_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_state_readonly_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_state_readonly_node.py index d345ab899..068287a16 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_state_readonly_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_state_readonly_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_state_servicelight.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_state_servicelight.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_state_servicelight.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_state_servicelight.py index 1a9b3549f..019d0a781 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_state_servicelight.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_state_servicelight.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_state_servicelight_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_state_servicelight_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_state_servicelight_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_state_servicelight_extended.py index 806013edb..92085fb5b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_state_servicelight_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_state_servicelight_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_state_servicelight_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_state_servicelight_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_state_servicelight_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_state_servicelight_node.py index d32c4c3a8..345557147 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_state_servicelight_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_state_servicelight_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_state_smartfail.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_state_smartfail.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_state_smartfail.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_state_smartfail.py index 119953b3a..7e52d8720 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_state_smartfail.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_state_smartfail.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_state_smartfail_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_state_smartfail_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_state_smartfail_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_state_smartfail_node.py index 178329890..50bc785a1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_state_smartfail_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_state_smartfail_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_status.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_status.py index c3d45e3ed..d906f10d7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_batterystatus.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_batterystatus.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_status_batterystatus.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_status_batterystatus.py index 92bd42f20..b44659997 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_batterystatus.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_batterystatus.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_batterystatus_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_batterystatus_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_status_batterystatus_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_status_batterystatus_node.py index 338e171c4..9ea228bd3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_batterystatus_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_batterystatus_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_cpu.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_cpu.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_status_cpu.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_status_cpu.py index 72c1967e1..ed182178f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_cpu.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_cpu.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_cpu_error.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_cpu_error.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_status_cpu_error.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_status_cpu_error.py index 174b52a79..9a256795b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_cpu_error.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_cpu_error.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_cpu_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_cpu_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_status_cpu_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_status_cpu_node.py index 35cf472f7..e8e39ddc1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_cpu_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_cpu_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_status_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_status_extended.py index 8a1d6d90e..992d1e416 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node.py index 4f13de6d1..a6ffa9fd3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_batterystatus.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node_batterystatus.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_batterystatus.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node_batterystatus.py index e68ef777c..cd894d2ab 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_batterystatus.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node_batterystatus.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_capacity_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node_capacity_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_capacity_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node_capacity_item.py index 79873db55..bd04cfa1b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_capacity_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node_capacity_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_cpu.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node_cpu.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_cpu.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node_cpu.py index d733ac7a1..1437a3fc9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_cpu.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node_cpu.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node_extended.py similarity index 91% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node_extended.py index 17f5e53a7..fb53a3fe4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -34,7 +34,6 @@ class NodeStatusNodeExtended(object): 'batterystatus': 'NodeStatusNodeBatterystatus', 'capacity': 'list[NodeStatusNodeCapacityItem]', 'cpu': 'NodeStatusNodeCpu', - 'drive_security_level': 'NodeStatusNodeDriveSecurityLevel', 'error': 'str', 'id': 'int', 'lnn': 'int', @@ -50,7 +49,6 @@ class NodeStatusNodeExtended(object): 'batterystatus': 'batterystatus', 'capacity': 'capacity', 'cpu': 'cpu', - 'drive_security_level': 'drive_security_level', 'error': 'error', 'id': 'id', 'lnn': 'lnn', @@ -62,13 +60,12 @@ class NodeStatusNodeExtended(object): 'version': 'version' } - def __init__(self, batterystatus=None, capacity=None, cpu=None, drive_security_level=None, error=None, id=None, lnn=None, nvram=None, powersupplies=None, release=None, status=None, uptime=None, version=None): # noqa: E501 + def __init__(self, batterystatus=None, capacity=None, cpu=None, error=None, id=None, lnn=None, nvram=None, powersupplies=None, release=None, status=None, uptime=None, version=None): # noqa: E501 """NodeStatusNodeExtended - a model defined in Swagger""" # noqa: E501 self._batterystatus = None self._capacity = None self._cpu = None - self._drive_security_level = None self._error = None self._id = None self._lnn = None @@ -86,8 +83,6 @@ def __init__(self, batterystatus=None, capacity=None, cpu=None, drive_security_l self.capacity = capacity if cpu is not None: self.cpu = cpu - if drive_security_level is not None: - self.drive_security_level = drive_security_level if error is not None: self.error = error if id is not None: @@ -176,29 +171,6 @@ def cpu(self, cpu): self._cpu = cpu - @property - def drive_security_level(self): - """Gets the drive_security_level of this NodeStatusNodeExtended. # noqa: E501 - - Information about this node's drive security level. # noqa: E501 - - :return: The drive_security_level of this NodeStatusNodeExtended. # noqa: E501 - :rtype: NodeStatusNodeDriveSecurityLevel - """ - return self._drive_security_level - - @drive_security_level.setter - def drive_security_level(self, drive_security_level): - """Sets the drive_security_level of this NodeStatusNodeExtended. - - Information about this node's drive security level. # noqa: E501 - - :param drive_security_level: The drive_security_level of this NodeStatusNodeExtended. # noqa: E501 - :type: NodeStatusNodeDriveSecurityLevel - """ - - self._drive_security_level = drive_security_level - @property def error(self): """Gets the error of this NodeStatusNodeExtended. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_nvram.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node_nvram.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_nvram.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node_nvram.py index 0b53349a0..5b716cc29 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_nvram.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node_nvram.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_powersupplies.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node_powersupplies.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_powersupplies.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node_powersupplies.py index 101c9142a..3519aab38 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_powersupplies.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node_powersupplies.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_status.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node_status.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_status.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node_status.py index 6fd71eebb..35e7c5206 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_status.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node_status.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_status_server_status_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node_status_server_status_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_status_server_status_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node_status_server_status_item.py index 04f9748a5..cb590d9c2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_status_server_status_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node_status_server_status_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_status_system_stats.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node_status_system_stats.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_status_system_stats.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node_status_system_stats.py index 97308ec63..732cb7465 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_node_status_system_stats.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_node_status_system_stats.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_nvram.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_nvram.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_status_nvram.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_status_nvram.py index 5ea433206..f4ee581d2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_nvram.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_nvram.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_nvram_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_nvram_node.py similarity index 93% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_status_nvram_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_status_nvram_node.py index 52581db7e..a91d6c5d2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_nvram_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_nvram_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -45,6 +45,7 @@ class NodeStatusNvramNode(object): 'status': 'int', 'supported': 'bool', 'supported_flash': 'bool', + 'supported_size': 'int', 'supported_type': 'str' } @@ -63,10 +64,11 @@ class NodeStatusNvramNode(object): 'status': 'status', 'supported': 'supported', 'supported_flash': 'supported_flash', + 'supported_size': 'supported_size', 'supported_type': 'supported_type' } - def __init__(self, batteries=None, battery_count=None, charge_status=None, charge_status_number=None, error=None, id=None, lnn=None, present=None, present_flash=None, present_size=None, present_type=None, status=None, supported=None, supported_flash=None, supported_type=None): # noqa: E501 + def __init__(self, batteries=None, battery_count=None, charge_status=None, charge_status_number=None, error=None, id=None, lnn=None, present=None, present_flash=None, present_size=None, present_type=None, status=None, supported=None, supported_flash=None, supported_size=None, supported_type=None): # noqa: E501 """NodeStatusNvramNode - a model defined in Swagger""" # noqa: E501 self._batteries = None @@ -83,6 +85,7 @@ def __init__(self, batteries=None, battery_count=None, charge_status=None, charg self._status = None self._supported = None self._supported_flash = None + self._supported_size = None self._supported_type = None self.discriminator = None @@ -114,6 +117,8 @@ def __init__(self, batteries=None, battery_count=None, charge_status=None, charg self.supported = supported if supported_flash is not None: self.supported_flash = supported_flash + if supported_size is not None: + self.supported_size = supported_size if supported_type is not None: self.supported_type = supported_type @@ -477,6 +482,33 @@ def supported_flash(self, supported_flash): self._supported_flash = supported_flash + @property + def supported_size(self): + """Gets the supported_size of this NodeStatusNvramNode. # noqa: E501 + + The maximum size of the NVRAM, in bytes. # noqa: E501 + + :return: The supported_size of this NodeStatusNvramNode. # noqa: E501 + :rtype: int + """ + return self._supported_size + + @supported_size.setter + def supported_size(self, supported_size): + """Sets the supported_size of this NodeStatusNvramNode. + + The maximum size of the NVRAM, in bytes. # noqa: E501 + + :param supported_size: The supported_size of this NodeStatusNvramNode. # noqa: E501 + :type: int + """ + if supported_size is not None and supported_size > 9223372036854775807: # noqa: E501 + raise ValueError("Invalid value for `supported_size`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 + if supported_size is not None and supported_size < 0: # noqa: E501 + raise ValueError("Invalid value for `supported_size`, must be a value greater than or equal to `0`") # noqa: E501 + + self._supported_size = supported_size + @property def supported_type(self): """Gets the supported_type of this NodeStatusNvramNode. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_nvram_node_battery.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_nvram_node_battery.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_status_nvram_node_battery.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_status_nvram_node_battery.py index d19b64001..3c4aa6754 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_nvram_node_battery.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_nvram_node_battery.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_powersupplies.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_powersupplies.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_status_powersupplies.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_status_powersupplies.py index 623808e8f..0714e7bd1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_powersupplies.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_powersupplies.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_powersupplies_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_powersupplies_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_status_powersupplies_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_status_powersupplies_node.py index c63fc975d..cd4312d77 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_powersupplies_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_powersupplies_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_powersupplies_node_supply.py b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_powersupplies_node_supply.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/node_status_powersupplies_node_supply.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/node_status_powersupplies_node_supply.py index 86a954c3a..1c7c9e836 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/node_status_powersupplies_node_supply.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/node_status_powersupplies_node_supply.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nodes_node_firmware_device.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nodes_node_firmware_device.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nodes_node_firmware_device.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nodes_node_firmware_device.py index 235d616f4..805597ea9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nodes_node_firmware_device.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nodes_node_firmware_device.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nodes_node_internal_ip_address.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nodes_node_internal_ip_address.py similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nodes_node_internal_ip_address.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nodes_node_internal_ip_address.py index 4ae69b55b..d9baa8b94 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nodes_node_internal_ip_address.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nodes_node_internal_ip_address.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -72,8 +72,8 @@ def internal_ip_address(self, internal_ip_address): raise ValueError("Invalid value for `internal_ip_address`, length must be less than or equal to `45`") # noqa: E501 if internal_ip_address is not None and len(internal_ip_address) < 2: raise ValueError("Invalid value for `internal_ip_address`, length must be greater than or equal to `2`") # noqa: E501 - if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 - raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 + raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._internal_ip_address = internal_ip_address diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nodetype_assess.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nodetype_assess.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nodetype_assess.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nodetype_assess.py index 63c25b767..762503fc4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nodetype_assess.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nodetype_assess.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/nodetype_assess_from_nodepool.py b/isilon_sdk/isilon_sdk/v9_4_0/models/nodetype_assess_from_nodepool.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/nodetype_assess_from_nodepool.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/nodetype_assess_from_nodepool.py index 0fbb43554..fd9bbef42 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/nodetype_assess_from_nodepool.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/nodetype_assess_from_nodepool.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ntp_server.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ntp_server.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ntp_server.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ntp_server.py index dc45bcffe..377dde13e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ntp_server.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ntp_server.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ntp_server_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ntp_server_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ntp_server_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ntp_server_create_params.py index 73cdeee85..1210bfe95 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ntp_server_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ntp_server_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ntp_server_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ntp_server_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ntp_server_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ntp_server_extended.py index 9a832aa3c..affd4b7a4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ntp_server_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ntp_server_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ntp_servers.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ntp_servers.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ntp_servers.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ntp_servers.py index 1435aae37..a87384a69 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ntp_servers.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ntp_servers.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ntp_servers_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ntp_servers_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ntp_servers_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ntp_servers_extended.py index 22347f335..db5c27195 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ntp_servers_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ntp_servers_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ntp_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ntp_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ntp_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ntp_settings.py index 285de517a..0ac760745 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ntp_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ntp_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ntp_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ntp_settings_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ntp_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ntp_settings_settings.py index ae22c584a..41741ccff 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ntp_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ntp_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/papi_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/papi_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/papi_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/papi_settings.py index e74e819fb..93291b41e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/papi_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/papi_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/papi_settings_papi_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/papi_settings_papi_settings.py similarity index 60% rename from isilon_sdk/isilon_sdk/v9_11_0/models/papi_settings_papi_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/papi_settings_papi_settings.py index a9263ed12..7612f7eb2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/papi_settings_papi_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/papi_settings_papi_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -32,41 +32,31 @@ class PapiSettingsPapiSettings(object): """ swagger_types = { 'auto_configure_child_limit': 'bool', - 'child_settings': 'PapiSettingsPapiSettingsChildSettings', - 'config_lock_timeout': 'int', - 'enable_config_lock_feature': 'bool' + 'child_settings': 'PapiSettingsPapiSettingsChildSettings' } attribute_map = { 'auto_configure_child_limit': 'auto_configure_child_limit', - 'child_settings': 'child_settings', - 'config_lock_timeout': 'config_lock_timeout', - 'enable_config_lock_feature': 'enable_config_lock_feature' + 'child_settings': 'child_settings' } - def __init__(self, auto_configure_child_limit=True, child_settings=None, config_lock_timeout=None, enable_config_lock_feature=True): # noqa: E501 + def __init__(self, auto_configure_child_limit=True, child_settings=None): # noqa: E501 """PapiSettingsPapiSettings - a model defined in Swagger""" # noqa: E501 self._auto_configure_child_limit = None self._child_settings = None - self._config_lock_timeout = None - self._enable_config_lock_feature = None self.discriminator = None if auto_configure_child_limit is not None: self.auto_configure_child_limit = auto_configure_child_limit if child_settings is not None: self.child_settings = child_settings - if config_lock_timeout is not None: - self.config_lock_timeout = config_lock_timeout - if enable_config_lock_feature is not None: - self.enable_config_lock_feature = enable_config_lock_feature @property def auto_configure_child_limit(self): """Gets the auto_configure_child_limit of this PapiSettingsPapiSettings. # noqa: E501 - If true, PAPI automatically configures the child settings. # noqa: E501 + If true, PAPI automatically configures the child limit. # noqa: E501 :return: The auto_configure_child_limit of this PapiSettingsPapiSettings. # noqa: E501 :rtype: bool @@ -77,7 +67,7 @@ def auto_configure_child_limit(self): def auto_configure_child_limit(self, auto_configure_child_limit): """Sets the auto_configure_child_limit of this PapiSettingsPapiSettings. - If true, PAPI automatically configures the child settings. # noqa: E501 + If true, PAPI automatically configures the child limit. # noqa: E501 :param auto_configure_child_limit: The auto_configure_child_limit of this PapiSettingsPapiSettings. # noqa: E501 :type: bool @@ -108,56 +98,6 @@ def child_settings(self, child_settings): self._child_settings = child_settings - @property - def config_lock_timeout(self): - """Gets the config_lock_timeout of this PapiSettingsPapiSettings. # noqa: E501 - - Time out limit of PAPI Configuration lock request. # noqa: E501 - - :return: The config_lock_timeout of this PapiSettingsPapiSettings. # noqa: E501 - :rtype: int - """ - return self._config_lock_timeout - - @config_lock_timeout.setter - def config_lock_timeout(self, config_lock_timeout): - """Sets the config_lock_timeout of this PapiSettingsPapiSettings. - - Time out limit of PAPI Configuration lock request. # noqa: E501 - - :param config_lock_timeout: The config_lock_timeout of this PapiSettingsPapiSettings. # noqa: E501 - :type: int - """ - if config_lock_timeout is not None and config_lock_timeout > 200: # noqa: E501 - raise ValueError("Invalid value for `config_lock_timeout`, must be a value less than or equal to `200`") # noqa: E501 - if config_lock_timeout is not None and config_lock_timeout < 0: # noqa: E501 - raise ValueError("Invalid value for `config_lock_timeout`, must be a value greater than or equal to `0`") # noqa: E501 - - self._config_lock_timeout = config_lock_timeout - - @property - def enable_config_lock_feature(self): - """Gets the enable_config_lock_feature of this PapiSettingsPapiSettings. # noqa: E501 - - If true, PAPI configuration lock feature is enabled. # noqa: E501 - - :return: The enable_config_lock_feature of this PapiSettingsPapiSettings. # noqa: E501 - :rtype: bool - """ - return self._enable_config_lock_feature - - @enable_config_lock_feature.setter - def enable_config_lock_feature(self, enable_config_lock_feature): - """Sets the enable_config_lock_feature of this PapiSettingsPapiSettings. - - If true, PAPI configuration lock feature is enabled. # noqa: E501 - - :param enable_config_lock_feature: The enable_config_lock_feature of this PapiSettingsPapiSettings. # noqa: E501 - :type: bool - """ - - self._enable_config_lock_feature = enable_config_lock_feature - def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/papi_settings_papi_settings_child_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/papi_settings_papi_settings_child_settings.py similarity index 95% rename from isilon_sdk/isilon_sdk/v9_11_0/models/papi_settings_papi_settings_child_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/papi_settings_papi_settings_child_settings.py index cadb521b8..74f6583fb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/papi_settings_papi_settings_child_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/papi_settings_papi_settings_child_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -66,7 +66,7 @@ def __init__(self, child_limit=None, child_limit_ceiling=None, child_limit_exten def child_limit(self): """Gets the child_limit of this PapiSettingsPapiSettingsChildSettings. # noqa: E501 - The number of PAPI requests that can be processed concurrently. If child_limit = 0, then it is set to child_limit_ceiling. If child_limit <= 2, then it is set to 2. # noqa: E501 + The number of PAPI requests that can be processed concurrently. # noqa: E501 :return: The child_limit of this PapiSettingsPapiSettingsChildSettings. # noqa: E501 :rtype: int @@ -77,15 +77,15 @@ def child_limit(self): def child_limit(self, child_limit): """Sets the child_limit of this PapiSettingsPapiSettingsChildSettings. - The number of PAPI requests that can be processed concurrently. If child_limit = 0, then it is set to child_limit_ceiling. If child_limit <= 2, then it is set to 2. # noqa: E501 + The number of PAPI requests that can be processed concurrently. # noqa: E501 :param child_limit: The child_limit of this PapiSettingsPapiSettingsChildSettings. # noqa: E501 :type: int """ if child_limit is not None and child_limit > 65535: # noqa: E501 raise ValueError("Invalid value for `child_limit`, must be a value less than or equal to `65535`") # noqa: E501 - if child_limit is not None and child_limit < 0: # noqa: E501 - raise ValueError("Invalid value for `child_limit`, must be a value greater than or equal to `0`") # noqa: E501 + if child_limit is not None and child_limit < 2: # noqa: E501 + raise ValueError("Invalid value for `child_limit`, must be a value greater than or equal to `2`") # noqa: E501 self._child_limit = child_limit diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_dataset.py b/isilon_sdk/isilon_sdk/v9_4_0/models/performance_dataset.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/performance_dataset.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/performance_dataset.py index 7337d2c40..fb2819ccd 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_dataset.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/performance_dataset.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_dataset_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/performance_dataset_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/performance_dataset_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/performance_dataset_create_params.py index b27f0291e..3afbfb0a5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_dataset_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/performance_dataset_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_dataset_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/performance_dataset_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/performance_dataset_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/performance_dataset_extended.py index dd1641e9e..3751dedc0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_dataset_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/performance_dataset_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_datasets.py b/isilon_sdk/isilon_sdk/v9_4_0/models/performance_datasets.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/performance_datasets.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/performance_datasets.py index 65a3b305a..d7e208634 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_datasets.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/performance_datasets.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_datasets_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/performance_datasets_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/performance_datasets_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/performance_datasets_extended.py index 1cc68b03d..3d41d059b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_datasets_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/performance_datasets_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_metric.py b/isilon_sdk/isilon_sdk/v9_4_0/models/performance_metric.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/performance_metric.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/performance_metric.py index 536855fc7..d4fc0988a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_metric.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/performance_metric.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_metrics.py b/isilon_sdk/isilon_sdk/v9_4_0/models/performance_metrics.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/performance_metrics.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/performance_metrics.py index caa4f728c..f52bab1cb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_metrics.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/performance_metrics.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_metrics_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/performance_metrics_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/performance_metrics_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/performance_metrics_extended.py index 18b727d03..c01cc2872 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_metrics_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/performance_metrics_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/performance_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/performance_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/performance_settings.py index 3e0cf700a..96892d017 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/performance_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/performance_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_4_0/models/performance_settings_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/performance_settings_extended.py new file mode 100644 index 000000000..01eb61349 --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/performance_settings_extended.py @@ -0,0 +1,249 @@ +# coding: utf-8 + +""" + Isilon SDK + + Isilon SDK - Language bindings for the OneFS API # noqa: E501 + + OpenAPI spec version: 15 + Contact: sdk@isilon.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + + +class PerformanceSettingsExtended(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'max_filter_count': 'int', + 'max_stat_size': 'int', + 'max_top_n_collection_count': 'int', + 'max_workload_count': 'int', + 'top_n_collection_count': 'int' + } + + attribute_map = { + 'max_filter_count': 'max_filter_count', + 'max_stat_size': 'max_stat_size', + 'max_top_n_collection_count': 'max_top_n_collection_count', + 'max_workload_count': 'max_workload_count', + 'top_n_collection_count': 'top_n_collection_count' + } + + def __init__(self, max_filter_count=None, max_stat_size=None, max_top_n_collection_count=None, max_workload_count=None, top_n_collection_count=None): # noqa: E501 + """PerformanceSettingsExtended - a model defined in Swagger""" # noqa: E501 + + self._max_filter_count = None + self._max_stat_size = None + self._max_top_n_collection_count = None + self._max_workload_count = None + self._top_n_collection_count = None + self.discriminator = None + + if max_filter_count is not None: + self.max_filter_count = max_filter_count + if max_stat_size is not None: + self.max_stat_size = max_stat_size + if max_top_n_collection_count is not None: + self.max_top_n_collection_count = max_top_n_collection_count + if max_workload_count is not None: + self.max_workload_count = max_workload_count + if top_n_collection_count is not None: + self.top_n_collection_count = top_n_collection_count + + @property + def max_filter_count(self): + """Gets the max_filter_count of this PerformanceSettingsExtended. # noqa: E501 + + The maximum number of filters that can be applied to a configured performance dataset. # noqa: E501 + + :return: The max_filter_count of this PerformanceSettingsExtended. # noqa: E501 + :rtype: int + """ + return self._max_filter_count + + @max_filter_count.setter + def max_filter_count(self, max_filter_count): + """Sets the max_filter_count of this PerformanceSettingsExtended. + + The maximum number of filters that can be applied to a configured performance dataset. # noqa: E501 + + :param max_filter_count: The max_filter_count of this PerformanceSettingsExtended. # noqa: E501 + :type: int + """ + if max_filter_count is not None and max_filter_count > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `max_filter_count`, must be a value less than or equal to `4294967295`") # noqa: E501 + if max_filter_count is not None and max_filter_count < 0: # noqa: E501 + raise ValueError("Invalid value for `max_filter_count`, must be a value greater than or equal to `0`") # noqa: E501 + + self._max_filter_count = max_filter_count + + @property + def max_stat_size(self): + """Gets the max_stat_size of this PerformanceSettingsExtended. # noqa: E501 + + The maximum size in bytes of a single performance dataset sample. # noqa: E501 + + :return: The max_stat_size of this PerformanceSettingsExtended. # noqa: E501 + :rtype: int + """ + return self._max_stat_size + + @max_stat_size.setter + def max_stat_size(self, max_stat_size): + """Sets the max_stat_size of this PerformanceSettingsExtended. + + The maximum size in bytes of a single performance dataset sample. # noqa: E501 + + :param max_stat_size: The max_stat_size of this PerformanceSettingsExtended. # noqa: E501 + :type: int + """ + if max_stat_size is not None and max_stat_size > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `max_stat_size`, must be a value less than or equal to `4294967295`") # noqa: E501 + if max_stat_size is not None and max_stat_size < 0: # noqa: E501 + raise ValueError("Invalid value for `max_stat_size`, must be a value greater than or equal to `0`") # noqa: E501 + + self._max_stat_size = max_stat_size + + @property + def max_top_n_collection_count(self): + """Gets the max_top_n_collection_count of this PerformanceSettingsExtended. # noqa: E501 + + The maximum valid value for the 'top_n_collection_count' setting. # noqa: E501 + + :return: The max_top_n_collection_count of this PerformanceSettingsExtended. # noqa: E501 + :rtype: int + """ + return self._max_top_n_collection_count + + @max_top_n_collection_count.setter + def max_top_n_collection_count(self, max_top_n_collection_count): + """Sets the max_top_n_collection_count of this PerformanceSettingsExtended. + + The maximum valid value for the 'top_n_collection_count' setting. # noqa: E501 + + :param max_top_n_collection_count: The max_top_n_collection_count of this PerformanceSettingsExtended. # noqa: E501 + :type: int + """ + if max_top_n_collection_count is not None and max_top_n_collection_count > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `max_top_n_collection_count`, must be a value less than or equal to `4294967295`") # noqa: E501 + if max_top_n_collection_count is not None and max_top_n_collection_count < 0: # noqa: E501 + raise ValueError("Invalid value for `max_top_n_collection_count`, must be a value greater than or equal to `0`") # noqa: E501 + + self._max_top_n_collection_count = max_top_n_collection_count + + @property + def max_workload_count(self): + """Gets the max_workload_count of this PerformanceSettingsExtended. # noqa: E501 + + The maximum number of workloads that can be pinned to a configured performance dataset. # noqa: E501 + + :return: The max_workload_count of this PerformanceSettingsExtended. # noqa: E501 + :rtype: int + """ + return self._max_workload_count + + @max_workload_count.setter + def max_workload_count(self, max_workload_count): + """Sets the max_workload_count of this PerformanceSettingsExtended. + + The maximum number of workloads that can be pinned to a configured performance dataset. # noqa: E501 + + :param max_workload_count: The max_workload_count of this PerformanceSettingsExtended. # noqa: E501 + :type: int + """ + if max_workload_count is not None and max_workload_count > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `max_workload_count`, must be a value less than or equal to `4294967295`") # noqa: E501 + if max_workload_count is not None and max_workload_count < 0: # noqa: E501 + raise ValueError("Invalid value for `max_workload_count`, must be a value greater than or equal to `0`") # noqa: E501 + + self._max_workload_count = max_workload_count + + @property + def top_n_collection_count(self): + """Gets the top_n_collection_count of this PerformanceSettingsExtended. # noqa: E501 + + The number of highest resource-consuming workloads tracked and collected by the system per configured performance dataset. The number of workloads pinned to a configured performance dataset does not count towards this value. # noqa: E501 + + :return: The top_n_collection_count of this PerformanceSettingsExtended. # noqa: E501 + :rtype: int + """ + return self._top_n_collection_count + + @top_n_collection_count.setter + def top_n_collection_count(self, top_n_collection_count): + """Sets the top_n_collection_count of this PerformanceSettingsExtended. + + The number of highest resource-consuming workloads tracked and collected by the system per configured performance dataset. The number of workloads pinned to a configured performance dataset does not count towards this value. # noqa: E501 + + :param top_n_collection_count: The top_n_collection_count of this PerformanceSettingsExtended. # noqa: E501 + :type: int + """ + if top_n_collection_count is not None and top_n_collection_count > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `top_n_collection_count`, must be a value less than or equal to `4294967295`") # noqa: E501 + if top_n_collection_count is not None and top_n_collection_count < 0: # noqa: E501 + raise ValueError("Invalid value for `top_n_collection_count`, must be a value greater than or equal to `0`") # noqa: E501 + + self._top_n_collection_count = top_n_collection_count + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(PerformanceSettingsExtended, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, PerformanceSettingsExtended): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + """Returns true if both objects are not equal""" + return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_4_0/models/performance_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/performance_settings_settings.py new file mode 100644 index 000000000..c1ed67af2 --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/performance_settings_settings.py @@ -0,0 +1,287 @@ +# coding: utf-8 + +""" + Isilon SDK + + Isilon SDK - Language bindings for the OneFS API # noqa: E501 + + OpenAPI spec version: 15 + Contact: sdk@isilon.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + + +class PerformanceSettingsSettings(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'max_dataset_count': 'int', + 'max_filter_count': 'int', + 'max_stat_size': 'int', + 'max_top_n_collection_count': 'int', + 'max_workload_count': 'int', + 'top_n_collection_count': 'int' + } + + attribute_map = { + 'max_dataset_count': 'max_dataset_count', + 'max_filter_count': 'max_filter_count', + 'max_stat_size': 'max_stat_size', + 'max_top_n_collection_count': 'max_top_n_collection_count', + 'max_workload_count': 'max_workload_count', + 'top_n_collection_count': 'top_n_collection_count' + } + + def __init__(self, max_dataset_count=None, max_filter_count=None, max_stat_size=None, max_top_n_collection_count=None, max_workload_count=None, top_n_collection_count=None): # noqa: E501 + """PerformanceSettingsSettings - a model defined in Swagger""" # noqa: E501 + + self._max_dataset_count = None + self._max_filter_count = None + self._max_stat_size = None + self._max_top_n_collection_count = None + self._max_workload_count = None + self._top_n_collection_count = None + self.discriminator = None + + self.max_dataset_count = max_dataset_count + self.max_filter_count = max_filter_count + self.max_stat_size = max_stat_size + self.max_top_n_collection_count = max_top_n_collection_count + self.max_workload_count = max_workload_count + self.top_n_collection_count = top_n_collection_count + + @property + def max_dataset_count(self): + """Gets the max_dataset_count of this PerformanceSettingsSettings. # noqa: E501 + + The maximum number of datasets that can be configured on the system. # noqa: E501 + + :return: The max_dataset_count of this PerformanceSettingsSettings. # noqa: E501 + :rtype: int + """ + return self._max_dataset_count + + @max_dataset_count.setter + def max_dataset_count(self, max_dataset_count): + """Sets the max_dataset_count of this PerformanceSettingsSettings. + + The maximum number of datasets that can be configured on the system. # noqa: E501 + + :param max_dataset_count: The max_dataset_count of this PerformanceSettingsSettings. # noqa: E501 + :type: int + """ + if max_dataset_count is None: + raise ValueError("Invalid value for `max_dataset_count`, must not be `None`") # noqa: E501 + if max_dataset_count is not None and max_dataset_count > 4: # noqa: E501 + raise ValueError("Invalid value for `max_dataset_count`, must be a value less than or equal to `4`") # noqa: E501 + if max_dataset_count is not None and max_dataset_count < 4: # noqa: E501 + raise ValueError("Invalid value for `max_dataset_count`, must be a value greater than or equal to `4`") # noqa: E501 + + self._max_dataset_count = max_dataset_count + + @property + def max_filter_count(self): + """Gets the max_filter_count of this PerformanceSettingsSettings. # noqa: E501 + + The maximum number of filters that can be applied to a configured performance dataset. # noqa: E501 + + :return: The max_filter_count of this PerformanceSettingsSettings. # noqa: E501 + :rtype: int + """ + return self._max_filter_count + + @max_filter_count.setter + def max_filter_count(self, max_filter_count): + """Sets the max_filter_count of this PerformanceSettingsSettings. + + The maximum number of filters that can be applied to a configured performance dataset. # noqa: E501 + + :param max_filter_count: The max_filter_count of this PerformanceSettingsSettings. # noqa: E501 + :type: int + """ + if max_filter_count is None: + raise ValueError("Invalid value for `max_filter_count`, must not be `None`") # noqa: E501 + if max_filter_count is not None and max_filter_count > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `max_filter_count`, must be a value less than or equal to `4294967295`") # noqa: E501 + if max_filter_count is not None and max_filter_count < 0: # noqa: E501 + raise ValueError("Invalid value for `max_filter_count`, must be a value greater than or equal to `0`") # noqa: E501 + + self._max_filter_count = max_filter_count + + @property + def max_stat_size(self): + """Gets the max_stat_size of this PerformanceSettingsSettings. # noqa: E501 + + The maximum size in bytes of a single performance dataset sample. # noqa: E501 + + :return: The max_stat_size of this PerformanceSettingsSettings. # noqa: E501 + :rtype: int + """ + return self._max_stat_size + + @max_stat_size.setter + def max_stat_size(self, max_stat_size): + """Sets the max_stat_size of this PerformanceSettingsSettings. + + The maximum size in bytes of a single performance dataset sample. # noqa: E501 + + :param max_stat_size: The max_stat_size of this PerformanceSettingsSettings. # noqa: E501 + :type: int + """ + if max_stat_size is None: + raise ValueError("Invalid value for `max_stat_size`, must not be `None`") # noqa: E501 + if max_stat_size is not None and max_stat_size > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `max_stat_size`, must be a value less than or equal to `4294967295`") # noqa: E501 + if max_stat_size is not None and max_stat_size < 0: # noqa: E501 + raise ValueError("Invalid value for `max_stat_size`, must be a value greater than or equal to `0`") # noqa: E501 + + self._max_stat_size = max_stat_size + + @property + def max_top_n_collection_count(self): + """Gets the max_top_n_collection_count of this PerformanceSettingsSettings. # noqa: E501 + + The maximum valid value for the 'top_n_collection_count' setting. # noqa: E501 + + :return: The max_top_n_collection_count of this PerformanceSettingsSettings. # noqa: E501 + :rtype: int + """ + return self._max_top_n_collection_count + + @max_top_n_collection_count.setter + def max_top_n_collection_count(self, max_top_n_collection_count): + """Sets the max_top_n_collection_count of this PerformanceSettingsSettings. + + The maximum valid value for the 'top_n_collection_count' setting. # noqa: E501 + + :param max_top_n_collection_count: The max_top_n_collection_count of this PerformanceSettingsSettings. # noqa: E501 + :type: int + """ + if max_top_n_collection_count is None: + raise ValueError("Invalid value for `max_top_n_collection_count`, must not be `None`") # noqa: E501 + if max_top_n_collection_count is not None and max_top_n_collection_count > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `max_top_n_collection_count`, must be a value less than or equal to `4294967295`") # noqa: E501 + if max_top_n_collection_count is not None and max_top_n_collection_count < 0: # noqa: E501 + raise ValueError("Invalid value for `max_top_n_collection_count`, must be a value greater than or equal to `0`") # noqa: E501 + + self._max_top_n_collection_count = max_top_n_collection_count + + @property + def max_workload_count(self): + """Gets the max_workload_count of this PerformanceSettingsSettings. # noqa: E501 + + The maximum number of workloads that can be pinned to a configured performance dataset. # noqa: E501 + + :return: The max_workload_count of this PerformanceSettingsSettings. # noqa: E501 + :rtype: int + """ + return self._max_workload_count + + @max_workload_count.setter + def max_workload_count(self, max_workload_count): + """Sets the max_workload_count of this PerformanceSettingsSettings. + + The maximum number of workloads that can be pinned to a configured performance dataset. # noqa: E501 + + :param max_workload_count: The max_workload_count of this PerformanceSettingsSettings. # noqa: E501 + :type: int + """ + if max_workload_count is None: + raise ValueError("Invalid value for `max_workload_count`, must not be `None`") # noqa: E501 + if max_workload_count is not None and max_workload_count > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `max_workload_count`, must be a value less than or equal to `4294967295`") # noqa: E501 + if max_workload_count is not None and max_workload_count < 0: # noqa: E501 + raise ValueError("Invalid value for `max_workload_count`, must be a value greater than or equal to `0`") # noqa: E501 + + self._max_workload_count = max_workload_count + + @property + def top_n_collection_count(self): + """Gets the top_n_collection_count of this PerformanceSettingsSettings. # noqa: E501 + + The number of highest resource-consuming workloads tracked and collected by the system per configured performance dataset. The number of workloads pinned to a configured performance dataset does not count towards this value. # noqa: E501 + + :return: The top_n_collection_count of this PerformanceSettingsSettings. # noqa: E501 + :rtype: int + """ + return self._top_n_collection_count + + @top_n_collection_count.setter + def top_n_collection_count(self, top_n_collection_count): + """Sets the top_n_collection_count of this PerformanceSettingsSettings. + + The number of highest resource-consuming workloads tracked and collected by the system per configured performance dataset. The number of workloads pinned to a configured performance dataset does not count towards this value. # noqa: E501 + + :param top_n_collection_count: The top_n_collection_count of this PerformanceSettingsSettings. # noqa: E501 + :type: int + """ + if top_n_collection_count is None: + raise ValueError("Invalid value for `top_n_collection_count`, must not be `None`") # noqa: E501 + if top_n_collection_count is not None and top_n_collection_count > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `top_n_collection_count`, must be a value less than or equal to `4294967295`") # noqa: E501 + if top_n_collection_count is not None and top_n_collection_count < 0: # noqa: E501 + raise ValueError("Invalid value for `top_n_collection_count`, must be a value greater than or equal to `0`") # noqa: E501 + + self._top_n_collection_count = top_n_collection_count + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(PerformanceSettingsSettings, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, PerformanceSettingsSettings): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + """Returns true if both objects are not equal""" + return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_interfaces.py b/isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_interfaces.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_interfaces.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_interfaces.py index 683147ce7..bd1b3ad7e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_interfaces.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_interfaces.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_interfaces_interface.py b/isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_interfaces_interface.py similarity index 91% rename from isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_interfaces_interface.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_interfaces_interface.py index 69abd9895..591c4a40c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_interfaces_interface.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_interfaces_interface.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -269,7 +269,7 @@ def status(self, status): def type(self): """Gets the type of this PoolsPoolInterfacesInterface. # noqa: E501 - Interface type. The '*gige' types stand for 'gigabit ethernet'. 'gige' itself is occasionally also referred to in other places as 'ext' for 'external'. 'ib' and 'ib_qdr' are internal Infiniband interface types. 'vlan' and 'vmxnet3' are virtual interface types that appear on virtual nodes. 'loopback' is an interface for failover addresses and should only appear if failover is configured. # noqa: E501 + Interface type. The '*gige' types stand for 'gigabit ethernet'. 'gige' itself is occasionally also referred to in other places as 'ext' for 'external'. 'ib' and 'ib_qdr' are internal Infiniband interface types. 'vlan' and 'vmxnet3' are virtual interface types that appear on virtual nodes. 'loopback' is an interface for failover addresses and should only appear if failover is configured. # noqa: E501 :return: The type of this PoolsPoolInterfacesInterface. # noqa: E501 :rtype: str @@ -280,14 +280,14 @@ def type(self): def type(self, type): """Sets the type of this PoolsPoolInterfacesInterface. - Interface type. The '*gige' types stand for 'gigabit ethernet'. 'gige' itself is occasionally also referred to in other places as 'ext' for 'external'. 'ib' and 'ib_qdr' are internal Infiniband interface types. 'vlan' and 'vmxnet3' are virtual interface types that appear on virtual nodes. 'loopback' is an interface for failover addresses and should only appear if failover is configured. # noqa: E501 + Interface type. The '*gige' types stand for 'gigabit ethernet'. 'gige' itself is occasionally also referred to in other places as 'ext' for 'external'. 'ib' and 'ib_qdr' are internal Infiniband interface types. 'vlan' and 'vmxnet3' are virtual interface types that appear on virtual nodes. 'loopback' is an interface for failover addresses and should only appear if failover is configured. # noqa: E501 :param type: The type of this PoolsPoolInterfacesInterface. # noqa: E501 :type: str """ if type is None: raise ValueError("Invalid value for `type`, must not be `None`") # noqa: E501 - allowed_values = ["any", "gige", "fastgige", "10gige", "25gige", "40gige", "100gige", "200gige", "mgmt", "ib", "ib_qdr", "ib_fdr", "aggregated", "vlan", "vmxnet3", "loopback"] # noqa: E501 + allowed_values = ["any", "gige", "fastgige", "10gige", "25gige", "40gige", "100gige", "mgmt", "ib", "ib_qdr", "ib_fdr", "aggregated", "vlan", "vmxnet3", "loopback"] # noqa: E501 if type not in allowed_values: raise ValueError( "Invalid value for `type` ({0}), must be one of {1}" # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_interfaces_interface_owner.py b/isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_interfaces_interface_owner.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_interfaces_interface_owner.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_interfaces_interface_owner.py index 88896392e..51db0088c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_interfaces_interface_owner.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_interfaces_interface_owner.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_rule.py b/isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_rule.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_rule.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_rule.py index e1e0cb2e5..9d6114444 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_rule.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_rule.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_rule_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_rule_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_rule_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_rule_create_params.py index 7191b7481..e3614f5ed 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_rule_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_rule_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_rules.py b/isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_rules.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_rules.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_rules.py index 28e135958..e78007d18 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_rules.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_rules.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_rules_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_rules_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_rules_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_rules_extended.py index e2c7a3b6c..f3a8c60b6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_rules_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_rules_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_rules_rule.py b/isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_rules_rule.py similarity index 90% rename from isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_rules_rule.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_rules_rule.py index fb6a965fc..e4272e5dc 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_rules_rule.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_rules_rule.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -35,7 +35,6 @@ class PoolsPoolRulesRule(object): 'groupnet': 'str', 'id': 'str', 'iface': 'str', - 'linklayer': 'str', 'name': 'str', 'node_type': 'str', 'pool': 'str', @@ -47,21 +46,19 @@ class PoolsPoolRulesRule(object): 'groupnet': 'groupnet', 'id': 'id', 'iface': 'iface', - 'linklayer': 'linklayer', 'name': 'name', 'node_type': 'node_type', 'pool': 'pool', 'subnet': 'subnet' } - def __init__(self, description=None, groupnet=None, id=None, iface=None, linklayer=None, name=None, node_type=None, pool=None, subnet=None): # noqa: E501 + def __init__(self, description=None, groupnet=None, id=None, iface=None, name=None, node_type=None, pool=None, subnet=None): # noqa: E501 """PoolsPoolRulesRule - a model defined in Swagger""" # noqa: E501 self._description = None self._groupnet = None self._id = None self._iface = None - self._linklayer = None self._name = None self._node_type = None self._pool = None @@ -72,7 +69,6 @@ def __init__(self, description=None, groupnet=None, id=None, iface=None, linklay self.groupnet = groupnet self.id = id self.iface = iface - self.linklayer = linklayer self.name = name self.node_type = node_type self.pool = pool @@ -194,37 +190,6 @@ def iface(self, iface): self._iface = iface - @property - def linklayer(self): - """Gets the linklayer of this PoolsPoolRulesRule. # noqa: E501 - - Linklayer of the subnet this rule belongs to. # noqa: E501 - - :return: The linklayer of this PoolsPoolRulesRule. # noqa: E501 - :rtype: str - """ - return self._linklayer - - @linklayer.setter - def linklayer(self, linklayer): - """Sets the linklayer of this PoolsPoolRulesRule. - - Linklayer of the subnet this rule belongs to. # noqa: E501 - - :param linklayer: The linklayer of this PoolsPoolRulesRule. # noqa: E501 - :type: str - """ - if linklayer is None: - raise ValueError("Invalid value for `linklayer`, must not be `None`") # noqa: E501 - allowed_values = ["ethernet", "infiniband"] # noqa: E501 - if linklayer not in allowed_values: - raise ValueError( - "Invalid value for `linklayer` ({0}), must be one of {1}" # noqa: E501 - .format(linklayer, allowed_values) - ) - - self._linklayer = linklayer - @property def name(self): """Gets the name of this PoolsPoolRulesRule. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_sc_resume_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_sc_resume_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_sc_resume_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_sc_resume_node.py index 3df2f2a18..022bffe4d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_sc_resume_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_sc_resume_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_status.py b/isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_status.py similarity index 76% rename from isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_status.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_status.py index fdfb8aaab..547e0fd2b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_status.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_status.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,44 +31,44 @@ class PoolsPoolStatus(object): and the value is json key in definition. """ swagger_types = { - 'status': 'PoolsPoolStatusStatus' + 'settings': 'PoolsPoolStatusSettings' } attribute_map = { - 'status': 'status' + 'settings': 'settings' } - def __init__(self, status=None): # noqa: E501 + def __init__(self, settings=None): # noqa: E501 """PoolsPoolStatus - a model defined in Swagger""" # noqa: E501 - self._status = None + self._settings = None self.discriminator = None - if status is not None: - self.status = status + if settings is not None: + self.settings = settings @property - def status(self): - """Gets the status of this PoolsPoolStatus. # noqa: E501 + def settings(self): + """Gets the settings of this PoolsPoolStatus. # noqa: E501 # noqa: E501 - :return: The status of this PoolsPoolStatus. # noqa: E501 - :rtype: PoolsPoolStatusStatus + :return: The settings of this PoolsPoolStatus. # noqa: E501 + :rtype: PoolsPoolStatusSettings """ - return self._status + return self._settings - @status.setter - def status(self, status): - """Sets the status of this PoolsPoolStatus. + @settings.setter + def settings(self, settings): + """Sets the settings of this PoolsPoolStatus. # noqa: E501 - :param status: The status of this PoolsPoolStatus. # noqa: E501 - :type: PoolsPoolStatusStatus + :param settings: The settings of this PoolsPoolStatus. # noqa: E501 + :type: PoolsPoolStatusSettings """ - self._status = status + self._settings = settings def to_dict(self): """Returns the model properties as a dict""" diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_status_status.py b/isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_status_settings.py similarity index 79% rename from isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_status_status.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_status_settings.py index ff0fe003e..cad948df9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_status_status.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_status_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class PoolsPoolStatusStatus(object): +class PoolsPoolStatusSettings(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -32,8 +32,8 @@ class PoolsPoolStatusStatus(object): """ swagger_types = { 'id': 'str', - 'nodes': 'list[PoolsPoolStatusStatusNode]', - 'sc_dns_overview': 'PoolsPoolStatusStatusScDnsOverview', + 'nodes': 'list[PoolsPoolStatusSettingsNode]', + 'sc_dns_overview': 'PoolsPoolStatusSettingsScDnsOverview', 'total_configured_nodes': 'int' } @@ -45,7 +45,7 @@ class PoolsPoolStatusStatus(object): } def __init__(self, id=None, nodes=None, sc_dns_overview=None, total_configured_nodes=None): # noqa: E501 - """PoolsPoolStatusStatus - a model defined in Swagger""" # noqa: E501 + """PoolsPoolStatusSettings - a model defined in Swagger""" # noqa: E501 self._id = None self._nodes = None @@ -60,22 +60,22 @@ def __init__(self, id=None, nodes=None, sc_dns_overview=None, total_configured_n @property def id(self): - """Gets the id of this PoolsPoolStatusStatus. # noqa: E501 + """Gets the id of this PoolsPoolStatusSettings. # noqa: E501 Unique Pool ID. # noqa: E501 - :return: The id of this PoolsPoolStatusStatus. # noqa: E501 + :return: The id of this PoolsPoolStatusSettings. # noqa: E501 :rtype: str """ return self._id @id.setter def id(self, id): - """Sets the id of this PoolsPoolStatusStatus. + """Sets the id of this PoolsPoolStatusSettings. Unique Pool ID. # noqa: E501 - :param id: The id of this PoolsPoolStatusStatus. # noqa: E501 + :param id: The id of this PoolsPoolStatusSettings. # noqa: E501 :type: str """ if id is None: @@ -89,23 +89,23 @@ def id(self, id): @property def nodes(self): - """Gets the nodes of this PoolsPoolStatusStatus. # noqa: E501 + """Gets the nodes of this PoolsPoolStatusSettings. # noqa: E501 The status of the requested nodes. # noqa: E501 - :return: The nodes of this PoolsPoolStatusStatus. # noqa: E501 - :rtype: list[PoolsPoolStatusStatusNode] + :return: The nodes of this PoolsPoolStatusSettings. # noqa: E501 + :rtype: list[PoolsPoolStatusSettingsNode] """ return self._nodes @nodes.setter def nodes(self, nodes): - """Sets the nodes of this PoolsPoolStatusStatus. + """Sets the nodes of this PoolsPoolStatusSettings. The status of the requested nodes. # noqa: E501 - :param nodes: The nodes of this PoolsPoolStatusStatus. # noqa: E501 - :type: list[PoolsPoolStatusStatusNode] + :param nodes: The nodes of this PoolsPoolStatusSettings. # noqa: E501 + :type: list[PoolsPoolStatusSettingsNode] """ if nodes is None: raise ValueError("Invalid value for `nodes`, must not be `None`") # noqa: E501 @@ -114,23 +114,23 @@ def nodes(self, nodes): @property def sc_dns_overview(self): - """Gets the sc_dns_overview of this PoolsPoolStatusStatus. # noqa: E501 + """Gets the sc_dns_overview of this PoolsPoolStatusSettings. # noqa: E501 # noqa: E501 - :return: The sc_dns_overview of this PoolsPoolStatusStatus. # noqa: E501 - :rtype: PoolsPoolStatusStatusScDnsOverview + :return: The sc_dns_overview of this PoolsPoolStatusSettings. # noqa: E501 + :rtype: PoolsPoolStatusSettingsScDnsOverview """ return self._sc_dns_overview @sc_dns_overview.setter def sc_dns_overview(self, sc_dns_overview): - """Sets the sc_dns_overview of this PoolsPoolStatusStatus. + """Sets the sc_dns_overview of this PoolsPoolStatusSettings. # noqa: E501 - :param sc_dns_overview: The sc_dns_overview of this PoolsPoolStatusStatus. # noqa: E501 - :type: PoolsPoolStatusStatusScDnsOverview + :param sc_dns_overview: The sc_dns_overview of this PoolsPoolStatusSettings. # noqa: E501 + :type: PoolsPoolStatusSettingsScDnsOverview """ if sc_dns_overview is None: raise ValueError("Invalid value for `sc_dns_overview`, must not be `None`") # noqa: E501 @@ -139,22 +139,22 @@ def sc_dns_overview(self, sc_dns_overview): @property def total_configured_nodes(self): - """Gets the total_configured_nodes of this PoolsPoolStatusStatus. # noqa: E501 + """Gets the total_configured_nodes of this PoolsPoolStatusSettings. # noqa: E501 The number of nodes configured in the Network Pool. # noqa: E501 - :return: The total_configured_nodes of this PoolsPoolStatusStatus. # noqa: E501 + :return: The total_configured_nodes of this PoolsPoolStatusSettings. # noqa: E501 :rtype: int """ return self._total_configured_nodes @total_configured_nodes.setter def total_configured_nodes(self, total_configured_nodes): - """Sets the total_configured_nodes of this PoolsPoolStatusStatus. + """Sets the total_configured_nodes of this PoolsPoolStatusSettings. The number of nodes configured in the Network Pool. # noqa: E501 - :param total_configured_nodes: The total_configured_nodes of this PoolsPoolStatusStatus. # noqa: E501 + :param total_configured_nodes: The total_configured_nodes of this PoolsPoolStatusSettings. # noqa: E501 :type: int """ if total_configured_nodes is None: @@ -187,7 +187,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(PoolsPoolStatusStatus, dict): + if issubclass(PoolsPoolStatusSettings, dict): for key, value in self.items(): result[key] = value @@ -203,7 +203,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, PoolsPoolStatusStatus): + if not isinstance(other, PoolsPoolStatusSettings): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_status_status_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_status_settings_node.py similarity index 78% rename from isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_status_status_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_status_settings_node.py index 20cc7a75b..4b50f5060 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_status_status_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_status_settings_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class PoolsPoolStatusStatusNode(object): +class PoolsPoolStatusSettingsNode(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -32,7 +32,7 @@ class PoolsPoolStatusStatusNode(object): """ swagger_types = { 'devid': 'int', - 'interface_status': 'PoolsPoolStatusStatusNodeInterfaceStatus', + 'interface_status': 'PoolsPoolStatusSettingsNodeInterfaceStatus', 'ip_status': 'str', 'lnn': 'int', 'node_state': 'str', @@ -53,7 +53,7 @@ class PoolsPoolStatusStatusNode(object): } def __init__(self, devid=None, interface_status=None, ip_status=None, lnn=None, node_state=None, protocols_running=None, sc_dns_resolvable=None, suspended=None): # noqa: E501 - """PoolsPoolStatusStatusNode - a model defined in Swagger""" # noqa: E501 + """PoolsPoolStatusSettingsNode - a model defined in Swagger""" # noqa: E501 self._devid = None self._interface_status = None @@ -84,22 +84,22 @@ def __init__(self, devid=None, interface_status=None, ip_status=None, lnn=None, @property def devid(self): - """Gets the devid of this PoolsPoolStatusStatusNode. # noqa: E501 + """Gets the devid of this PoolsPoolStatusSettingsNode. # noqa: E501 Node ID (Device Number) of a node. # noqa: E501 - :return: The devid of this PoolsPoolStatusStatusNode. # noqa: E501 + :return: The devid of this PoolsPoolStatusSettingsNode. # noqa: E501 :rtype: int """ return self._devid @devid.setter def devid(self, devid): - """Sets the devid of this PoolsPoolStatusStatusNode. + """Sets the devid of this PoolsPoolStatusSettingsNode. Node ID (Device Number) of a node. # noqa: E501 - :param devid: The devid of this PoolsPoolStatusStatusNode. # noqa: E501 + :param devid: The devid of this PoolsPoolStatusSettingsNode. # noqa: E501 :type: int """ if devid is not None and devid > 2147483647: # noqa: E501 @@ -111,45 +111,45 @@ def devid(self, devid): @property def interface_status(self): - """Gets the interface_status of this PoolsPoolStatusStatusNode. # noqa: E501 + """Gets the interface_status of this PoolsPoolStatusSettingsNode. # noqa: E501 # noqa: E501 - :return: The interface_status of this PoolsPoolStatusStatusNode. # noqa: E501 - :rtype: PoolsPoolStatusStatusNodeInterfaceStatus + :return: The interface_status of this PoolsPoolStatusSettingsNode. # noqa: E501 + :rtype: PoolsPoolStatusSettingsNodeInterfaceStatus """ return self._interface_status @interface_status.setter def interface_status(self, interface_status): - """Sets the interface_status of this PoolsPoolStatusStatusNode. + """Sets the interface_status of this PoolsPoolStatusSettingsNode. # noqa: E501 - :param interface_status: The interface_status of this PoolsPoolStatusStatusNode. # noqa: E501 - :type: PoolsPoolStatusStatusNodeInterfaceStatus + :param interface_status: The interface_status of this PoolsPoolStatusSettingsNode. # noqa: E501 + :type: PoolsPoolStatusSettingsNodeInterfaceStatus """ self._interface_status = interface_status @property def ip_status(self): - """Gets the ip_status of this PoolsPoolStatusStatusNode. # noqa: E501 + """Gets the ip_status of this PoolsPoolStatusSettingsNode. # noqa: E501 Summary of the status of the IPs currently configured on this node. usable: The node has IPs allocated that are usable. none_usable: The node has IPs configured, but they are currently not in a usable state. This can occur for a variety of reasons. For static IPs, this can occur if the node is down, or if the interfaces are down. For dynamic IPs, this can occur if all of the IPs are about to move to a different node. none_configured: The node has no IPs from the Network Pool configured currently. # noqa: E501 - :return: The ip_status of this PoolsPoolStatusStatusNode. # noqa: E501 + :return: The ip_status of this PoolsPoolStatusSettingsNode. # noqa: E501 :rtype: str """ return self._ip_status @ip_status.setter def ip_status(self, ip_status): - """Sets the ip_status of this PoolsPoolStatusStatusNode. + """Sets the ip_status of this PoolsPoolStatusSettingsNode. Summary of the status of the IPs currently configured on this node. usable: The node has IPs allocated that are usable. none_usable: The node has IPs configured, but they are currently not in a usable state. This can occur for a variety of reasons. For static IPs, this can occur if the node is down, or if the interfaces are down. For dynamic IPs, this can occur if all of the IPs are about to move to a different node. none_configured: The node has no IPs from the Network Pool configured currently. # noqa: E501 - :param ip_status: The ip_status of this PoolsPoolStatusStatusNode. # noqa: E501 + :param ip_status: The ip_status of this PoolsPoolStatusSettingsNode. # noqa: E501 :type: str """ allowed_values = ["usable", "none_usable", "none_configured"] # noqa: E501 @@ -163,22 +163,22 @@ def ip_status(self, ip_status): @property def lnn(self): - """Gets the lnn of this PoolsPoolStatusStatusNode. # noqa: E501 + """Gets the lnn of this PoolsPoolStatusSettingsNode. # noqa: E501 Logical Node Number (LNN) of a node. # noqa: E501 - :return: The lnn of this PoolsPoolStatusStatusNode. # noqa: E501 + :return: The lnn of this PoolsPoolStatusSettingsNode. # noqa: E501 :rtype: int """ return self._lnn @lnn.setter def lnn(self, lnn): - """Sets the lnn of this PoolsPoolStatusStatusNode. + """Sets the lnn of this PoolsPoolStatusSettingsNode. Logical Node Number (LNN) of a node. # noqa: E501 - :param lnn: The lnn of this PoolsPoolStatusStatusNode. # noqa: E501 + :param lnn: The lnn of this PoolsPoolStatusSettingsNode. # noqa: E501 :type: int """ if lnn is not None and lnn > 65535: # noqa: E501 @@ -190,22 +190,22 @@ def lnn(self, lnn): @property def node_state(self): - """Gets the node_state of this PoolsPoolStatusStatusNode. # noqa: E501 + """Gets the node_state of this PoolsPoolStatusSettingsNode. # noqa: E501 The node's current state within the cluster. # noqa: E501 - :return: The node_state of this PoolsPoolStatusStatusNode. # noqa: E501 + :return: The node_state of this PoolsPoolStatusSettingsNode. # noqa: E501 :rtype: str """ return self._node_state @node_state.setter def node_state(self, node_state): - """Sets the node_state of this PoolsPoolStatusStatusNode. + """Sets the node_state of this PoolsPoolStatusSettingsNode. The node's current state within the cluster. # noqa: E501 - :param node_state: The node_state of this PoolsPoolStatusStatusNode. # noqa: E501 + :param node_state: The node_state of this PoolsPoolStatusSettingsNode. # noqa: E501 :type: str """ allowed_values = ["up", "draining", "smartfailing", "shutting_down", "down"] # noqa: E501 @@ -219,22 +219,22 @@ def node_state(self, node_state): @property def protocols_running(self): - """Gets the protocols_running of this PoolsPoolStatusStatusNode. # noqa: E501 + """Gets the protocols_running of this PoolsPoolStatusSettingsNode. # noqa: E501 Indicates if the node has the required protocols to be resolvable via DNS. # noqa: E501 - :return: The protocols_running of this PoolsPoolStatusStatusNode. # noqa: E501 + :return: The protocols_running of this PoolsPoolStatusSettingsNode. # noqa: E501 :rtype: bool """ return self._protocols_running @protocols_running.setter def protocols_running(self, protocols_running): - """Sets the protocols_running of this PoolsPoolStatusStatusNode. + """Sets the protocols_running of this PoolsPoolStatusSettingsNode. Indicates if the node has the required protocols to be resolvable via DNS. # noqa: E501 - :param protocols_running: The protocols_running of this PoolsPoolStatusStatusNode. # noqa: E501 + :param protocols_running: The protocols_running of this PoolsPoolStatusSettingsNode. # noqa: E501 :type: bool """ @@ -242,22 +242,22 @@ def protocols_running(self, protocols_running): @property def sc_dns_resolvable(self): - """Gets the sc_dns_resolvable of this PoolsPoolStatusStatusNode. # noqa: E501 + """Gets the sc_dns_resolvable of this PoolsPoolStatusSettingsNode. # noqa: E501 Indicates if the node can be resolved via SmartConnect DNS or not. # noqa: E501 - :return: The sc_dns_resolvable of this PoolsPoolStatusStatusNode. # noqa: E501 + :return: The sc_dns_resolvable of this PoolsPoolStatusSettingsNode. # noqa: E501 :rtype: bool """ return self._sc_dns_resolvable @sc_dns_resolvable.setter def sc_dns_resolvable(self, sc_dns_resolvable): - """Sets the sc_dns_resolvable of this PoolsPoolStatusStatusNode. + """Sets the sc_dns_resolvable of this PoolsPoolStatusSettingsNode. Indicates if the node can be resolved via SmartConnect DNS or not. # noqa: E501 - :param sc_dns_resolvable: The sc_dns_resolvable of this PoolsPoolStatusStatusNode. # noqa: E501 + :param sc_dns_resolvable: The sc_dns_resolvable of this PoolsPoolStatusSettingsNode. # noqa: E501 :type: bool """ @@ -265,22 +265,22 @@ def sc_dns_resolvable(self, sc_dns_resolvable): @property def suspended(self): - """Gets the suspended of this PoolsPoolStatusStatusNode. # noqa: E501 + """Gets the suspended of this PoolsPoolStatusSettingsNode. # noqa: E501 Indicates if the node has been suspended within the Network Pool. # noqa: E501 - :return: The suspended of this PoolsPoolStatusStatusNode. # noqa: E501 + :return: The suspended of this PoolsPoolStatusSettingsNode. # noqa: E501 :rtype: bool """ return self._suspended @suspended.setter def suspended(self, suspended): - """Sets the suspended of this PoolsPoolStatusStatusNode. + """Sets the suspended of this PoolsPoolStatusSettingsNode. Indicates if the node has been suspended within the Network Pool. # noqa: E501 - :param suspended: The suspended of this PoolsPoolStatusStatusNode. # noqa: E501 + :param suspended: The suspended of this PoolsPoolStatusSettingsNode. # noqa: E501 :type: bool """ @@ -307,7 +307,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(PoolsPoolStatusStatusNode, dict): + if issubclass(PoolsPoolStatusSettingsNode, dict): for key, value in self.items(): result[key] = value @@ -323,7 +323,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, PoolsPoolStatusStatusNode): + if not isinstance(other, PoolsPoolStatusSettingsNode): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_status_status_node_interface_status.py b/isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_status_settings_node_interface_status.py similarity index 80% rename from isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_status_status_node_interface_status.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_status_settings_node_interface_status.py index 745b32824..2b8d84920 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_status_status_node_interface_status.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_status_settings_node_interface_status.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class PoolsPoolStatusStatusNodeInterfaceStatus(object): +class PoolsPoolStatusSettingsNodeInterfaceStatus(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -41,7 +41,7 @@ class PoolsPoolStatusStatusNodeInterfaceStatus(object): } def __init__(self, total=None, usable=None): # noqa: E501 - """PoolsPoolStatusStatusNodeInterfaceStatus - a model defined in Swagger""" # noqa: E501 + """PoolsPoolStatusSettingsNodeInterfaceStatus - a model defined in Swagger""" # noqa: E501 self._total = None self._usable = None @@ -54,22 +54,22 @@ def __init__(self, total=None, usable=None): # noqa: E501 @property def total(self): - """Gets the total of this PoolsPoolStatusStatusNodeInterfaceStatus. # noqa: E501 + """Gets the total of this PoolsPoolStatusSettingsNodeInterfaceStatus. # noqa: E501 The number of interfaces on the node that are configured within this Network Pool # noqa: E501 - :return: The total of this PoolsPoolStatusStatusNodeInterfaceStatus. # noqa: E501 + :return: The total of this PoolsPoolStatusSettingsNodeInterfaceStatus. # noqa: E501 :rtype: int """ return self._total @total.setter def total(self, total): - """Sets the total of this PoolsPoolStatusStatusNodeInterfaceStatus. + """Sets the total of this PoolsPoolStatusSettingsNodeInterfaceStatus. The number of interfaces on the node that are configured within this Network Pool # noqa: E501 - :param total: The total of this PoolsPoolStatusStatusNodeInterfaceStatus. # noqa: E501 + :param total: The total of this PoolsPoolStatusSettingsNodeInterfaceStatus. # noqa: E501 :type: int """ if total is not None and total > 4294967295: # noqa: E501 @@ -81,22 +81,22 @@ def total(self, total): @property def usable(self): - """Gets the usable of this PoolsPoolStatusStatusNodeInterfaceStatus. # noqa: E501 + """Gets the usable of this PoolsPoolStatusSettingsNodeInterfaceStatus. # noqa: E501 The number of interfaces on the node that are configured within this Network Pool and are currently usable to SmartConnect. # noqa: E501 - :return: The usable of this PoolsPoolStatusStatusNodeInterfaceStatus. # noqa: E501 + :return: The usable of this PoolsPoolStatusSettingsNodeInterfaceStatus. # noqa: E501 :rtype: int """ return self._usable @usable.setter def usable(self, usable): - """Sets the usable of this PoolsPoolStatusStatusNodeInterfaceStatus. + """Sets the usable of this PoolsPoolStatusSettingsNodeInterfaceStatus. The number of interfaces on the node that are configured within this Network Pool and are currently usable to SmartConnect. # noqa: E501 - :param usable: The usable of this PoolsPoolStatusStatusNodeInterfaceStatus. # noqa: E501 + :param usable: The usable of this PoolsPoolStatusSettingsNodeInterfaceStatus. # noqa: E501 :type: int """ if usable is not None and usable > 4294967295: # noqa: E501 @@ -127,7 +127,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(PoolsPoolStatusStatusNodeInterfaceStatus, dict): + if issubclass(PoolsPoolStatusSettingsNodeInterfaceStatus, dict): for key, value in self.items(): result[key] = value @@ -143,7 +143,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, PoolsPoolStatusStatusNodeInterfaceStatus): + if not isinstance(other, PoolsPoolStatusSettingsNodeInterfaceStatus): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_status_status_sc_dns_overview.py b/isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_status_settings_sc_dns_overview.py similarity index 82% rename from isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_status_status_sc_dns_overview.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_status_settings_sc_dns_overview.py index 9d1b0081c..6ae4f6466 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/pools_pool_status_status_sc_dns_overview.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/pools_pool_status_settings_sc_dns_overview.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class PoolsPoolStatusStatusScDnsOverview(object): +class PoolsPoolStatusSettingsScDnsOverview(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -43,7 +43,7 @@ class PoolsPoolStatusStatusScDnsOverview(object): } def __init__(self, needs_attention=None, resolvable=None, sc_subnet=None): # noqa: E501 - """PoolsPoolStatusStatusScDnsOverview - a model defined in Swagger""" # noqa: E501 + """PoolsPoolStatusSettingsScDnsOverview - a model defined in Swagger""" # noqa: E501 self._needs_attention = None self._resolvable = None @@ -59,22 +59,22 @@ def __init__(self, needs_attention=None, resolvable=None, sc_subnet=None): # no @property def needs_attention(self): - """Gets the needs_attention of this PoolsPoolStatusStatusScDnsOverview. # noqa: E501 + """Gets the needs_attention of this PoolsPoolStatusSettingsScDnsOverview. # noqa: E501 The number of nodes that either are not resolvable via SmartConnect DNS or may need attention for other reasons such as an unusable Network Interface. # noqa: E501 - :return: The needs_attention of this PoolsPoolStatusStatusScDnsOverview. # noqa: E501 + :return: The needs_attention of this PoolsPoolStatusSettingsScDnsOverview. # noqa: E501 :rtype: int """ return self._needs_attention @needs_attention.setter def needs_attention(self, needs_attention): - """Sets the needs_attention of this PoolsPoolStatusStatusScDnsOverview. + """Sets the needs_attention of this PoolsPoolStatusSettingsScDnsOverview. The number of nodes that either are not resolvable via SmartConnect DNS or may need attention for other reasons such as an unusable Network Interface. # noqa: E501 - :param needs_attention: The needs_attention of this PoolsPoolStatusStatusScDnsOverview. # noqa: E501 + :param needs_attention: The needs_attention of this PoolsPoolStatusSettingsScDnsOverview. # noqa: E501 :type: int """ if needs_attention is not None and needs_attention > 4294967295: # noqa: E501 @@ -86,22 +86,22 @@ def needs_attention(self, needs_attention): @property def resolvable(self): - """Gets the resolvable of this PoolsPoolStatusStatusScDnsOverview. # noqa: E501 + """Gets the resolvable of this PoolsPoolStatusSettingsScDnsOverview. # noqa: E501 The number of nodes that can be resolved via SmartConnect DNS. # noqa: E501 - :return: The resolvable of this PoolsPoolStatusStatusScDnsOverview. # noqa: E501 + :return: The resolvable of this PoolsPoolStatusSettingsScDnsOverview. # noqa: E501 :rtype: int """ return self._resolvable @resolvable.setter def resolvable(self, resolvable): - """Sets the resolvable of this PoolsPoolStatusStatusScDnsOverview. + """Sets the resolvable of this PoolsPoolStatusSettingsScDnsOverview. The number of nodes that can be resolved via SmartConnect DNS. # noqa: E501 - :param resolvable: The resolvable of this PoolsPoolStatusStatusScDnsOverview. # noqa: E501 + :param resolvable: The resolvable of this PoolsPoolStatusSettingsScDnsOverview. # noqa: E501 :type: int """ if resolvable is not None and resolvable > 4294967295: # noqa: E501 @@ -113,22 +113,22 @@ def resolvable(self, resolvable): @property def sc_subnet(self): - """Gets the sc_subnet of this PoolsPoolStatusStatusScDnsOverview. # noqa: E501 + """Gets the sc_subnet of this PoolsPoolStatusSettingsScDnsOverview. # noqa: E501 The subnet responsible for DNS resolution for this pool. # noqa: E501 - :return: The sc_subnet of this PoolsPoolStatusStatusScDnsOverview. # noqa: E501 + :return: The sc_subnet of this PoolsPoolStatusSettingsScDnsOverview. # noqa: E501 :rtype: str """ return self._sc_subnet @sc_subnet.setter def sc_subnet(self, sc_subnet): - """Sets the sc_subnet of this PoolsPoolStatusStatusScDnsOverview. + """Sets the sc_subnet of this PoolsPoolStatusSettingsScDnsOverview. The subnet responsible for DNS resolution for this pool. # noqa: E501 - :param sc_subnet: The sc_subnet of this PoolsPoolStatusStatusScDnsOverview. # noqa: E501 + :param sc_subnet: The sc_subnet of this PoolsPoolStatusSettingsScDnsOverview. # noqa: E501 :type: str """ if sc_subnet is not None and len(sc_subnet) > 66: @@ -159,7 +159,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(PoolsPoolStatusStatusScDnsOverview, dict): + if issubclass(PoolsPoolStatusSettingsScDnsOverview, dict): for key, value in self.items(): result[key] = value @@ -175,7 +175,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, PoolsPoolStatusStatusScDnsOverview): + if not isinstance(other, PoolsPoolStatusSettingsScDnsOverview): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/progress_global.py b/isilon_sdk/isilon_sdk/v9_4_0/models/progress_global.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/progress_global.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/progress_global.py index b24f48df4..c7dcfdc3e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/progress_global.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/progress_global.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/progress_global_progress.py b/isilon_sdk/isilon_sdk/v9_4_0/models/progress_global_progress.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/progress_global_progress.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/progress_global_progress.py index 79f7eb927..9965cc44b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/progress_global_progress.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/progress_global_progress.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/protocols_smb_sessions.py b/isilon_sdk/isilon_sdk/v9_4_0/models/protocols_smb_sessions.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/protocols_smb_sessions.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/protocols_smb_sessions.py index bae3dcb84..a10c9881c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/protocols_smb_sessions.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/protocols_smb_sessions.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/protocols_smb_sessions_session.py b/isilon_sdk/isilon_sdk/v9_4_0/models/protocols_smb_sessions_session.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/protocols_smb_sessions_session.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/protocols_smb_sessions_session.py index 3801d7ec2..b914b6875 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/protocols_smb_sessions_session.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/protocols_smb_sessions_session.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_ads.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_ads.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_ads.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_ads.py index 9a6dbd86c..245565850 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_ads.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_ads.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_ads_ads_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_ads_ads_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_ads_ads_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_ads_ads_item.py index 0736f538c..4e68bab92 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_ads_ads_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_ads_ads_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -406,8 +406,8 @@ def check_online_interval(self, check_online_interval): """ if check_online_interval is not None and check_online_interval > 86400: # noqa: E501 raise ValueError("Invalid value for `check_online_interval`, must be a value less than or equal to `86400`") # noqa: E501 - if check_online_interval is not None and check_online_interval < 30: # noqa: E501 - raise ValueError("Invalid value for `check_online_interval`, must be a value greater than or equal to `30`") # noqa: E501 + if check_online_interval is not None and check_online_interval < 60: # noqa: E501 + raise ValueError("Invalid value for `check_online_interval`, must be a value greater than or equal to `60`") # noqa: E501 self._check_online_interval = check_online_interval @@ -652,8 +652,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_ads_ads_item_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_ads_ads_item_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_ads_ads_item_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_ads_ads_item_extended.py index 99bc6fd4d..f6e4f41a0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_ads_ads_item_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_ads_ads_item_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -396,8 +396,8 @@ def check_online_interval(self, check_online_interval): """ if check_online_interval is not None and check_online_interval > 86400: # noqa: E501 raise ValueError("Invalid value for `check_online_interval`, must be a value less than or equal to `86400`") # noqa: E501 - if check_online_interval is not None and check_online_interval < 30: # noqa: E501 - raise ValueError("Invalid value for `check_online_interval`, must be a value greater than or equal to `30`") # noqa: E501 + if check_online_interval is not None and check_online_interval < 60: # noqa: E501 + raise ValueError("Invalid value for `check_online_interval`, must be a value greater than or equal to `60`") # noqa: E501 self._check_online_interval = check_online_interval @@ -642,8 +642,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_ads_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_ads_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_ads_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_ads_extended.py index 1edd94a05..8c2c1fafb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_ads_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_ads_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_ads_id_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_ads_id_params.py similarity index 95% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_ads_id_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_ads_id_params.py index 2e93b8006..c87347354 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_ads_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_ads_id_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -54,7 +54,6 @@ class ProvidersAdsIdParams(object): 'lookup_normalize_groups': 'bool', 'lookup_normalize_users': 'bool', 'lookup_users': 'bool', - 'machine_account': 'str', 'machine_password_changes': 'bool', 'machine_password_lifespan': 'int', 'node_dc_affinity': 'str', @@ -97,7 +96,6 @@ class ProvidersAdsIdParams(object): 'lookup_normalize_groups': 'lookup_normalize_groups', 'lookup_normalize_users': 'lookup_normalize_users', 'lookup_users': 'lookup_users', - 'machine_account': 'machine_account', 'machine_password_changes': 'machine_password_changes', 'machine_password_lifespan': 'machine_password_lifespan', 'node_dc_affinity': 'node_dc_affinity', @@ -116,7 +114,7 @@ class ProvidersAdsIdParams(object): 'user': 'user' } - def __init__(self, allocate_gids=None, allocate_uids=None, assume_default_domain=None, authentication=None, check_online_interval=None, controller_time=None, create_home_directory=None, domain_controller=None, domain_offline_alerts=None, extra_expected_spns=None, findable_groups=None, findable_users=None, home_directory_template=None, ignore_all_trusts=None, ignored_trusted_domains=None, include_trusted_domains=None, ldap_sign_and_seal=None, login_shell=None, lookup_domains=None, lookup_groups=None, lookup_normalize_groups=None, lookup_normalize_users=None, lookup_users=None, machine_account=None, machine_password_changes=None, machine_password_lifespan=None, node_dc_affinity=None, node_dc_affinity_timeout=None, nss_enumeration=None, password=None, reset_schannel=None, restrict_findable=None, rpc_call_timeout=None, server_retry_limit=None, sfu_support=None, spns=None, store_sfu_mappings=None, unfindable_groups=None, unfindable_users=None, user=None): # noqa: E501 + def __init__(self, allocate_gids=None, allocate_uids=None, assume_default_domain=None, authentication=None, check_online_interval=None, controller_time=None, create_home_directory=None, domain_controller=None, domain_offline_alerts=None, extra_expected_spns=None, findable_groups=None, findable_users=None, home_directory_template=None, ignore_all_trusts=None, ignored_trusted_domains=None, include_trusted_domains=None, ldap_sign_and_seal=None, login_shell=None, lookup_domains=None, lookup_groups=None, lookup_normalize_groups=None, lookup_normalize_users=None, lookup_users=None, machine_password_changes=None, machine_password_lifespan=None, node_dc_affinity=None, node_dc_affinity_timeout=None, nss_enumeration=None, password=None, reset_schannel=None, restrict_findable=None, rpc_call_timeout=None, server_retry_limit=None, sfu_support=None, spns=None, store_sfu_mappings=None, unfindable_groups=None, unfindable_users=None, user=None): # noqa: E501 """ProvidersAdsIdParams - a model defined in Swagger""" # noqa: E501 self._allocate_gids = None @@ -142,7 +140,6 @@ def __init__(self, allocate_gids=None, allocate_uids=None, assume_default_domain self._lookup_normalize_groups = None self._lookup_normalize_users = None self._lookup_users = None - self._machine_account = None self._machine_password_changes = None self._machine_password_lifespan = None self._node_dc_affinity = None @@ -207,8 +204,6 @@ def __init__(self, allocate_gids=None, allocate_uids=None, assume_default_domain self.lookup_normalize_users = lookup_normalize_users if lookup_users is not None: self.lookup_users = lookup_users - if machine_account is not None: - self.machine_account = machine_account if machine_password_changes is not None: self.machine_password_changes = machine_password_changes if machine_password_lifespan is not None: @@ -356,8 +351,8 @@ def check_online_interval(self, check_online_interval): """ if check_online_interval is not None and check_online_interval > 86400: # noqa: E501 raise ValueError("Invalid value for `check_online_interval`, must be a value less than or equal to `86400`") # noqa: E501 - if check_online_interval is not None and check_online_interval < 30: # noqa: E501 - raise ValueError("Invalid value for `check_online_interval`, must be a value greater than or equal to `30`") # noqa: E501 + if check_online_interval is not None and check_online_interval < 60: # noqa: E501 + raise ValueError("Invalid value for `check_online_interval`, must be a value greater than or equal to `60`") # noqa: E501 self._check_online_interval = check_online_interval @@ -554,8 +549,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template @@ -793,33 +788,6 @@ def lookup_users(self, lookup_users): self._lookup_users = lookup_users - @property - def machine_account(self): - """Gets the machine_account of this ProvidersAdsIdParams. # noqa: E501 - - Specifies the machine account name when creating a SAM account with Active Directory. # noqa: E501 - - :return: The machine_account of this ProvidersAdsIdParams. # noqa: E501 - :rtype: str - """ - return self._machine_account - - @machine_account.setter - def machine_account(self, machine_account): - """Sets the machine_account of this ProvidersAdsIdParams. - - Specifies the machine account name when creating a SAM account with Active Directory. # noqa: E501 - - :param machine_account: The machine_account of this ProvidersAdsIdParams. # noqa: E501 - :type: str - """ - if machine_account is not None and len(machine_account) > 255: - raise ValueError("Invalid value for `machine_account`, length must be less than or equal to `255`") # noqa: E501 - if machine_account is not None and len(machine_account) < 0: - raise ValueError("Invalid value for `machine_account`, length must be greater than or equal to `0`") # noqa: E501 - - self._machine_account = machine_account - @property def machine_password_changes(self): """Gets the machine_password_changes of this ProvidersAdsIdParams. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_ads_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_ads_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_ads_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_ads_item.py index 3b510b231..cfdfd7d5d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_ads_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_ads_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -373,8 +373,8 @@ def check_online_interval(self, check_online_interval): """ if check_online_interval is not None and check_online_interval > 86400: # noqa: E501 raise ValueError("Invalid value for `check_online_interval`, must be a value less than or equal to `86400`") # noqa: E501 - if check_online_interval is not None and check_online_interval < 30: # noqa: E501 - raise ValueError("Invalid value for `check_online_interval`, must be a value greater than or equal to `30`") # noqa: E501 + if check_online_interval is not None and check_online_interval < 60: # noqa: E501 + raise ValueError("Invalid value for `check_online_interval`, must be a value greater than or equal to `60`") # noqa: E501 self._check_online_interval = check_online_interval @@ -598,8 +598,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_duo.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_duo.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_duo.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_duo.py index 66187335c..3926bb9ff 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_duo.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_duo.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_duo_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_duo_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_duo_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_duo_extended.py index e54b80d53..f00a9f0e4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_duo_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_duo_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_duo_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_duo_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_duo_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_duo_settings.py index ac429cc7b..c3030bce3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_duo_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_duo_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_file.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_file.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_file.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_file.py index 0f2167d84..518174751 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_file.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_file.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_file_file_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_file_file_item.py similarity index 95% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_file_file_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_file_file_item.py index 13b1adee8..f40d04390 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_file_file_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_file_file_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -53,7 +53,6 @@ class ProvidersFileFileItem(object): 'normalize_users': 'bool', 'ntlm_support': 'str', 'password_file': 'str', - 'password_hash_type': 'str', 'provider_domain': 'str', 'restrict_findable': 'bool', 'restrict_listable': 'bool', @@ -93,7 +92,6 @@ class ProvidersFileFileItem(object): 'normalize_users': 'normalize_users', 'ntlm_support': 'ntlm_support', 'password_file': 'password_file', - 'password_hash_type': 'password_hash_type', 'provider_domain': 'provider_domain', 'restrict_findable': 'restrict_findable', 'restrict_listable': 'restrict_listable', @@ -110,7 +108,7 @@ class ProvidersFileFileItem(object): 'zone_name': 'zone_name' } - def __init__(self, authentication=None, create_home_directory=None, enabled=None, enumerate_groups=None, enumerate_users=None, findable_groups=None, findable_users=None, group_domain=None, group_file=None, home_directory_template=None, id=None, listable_groups=None, listable_users=None, login_shell=None, modifiable_groups=None, modifiable_users=None, name=None, netgroup_file=None, normalize_groups=None, normalize_users=None, ntlm_support=None, password_file=None, password_hash_type=None, provider_domain=None, restrict_findable=None, restrict_listable=None, restrict_modifiable=None, status=None, system=None, unfindable_groups=None, unfindable_users=None, unlistable_groups=None, unlistable_users=None, unmodifiable_groups=None, unmodifiable_users=None, user_domain=None, zone_name=None): # noqa: E501 + def __init__(self, authentication=None, create_home_directory=None, enabled=None, enumerate_groups=None, enumerate_users=None, findable_groups=None, findable_users=None, group_domain=None, group_file=None, home_directory_template=None, id=None, listable_groups=None, listable_users=None, login_shell=None, modifiable_groups=None, modifiable_users=None, name=None, netgroup_file=None, normalize_groups=None, normalize_users=None, ntlm_support=None, password_file=None, provider_domain=None, restrict_findable=None, restrict_listable=None, restrict_modifiable=None, status=None, system=None, unfindable_groups=None, unfindable_users=None, unlistable_groups=None, unlistable_users=None, unmodifiable_groups=None, unmodifiable_users=None, user_domain=None, zone_name=None): # noqa: E501 """ProvidersFileFileItem - a model defined in Swagger""" # noqa: E501 self._authentication = None @@ -135,7 +133,6 @@ def __init__(self, authentication=None, create_home_directory=None, enabled=None self._normalize_users = None self._ntlm_support = None self._password_file = None - self._password_hash_type = None self._provider_domain = None self._restrict_findable = None self._restrict_listable = None @@ -196,8 +193,6 @@ def __init__(self, authentication=None, create_home_directory=None, enabled=None self.ntlm_support = ntlm_support if password_file is not None: self.password_file = password_file - if password_hash_type is not None: - self.password_hash_type = password_hash_type if provider_domain is not None: self.provider_domain = provider_domain if restrict_findable is not None: @@ -466,8 +461,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template @@ -773,35 +768,6 @@ def password_file(self, password_file): self._password_file = password_file - @property - def password_hash_type(self): - """Gets the password_hash_type of this ProvidersFileFileItem. # noqa: E501 - - Specifies the password hash algorithm to use. # noqa: E501 - - :return: The password_hash_type of this ProvidersFileFileItem. # noqa: E501 - :rtype: str - """ - return self._password_hash_type - - @password_hash_type.setter - def password_hash_type(self, password_hash_type): - """Sets the password_hash_type of this ProvidersFileFileItem. - - Specifies the password hash algorithm to use. # noqa: E501 - - :param password_hash_type: The password_hash_type of this ProvidersFileFileItem. # noqa: E501 - :type: str - """ - allowed_values = ["NTHash", "SHA256", "SHA512"] # noqa: E501 - if password_hash_type not in allowed_values: - raise ValueError( - "Invalid value for `password_hash_type` ({0}), must be one of {1}" # noqa: E501 - .format(password_hash_type, allowed_values) - ) - - self._password_hash_type = password_hash_type - @property def provider_domain(self): """Gets the provider_domain of this ProvidersFileFileItem. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_file_id_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_file_id_params.py similarity index 92% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_file_id_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_file_id_params.py index b79db30eb..27346d12a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_file_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_file_id_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -33,7 +33,6 @@ class ProvidersFileIdParams(object): swagger_types = { 'authentication': 'bool', 'create_home_directory': 'bool', - 'delete_password_hashes': 'bool', 'enabled': 'bool', 'enumerate_groups': 'bool', 'enumerate_users': 'bool', @@ -53,7 +52,6 @@ class ProvidersFileIdParams(object): 'normalize_users': 'bool', 'ntlm_support': 'str', 'password_file': 'str', - 'password_hash_type': 'str', 'provider_domain': 'str', 'restrict_findable': 'bool', 'restrict_listable': 'bool', @@ -70,7 +68,6 @@ class ProvidersFileIdParams(object): attribute_map = { 'authentication': 'authentication', 'create_home_directory': 'create_home_directory', - 'delete_password_hashes': 'delete_password_hashes', 'enabled': 'enabled', 'enumerate_groups': 'enumerate_groups', 'enumerate_users': 'enumerate_users', @@ -90,7 +87,6 @@ class ProvidersFileIdParams(object): 'normalize_users': 'normalize_users', 'ntlm_support': 'ntlm_support', 'password_file': 'password_file', - 'password_hash_type': 'password_hash_type', 'provider_domain': 'provider_domain', 'restrict_findable': 'restrict_findable', 'restrict_listable': 'restrict_listable', @@ -104,12 +100,11 @@ class ProvidersFileIdParams(object): 'user_domain': 'user_domain' } - def __init__(self, authentication=None, create_home_directory=None, delete_password_hashes=None, enabled=None, enumerate_groups=None, enumerate_users=None, findable_groups=None, findable_users=None, group_domain=None, group_file=None, home_directory_template=None, listable_groups=None, listable_users=None, login_shell=None, modifiable_groups=None, modifiable_users=None, name=None, netgroup_file=None, normalize_groups=None, normalize_users=None, ntlm_support=None, password_file=None, password_hash_type=None, provider_domain=None, restrict_findable=None, restrict_listable=None, restrict_modifiable=None, unfindable_groups=None, unfindable_users=None, unlistable_groups=None, unlistable_users=None, unmodifiable_groups=None, unmodifiable_users=None, user_domain=None): # noqa: E501 + def __init__(self, authentication=None, create_home_directory=None, enabled=None, enumerate_groups=None, enumerate_users=None, findable_groups=None, findable_users=None, group_domain=None, group_file=None, home_directory_template=None, listable_groups=None, listable_users=None, login_shell=None, modifiable_groups=None, modifiable_users=None, name=None, netgroup_file=None, normalize_groups=None, normalize_users=None, ntlm_support=None, password_file=None, provider_domain=None, restrict_findable=None, restrict_listable=None, restrict_modifiable=None, unfindable_groups=None, unfindable_users=None, unlistable_groups=None, unlistable_users=None, unmodifiable_groups=None, unmodifiable_users=None, user_domain=None): # noqa: E501 """ProvidersFileIdParams - a model defined in Swagger""" # noqa: E501 self._authentication = None self._create_home_directory = None - self._delete_password_hashes = None self._enabled = None self._enumerate_groups = None self._enumerate_users = None @@ -129,7 +124,6 @@ def __init__(self, authentication=None, create_home_directory=None, delete_passw self._normalize_users = None self._ntlm_support = None self._password_file = None - self._password_hash_type = None self._provider_domain = None self._restrict_findable = None self._restrict_listable = None @@ -147,8 +141,6 @@ def __init__(self, authentication=None, create_home_directory=None, delete_passw self.authentication = authentication if create_home_directory is not None: self.create_home_directory = create_home_directory - if delete_password_hashes is not None: - self.delete_password_hashes = delete_password_hashes if enabled is not None: self.enabled = enabled if enumerate_groups is not None: @@ -187,8 +179,6 @@ def __init__(self, authentication=None, create_home_directory=None, delete_passw self.ntlm_support = ntlm_support if password_file is not None: self.password_file = password_file - if password_hash_type is not None: - self.password_hash_type = password_hash_type if provider_domain is not None: self.provider_domain = provider_domain if restrict_findable is not None: @@ -258,29 +248,6 @@ def create_home_directory(self, create_home_directory): self._create_home_directory = create_home_directory - @property - def delete_password_hashes(self): - """Gets the delete_password_hashes of this ProvidersFileIdParams. # noqa: E501 - - Delete all password hashes that do not match Password Hash Type and force password change at next login. # noqa: E501 - - :return: The delete_password_hashes of this ProvidersFileIdParams. # noqa: E501 - :rtype: bool - """ - return self._delete_password_hashes - - @delete_password_hashes.setter - def delete_password_hashes(self, delete_password_hashes): - """Sets the delete_password_hashes of this ProvidersFileIdParams. - - Delete all password hashes that do not match Password Hash Type and force password change at next login. # noqa: E501 - - :param delete_password_hashes: The delete_password_hashes of this ProvidersFileIdParams. # noqa: E501 - :type: bool - """ - - self._delete_password_hashes = delete_password_hashes - @property def enabled(self): """Gets the enabled of this ProvidersFileIdParams. # noqa: E501 @@ -474,8 +441,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template @@ -748,29 +715,6 @@ def password_file(self, password_file): self._password_file = password_file - @property - def password_hash_type(self): - """Gets the password_hash_type of this ProvidersFileIdParams. # noqa: E501 - - Specifies the password hash algorithm to use. # noqa: E501 - - :return: The password_hash_type of this ProvidersFileIdParams. # noqa: E501 - :rtype: str - """ - return self._password_hash_type - - @password_hash_type.setter - def password_hash_type(self, password_hash_type): - """Sets the password_hash_type of this ProvidersFileIdParams. - - Specifies the password hash algorithm to use. # noqa: E501 - - :param password_hash_type: The password_hash_type of this ProvidersFileIdParams. # noqa: E501 - :type: str - """ - - self._password_hash_type = password_hash_type - @property def provider_domain(self): """Gets the provider_domain of this ProvidersFileIdParams. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_file_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_file_item.py similarity index 95% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_file_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_file_item.py index f905fc7d1..65d373c5f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_file_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_file_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -52,7 +52,6 @@ class ProvidersFileItem(object): 'normalize_users': 'bool', 'ntlm_support': 'str', 'password_file': 'str', - 'password_hash_type': 'str', 'provider_domain': 'str', 'restrict_findable': 'bool', 'restrict_listable': 'bool', @@ -88,7 +87,6 @@ class ProvidersFileItem(object): 'normalize_users': 'normalize_users', 'ntlm_support': 'ntlm_support', 'password_file': 'password_file', - 'password_hash_type': 'password_hash_type', 'provider_domain': 'provider_domain', 'restrict_findable': 'restrict_findable', 'restrict_listable': 'restrict_listable', @@ -102,7 +100,7 @@ class ProvidersFileItem(object): 'user_domain': 'user_domain' } - def __init__(self, authentication=None, create_home_directory=None, enabled=None, enumerate_groups=None, enumerate_users=None, findable_groups=None, findable_users=None, group_domain=None, group_file=None, home_directory_template=None, listable_groups=None, listable_users=None, login_shell=None, modifiable_groups=None, modifiable_users=None, name=None, netgroup_file=None, normalize_groups=None, normalize_users=None, ntlm_support=None, password_file=None, password_hash_type=None, provider_domain=None, restrict_findable=None, restrict_listable=None, restrict_modifiable=None, unfindable_groups=None, unfindable_users=None, unlistable_groups=None, unlistable_users=None, unmodifiable_groups=None, unmodifiable_users=None, user_domain=None): # noqa: E501 + def __init__(self, authentication=None, create_home_directory=None, enabled=None, enumerate_groups=None, enumerate_users=None, findable_groups=None, findable_users=None, group_domain=None, group_file=None, home_directory_template=None, listable_groups=None, listable_users=None, login_shell=None, modifiable_groups=None, modifiable_users=None, name=None, netgroup_file=None, normalize_groups=None, normalize_users=None, ntlm_support=None, password_file=None, provider_domain=None, restrict_findable=None, restrict_listable=None, restrict_modifiable=None, unfindable_groups=None, unfindable_users=None, unlistable_groups=None, unlistable_users=None, unmodifiable_groups=None, unmodifiable_users=None, user_domain=None): # noqa: E501 """ProvidersFileItem - a model defined in Swagger""" # noqa: E501 self._authentication = None @@ -126,7 +124,6 @@ def __init__(self, authentication=None, create_home_directory=None, enabled=None self._normalize_users = None self._ntlm_support = None self._password_file = None - self._password_hash_type = None self._provider_domain = None self._restrict_findable = None self._restrict_listable = None @@ -179,8 +176,6 @@ def __init__(self, authentication=None, create_home_directory=None, enabled=None if ntlm_support is not None: self.ntlm_support = ntlm_support self.password_file = password_file - if password_hash_type is not None: - self.password_hash_type = password_hash_type if provider_domain is not None: self.provider_domain = provider_domain if restrict_findable is not None: @@ -445,8 +440,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template @@ -729,35 +724,6 @@ def password_file(self, password_file): self._password_file = password_file - @property - def password_hash_type(self): - """Gets the password_hash_type of this ProvidersFileItem. # noqa: E501 - - Specifies the password hash algorithm to use. # noqa: E501 - - :return: The password_hash_type of this ProvidersFileItem. # noqa: E501 - :rtype: str - """ - return self._password_hash_type - - @password_hash_type.setter - def password_hash_type(self, password_hash_type): - """Sets the password_hash_type of this ProvidersFileItem. - - Specifies the password hash algorithm to use. # noqa: E501 - - :param password_hash_type: The password_hash_type of this ProvidersFileItem. # noqa: E501 - :type: str - """ - allowed_values = ["NTHash", "SHA256", "SHA512"] # noqa: E501 - if password_hash_type not in allowed_values: - raise ValueError( - "Invalid value for `password_hash_type` ({0}), must be one of {1}" # noqa: E501 - .format(password_hash_type, allowed_values) - ) - - self._password_hash_type = password_hash_type - @property def provider_domain(self): """Gets the provider_domain of this ProvidersFileItem. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_krb5.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_krb5.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_krb5.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_krb5.py index a06283086..106d16595 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_krb5.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_krb5.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_krb5_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_krb5_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_krb5_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_krb5_extended.py index a87adeb1d..daebe919c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_krb5_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_krb5_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_krb5_id_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_krb5_id_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_krb5_id_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_krb5_id_params.py index 094d6f3ae..bb2764bcd 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_krb5_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_krb5_id_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_krb5_id_params_keytab_entry.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_krb5_id_params_keytab_entry.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_krb5_id_params_keytab_entry.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_krb5_id_params_keytab_entry.py index ec721cb91..9ae0c089d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_krb5_id_params_keytab_entry.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_krb5_id_params_keytab_entry.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_krb5_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_krb5_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_krb5_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_krb5_item.py index 6edba796b..a6efd94f7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_krb5_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_krb5_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_krb5_krb5_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_krb5_krb5_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_krb5_krb5_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_krb5_krb5_item.py index 3589d64dc..b0f553256 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_krb5_krb5_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_krb5_krb5_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_krb5_krb5_item_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_krb5_krb5_item_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_krb5_krb5_item_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_krb5_krb5_item_extended.py index 19c80074d..73ac1d75f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_krb5_krb5_item_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_krb5_krb5_item_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_ldap.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_ldap.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_ldap.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_ldap.py index 70f619305..c95680e2b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_ldap.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_ldap.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_ldap_id_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_ldap_id_params.py similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_ldap_id_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_ldap_id_params.py index 657cafdb2..fa8880c49 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_ldap_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_ldap_id_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -76,7 +76,6 @@ class ProvidersLdapIdParams(object): 'normalize_users': 'bool', 'nt_password_attribute': 'str', 'ntlm_support': 'str', - 'ocsp_server_uris': 'list[str]', 'provider_domain': 'str', 'require_secure_connection': 'bool', 'restrict_findable': 'bool', @@ -96,7 +95,6 @@ class ProvidersLdapIdParams(object): 'ssh_public_key_attribute': 'str', 'template': 'str', 'tls_protocol_min': 'str', - 'tls_revocation_check_level': 'str', 'uid_attribute': 'str', 'unfindable_groups': 'list[str]', 'unfindable_users': 'list[str]', @@ -155,7 +153,6 @@ class ProvidersLdapIdParams(object): 'normalize_users': 'normalize_users', 'nt_password_attribute': 'nt_password_attribute', 'ntlm_support': 'ntlm_support', - 'ocsp_server_uris': 'ocsp_server_uris', 'provider_domain': 'provider_domain', 'require_secure_connection': 'require_secure_connection', 'restrict_findable': 'restrict_findable', @@ -175,7 +172,6 @@ class ProvidersLdapIdParams(object): 'ssh_public_key_attribute': 'ssh_public_key_attribute', 'template': 'template', 'tls_protocol_min': 'tls_protocol_min', - 'tls_revocation_check_level': 'tls_revocation_check_level', 'uid_attribute': 'uid_attribute', 'unfindable_groups': 'unfindable_groups', 'unfindable_users': 'unfindable_users', @@ -188,7 +184,7 @@ class ProvidersLdapIdParams(object): 'user_search_scope': 'user_search_scope' } - def __init__(self, alternate_security_identities_attribute=None, authentication=None, balance_servers=None, base_dn=None, bind_dn=None, bind_mechanism=None, bind_password=None, bind_timeout=None, certificate_authority_file=None, check_online_interval=None, cn_attribute=None, create_home_directory=None, crypt_password_attribute=None, email_attribute=None, enabled=None, enumerate_groups=None, enumerate_users=None, findable_groups=None, findable_users=None, gecos_attribute=None, gid_attribute=None, group_base_dn=None, group_domain=None, group_filter=None, group_members_attribute=None, group_search_scope=None, home_directory_template=None, homedir_attribute=None, ignore_tls_errors=None, listable_groups=None, listable_users=None, login_shell=None, member_lookup_method=None, member_of_attribute=None, name=None, name_attribute=None, netgroup_base_dn=None, netgroup_filter=None, netgroup_members_attribute=None, netgroup_search_scope=None, netgroup_triple_attribute=None, normalize_groups=None, normalize_users=None, nt_password_attribute=None, ntlm_support=None, ocsp_server_uris=None, provider_domain=None, require_secure_connection=None, restrict_findable=None, restrict_listable=None, search_scope=None, search_timeout=None, server_uris=None, shadow_expire_attribute=None, shadow_flag_attribute=None, shadow_inactive_attribute=None, shadow_last_change_attribute=None, shadow_max_attribute=None, shadow_min_attribute=None, shadow_user_filter=None, shadow_warning_attribute=None, shell_attribute=None, ssh_public_key_attribute=None, template=None, tls_protocol_min=None, tls_revocation_check_level=None, uid_attribute=None, unfindable_groups=None, unfindable_users=None, unique_group_members_attribute=None, unlistable_groups=None, unlistable_users=None, user_base_dn=None, user_domain=None, user_filter=None, user_search_scope=None): # noqa: E501 + def __init__(self, alternate_security_identities_attribute=None, authentication=None, balance_servers=None, base_dn=None, bind_dn=None, bind_mechanism=None, bind_password=None, bind_timeout=None, certificate_authority_file=None, check_online_interval=None, cn_attribute=None, create_home_directory=None, crypt_password_attribute=None, email_attribute=None, enabled=None, enumerate_groups=None, enumerate_users=None, findable_groups=None, findable_users=None, gecos_attribute=None, gid_attribute=None, group_base_dn=None, group_domain=None, group_filter=None, group_members_attribute=None, group_search_scope=None, home_directory_template=None, homedir_attribute=None, ignore_tls_errors=None, listable_groups=None, listable_users=None, login_shell=None, member_lookup_method=None, member_of_attribute=None, name=None, name_attribute=None, netgroup_base_dn=None, netgroup_filter=None, netgroup_members_attribute=None, netgroup_search_scope=None, netgroup_triple_attribute=None, normalize_groups=None, normalize_users=None, nt_password_attribute=None, ntlm_support=None, provider_domain=None, require_secure_connection=None, restrict_findable=None, restrict_listable=None, search_scope=None, search_timeout=None, server_uris=None, shadow_expire_attribute=None, shadow_flag_attribute=None, shadow_inactive_attribute=None, shadow_last_change_attribute=None, shadow_max_attribute=None, shadow_min_attribute=None, shadow_user_filter=None, shadow_warning_attribute=None, shell_attribute=None, ssh_public_key_attribute=None, template=None, tls_protocol_min=None, uid_attribute=None, unfindable_groups=None, unfindable_users=None, unique_group_members_attribute=None, unlistable_groups=None, unlistable_users=None, user_base_dn=None, user_domain=None, user_filter=None, user_search_scope=None): # noqa: E501 """ProvidersLdapIdParams - a model defined in Swagger""" # noqa: E501 self._alternate_security_identities_attribute = None @@ -236,7 +232,6 @@ def __init__(self, alternate_security_identities_attribute=None, authentication= self._normalize_users = None self._nt_password_attribute = None self._ntlm_support = None - self._ocsp_server_uris = None self._provider_domain = None self._require_secure_connection = None self._restrict_findable = None @@ -256,7 +251,6 @@ def __init__(self, alternate_security_identities_attribute=None, authentication= self._ssh_public_key_attribute = None self._template = None self._tls_protocol_min = None - self._tls_revocation_check_level = None self._uid_attribute = None self._unfindable_groups = None self._unfindable_users = None @@ -359,8 +353,6 @@ def __init__(self, alternate_security_identities_attribute=None, authentication= self.nt_password_attribute = nt_password_attribute if ntlm_support is not None: self.ntlm_support = ntlm_support - if ocsp_server_uris is not None: - self.ocsp_server_uris = ocsp_server_uris if provider_domain is not None: self.provider_domain = provider_domain if require_secure_connection is not None: @@ -399,8 +391,6 @@ def __init__(self, alternate_security_identities_attribute=None, authentication= self.template = template if tls_protocol_min is not None: self.tls_protocol_min = tls_protocol_min - if tls_revocation_check_level is not None: - self.tls_revocation_check_level = tls_revocation_check_level if uid_attribute is not None: self.uid_attribute = uid_attribute if unfindable_groups is not None: @@ -1108,8 +1098,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template @@ -1567,29 +1557,6 @@ def ntlm_support(self, ntlm_support): self._ntlm_support = ntlm_support - @property - def ocsp_server_uris(self): - """Gets the ocsp_server_uris of this ProvidersLdapIdParams. # noqa: E501 - - Specifies the OCSP server URIs. # noqa: E501 - - :return: The ocsp_server_uris of this ProvidersLdapIdParams. # noqa: E501 - :rtype: list[str] - """ - return self._ocsp_server_uris - - @ocsp_server_uris.setter - def ocsp_server_uris(self, ocsp_server_uris): - """Sets the ocsp_server_uris of this ProvidersLdapIdParams. - - Specifies the OCSP server URIs. # noqa: E501 - - :param ocsp_server_uris: The ocsp_server_uris of this ProvidersLdapIdParams. # noqa: E501 - :type: list[str] - """ - - self._ocsp_server_uris = ocsp_server_uris - @property def provider_domain(self): """Gets the provider_domain of this ProvidersLdapIdParams. # noqa: E501 @@ -2076,34 +2043,11 @@ def tls_protocol_min(self, tls_protocol_min): raise ValueError("Invalid value for `tls_protocol_min`, length must be less than or equal to `255`") # noqa: E501 if tls_protocol_min is not None and len(tls_protocol_min) < 0: raise ValueError("Invalid value for `tls_protocol_min`, length must be greater than or equal to `0`") # noqa: E501 - if tls_protocol_min is not None and not re.search(r'^[0-9]+[.][0-9]+$', tls_protocol_min): # noqa: E501 - raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+[.][0-9]+$/`") # noqa: E501 + if tls_protocol_min is not None and not re.search(r'^[0-9]+\\.[0-9]+$', tls_protocol_min): # noqa: E501 + raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+\\.[0-9]+$/`") # noqa: E501 self._tls_protocol_min = tls_protocol_min - @property - def tls_revocation_check_level(self): - """Gets the tls_revocation_check_level of this ProvidersLdapIdParams. # noqa: E501 - - This setting controls the behavior of the certificate revocation checking algorithm when the LDAP provider is presented with a digital certificate by an LDAP server. # noqa: E501 - - :return: The tls_revocation_check_level of this ProvidersLdapIdParams. # noqa: E501 - :rtype: str - """ - return self._tls_revocation_check_level - - @tls_revocation_check_level.setter - def tls_revocation_check_level(self, tls_revocation_check_level): - """Sets the tls_revocation_check_level of this ProvidersLdapIdParams. - - This setting controls the behavior of the certificate revocation checking algorithm when the LDAP provider is presented with a digital certificate by an LDAP server. # noqa: E501 - - :param tls_revocation_check_level: The tls_revocation_check_level of this ProvidersLdapIdParams. # noqa: E501 - :type: str - """ - - self._tls_revocation_check_level = tls_revocation_check_level - @property def uid_attribute(self): """Gets the uid_attribute of this ProvidersLdapIdParams. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_ldap_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_ldap_item.py similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_ldap_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_ldap_item.py index 0bf8414e9..4803fbb7a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_ldap_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_ldap_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -77,7 +77,6 @@ class ProvidersLdapItem(object): 'normalize_users': 'bool', 'nt_password_attribute': 'str', 'ntlm_support': 'str', - 'ocsp_server_uris': 'list[str]', 'provider_domain': 'str', 'require_secure_connection': 'bool', 'restrict_findable': 'bool', @@ -97,7 +96,6 @@ class ProvidersLdapItem(object): 'ssh_public_key_attribute': 'str', 'template': 'str', 'tls_protocol_min': 'str', - 'tls_revocation_check_level': 'str', 'uid_attribute': 'str', 'unfindable_groups': 'list[str]', 'unfindable_users': 'list[str]', @@ -157,7 +155,6 @@ class ProvidersLdapItem(object): 'normalize_users': 'normalize_users', 'nt_password_attribute': 'nt_password_attribute', 'ntlm_support': 'ntlm_support', - 'ocsp_server_uris': 'ocsp_server_uris', 'provider_domain': 'provider_domain', 'require_secure_connection': 'require_secure_connection', 'restrict_findable': 'restrict_findable', @@ -177,7 +174,6 @@ class ProvidersLdapItem(object): 'ssh_public_key_attribute': 'ssh_public_key_attribute', 'template': 'template', 'tls_protocol_min': 'tls_protocol_min', - 'tls_revocation_check_level': 'tls_revocation_check_level', 'uid_attribute': 'uid_attribute', 'unfindable_groups': 'unfindable_groups', 'unfindable_users': 'unfindable_users', @@ -190,7 +186,7 @@ class ProvidersLdapItem(object): 'user_search_scope': 'user_search_scope' } - def __init__(self, alternate_security_identities_attribute=None, authentication=None, balance_servers=None, base_dn=None, bind_dn=None, bind_mechanism=None, bind_password=None, bind_timeout=None, certificate_authority_file=None, check_online_interval=None, cn_attribute=None, create_home_directory=None, crypt_password_attribute=None, email_attribute=None, enabled=None, enumerate_groups=None, enumerate_users=None, findable_groups=None, findable_users=None, gecos_attribute=None, gid_attribute=None, group_base_dn=None, group_domain=None, group_filter=None, group_members_attribute=None, group_search_scope=None, groupnet=None, home_directory_template=None, homedir_attribute=None, ignore_tls_errors=None, listable_groups=None, listable_users=None, login_shell=None, member_lookup_method=None, member_of_attribute=None, name=None, name_attribute=None, netgroup_base_dn=None, netgroup_filter=None, netgroup_members_attribute=None, netgroup_search_scope=None, netgroup_triple_attribute=None, normalize_groups=None, normalize_users=None, nt_password_attribute=None, ntlm_support=None, ocsp_server_uris=None, provider_domain=None, require_secure_connection=None, restrict_findable=None, restrict_listable=None, search_scope=None, search_timeout=None, server_uris=None, shadow_expire_attribute=None, shadow_flag_attribute=None, shadow_inactive_attribute=None, shadow_last_change_attribute=None, shadow_max_attribute=None, shadow_min_attribute=None, shadow_user_filter=None, shadow_warning_attribute=None, shell_attribute=None, ssh_public_key_attribute=None, template=None, tls_protocol_min=None, tls_revocation_check_level=None, uid_attribute=None, unfindable_groups=None, unfindable_users=None, unique_group_members_attribute=None, unlistable_groups=None, unlistable_users=None, user_base_dn=None, user_domain=None, user_filter=None, user_search_scope=None): # noqa: E501 + def __init__(self, alternate_security_identities_attribute=None, authentication=None, balance_servers=None, base_dn=None, bind_dn=None, bind_mechanism=None, bind_password=None, bind_timeout=None, certificate_authority_file=None, check_online_interval=None, cn_attribute=None, create_home_directory=None, crypt_password_attribute=None, email_attribute=None, enabled=None, enumerate_groups=None, enumerate_users=None, findable_groups=None, findable_users=None, gecos_attribute=None, gid_attribute=None, group_base_dn=None, group_domain=None, group_filter=None, group_members_attribute=None, group_search_scope=None, groupnet=None, home_directory_template=None, homedir_attribute=None, ignore_tls_errors=None, listable_groups=None, listable_users=None, login_shell=None, member_lookup_method=None, member_of_attribute=None, name=None, name_attribute=None, netgroup_base_dn=None, netgroup_filter=None, netgroup_members_attribute=None, netgroup_search_scope=None, netgroup_triple_attribute=None, normalize_groups=None, normalize_users=None, nt_password_attribute=None, ntlm_support=None, provider_domain=None, require_secure_connection=None, restrict_findable=None, restrict_listable=None, search_scope=None, search_timeout=None, server_uris=None, shadow_expire_attribute=None, shadow_flag_attribute=None, shadow_inactive_attribute=None, shadow_last_change_attribute=None, shadow_max_attribute=None, shadow_min_attribute=None, shadow_user_filter=None, shadow_warning_attribute=None, shell_attribute=None, ssh_public_key_attribute=None, template=None, tls_protocol_min=None, uid_attribute=None, unfindable_groups=None, unfindable_users=None, unique_group_members_attribute=None, unlistable_groups=None, unlistable_users=None, user_base_dn=None, user_domain=None, user_filter=None, user_search_scope=None): # noqa: E501 """ProvidersLdapItem - a model defined in Swagger""" # noqa: E501 self._alternate_security_identities_attribute = None @@ -239,7 +235,6 @@ def __init__(self, alternate_security_identities_attribute=None, authentication= self._normalize_users = None self._nt_password_attribute = None self._ntlm_support = None - self._ocsp_server_uris = None self._provider_domain = None self._require_secure_connection = None self._restrict_findable = None @@ -259,7 +254,6 @@ def __init__(self, alternate_security_identities_attribute=None, authentication= self._ssh_public_key_attribute = None self._template = None self._tls_protocol_min = None - self._tls_revocation_check_level = None self._uid_attribute = None self._unfindable_groups = None self._unfindable_users = None @@ -362,8 +356,6 @@ def __init__(self, alternate_security_identities_attribute=None, authentication= self.nt_password_attribute = nt_password_attribute if ntlm_support is not None: self.ntlm_support = ntlm_support - if ocsp_server_uris is not None: - self.ocsp_server_uris = ocsp_server_uris if provider_domain is not None: self.provider_domain = provider_domain if require_secure_connection is not None: @@ -401,8 +393,6 @@ def __init__(self, alternate_security_identities_attribute=None, authentication= self.template = template if tls_protocol_min is not None: self.tls_protocol_min = tls_protocol_min - if tls_revocation_check_level is not None: - self.tls_revocation_check_level = tls_revocation_check_level if uid_attribute is not None: self.uid_attribute = uid_attribute if unfindable_groups is not None: @@ -1151,8 +1141,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template @@ -1630,29 +1620,6 @@ def ntlm_support(self, ntlm_support): self._ntlm_support = ntlm_support - @property - def ocsp_server_uris(self): - """Gets the ocsp_server_uris of this ProvidersLdapItem. # noqa: E501 - - Specifies the OCSP server URIs. # noqa: E501 - - :return: The ocsp_server_uris of this ProvidersLdapItem. # noqa: E501 - :rtype: list[str] - """ - return self._ocsp_server_uris - - @ocsp_server_uris.setter - def ocsp_server_uris(self, ocsp_server_uris): - """Sets the ocsp_server_uris of this ProvidersLdapItem. - - Specifies the OCSP server URIs. # noqa: E501 - - :param ocsp_server_uris: The ocsp_server_uris of this ProvidersLdapItem. # noqa: E501 - :type: list[str] - """ - - self._ocsp_server_uris = ocsp_server_uris - @property def provider_domain(self): """Gets the provider_domain of this ProvidersLdapItem. # noqa: E501 @@ -2153,40 +2120,11 @@ def tls_protocol_min(self, tls_protocol_min): raise ValueError("Invalid value for `tls_protocol_min`, length must be less than or equal to `255`") # noqa: E501 if tls_protocol_min is not None and len(tls_protocol_min) < 0: raise ValueError("Invalid value for `tls_protocol_min`, length must be greater than or equal to `0`") # noqa: E501 - if tls_protocol_min is not None and not re.search(r'^[0-9]+[.][0-9]+$', tls_protocol_min): # noqa: E501 - raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+[.][0-9]+$/`") # noqa: E501 + if tls_protocol_min is not None and not re.search(r'^[0-9]+\\.[0-9]+$', tls_protocol_min): # noqa: E501 + raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+\\.[0-9]+$/`") # noqa: E501 self._tls_protocol_min = tls_protocol_min - @property - def tls_revocation_check_level(self): - """Gets the tls_revocation_check_level of this ProvidersLdapItem. # noqa: E501 - - This setting controls the behavior of the certificate revocation checking algorithm when the LDAP provider is presented with a digital certificate by an LDAP server. # noqa: E501 - - :return: The tls_revocation_check_level of this ProvidersLdapItem. # noqa: E501 - :rtype: str - """ - return self._tls_revocation_check_level - - @tls_revocation_check_level.setter - def tls_revocation_check_level(self, tls_revocation_check_level): - """Sets the tls_revocation_check_level of this ProvidersLdapItem. - - This setting controls the behavior of the certificate revocation checking algorithm when the LDAP provider is presented with a digital certificate by an LDAP server. # noqa: E501 - - :param tls_revocation_check_level: The tls_revocation_check_level of this ProvidersLdapItem. # noqa: E501 - :type: str - """ - allowed_values = ["none", "allowNoData", "allowNoSrc", "strict"] # noqa: E501 - if tls_revocation_check_level not in allowed_values: - raise ValueError( - "Invalid value for `tls_revocation_check_level` ({0}), must be one of {1}" # noqa: E501 - .format(tls_revocation_check_level, allowed_values) - ) - - self._tls_revocation_check_level = tls_revocation_check_level - @property def uid_attribute(self): """Gets the uid_attribute of this ProvidersLdapItem. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_ldap_ldap_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_ldap_ldap_item.py similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_ldap_ldap_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_ldap_ldap_item.py index d86971bd9..e61b4fc7c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_ldap_ldap_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_ldap_ldap_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -77,7 +77,6 @@ class ProvidersLdapLdapItem(object): 'normalize_users': 'bool', 'nt_password_attribute': 'str', 'ntlm_support': 'str', - 'ocsp_server_uris': 'list[str]', 'provider_domain': 'str', 'require_secure_connection': 'bool', 'restrict_findable': 'bool', @@ -98,7 +97,6 @@ class ProvidersLdapLdapItem(object): 'status': 'str', 'system': 'bool', 'tls_protocol_min': 'str', - 'tls_revocation_check_level': 'str', 'uid_attribute': 'str', 'unfindable_groups': 'list[str]', 'unfindable_users': 'list[str]', @@ -159,7 +157,6 @@ class ProvidersLdapLdapItem(object): 'normalize_users': 'normalize_users', 'nt_password_attribute': 'nt_password_attribute', 'ntlm_support': 'ntlm_support', - 'ocsp_server_uris': 'ocsp_server_uris', 'provider_domain': 'provider_domain', 'require_secure_connection': 'require_secure_connection', 'restrict_findable': 'restrict_findable', @@ -180,7 +177,6 @@ class ProvidersLdapLdapItem(object): 'status': 'status', 'system': 'system', 'tls_protocol_min': 'tls_protocol_min', - 'tls_revocation_check_level': 'tls_revocation_check_level', 'uid_attribute': 'uid_attribute', 'unfindable_groups': 'unfindable_groups', 'unfindable_users': 'unfindable_users', @@ -194,7 +190,7 @@ class ProvidersLdapLdapItem(object): 'zone_name': 'zone_name' } - def __init__(self, alternate_security_identities_attribute=None, authentication=None, balance_servers=None, base_dn=None, bind_dn=None, bind_mechanism=None, bind_timeout=None, certificate_authority_file=None, check_online_interval=None, cn_attribute=None, create_home_directory=None, crypt_password_attribute=None, email_attribute=None, enabled=None, enumerate_groups=None, enumerate_users=None, findable_groups=None, findable_users=None, gecos_attribute=None, gid_attribute=None, group_base_dn=None, group_domain=None, group_filter=None, group_members_attribute=None, group_search_scope=None, groupnet=None, home_directory_template=None, homedir_attribute=None, id=None, ignore_tls_errors=None, listable_groups=None, listable_users=None, login_shell=None, member_lookup_method=None, member_of_attribute=None, name=None, name_attribute=None, netgroup_base_dn=None, netgroup_filter=None, netgroup_members_attribute=None, netgroup_search_scope=None, netgroup_triple_attribute=None, normalize_groups=None, normalize_users=None, nt_password_attribute=None, ntlm_support=None, ocsp_server_uris=None, provider_domain=None, require_secure_connection=None, restrict_findable=None, restrict_listable=None, search_scope=None, search_timeout=None, server_uris=None, shadow_expire_attribute=None, shadow_flag_attribute=None, shadow_inactive_attribute=None, shadow_last_change_attribute=None, shadow_max_attribute=None, shadow_min_attribute=None, shadow_user_filter=None, shadow_warning_attribute=None, shell_attribute=None, ssh_public_key_attribute=None, status=None, system=None, tls_protocol_min=None, tls_revocation_check_level=None, uid_attribute=None, unfindable_groups=None, unfindable_users=None, unique_group_members_attribute=None, unlistable_groups=None, unlistable_users=None, user_base_dn=None, user_domain=None, user_filter=None, user_search_scope=None, zone_name=None): # noqa: E501 + def __init__(self, alternate_security_identities_attribute=None, authentication=None, balance_servers=None, base_dn=None, bind_dn=None, bind_mechanism=None, bind_timeout=None, certificate_authority_file=None, check_online_interval=None, cn_attribute=None, create_home_directory=None, crypt_password_attribute=None, email_attribute=None, enabled=None, enumerate_groups=None, enumerate_users=None, findable_groups=None, findable_users=None, gecos_attribute=None, gid_attribute=None, group_base_dn=None, group_domain=None, group_filter=None, group_members_attribute=None, group_search_scope=None, groupnet=None, home_directory_template=None, homedir_attribute=None, id=None, ignore_tls_errors=None, listable_groups=None, listable_users=None, login_shell=None, member_lookup_method=None, member_of_attribute=None, name=None, name_attribute=None, netgroup_base_dn=None, netgroup_filter=None, netgroup_members_attribute=None, netgroup_search_scope=None, netgroup_triple_attribute=None, normalize_groups=None, normalize_users=None, nt_password_attribute=None, ntlm_support=None, provider_domain=None, require_secure_connection=None, restrict_findable=None, restrict_listable=None, search_scope=None, search_timeout=None, server_uris=None, shadow_expire_attribute=None, shadow_flag_attribute=None, shadow_inactive_attribute=None, shadow_last_change_attribute=None, shadow_max_attribute=None, shadow_min_attribute=None, shadow_user_filter=None, shadow_warning_attribute=None, shell_attribute=None, ssh_public_key_attribute=None, status=None, system=None, tls_protocol_min=None, uid_attribute=None, unfindable_groups=None, unfindable_users=None, unique_group_members_attribute=None, unlistable_groups=None, unlistable_users=None, user_base_dn=None, user_domain=None, user_filter=None, user_search_scope=None, zone_name=None): # noqa: E501 """ProvidersLdapLdapItem - a model defined in Swagger""" # noqa: E501 self._alternate_security_identities_attribute = None @@ -243,7 +239,6 @@ def __init__(self, alternate_security_identities_attribute=None, authentication= self._normalize_users = None self._nt_password_attribute = None self._ntlm_support = None - self._ocsp_server_uris = None self._provider_domain = None self._require_secure_connection = None self._restrict_findable = None @@ -264,7 +259,6 @@ def __init__(self, alternate_security_identities_attribute=None, authentication= self._status = None self._system = None self._tls_protocol_min = None - self._tls_revocation_check_level = None self._uid_attribute = None self._unfindable_groups = None self._unfindable_users = None @@ -370,8 +364,6 @@ def __init__(self, alternate_security_identities_attribute=None, authentication= self.nt_password_attribute = nt_password_attribute if ntlm_support is not None: self.ntlm_support = ntlm_support - if ocsp_server_uris is not None: - self.ocsp_server_uris = ocsp_server_uris if provider_domain is not None: self.provider_domain = provider_domain if require_secure_connection is not None: @@ -412,8 +404,6 @@ def __init__(self, alternate_security_identities_attribute=None, authentication= self.system = system if tls_protocol_min is not None: self.tls_protocol_min = tls_protocol_min - if tls_revocation_check_level is not None: - self.tls_revocation_check_level = tls_revocation_check_level if uid_attribute is not None: self.uid_attribute = uid_attribute if unfindable_groups is not None: @@ -1135,8 +1125,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template @@ -1639,29 +1629,6 @@ def ntlm_support(self, ntlm_support): self._ntlm_support = ntlm_support - @property - def ocsp_server_uris(self): - """Gets the ocsp_server_uris of this ProvidersLdapLdapItem. # noqa: E501 - - Specifies the OCSP server URIs. # noqa: E501 - - :return: The ocsp_server_uris of this ProvidersLdapLdapItem. # noqa: E501 - :rtype: list[str] - """ - return self._ocsp_server_uris - - @ocsp_server_uris.setter - def ocsp_server_uris(self, ocsp_server_uris): - """Sets the ocsp_server_uris of this ProvidersLdapLdapItem. - - Specifies the OCSP server URIs. # noqa: E501 - - :param ocsp_server_uris: The ocsp_server_uris of this ProvidersLdapLdapItem. # noqa: E501 - :type: list[str] - """ - - self._ocsp_server_uris = ocsp_server_uris - @property def provider_domain(self): """Gets the provider_domain of this ProvidersLdapLdapItem. # noqa: E501 @@ -2181,40 +2148,11 @@ def tls_protocol_min(self, tls_protocol_min): raise ValueError("Invalid value for `tls_protocol_min`, length must be less than or equal to `255`") # noqa: E501 if tls_protocol_min is not None and len(tls_protocol_min) < 0: raise ValueError("Invalid value for `tls_protocol_min`, length must be greater than or equal to `0`") # noqa: E501 - if tls_protocol_min is not None and not re.search(r'^[0-9]+[.][0-9]+$', tls_protocol_min): # noqa: E501 - raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+[.][0-9]+$/`") # noqa: E501 + if tls_protocol_min is not None and not re.search(r'^[0-9]+\\.[0-9]+$', tls_protocol_min): # noqa: E501 + raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+\\.[0-9]+$/`") # noqa: E501 self._tls_protocol_min = tls_protocol_min - @property - def tls_revocation_check_level(self): - """Gets the tls_revocation_check_level of this ProvidersLdapLdapItem. # noqa: E501 - - This setting controls the behavior of the certificate revocation checking algorithm when the LDAP provider is presented with a digital certificate by an LDAP server. # noqa: E501 - - :return: The tls_revocation_check_level of this ProvidersLdapLdapItem. # noqa: E501 - :rtype: str - """ - return self._tls_revocation_check_level - - @tls_revocation_check_level.setter - def tls_revocation_check_level(self, tls_revocation_check_level): - """Sets the tls_revocation_check_level of this ProvidersLdapLdapItem. - - This setting controls the behavior of the certificate revocation checking algorithm when the LDAP provider is presented with a digital certificate by an LDAP server. # noqa: E501 - - :param tls_revocation_check_level: The tls_revocation_check_level of this ProvidersLdapLdapItem. # noqa: E501 - :type: str - """ - allowed_values = ["none", "allowNoData", "allowNoSrc", "strict"] # noqa: E501 - if tls_revocation_check_level not in allowed_values: - raise ValueError( - "Invalid value for `tls_revocation_check_level` ({0}), must be one of {1}" # noqa: E501 - .format(tls_revocation_check_level, allowed_values) - ) - - self._tls_revocation_check_level = tls_revocation_check_level - @property def uid_attribute(self): """Gets the uid_attribute of this ProvidersLdapLdapItem. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_local.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_local.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_local.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_local.py index 50293e389..140c265b6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_local.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_local.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_local_id_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_local_id_params.py similarity index 71% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_local_id_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_local_id_params.py index 7c6b1c246..cb0b05493 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_local_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_local_id_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -33,74 +33,56 @@ class ProvidersLocalIdParams(object): swagger_types = { 'authentication': 'bool', 'create_home_directory': 'bool', - 'delete_password_hashes': 'bool', - 'delete_password_history': 'bool', 'home_directory_template': 'str', 'lockout_duration': 'int', 'lockout_threshold': 'int', 'lockout_window': 'int', 'login_shell': 'str', 'machine_name': 'str', - 'max_inactivity_days': 'int', 'max_password_age': 'int', 'min_password_age': 'int', 'min_password_length': 'int', 'name': 'str', - 'password_chars_changed': 'int', 'password_complexity': 'list[str]', - 'password_hash_type': 'str', 'password_history_length': 'int', - 'password_percent_changed': 'int', 'password_prompt_time': 'int' } attribute_map = { 'authentication': 'authentication', 'create_home_directory': 'create_home_directory', - 'delete_password_hashes': 'delete_password_hashes', - 'delete_password_history': 'delete_password_history', 'home_directory_template': 'home_directory_template', 'lockout_duration': 'lockout_duration', 'lockout_threshold': 'lockout_threshold', 'lockout_window': 'lockout_window', 'login_shell': 'login_shell', 'machine_name': 'machine_name', - 'max_inactivity_days': 'max_inactivity_days', 'max_password_age': 'max_password_age', 'min_password_age': 'min_password_age', 'min_password_length': 'min_password_length', 'name': 'name', - 'password_chars_changed': 'password_chars_changed', 'password_complexity': 'password_complexity', - 'password_hash_type': 'password_hash_type', 'password_history_length': 'password_history_length', - 'password_percent_changed': 'password_percent_changed', 'password_prompt_time': 'password_prompt_time' } - def __init__(self, authentication=None, create_home_directory=None, delete_password_hashes=None, delete_password_history=None, home_directory_template=None, lockout_duration=None, lockout_threshold=None, lockout_window=None, login_shell=None, machine_name=None, max_inactivity_days=None, max_password_age=None, min_password_age=None, min_password_length=None, name=None, password_chars_changed=None, password_complexity=None, password_hash_type=None, password_history_length=None, password_percent_changed=None, password_prompt_time=None): # noqa: E501 + def __init__(self, authentication=None, create_home_directory=None, home_directory_template=None, lockout_duration=None, lockout_threshold=None, lockout_window=None, login_shell=None, machine_name=None, max_password_age=None, min_password_age=None, min_password_length=None, name=None, password_complexity=None, password_history_length=None, password_prompt_time=None): # noqa: E501 """ProvidersLocalIdParams - a model defined in Swagger""" # noqa: E501 self._authentication = None self._create_home_directory = None - self._delete_password_hashes = None - self._delete_password_history = None self._home_directory_template = None self._lockout_duration = None self._lockout_threshold = None self._lockout_window = None self._login_shell = None self._machine_name = None - self._max_inactivity_days = None self._max_password_age = None self._min_password_age = None self._min_password_length = None self._name = None - self._password_chars_changed = None self._password_complexity = None - self._password_hash_type = None self._password_history_length = None - self._password_percent_changed = None self._password_prompt_time = None self.discriminator = None @@ -108,10 +90,6 @@ def __init__(self, authentication=None, create_home_directory=None, delete_passw self.authentication = authentication if create_home_directory is not None: self.create_home_directory = create_home_directory - if delete_password_hashes is not None: - self.delete_password_hashes = delete_password_hashes - if delete_password_history is not None: - self.delete_password_history = delete_password_history if home_directory_template is not None: self.home_directory_template = home_directory_template if lockout_duration is not None: @@ -124,8 +102,6 @@ def __init__(self, authentication=None, create_home_directory=None, delete_passw self.login_shell = login_shell if machine_name is not None: self.machine_name = machine_name - if max_inactivity_days is not None: - self.max_inactivity_days = max_inactivity_days if max_password_age is not None: self.max_password_age = max_password_age if min_password_age is not None: @@ -134,16 +110,10 @@ def __init__(self, authentication=None, create_home_directory=None, delete_passw self.min_password_length = min_password_length if name is not None: self.name = name - if password_chars_changed is not None: - self.password_chars_changed = password_chars_changed if password_complexity is not None: self.password_complexity = password_complexity - if password_hash_type is not None: - self.password_hash_type = password_hash_type if password_history_length is not None: self.password_history_length = password_history_length - if password_percent_changed is not None: - self.password_percent_changed = password_percent_changed if password_prompt_time is not None: self.password_prompt_time = password_prompt_time @@ -193,52 +163,6 @@ def create_home_directory(self, create_home_directory): self._create_home_directory = create_home_directory - @property - def delete_password_hashes(self): - """Gets the delete_password_hashes of this ProvidersLocalIdParams. # noqa: E501 - - Delete all password hashes that do not match Password Hash Type and force password change at next login. # noqa: E501 - - :return: The delete_password_hashes of this ProvidersLocalIdParams. # noqa: E501 - :rtype: bool - """ - return self._delete_password_hashes - - @delete_password_hashes.setter - def delete_password_hashes(self, delete_password_hashes): - """Sets the delete_password_hashes of this ProvidersLocalIdParams. - - Delete all password hashes that do not match Password Hash Type and force password change at next login. # noqa: E501 - - :param delete_password_hashes: The delete_password_hashes of this ProvidersLocalIdParams. # noqa: E501 - :type: bool - """ - - self._delete_password_hashes = delete_password_hashes - - @property - def delete_password_history(self): - """Gets the delete_password_history of this ProvidersLocalIdParams. # noqa: E501 - - Delete password history for all local users # noqa: E501 - - :return: The delete_password_history of this ProvidersLocalIdParams. # noqa: E501 - :rtype: bool - """ - return self._delete_password_history - - @delete_password_history.setter - def delete_password_history(self, delete_password_history): - """Sets the delete_password_history of this ProvidersLocalIdParams. - - Delete password history for all local users # noqa: E501 - - :param delete_password_history: The delete_password_history of this ProvidersLocalIdParams. # noqa: E501 - :type: bool - """ - - self._delete_password_history = delete_password_history - @property def home_directory_template(self): """Gets the home_directory_template of this ProvidersLocalIdParams. # noqa: E501 @@ -263,8 +187,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template @@ -288,8 +212,8 @@ def lockout_duration(self, lockout_duration): :param lockout_duration: The lockout_duration of this ProvidersLocalIdParams. # noqa: E501 :type: int """ - if lockout_duration is not None and lockout_duration > 5999940: # noqa: E501 - raise ValueError("Invalid value for `lockout_duration`, must be a value less than or equal to `5999940`") # noqa: E501 + if lockout_duration is not None and lockout_duration > 2592000: # noqa: E501 + raise ValueError("Invalid value for `lockout_duration`, must be a value less than or equal to `2592000`") # noqa: E501 if lockout_duration is not None and lockout_duration < 0: # noqa: E501 raise ValueError("Invalid value for `lockout_duration`, must be a value greater than or equal to `0`") # noqa: E501 @@ -315,8 +239,8 @@ def lockout_threshold(self, lockout_threshold): :param lockout_threshold: The lockout_threshold of this ProvidersLocalIdParams. # noqa: E501 :type: int """ - if lockout_threshold is not None and lockout_threshold > 999: # noqa: E501 - raise ValueError("Invalid value for `lockout_threshold`, must be a value less than or equal to `999`") # noqa: E501 + if lockout_threshold is not None and lockout_threshold > 50: # noqa: E501 + raise ValueError("Invalid value for `lockout_threshold`, must be a value less than or equal to `50`") # noqa: E501 if lockout_threshold is not None and lockout_threshold < 0: # noqa: E501 raise ValueError("Invalid value for `lockout_threshold`, must be a value greater than or equal to `0`") # noqa: E501 @@ -342,8 +266,8 @@ def lockout_window(self, lockout_window): :param lockout_window: The lockout_window of this ProvidersLocalIdParams. # noqa: E501 :type: int """ - if lockout_window is not None and lockout_window > 5999940: # noqa: E501 - raise ValueError("Invalid value for `lockout_window`, must be a value less than or equal to `5999940`") # noqa: E501 + if lockout_window is not None and lockout_window > 2592000: # noqa: E501 + raise ValueError("Invalid value for `lockout_window`, must be a value less than or equal to `2592000`") # noqa: E501 if lockout_window is not None and lockout_window < 0: # noqa: E501 raise ValueError("Invalid value for `lockout_window`, must be a value greater than or equal to `0`") # noqa: E501 @@ -403,33 +327,6 @@ def machine_name(self, machine_name): self._machine_name = machine_name - @property - def max_inactivity_days(self): - """Gets the max_inactivity_days of this ProvidersLocalIdParams. # noqa: E501 - - Specifies the maximum number of days a user account can be inactive before it will be disabled. # noqa: E501 - - :return: The max_inactivity_days of this ProvidersLocalIdParams. # noqa: E501 - :rtype: int - """ - return self._max_inactivity_days - - @max_inactivity_days.setter - def max_inactivity_days(self, max_inactivity_days): - """Sets the max_inactivity_days of this ProvidersLocalIdParams. - - Specifies the maximum number of days a user account can be inactive before it will be disabled. # noqa: E501 - - :param max_inactivity_days: The max_inactivity_days of this ProvidersLocalIdParams. # noqa: E501 - :type: int - """ - if max_inactivity_days is not None and max_inactivity_days > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `max_inactivity_days`, must be a value less than or equal to `4294967295`") # noqa: E501 - if max_inactivity_days is not None and max_inactivity_days < 0: # noqa: E501 - raise ValueError("Invalid value for `max_inactivity_days`, must be a value greater than or equal to `0`") # noqa: E501 - - self._max_inactivity_days = max_inactivity_days - @property def max_password_age(self): """Gets the max_password_age of this ProvidersLocalIdParams. # noqa: E501 @@ -504,8 +401,8 @@ def min_password_length(self, min_password_length): :param min_password_length: The min_password_length of this ProvidersLocalIdParams. # noqa: E501 :type: int """ - if min_password_length is not None and min_password_length > 256: # noqa: E501 - raise ValueError("Invalid value for `min_password_length`, must be a value less than or equal to `256`") # noqa: E501 + if min_password_length is not None and min_password_length > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `min_password_length`, must be a value less than or equal to `4294967295`") # noqa: E501 if min_password_length is not None and min_password_length < 0: # noqa: E501 raise ValueError("Invalid value for `min_password_length`, must be a value greater than or equal to `0`") # noqa: E501 @@ -538,33 +435,6 @@ def name(self, name): self._name = name - @property - def password_chars_changed(self): - """Gets the password_chars_changed of this ProvidersLocalIdParams. # noqa: E501 - - Specifies the minimum number of characters changed when a password is updated. # noqa: E501 - - :return: The password_chars_changed of this ProvidersLocalIdParams. # noqa: E501 - :rtype: int - """ - return self._password_chars_changed - - @password_chars_changed.setter - def password_chars_changed(self, password_chars_changed): - """Sets the password_chars_changed of this ProvidersLocalIdParams. - - Specifies the minimum number of characters changed when a password is updated. # noqa: E501 - - :param password_chars_changed: The password_chars_changed of this ProvidersLocalIdParams. # noqa: E501 - :type: int - """ - if password_chars_changed is not None and password_chars_changed > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `password_chars_changed`, must be a value less than or equal to `4294967295`") # noqa: E501 - if password_chars_changed is not None and password_chars_changed < 0: # noqa: E501 - raise ValueError("Invalid value for `password_chars_changed`, must be a value greater than or equal to `0`") # noqa: E501 - - self._password_chars_changed = password_chars_changed - @property def password_complexity(self): """Gets the password_complexity of this ProvidersLocalIdParams. # noqa: E501 @@ -595,29 +465,6 @@ def password_complexity(self, password_complexity): self._password_complexity = password_complexity - @property - def password_hash_type(self): - """Gets the password_hash_type of this ProvidersLocalIdParams. # noqa: E501 - - Specifies the password hash algorithm to use. # noqa: E501 - - :return: The password_hash_type of this ProvidersLocalIdParams. # noqa: E501 - :rtype: str - """ - return self._password_hash_type - - @password_hash_type.setter - def password_hash_type(self, password_hash_type): - """Sets the password_hash_type of this ProvidersLocalIdParams. - - Specifies the password hash algorithm to use. # noqa: E501 - - :param password_hash_type: The password_hash_type of this ProvidersLocalIdParams. # noqa: E501 - :type: str - """ - - self._password_hash_type = password_hash_type - @property def password_history_length(self): """Gets the password_history_length of this ProvidersLocalIdParams. # noqa: E501 @@ -645,33 +492,6 @@ def password_history_length(self, password_history_length): self._password_history_length = password_history_length - @property - def password_percent_changed(self): - """Gets the password_percent_changed of this ProvidersLocalIdParams. # noqa: E501 - - Specifies the minimum percent of characters changed when a password is updated. # noqa: E501 - - :return: The password_percent_changed of this ProvidersLocalIdParams. # noqa: E501 - :rtype: int - """ - return self._password_percent_changed - - @password_percent_changed.setter - def password_percent_changed(self, password_percent_changed): - """Sets the password_percent_changed of this ProvidersLocalIdParams. - - Specifies the minimum percent of characters changed when a password is updated. # noqa: E501 - - :param password_percent_changed: The password_percent_changed of this ProvidersLocalIdParams. # noqa: E501 - :type: int - """ - if password_percent_changed is not None and password_percent_changed > 100: # noqa: E501 - raise ValueError("Invalid value for `password_percent_changed`, must be a value less than or equal to `100`") # noqa: E501 - if password_percent_changed is not None and password_percent_changed < 0: # noqa: E501 - raise ValueError("Invalid value for `password_percent_changed`, must be a value greater than or equal to `0`") # noqa: E501 - - self._password_percent_changed = password_percent_changed - @property def password_prompt_time(self): """Gets the password_prompt_time of this ProvidersLocalIdParams. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_local_local_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_local_local_item.py similarity index 79% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_local_local_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_local_local_item.py index 95995ee06..da46ce806 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_local_local_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_local_local_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -40,16 +40,12 @@ class ProvidersLocalLocalItem(object): 'lockout_window': 'int', 'login_shell': 'str', 'machine_name': 'str', - 'max_inactivity_days': 'int', 'max_password_age': 'int', 'min_password_age': 'int', 'min_password_length': 'int', 'name': 'str', - 'password_chars_changed': 'int', 'password_complexity': 'list[str]', - 'password_hash_type': 'str', 'password_history_length': 'int', - 'password_percent_changed': 'int', 'password_prompt_time': 'int', 'status': 'str', 'system': 'bool', @@ -66,23 +62,19 @@ class ProvidersLocalLocalItem(object): 'lockout_window': 'lockout_window', 'login_shell': 'login_shell', 'machine_name': 'machine_name', - 'max_inactivity_days': 'max_inactivity_days', 'max_password_age': 'max_password_age', 'min_password_age': 'min_password_age', 'min_password_length': 'min_password_length', 'name': 'name', - 'password_chars_changed': 'password_chars_changed', 'password_complexity': 'password_complexity', - 'password_hash_type': 'password_hash_type', 'password_history_length': 'password_history_length', - 'password_percent_changed': 'password_percent_changed', 'password_prompt_time': 'password_prompt_time', 'status': 'status', 'system': 'system', 'zone_name': 'zone_name' } - def __init__(self, authentication=None, create_home_directory=None, home_directory_template=None, id=None, lockout_duration=None, lockout_threshold=None, lockout_window=None, login_shell=None, machine_name=None, max_inactivity_days=None, max_password_age=None, min_password_age=None, min_password_length=None, name=None, password_chars_changed=None, password_complexity=None, password_hash_type=None, password_history_length=None, password_percent_changed=None, password_prompt_time=None, status=None, system=None, zone_name=None): # noqa: E501 + def __init__(self, authentication=None, create_home_directory=None, home_directory_template=None, id=None, lockout_duration=None, lockout_threshold=None, lockout_window=None, login_shell=None, machine_name=None, max_password_age=None, min_password_age=None, min_password_length=None, name=None, password_complexity=None, password_history_length=None, password_prompt_time=None, status=None, system=None, zone_name=None): # noqa: E501 """ProvidersLocalLocalItem - a model defined in Swagger""" # noqa: E501 self._authentication = None @@ -94,16 +86,12 @@ def __init__(self, authentication=None, create_home_directory=None, home_directo self._lockout_window = None self._login_shell = None self._machine_name = None - self._max_inactivity_days = None self._max_password_age = None self._min_password_age = None self._min_password_length = None self._name = None - self._password_chars_changed = None self._password_complexity = None - self._password_hash_type = None self._password_history_length = None - self._password_percent_changed = None self._password_prompt_time = None self._status = None self._system = None @@ -128,8 +116,6 @@ def __init__(self, authentication=None, create_home_directory=None, home_directo self.login_shell = login_shell if machine_name is not None: self.machine_name = machine_name - if max_inactivity_days is not None: - self.max_inactivity_days = max_inactivity_days if max_password_age is not None: self.max_password_age = max_password_age if min_password_age is not None: @@ -138,16 +124,10 @@ def __init__(self, authentication=None, create_home_directory=None, home_directo self.min_password_length = min_password_length if name is not None: self.name = name - if password_chars_changed is not None: - self.password_chars_changed = password_chars_changed if password_complexity is not None: self.password_complexity = password_complexity - if password_hash_type is not None: - self.password_hash_type = password_hash_type if password_history_length is not None: self.password_history_length = password_history_length - if password_percent_changed is not None: - self.password_percent_changed = password_percent_changed if password_prompt_time is not None: self.password_prompt_time = password_prompt_time if status is not None: @@ -227,8 +207,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template @@ -279,8 +259,8 @@ def lockout_duration(self, lockout_duration): :param lockout_duration: The lockout_duration of this ProvidersLocalLocalItem. # noqa: E501 :type: int """ - if lockout_duration is not None and lockout_duration > 5999940: # noqa: E501 - raise ValueError("Invalid value for `lockout_duration`, must be a value less than or equal to `5999940`") # noqa: E501 + if lockout_duration is not None and lockout_duration > 2592000: # noqa: E501 + raise ValueError("Invalid value for `lockout_duration`, must be a value less than or equal to `2592000`") # noqa: E501 if lockout_duration is not None and lockout_duration < 0: # noqa: E501 raise ValueError("Invalid value for `lockout_duration`, must be a value greater than or equal to `0`") # noqa: E501 @@ -306,8 +286,8 @@ def lockout_threshold(self, lockout_threshold): :param lockout_threshold: The lockout_threshold of this ProvidersLocalLocalItem. # noqa: E501 :type: int """ - if lockout_threshold is not None and lockout_threshold > 999: # noqa: E501 - raise ValueError("Invalid value for `lockout_threshold`, must be a value less than or equal to `999`") # noqa: E501 + if lockout_threshold is not None and lockout_threshold > 50: # noqa: E501 + raise ValueError("Invalid value for `lockout_threshold`, must be a value less than or equal to `50`") # noqa: E501 if lockout_threshold is not None and lockout_threshold < 0: # noqa: E501 raise ValueError("Invalid value for `lockout_threshold`, must be a value greater than or equal to `0`") # noqa: E501 @@ -333,8 +313,8 @@ def lockout_window(self, lockout_window): :param lockout_window: The lockout_window of this ProvidersLocalLocalItem. # noqa: E501 :type: int """ - if lockout_window is not None and lockout_window > 5999940: # noqa: E501 - raise ValueError("Invalid value for `lockout_window`, must be a value less than or equal to `5999940`") # noqa: E501 + if lockout_window is not None and lockout_window > 2592000: # noqa: E501 + raise ValueError("Invalid value for `lockout_window`, must be a value less than or equal to `2592000`") # noqa: E501 if lockout_window is not None and lockout_window < 0: # noqa: E501 raise ValueError("Invalid value for `lockout_window`, must be a value greater than or equal to `0`") # noqa: E501 @@ -394,33 +374,6 @@ def machine_name(self, machine_name): self._machine_name = machine_name - @property - def max_inactivity_days(self): - """Gets the max_inactivity_days of this ProvidersLocalLocalItem. # noqa: E501 - - Specifies the maximum number of days a user account can be inactive before it will be disabled. # noqa: E501 - - :return: The max_inactivity_days of this ProvidersLocalLocalItem. # noqa: E501 - :rtype: int - """ - return self._max_inactivity_days - - @max_inactivity_days.setter - def max_inactivity_days(self, max_inactivity_days): - """Sets the max_inactivity_days of this ProvidersLocalLocalItem. - - Specifies the maximum number of days a user account can be inactive before it will be disabled. # noqa: E501 - - :param max_inactivity_days: The max_inactivity_days of this ProvidersLocalLocalItem. # noqa: E501 - :type: int - """ - if max_inactivity_days is not None and max_inactivity_days > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `max_inactivity_days`, must be a value less than or equal to `4294967295`") # noqa: E501 - if max_inactivity_days is not None and max_inactivity_days < 0: # noqa: E501 - raise ValueError("Invalid value for `max_inactivity_days`, must be a value greater than or equal to `0`") # noqa: E501 - - self._max_inactivity_days = max_inactivity_days - @property def max_password_age(self): """Gets the max_password_age of this ProvidersLocalLocalItem. # noqa: E501 @@ -495,8 +448,8 @@ def min_password_length(self, min_password_length): :param min_password_length: The min_password_length of this ProvidersLocalLocalItem. # noqa: E501 :type: int """ - if min_password_length is not None and min_password_length > 256: # noqa: E501 - raise ValueError("Invalid value for `min_password_length`, must be a value less than or equal to `256`") # noqa: E501 + if min_password_length is not None and min_password_length > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `min_password_length`, must be a value less than or equal to `4294967295`") # noqa: E501 if min_password_length is not None and min_password_length < 0: # noqa: E501 raise ValueError("Invalid value for `min_password_length`, must be a value greater than or equal to `0`") # noqa: E501 @@ -529,33 +482,6 @@ def name(self, name): self._name = name - @property - def password_chars_changed(self): - """Gets the password_chars_changed of this ProvidersLocalLocalItem. # noqa: E501 - - Specifies the minimum number of characters changed when a password is updated. # noqa: E501 - - :return: The password_chars_changed of this ProvidersLocalLocalItem. # noqa: E501 - :rtype: int - """ - return self._password_chars_changed - - @password_chars_changed.setter - def password_chars_changed(self, password_chars_changed): - """Sets the password_chars_changed of this ProvidersLocalLocalItem. - - Specifies the minimum number of characters changed when a password is updated. # noqa: E501 - - :param password_chars_changed: The password_chars_changed of this ProvidersLocalLocalItem. # noqa: E501 - :type: int - """ - if password_chars_changed is not None and password_chars_changed > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `password_chars_changed`, must be a value less than or equal to `4294967295`") # noqa: E501 - if password_chars_changed is not None and password_chars_changed < 0: # noqa: E501 - raise ValueError("Invalid value for `password_chars_changed`, must be a value greater than or equal to `0`") # noqa: E501 - - self._password_chars_changed = password_chars_changed - @property def password_complexity(self): """Gets the password_complexity of this ProvidersLocalLocalItem. # noqa: E501 @@ -586,35 +512,6 @@ def password_complexity(self, password_complexity): self._password_complexity = password_complexity - @property - def password_hash_type(self): - """Gets the password_hash_type of this ProvidersLocalLocalItem. # noqa: E501 - - Specifies the password hash algorithm to use. # noqa: E501 - - :return: The password_hash_type of this ProvidersLocalLocalItem. # noqa: E501 - :rtype: str - """ - return self._password_hash_type - - @password_hash_type.setter - def password_hash_type(self, password_hash_type): - """Sets the password_hash_type of this ProvidersLocalLocalItem. - - Specifies the password hash algorithm to use. # noqa: E501 - - :param password_hash_type: The password_hash_type of this ProvidersLocalLocalItem. # noqa: E501 - :type: str - """ - allowed_values = ["NTHash", "SHA256", "SHA512"] # noqa: E501 - if password_hash_type not in allowed_values: - raise ValueError( - "Invalid value for `password_hash_type` ({0}), must be one of {1}" # noqa: E501 - .format(password_hash_type, allowed_values) - ) - - self._password_hash_type = password_hash_type - @property def password_history_length(self): """Gets the password_history_length of this ProvidersLocalLocalItem. # noqa: E501 @@ -642,33 +539,6 @@ def password_history_length(self, password_history_length): self._password_history_length = password_history_length - @property - def password_percent_changed(self): - """Gets the password_percent_changed of this ProvidersLocalLocalItem. # noqa: E501 - - Specifies the minimum percent of characters changed when a password is updated. # noqa: E501 - - :return: The password_percent_changed of this ProvidersLocalLocalItem. # noqa: E501 - :rtype: int - """ - return self._password_percent_changed - - @password_percent_changed.setter - def password_percent_changed(self, password_percent_changed): - """Sets the password_percent_changed of this ProvidersLocalLocalItem. - - Specifies the minimum percent of characters changed when a password is updated. # noqa: E501 - - :param password_percent_changed: The password_percent_changed of this ProvidersLocalLocalItem. # noqa: E501 - :type: int - """ - if password_percent_changed is not None and password_percent_changed > 100: # noqa: E501 - raise ValueError("Invalid value for `password_percent_changed`, must be a value less than or equal to `100`") # noqa: E501 - if password_percent_changed is not None and password_percent_changed < 0: # noqa: E501 - raise ValueError("Invalid value for `password_percent_changed`, must be a value greater than or equal to `0`") # noqa: E501 - - self._password_percent_changed = password_percent_changed - @property def password_prompt_time(self): """Gets the password_prompt_time of this ProvidersLocalLocalItem. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_nis.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_nis.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_nis.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_nis.py index 01023f22e..af27a7259 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_nis.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_nis.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_nis_id_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_nis_id_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_nis_id_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_nis_id_params.py index f783bb8cf..36d2e2bd4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_nis_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_nis_id_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -464,8 +464,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_nis_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_nis_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_nis_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_nis_item.py index 8e42fe695..ad730ddf8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_nis_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_nis_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -493,8 +493,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_nis_nis_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_nis_nis_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_nis_nis_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_nis_nis_item.py index 223089a74..2269f233d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_nis_nis_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_nis_nis_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -516,8 +516,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_summary.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_summary.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_summary.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_summary.py index 6ebd89b63..870c81d6b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_summary.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_summary.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_summary_provider_instance.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_summary_provider_instance.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_summary_provider_instance.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_summary_provider_instance.py index 2243fb6f7..769cee717 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_summary_provider_instance.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_summary_provider_instance.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_summary_provider_instance_connection.py b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_summary_provider_instance_connection.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/providers_summary_provider_instance_connection.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/providers_summary_provider_instance_connection.py index 6f3897532..802b15dbb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/providers_summary_provider_instance_connection.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/providers_summary_provider_instance_connection.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/proxyusers_name_members.py b/isilon_sdk/isilon_sdk/v9_4_0/models/proxyusers_name_members.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/proxyusers_name_members.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/proxyusers_name_members.py index ecb0ecedc..230343607 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/proxyusers_name_members.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/proxyusers_name_members.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_notification.py b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_notification.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/quota_notification.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/quota_notification.py index eef39a7d3..1e5097f39 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_notification.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_notification.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_notification_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_notification_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/quota_notification_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/quota_notification_create_params.py index f1c274b40..7e3b85449 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_notification_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_notification_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_notification_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_notification_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/quota_notification_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/quota_notification_extended.py index 630c93df0..6e7a3c73e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_notification_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_notification_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_notifications.py b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_notifications.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/quota_notifications.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/quota_notifications.py index 813395173..931897e8a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_notifications.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_notifications.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_notifications_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_notifications_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/quota_notifications_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/quota_notifications_extended.py index fbbcaaf07..a29dcd4b6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_notifications_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_notifications_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_quota.py b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_quota.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/quota_quota.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/quota_quota.py index 4eea0d7ef..fcbfb6297 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_quota.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_quota.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_quota_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_quota_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/quota_quota_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/quota_quota_create_params.py index e51a3a8ff..6e3cb50f2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_quota_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_quota_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_quota_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_quota_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/quota_quota_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/quota_quota_extended.py index e7b8bbdbd..cb5936e24 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_quota_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_quota_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_quota_thresholds.py b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_quota_thresholds.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/quota_quota_thresholds.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/quota_quota_thresholds.py index 4e8f86d56..28cef6f38 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_quota_thresholds.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_quota_thresholds.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_quota_thresholds_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_quota_thresholds_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/quota_quota_thresholds_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/quota_quota_thresholds_extended.py index 5d852aaf5..355342729 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_quota_thresholds_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_quota_thresholds_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_quota_usage.py b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_quota_usage.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/quota_quota_usage.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/quota_quota_usage.py index 0edd0668f..34b22b1e5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_quota_usage.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_quota_usage.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_quotas.py b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_quotas.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/quota_quotas.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/quota_quotas.py index 5a6965cc6..c5696b19f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_quotas.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_quotas.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_quotas_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_quotas_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/quota_quotas_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/quota_quotas_extended.py index ba59f2ece..2cde16f48 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_quotas_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_quotas_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_quotas_summary.py b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_quotas_summary.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/quota_quotas_summary.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/quota_quotas_summary.py index 9dfc52571..1f05f1a90 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_quotas_summary.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_quotas_summary.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_quotas_summary_summary.py b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_quotas_summary_summary.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/quota_quotas_summary_summary.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/quota_quotas_summary_summary.py index 3768423fc..11869a87d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_quotas_summary_summary.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_quotas_summary_summary.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_reports.py b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_reports.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/quota_reports.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/quota_reports.py index 5d4bd4543..c7cc200c9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/quota_reports.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/quota_reports.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/report_about.py b/isilon_sdk/isilon_sdk/v9_4_0/models/report_about.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/report_about.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/report_about.py index 512067324..d7ff7a918 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/report_about.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/report_about.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/report_about_report.py b/isilon_sdk/isilon_sdk/v9_4_0/models/report_about_report.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/report_about_report.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/report_about_report.py index 55d91c8c6..8512ae2e7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/report_about_report.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/report_about_report.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/report_subreport.py b/isilon_sdk/isilon_sdk/v9_4_0/models/report_subreport.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/report_subreport.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/report_subreport.py index 29c6b1094..f5e0a9018 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/report_subreport.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/report_subreport.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -443,7 +443,7 @@ def action(self, action): """ if action is None: raise ValueError("Invalid value for `action`, must not be `None`") # noqa: E501 - allowed_values = ["none", "copy", "move", "remove", "sync", "allow_write", "allow_write_revert", "resync_prep", "resync_prep_domain_mark", "resync_prep_restore", "resync_prep_finalize", "resync_prep_commit", "snap_revert_domain_mark", "synciq_domain_mark", "worm_domain_mark", "test", "run"] # noqa: E501 + allowed_values = ["resync_prep", "allow_write", "allow_write_revert", "test", "run", "none"] # noqa: E501 if action not in allowed_values: raise ValueError( "Invalid value for `action` ({0}), must be one of {1}" # noqa: E501 @@ -2352,7 +2352,7 @@ def state(self, state): """ if state is None: raise ValueError("Invalid value for `state`, must not be `None`") # noqa: E501 - allowed_values = ["scheduled", "running", "paused", "finished", "failed", "canceled", "needs_attention", "skipped", "pending", "unknown", "success w/ prior failures"] # noqa: E501 + allowed_values = ["scheduled", "running", "paused", "finished", "failed", "canceled", "needs_attention", "skipped", "pending", "unknown"] # noqa: E501 if state not in allowed_values: raise ValueError( "Invalid value for `state` ({0}), must be one of {1}" # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/report_subreports.py b/isilon_sdk/isilon_sdk/v9_4_0/models/report_subreports.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/report_subreports.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/report_subreports.py index f47222812..f5953c478 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/report_subreports.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/report_subreports.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/report_subreports_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/report_subreports_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/report_subreports_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/report_subreports_extended.py index 6dbc7cb6f..85a821b12 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/report_subreports_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/report_subreports_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/reports_report_subreports.py b/isilon_sdk/isilon_sdk/v9_4_0/models/reports_report_subreports.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/reports_report_subreports.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/reports_report_subreports.py index 29be26c50..9cf04ab9f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/reports_report_subreports.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/reports_report_subreports.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/reports_report_subreports_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/reports_report_subreports_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/reports_report_subreports_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/reports_report_subreports_extended.py index 516cee48e..d73df43c0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/reports_report_subreports_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/reports_report_subreports_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/reports_report_subreports_subreport.py b/isilon_sdk/isilon_sdk/v9_4_0/models/reports_report_subreports_subreport.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/reports_report_subreports_subreport.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/reports_report_subreports_subreport.py index 20e71033e..58b5aeb0c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/reports_report_subreports_subreport.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/reports_report_subreports_subreport.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -443,7 +443,7 @@ def action(self, action): """ if action is None: raise ValueError("Invalid value for `action`, must not be `None`") # noqa: E501 - allowed_values = ["none", "copy", "move", "remove", "sync", "allow_write", "allow_write_revert", "resync_prep", "resync_prep_domain_mark", "resync_prep_restore", "resync_prep_finalize", "resync_prep_commit", "snap_revert_domain_mark", "synciq_domain_mark", "worm_domain_mark", "test", "run"] # noqa: E501 + allowed_values = ["resync_prep", "allow_write", "allow_write_revert", "test", "run", "none"] # noqa: E501 if action not in allowed_values: raise ValueError( "Invalid value for `action` ({0}), must be one of {1}" # noqa: E501 @@ -2325,7 +2325,7 @@ def state(self, state): """ if state is None: raise ValueError("Invalid value for `state`, must not be `None`") # noqa: E501 - allowed_values = ["scheduled", "running", "paused", "finished", "failed", "canceled", "needs_attention", "skipped", "pending", "unknown", "success w/ prior failures"] # noqa: E501 + allowed_values = ["scheduled", "running", "paused", "finished", "failed", "canceled", "needs_attention", "skipped", "pending", "unknown"] # noqa: E501 if state not in allowed_values: raise ValueError( "Invalid value for `state` ({0}), must be one of {1}" # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/reports_scans.py b/isilon_sdk/isilon_sdk/v9_4_0/models/reports_scans.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/reports_scans.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/reports_scans.py index a4f109278..638164c1a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/reports_scans.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/reports_scans.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/reports_scans_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/reports_scans_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/reports_scans_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/reports_scans_extended.py index 3e00af139..988cf920e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/reports_scans_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/reports_scans_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/reports_scans_report.py b/isilon_sdk/isilon_sdk/v9_4_0/models/reports_scans_report.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/reports_scans_report.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/reports_scans_report.py index e6c61ca34..8e615e8a8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/reports_scans_report.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/reports_scans_report.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/reports_threats.py b/isilon_sdk/isilon_sdk/v9_4_0/models/reports_threats.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/reports_threats.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/reports_threats.py index 997e0217d..7efab31b6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/reports_threats.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/reports_threats.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/reports_threats_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/reports_threats_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/reports_threats_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/reports_threats_extended.py index 03fab94a0..90b4655f9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/reports_threats_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/reports_threats_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/reports_threats_report.py b/isilon_sdk/isilon_sdk/v9_4_0/models/reports_threats_report.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/models/reports_threats_report.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/reports_threats_report.py index 0449ca97b..2d765e53f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/reports_threats_report.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/reports_threats_report.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -124,8 +124,8 @@ def id(self, id): :param id: The id of this ReportsThreatsReport. # noqa: E501 :type: str """ - if id is not None and len(id) > 8192: - raise ValueError("Invalid value for `id`, length must be less than or equal to `8192`") # noqa: E501 + if id is not None and len(id) > 255: + raise ValueError("Invalid value for `id`, length must be less than or equal to `255`") # noqa: E501 if id is not None and len(id) < 0: raise ValueError("Invalid value for `id`, length must be greater than or equal to `0`") # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/result_dir_pools_usage.py b/isilon_sdk/isilon_sdk/v9_4_0/models/result_dir_pools_usage.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/result_dir_pools_usage.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/result_dir_pools_usage.py index 48ecebda4..330dec70b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/result_dir_pools_usage.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/result_dir_pools_usage.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/result_dir_pools_usage_usage_data.py b/isilon_sdk/isilon_sdk/v9_4_0/models/result_dir_pools_usage_usage_data.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/result_dir_pools_usage_usage_data.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/result_dir_pools_usage_usage_data.py index 442df0a4f..d0099f602 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/result_dir_pools_usage_usage_data.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/result_dir_pools_usage_usage_data.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/result_directories.py b/isilon_sdk/isilon_sdk/v9_4_0/models/result_directories.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/result_directories.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/result_directories.py index c496321fc..6c9984848 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/result_directories.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/result_directories.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/result_directories_dir_usage.py b/isilon_sdk/isilon_sdk/v9_4_0/models/result_directories_dir_usage.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/result_directories_dir_usage.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/result_directories_dir_usage.py index a3d4b4c3e..6b179779b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/result_directories_dir_usage.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/result_directories_dir_usage.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/result_directories_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/result_directories_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/result_directories_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/result_directories_extended.py index 0e6478161..b6bc64a87 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/result_directories_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/result_directories_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/result_directories_total_usage.py b/isilon_sdk/isilon_sdk/v9_4_0/models/result_directories_total_usage.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/result_directories_total_usage.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/result_directories_total_usage.py index 884b83dc2..047a859fd 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/result_directories_total_usage.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/result_directories_total_usage.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/result_directories_total_usage_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/result_directories_total_usage_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/result_directories_total_usage_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/result_directories_total_usage_extended.py index 6b1bac2f9..79b0f25da 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/result_directories_total_usage_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/result_directories_total_usage_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/result_directories_usage_data_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/result_directories_usage_data_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/result_directories_usage_data_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/result_directories_usage_data_item.py index c78dc3c44..42e5c08b1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/result_directories_usage_data_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/result_directories_usage_data_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/result_histogram.py b/isilon_sdk/isilon_sdk/v9_4_0/models/result_histogram.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/result_histogram.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/result_histogram.py index b29a014c0..8967022da 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/result_histogram.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/result_histogram.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/result_histogram_histogram_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/result_histogram_histogram_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/result_histogram_histogram_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/result_histogram_histogram_item.py index a0539f795..36824b22f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/result_histogram_histogram_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/result_histogram_histogram_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/result_top_dirs.py b/isilon_sdk/isilon_sdk/v9_4_0/models/result_top_dirs.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/result_top_dirs.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/result_top_dirs.py index 5240b1235..06b71bd79 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/result_top_dirs.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/result_top_dirs.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/result_top_dirs_dir.py b/isilon_sdk/isilon_sdk/v9_4_0/models/result_top_dirs_dir.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/result_top_dirs_dir.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/result_top_dirs_dir.py index dfa421aa0..5e05e4194 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/result_top_dirs_dir.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/result_top_dirs_dir.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/result_top_files.py b/isilon_sdk/isilon_sdk/v9_4_0/models/result_top_files.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/result_top_files.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/result_top_files.py index 82a2da454..d80ce9b2b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/result_top_files.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/result_top_files.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/result_top_files_file.py b/isilon_sdk/isilon_sdk/v9_4_0/models/result_top_files_file.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/result_top_files_file.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/result_top_files_file.py index 19b64c204..70138e387 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/result_top_files_file.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/result_top_files_file.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/role_members.py b/isilon_sdk/isilon_sdk/v9_4_0/models/role_members.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/role_members.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/role_members.py index 7636642ff..ff6e22fb1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/role_members.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/role_members.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/role_privileges.py b/isilon_sdk/isilon_sdk/v9_4_0/models/role_privileges.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/role_privileges.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/role_privileges.py index 56dbd8466..42262c223 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/role_privileges.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/role_privileges.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/s3_bucket.py b/isilon_sdk/isilon_sdk/v9_4_0/models/s3_bucket.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/s3_bucket.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/s3_bucket.py index b51516309..145af6a73 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/s3_bucket.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/s3_bucket.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/s3_bucket_acl_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/s3_bucket_acl_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/s3_bucket_acl_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/s3_bucket_acl_item.py index d2a83901c..e1e0ef98c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/s3_bucket_acl_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/s3_bucket_acl_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/s3_bucket_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/s3_bucket_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/s3_bucket_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/s3_bucket_create_params.py index d896f1298..727f66326 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/s3_bucket_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/s3_bucket_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/s3_bucket_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/s3_bucket_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/s3_bucket_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/s3_bucket_extended.py index 4c66624e9..c6226d6e5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/s3_bucket_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/s3_bucket_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/s3_buckets.py b/isilon_sdk/isilon_sdk/v9_4_0/models/s3_buckets.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/s3_buckets.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/s3_buckets.py index 40f927a34..4f8d14765 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/s3_buckets.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/s3_buckets.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/s3_buckets_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/s3_buckets_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/s3_buckets_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/s3_buckets_extended.py index e94c35ad6..c970e4eb6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/s3_buckets_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/s3_buckets_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/s3_key.py b/isilon_sdk/isilon_sdk/v9_4_0/models/s3_key.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/s3_key.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/s3_key.py index bc0dac5f6..eb42d8424 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/s3_key.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/s3_key.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/s3_keys.py b/isilon_sdk/isilon_sdk/v9_4_0/models/s3_keys.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/s3_keys.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/s3_keys.py index f5d60070c..dfc3fc094 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/s3_keys.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/s3_keys.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/s3_keys_keys.py b/isilon_sdk/isilon_sdk/v9_4_0/models/s3_keys_keys.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/s3_keys_keys.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/s3_keys_keys.py index 4b5cd11bb..72bcdb333 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/s3_keys_keys.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/s3_keys_keys.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/s3_log_level.py b/isilon_sdk/isilon_sdk/v9_4_0/models/s3_log_level.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/s3_log_level.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/s3_log_level.py index 10de8a03e..a028f7440 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/s3_log_level.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/s3_log_level.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/s3_settings_global.py b/isilon_sdk/isilon_sdk/v9_4_0/models/s3_settings_global.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/s3_settings_global.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/s3_settings_global.py index d982a0f19..d36a69fcc 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/s3_settings_global.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/s3_settings_global.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/s3_settings_global_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/s3_settings_global_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/s3_settings_global_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/s3_settings_global_settings.py index 7b4120dfd..19d90e162 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/s3_settings_global_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/s3_settings_global_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/s3_settings_zone.py b/isilon_sdk/isilon_sdk/v9_4_0/models/s3_settings_zone.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/s3_settings_zone.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/s3_settings_zone.py index b1327d857..ef0bc55f1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/s3_settings_zone.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/s3_settings_zone.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/s3_settings_zone_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/s3_settings_zone_settings.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/models/s3_settings_zone_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/s3_settings_zone_settings.py index b152dd6e1..fd20c7417 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/s3_settings_zone_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/s3_settings_zone_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -96,8 +96,8 @@ def base_domain(self, base_domain): raise ValueError("Invalid value for `base_domain`, length must be less than or equal to `255`") # noqa: E501 if base_domain is not None and len(base_domain) < 0: raise ValueError("Invalid value for `base_domain`, length must be greater than or equal to `0`") # noqa: E501 - if base_domain is not None and not re.search(r'^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$', base_domain): # noqa: E501 - raise ValueError(r"Invalid value for `base_domain`, must be a follow pattern or equal to `/^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$/`") # noqa: E501 + if base_domain is not None and not re.search(r'^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$', base_domain): # noqa: E501 + raise ValueError(r"Invalid value for `base_domain`, must be a follow pattern or equal to `/^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$/`") # noqa: E501 self._base_domain = base_domain diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/security_check.py b/isilon_sdk/isilon_sdk/v9_4_0/models/security_check.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/security_check.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/security_check.py index 98aac7c12..f8a1d598c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/security_check.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/security_check.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/security_check_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/security_check_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/security_check_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/security_check_item.py index 16e62bfb0..65c793e7f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/security_check_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/security_check_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/security_check_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/security_check_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/security_check_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/security_check_settings.py index 6d7aa239f..e19b04c6d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/security_check_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/security_check_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/security_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/security_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/security_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/security_settings.py index 54963f306..002be2865 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/security_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/security_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_mixed_mode.py b/isilon_sdk/isilon_sdk/v9_4_0/models/security_settings_settings.py similarity index 64% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_mixed_mode.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/security_settings_settings.py index e98dbc806..06e5d8cfd 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_mixed_mode.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/security_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class ClusterMixedMode(object): +class SecuritySettingsSettings(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -31,45 +31,44 @@ class ClusterMixedMode(object): and the value is json key in definition. """ swagger_types = { - 'mixed_mode': 'bool' + 'fips_mode_enabled': 'bool' } attribute_map = { - 'mixed_mode': 'mixed_mode' + 'fips_mode_enabled': 'fips_mode_enabled' } - def __init__(self, mixed_mode=None): # noqa: E501 - """ClusterMixedMode - a model defined in Swagger""" # noqa: E501 + def __init__(self, fips_mode_enabled=None): # noqa: E501 + """SecuritySettingsSettings - a model defined in Swagger""" # noqa: E501 - self._mixed_mode = None + self._fips_mode_enabled = None self.discriminator = None - self.mixed_mode = mixed_mode + if fips_mode_enabled is not None: + self.fips_mode_enabled = fips_mode_enabled @property - def mixed_mode(self): - """Gets the mixed_mode of this ClusterMixedMode. # noqa: E501 + def fips_mode_enabled(self): + """Gets the fips_mode_enabled of this SecuritySettingsSettings. # noqa: E501 - In upgrade and mixed mode # noqa: E501 + Enable OpenSSL FIPS compliance # noqa: E501 - :return: The mixed_mode of this ClusterMixedMode. # noqa: E501 + :return: The fips_mode_enabled of this SecuritySettingsSettings. # noqa: E501 :rtype: bool """ - return self._mixed_mode + return self._fips_mode_enabled - @mixed_mode.setter - def mixed_mode(self, mixed_mode): - """Sets the mixed_mode of this ClusterMixedMode. + @fips_mode_enabled.setter + def fips_mode_enabled(self, fips_mode_enabled): + """Sets the fips_mode_enabled of this SecuritySettingsSettings. - In upgrade and mixed mode # noqa: E501 + Enable OpenSSL FIPS compliance # noqa: E501 - :param mixed_mode: The mixed_mode of this ClusterMixedMode. # noqa: E501 + :param fips_mode_enabled: The fips_mode_enabled of this SecuritySettingsSettings. # noqa: E501 :type: bool """ - if mixed_mode is None: - raise ValueError("Invalid value for `mixed_mode`, must not be `None`") # noqa: E501 - self._mixed_mode = mixed_mode + self._fips_mode_enabled = fips_mode_enabled def to_dict(self): """Returns the model properties as a dict""" @@ -92,7 +91,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(ClusterMixedMode, dict): + if issubclass(SecuritySettingsSettings, dict): for key, value in self.items(): result[key] = value @@ -108,7 +107,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, ClusterMixedMode): + if not isinstance(other, SecuritySettingsSettings): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sed_migrate_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sed_migrate_item.py similarity index 76% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sed_migrate_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sed_migrate_item.py index a4adfb971..cf08e59f7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sed_migrate_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sed_migrate_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -56,7 +56,7 @@ def __init__(self, retry=None, to_server=None): # noqa: E501 def retry(self): """Gets the retry of this SedMigrateItem. # noqa: E501 - Set to true to retry KMIP migration in the previous direction for errored nodes. e.g. if error occurred after migrate with 'to_server=true', using 'sed/migrate' handler with 'retry=true' will retry migration to server. Similarly, if previous migration was 'to_server=false', retry will try to restore back to local. Also note that, whenever a 'retry' arg is provided to the handler, regardless of true or false, 'to_server' arg will be ignored. i.e. if using the handler with ('retry':true(or false), 'to_server': true), the 'to_server' arg will be ignored and have no effects. # noqa: E501 + Set to true to retry KMIP migration in the previous direction for errored nodes. e.g. if error occured after migrate with 'to_server=true', using 'sed/migrate' handler with 'retry=true' will retry migration to server. Similarly, if previous migration was 'to_server=false', retry will try to restore back to local. Also note that, whenever a 'retry' arg is provided to the handler, regardless of true or false, 'to_server' arg will be ignored. i.e. if using the handler with ('retry':true(or false), 'to_server': true), the 'to_server' arg will be ignored and have no effects. # noqa: E501 :return: The retry of this SedMigrateItem. # noqa: E501 :rtype: bool @@ -67,7 +67,7 @@ def retry(self): def retry(self, retry): """Sets the retry of this SedMigrateItem. - Set to true to retry KMIP migration in the previous direction for errored nodes. e.g. if error occurred after migrate with 'to_server=true', using 'sed/migrate' handler with 'retry=true' will retry migration to server. Similarly, if previous migration was 'to_server=false', retry will try to restore back to local. Also note that, whenever a 'retry' arg is provided to the handler, regardless of true or false, 'to_server' arg will be ignored. i.e. if using the handler with ('retry':true(or false), 'to_server': true), the 'to_server' arg will be ignored and have no effects. # noqa: E501 + Set to true to retry KMIP migration in the previous direction for errored nodes. e.g. if error occured after migrate with 'to_server=true', using 'sed/migrate' handler with 'retry=true' will retry migration to server. Similarly, if previous migration was 'to_server=false', retry will try to restore back to local. Also note that, whenever a 'retry' arg is provided to the handler, regardless of true or false, 'to_server' arg will be ignored. i.e. if using the handler with ('retry':true(or false), 'to_server': true), the 'to_server' arg will be ignored and have no effects. # noqa: E501 :param retry: The retry of this SedMigrateItem. # noqa: E501 :type: bool @@ -79,7 +79,7 @@ def retry(self, retry): def to_server(self): """Gets the to_server of this SedMigrateItem. # noqa: E501 - Set to true to indicate migrating all keys to server. Set to false to indicate restoring all keys back to local. # noqa: E501 + Set to true to indicate migrating all keys to server. Set to false to indicate retoring all keys back to local. # noqa: E501 :return: The to_server of this SedMigrateItem. # noqa: E501 :rtype: bool @@ -90,7 +90,7 @@ def to_server(self): def to_server(self, to_server): """Sets the to_server of this SedMigrateItem. - Set to true to indicate migrating all keys to server. Set to false to indicate restoring all keys back to local. # noqa: E501 + Set to true to indicate migrating all keys to server. Set to false to indicate retoring all keys back to local. # noqa: E501 :param to_server: The to_server of this SedMigrateItem. # noqa: E501 :type: bool diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sed_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sed_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sed_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sed_settings.py index 39d17a974..b197bbe4a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sed_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sed_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sed_settings_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sed_settings_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sed_settings_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sed_settings_extended.py index 3d65128a1..d23374f6d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sed_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sed_settings_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sed_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sed_settings_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sed_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sed_settings_settings.py index ae624b1fe..c9d961d70 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sed_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sed_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sed_status.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sed_status.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sed_status.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sed_status.py index c1c086a52..ff5c114b1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sed_status.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sed_status.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sed_status_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sed_status_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sed_status_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sed_status_extended.py index 53c69d264..7eb4855eb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sed_status_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sed_status_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sed_status_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sed_status_node.py similarity index 83% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sed_status_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sed_status_node.py index 1cf013371..44bd01c67 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sed_status_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sed_status_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -33,7 +33,6 @@ class SedStatusNode(object): swagger_types = { 'error_msg': 'str', 'id': 'int', - 'key_timestamp': 'int', 'lnn': 'int', 'location': 'str', 'remote_key_id': 'str', @@ -43,19 +42,17 @@ class SedStatusNode(object): attribute_map = { 'error_msg': 'error_msg', 'id': 'id', - 'key_timestamp': 'key_timestamp', 'lnn': 'lnn', 'location': 'location', 'remote_key_id': 'remote_key_id', 'status': 'status' } - def __init__(self, error_msg=None, id=None, key_timestamp=None, lnn=None, location=None, remote_key_id=None, status=None): # noqa: E501 + def __init__(self, error_msg=None, id=None, lnn=None, location=None, remote_key_id=None, status=None): # noqa: E501 """SedStatusNode - a model defined in Swagger""" # noqa: E501 self._error_msg = None self._id = None - self._key_timestamp = None self._lnn = None self._location = None self._remote_key_id = None @@ -66,8 +63,6 @@ def __init__(self, error_msg=None, id=None, key_timestamp=None, lnn=None, locati self.error_msg = error_msg if id is not None: self.id = id - if key_timestamp is not None: - self.key_timestamp = key_timestamp if lnn is not None: self.lnn = lnn if location is not None: @@ -131,33 +126,6 @@ def id(self, id): self._id = id - @property - def key_timestamp(self): - """Gets the key_timestamp of this SedStatusNode. # noqa: E501 - - Creation time of the key # noqa: E501 - - :return: The key_timestamp of this SedStatusNode. # noqa: E501 - :rtype: int - """ - return self._key_timestamp - - @key_timestamp.setter - def key_timestamp(self, key_timestamp): - """Sets the key_timestamp of this SedStatusNode. - - Creation time of the key # noqa: E501 - - :param key_timestamp: The key_timestamp of this SedStatusNode. # noqa: E501 - :type: int - """ - if key_timestamp is not None and key_timestamp > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `key_timestamp`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if key_timestamp is not None and key_timestamp < 0: # noqa: E501 - raise ValueError("Invalid value for `key_timestamp`, must be a value greater than or equal to `0`") # noqa: E501 - - self._key_timestamp = key_timestamp - @property def lnn(self): """Gets the lnn of this SedStatusNode. # noqa: E501 @@ -243,7 +211,7 @@ def remote_key_id(self, remote_key_id): def status(self): """Gets the status of this SedStatusNode. # noqa: E501 - Current key migration status. If no SEDs are available and KMIP is not supported, it will show OFFLINE status. # noqa: E501 + Current key migration status. If no SEDs are avaiable and KMIP is not supported, it will show OFFLINE status. # noqa: E501 :return: The status of this SedStatusNode. # noqa: E501 :rtype: str @@ -254,7 +222,7 @@ def status(self): def status(self, status): """Sets the status of this SedStatusNode. - Current key migration status. If no SEDs are available and KMIP is not supported, it will show OFFLINE status. # noqa: E501 + Current key migration status. If no SEDs are avaiable and KMIP is not supported, it will show OFFLINE status. # noqa: E501 :param status: The status of this SedStatusNode. # noqa: E501 :type: str diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sed_status_node_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sed_status_node_extended.py similarity index 84% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sed_status_node_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sed_status_node_extended.py index 75f333b70..78f85f362 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sed_status_node_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sed_status_node_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -33,7 +33,6 @@ class SedStatusNodeExtended(object): swagger_types = { 'error_msg': 'str', 'id': 'int', - 'key_timestamp': 'int', 'lnn': 'int', 'location': 'str', 'remote_key_id': 'str', @@ -43,19 +42,17 @@ class SedStatusNodeExtended(object): attribute_map = { 'error_msg': 'error_msg', 'id': 'id', - 'key_timestamp': 'key_timestamp', 'lnn': 'lnn', 'location': 'location', 'remote_key_id': 'remote_key_id', 'status': 'status' } - def __init__(self, error_msg=None, id=None, key_timestamp=None, lnn=None, location=None, remote_key_id=None, status=None): # noqa: E501 + def __init__(self, error_msg=None, id=None, lnn=None, location=None, remote_key_id=None, status=None): # noqa: E501 """SedStatusNodeExtended - a model defined in Swagger""" # noqa: E501 self._error_msg = None self._id = None - self._key_timestamp = None self._lnn = None self._location = None self._remote_key_id = None @@ -64,7 +61,6 @@ def __init__(self, error_msg=None, id=None, key_timestamp=None, lnn=None, locati self.error_msg = error_msg self.id = id - self.key_timestamp = key_timestamp self.lnn = lnn self.location = location self.remote_key_id = remote_key_id @@ -128,35 +124,6 @@ def id(self, id): self._id = id - @property - def key_timestamp(self): - """Gets the key_timestamp of this SedStatusNodeExtended. # noqa: E501 - - Creation time of the key # noqa: E501 - - :return: The key_timestamp of this SedStatusNodeExtended. # noqa: E501 - :rtype: int - """ - return self._key_timestamp - - @key_timestamp.setter - def key_timestamp(self, key_timestamp): - """Sets the key_timestamp of this SedStatusNodeExtended. - - Creation time of the key # noqa: E501 - - :param key_timestamp: The key_timestamp of this SedStatusNodeExtended. # noqa: E501 - :type: int - """ - if key_timestamp is None: - raise ValueError("Invalid value for `key_timestamp`, must not be `None`") # noqa: E501 - if key_timestamp is not None and key_timestamp > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `key_timestamp`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if key_timestamp is not None and key_timestamp < 0: # noqa: E501 - raise ValueError("Invalid value for `key_timestamp`, must be a value greater than or equal to `0`") # noqa: E501 - - self._key_timestamp = key_timestamp - @property def lnn(self): """Gets the lnn of this SedStatusNodeExtended. # noqa: E501 @@ -248,7 +215,7 @@ def remote_key_id(self, remote_key_id): def status(self): """Gets the status of this SedStatusNodeExtended. # noqa: E501 - Current key migration status. If no SEDs are available and KMIP is not supported, it will show OFFLINE status. # noqa: E501 + Current key migration status. If no SEDs are avaiable and KMIP is not supported, it will show OFFLINE status. # noqa: E501 :return: The status of this SedStatusNodeExtended. # noqa: E501 :rtype: str @@ -259,7 +226,7 @@ def status(self): def status(self, status): """Sets the status of this SedStatusNodeExtended. - Current key migration status. If no SEDs are available and KMIP is not supported, it will show OFFLINE status. # noqa: E501 + Current key migration status. If no SEDs are avaiable and KMIP is not supported, it will show OFFLINE status. # noqa: E501 :param status: The status of this SedStatusNodeExtended. # noqa: E501 :type: str diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/service_policies.py b/isilon_sdk/isilon_sdk/v9_4_0/models/service_policies.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/service_policies.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/service_policies.py index be00448a9..bb4cf076b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/service_policies.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/service_policies.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/service_policies_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/service_policies_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/service_policies_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/service_policies_extended.py index 064f47250..1be8c9b9c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/service_policies_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/service_policies_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/service_policy.py b/isilon_sdk/isilon_sdk/v9_4_0/models/service_policy.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/service_policy.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/service_policy.py index 75ae71c8a..d011fcdda 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/service_policy.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/service_policy.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/service_policy_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/service_policy_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/service_policy_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/service_policy_create_params.py index 1d434aff9..162b9a820 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/service_policy_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/service_policy_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/service_policy_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/service_policy_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/service_policy_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/service_policy_extended.py index fcc1cc3d7..ab027642b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/service_policy_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/service_policy_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/service_policy_extended_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/service_policy_extended_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/service_policy_extended_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/service_policy_extended_extended.py index 10d117d28..dd13f2f70 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/service_policy_extended_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/service_policy_extended_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_policies_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/service_target_policies.py similarity index 77% rename from isilon_sdk/isilon_sdk/v9_11_0/models/firewall_policies_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/service_target_policies.py index 70d9353f3..604f2da91 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/firewall_policies_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/service_target_policies.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class FirewallPoliciesExtended(object): +class ServiceTargetPolicies(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -31,7 +31,7 @@ class FirewallPoliciesExtended(object): and the value is json key in definition. """ swagger_types = { - 'policies': 'list[FirewallPolicyExtendedExtended]', + 'policies': 'list[TargetPolicy]', 'resume': 'str', 'total': 'int' } @@ -43,7 +43,7 @@ class FirewallPoliciesExtended(object): } def __init__(self, policies=None, resume=None, total=None): # noqa: E501 - """FirewallPoliciesExtended - a model defined in Swagger""" # noqa: E501 + """ServiceTargetPolicies - a model defined in Swagger""" # noqa: E501 self._policies = None self._resume = None @@ -59,43 +59,43 @@ def __init__(self, policies=None, resume=None, total=None): # noqa: E501 @property def policies(self): - """Gets the policies of this FirewallPoliciesExtended. # noqa: E501 + """Gets the policies of this ServiceTargetPolicies. # noqa: E501 - :return: The policies of this FirewallPoliciesExtended. # noqa: E501 - :rtype: list[FirewallPolicyExtendedExtended] + :return: The policies of this ServiceTargetPolicies. # noqa: E501 + :rtype: list[TargetPolicy] """ return self._policies @policies.setter def policies(self, policies): - """Sets the policies of this FirewallPoliciesExtended. + """Sets the policies of this ServiceTargetPolicies. - :param policies: The policies of this FirewallPoliciesExtended. # noqa: E501 - :type: list[FirewallPolicyExtendedExtended] + :param policies: The policies of this ServiceTargetPolicies. # noqa: E501 + :type: list[TargetPolicy] """ self._policies = policies @property def resume(self): - """Gets the resume of this FirewallPoliciesExtended. # noqa: E501 + """Gets the resume of this ServiceTargetPolicies. # noqa: E501 Provide this token as the 'resume' query argument to continue listing results. # noqa: E501 - :return: The resume of this FirewallPoliciesExtended. # noqa: E501 + :return: The resume of this ServiceTargetPolicies. # noqa: E501 :rtype: str """ return self._resume @resume.setter def resume(self, resume): - """Sets the resume of this FirewallPoliciesExtended. + """Sets the resume of this ServiceTargetPolicies. Provide this token as the 'resume' query argument to continue listing results. # noqa: E501 - :param resume: The resume of this FirewallPoliciesExtended. # noqa: E501 + :param resume: The resume of this ServiceTargetPolicies. # noqa: E501 :type: str """ if resume is not None and len(resume) > 8192: @@ -107,22 +107,22 @@ def resume(self, resume): @property def total(self): - """Gets the total of this FirewallPoliciesExtended. # noqa: E501 + """Gets the total of this ServiceTargetPolicies. # noqa: E501 Total number of items available. # noqa: E501 - :return: The total of this FirewallPoliciesExtended. # noqa: E501 + :return: The total of this ServiceTargetPolicies. # noqa: E501 :rtype: int """ return self._total @total.setter def total(self, total): - """Sets the total of this FirewallPoliciesExtended. + """Sets the total of this ServiceTargetPolicies. Total number of items available. # noqa: E501 - :param total: The total of this FirewallPoliciesExtended. # noqa: E501 + :param total: The total of this ServiceTargetPolicies. # noqa: E501 :type: int """ if total is not None and total > 9223372036854775807: # noqa: E501 @@ -153,7 +153,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(FirewallPoliciesExtended, dict): + if issubclass(ServiceTargetPolicies, dict): for key, value in self.items(): result[key] = value @@ -169,7 +169,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, FirewallPoliciesExtended): + if not isinstance(other, ServiceTargetPolicies): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sessions_invalidation.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sessions_invalidation.py similarity index 95% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sessions_invalidation.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sessions_invalidation.py index 7b44ecabd..ac032fd55 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sessions_invalidation.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sessions_invalidation.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -56,7 +56,7 @@ def __init__(self, expiration=None, not_before=None): # noqa: E501 def expiration(self): """Gets the expiration of this SessionsInvalidation. # noqa: E501 - The time in seconds since the UNIX epoch when this invalidation expires. # noqa: E501 + The time in seconds since the UNIX epoc when this invalidation expires. # noqa: E501 :return: The expiration of this SessionsInvalidation. # noqa: E501 :rtype: int @@ -67,7 +67,7 @@ def expiration(self): def expiration(self, expiration): """Sets the expiration of this SessionsInvalidation. - The time in seconds since the UNIX epoch when this invalidation expires. # noqa: E501 + The time in seconds since the UNIX epoc when this invalidation expires. # noqa: E501 :param expiration: The expiration of this SessionsInvalidation. # noqa: E501 :type: int diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sessions_invalidation_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sessions_invalidation_create_params.py similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sessions_invalidation_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sessions_invalidation_create_params.py index 54029feb0..1d52ac850 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sessions_invalidation_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sessions_invalidation_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -60,7 +60,7 @@ def __init__(self, expiration=None, not_before=None, id=None): # noqa: E501 def expiration(self): """Gets the expiration of this SessionsInvalidationCreateParams. # noqa: E501 - The time in seconds since the UNIX epoch when this invalidation expires. # noqa: E501 + The time in seconds since the UNIX epoc when this invalidation expires. # noqa: E501 :return: The expiration of this SessionsInvalidationCreateParams. # noqa: E501 :rtype: int @@ -71,7 +71,7 @@ def expiration(self): def expiration(self, expiration): """Sets the expiration of this SessionsInvalidationCreateParams. - The time in seconds since the UNIX epoch when this invalidation expires. # noqa: E501 + The time in seconds since the UNIX epoc when this invalidation expires. # noqa: E501 :param expiration: The expiration of this SessionsInvalidationCreateParams. # noqa: E501 :type: int diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sessions_invalidation_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sessions_invalidation_extended.py similarity index 82% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sessions_invalidation_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sessions_invalidation_extended.py index b4ae90286..fc177ce9d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sessions_invalidation_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sessions_invalidation_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,7 +31,6 @@ class SessionsInvalidationExtended(object): and the value is json key in definition. """ swagger_types = { - 'expiration': 'int', 'id': 'str', 'name': 'str', 'not_before': 'int', @@ -39,25 +38,21 @@ class SessionsInvalidationExtended(object): } attribute_map = { - 'expiration': 'expiration', 'id': 'id', 'name': 'name', 'not_before': 'not_before', 'type': 'type' } - def __init__(self, expiration=None, id=None, name=None, not_before=None, type=None): # noqa: E501 + def __init__(self, id=None, name=None, not_before=None, type=None): # noqa: E501 """SessionsInvalidationExtended - a model defined in Swagger""" # noqa: E501 - self._expiration = None self._id = None self._name = None self._not_before = None self._type = None self.discriminator = None - if expiration is not None: - self.expiration = expiration if id is not None: self.id = id if name is not None: @@ -67,33 +62,6 @@ def __init__(self, expiration=None, id=None, name=None, not_before=None, type=No if type is not None: self.type = type - @property - def expiration(self): - """Gets the expiration of this SessionsInvalidationExtended. # noqa: E501 - - The time in seconds since the UNIX epoch when this invalidation expires. # noqa: E501 - - :return: The expiration of this SessionsInvalidationExtended. # noqa: E501 - :rtype: int - """ - return self._expiration - - @expiration.setter - def expiration(self, expiration): - """Sets the expiration of this SessionsInvalidationExtended. - - The time in seconds since the UNIX epoch when this invalidation expires. # noqa: E501 - - :param expiration: The expiration of this SessionsInvalidationExtended. # noqa: E501 - :type: int - """ - if expiration is not None and expiration > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `expiration`, must be a value less than or equal to `4294967295`") # noqa: E501 - if expiration is not None and expiration < 0: # noqa: E501 - raise ValueError("Invalid value for `expiration`, must be a value greater than or equal to `0`") # noqa: E501 - - self._expiration = expiration - @property def id(self): """Gets the id of this SessionsInvalidationExtended. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sessions_invalidations.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sessions_invalidations.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sessions_invalidations.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sessions_invalidations.py index e40f91ee5..52eea9f28 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sessions_invalidations.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sessions_invalidations.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_access_time.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_access_time.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_access_time.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_access_time.py index 41444f6eb..c74f96309 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_access_time.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_access_time.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_access_time_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_access_time_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_access_time_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_access_time_extended.py index 01c8dd6e7..6c35ffe55 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_access_time_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_access_time_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_access_time_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_access_time_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_access_time_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_access_time_settings.py index 9cc95052b..bb802c4eb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_access_time_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_access_time_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_acls.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_acls.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_acls.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_acls.py index 8c528acba..2c6f412c2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_acls.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_acls.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_acls_acl_policy_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_acls_acl_policy_settings.py similarity index 93% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_acls_acl_policy_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_acls_acl_policy_settings.py index 8d04a2dc7..31d01c5d9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_acls_acl_policy_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_acls_acl_policy_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -43,7 +43,6 @@ class SettingsAclsAclPolicySettings(object): 'create_over_smb': 'str', 'dos_attr': 'str', 'group_owner_inheritance': 'str', - 'read_attributes': 'str', 'rwx': 'str', 'synthetic_denies': 'str', 'utimes': 'str' @@ -62,13 +61,12 @@ class SettingsAclsAclPolicySettings(object): 'create_over_smb': 'create_over_smb', 'dos_attr': 'dos_attr', 'group_owner_inheritance': 'group_owner_inheritance', - 'read_attributes': 'read_attributes', 'rwx': 'rwx', 'synthetic_denies': 'synthetic_denies', 'utimes': 'utimes' } - def __init__(self, access=None, calcmode=None, calcmode_group=None, calcmode_owner=None, calcmode_traverse=None, chmod=None, chmod_007=None, chmod_inheritable=None, chown=None, create_over_smb=None, dos_attr=None, group_owner_inheritance=None, read_attributes=None, rwx=None, synthetic_denies=None, utimes=None): # noqa: E501 + def __init__(self, access=None, calcmode=None, calcmode_group=None, calcmode_owner=None, calcmode_traverse=None, chmod=None, chmod_007=None, chmod_inheritable=None, chown=None, create_over_smb=None, dos_attr=None, group_owner_inheritance=None, rwx=None, synthetic_denies=None, utimes=None): # noqa: E501 """SettingsAclsAclPolicySettings - a model defined in Swagger""" # noqa: E501 self._access = None @@ -83,7 +81,6 @@ def __init__(self, access=None, calcmode=None, calcmode_group=None, calcmode_own self._create_over_smb = None self._dos_attr = None self._group_owner_inheritance = None - self._read_attributes = None self._rwx = None self._synthetic_denies = None self._utimes = None @@ -113,8 +110,6 @@ def __init__(self, access=None, calcmode=None, calcmode_group=None, calcmode_own self.dos_attr = dos_attr if group_owner_inheritance is not None: self.group_owner_inheritance = group_owner_inheritance - if read_attributes is not None: - self.read_attributes = read_attributes if rwx is not None: self.rwx = rwx if synthetic_denies is not None: @@ -398,29 +393,6 @@ def group_owner_inheritance(self, group_owner_inheritance): self._group_owner_inheritance = group_owner_inheritance - @property - def read_attributes(self): - """Gets the read_attributes of this SettingsAclsAclPolicySettings. # noqa: E501 - - Require read attribute permissions on files with existing ACLs. # noqa: E501 - - :return: The read_attributes of this SettingsAclsAclPolicySettings. # noqa: E501 - :rtype: str - """ - return self._read_attributes - - @read_attributes.setter - def read_attributes(self, read_attributes): - """Sets the read_attributes of this SettingsAclsAclPolicySettings. - - Require read attribute permissions on files with existing ACLs. # noqa: E501 - - :param read_attributes: The read_attributes of this SettingsAclsAclPolicySettings. # noqa: E501 - :type: str - """ - - self._read_attributes = read_attributes - @property def rwx(self): """Gets the rwx of this SettingsAclsAclPolicySettings. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_acls_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_acls_extended.py similarity index 93% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_acls_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_acls_extended.py index eef9f9ada..31dc4f774 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_acls_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_acls_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -43,7 +43,6 @@ class SettingsAclsExtended(object): 'create_over_smb': 'str', 'dos_attr': 'str', 'group_owner_inheritance': 'str', - 'read_attributes': 'str', 'rwx': 'str', 'synthetic_denies': 'str', 'utimes': 'str' @@ -62,13 +61,12 @@ class SettingsAclsExtended(object): 'create_over_smb': 'create_over_smb', 'dos_attr': 'dos_attr', 'group_owner_inheritance': 'group_owner_inheritance', - 'read_attributes': 'read_attributes', 'rwx': 'rwx', 'synthetic_denies': 'synthetic_denies', 'utimes': 'utimes' } - def __init__(self, access=None, calcmode=None, calcmode_group=None, calcmode_owner=None, calcmode_traverse=None, chmod=None, chmod_007=None, chmod_inheritable=None, chown=None, create_over_smb=None, dos_attr=None, group_owner_inheritance=None, read_attributes=None, rwx=None, synthetic_denies=None, utimes=None): # noqa: E501 + def __init__(self, access=None, calcmode=None, calcmode_group=None, calcmode_owner=None, calcmode_traverse=None, chmod=None, chmod_007=None, chmod_inheritable=None, chown=None, create_over_smb=None, dos_attr=None, group_owner_inheritance=None, rwx=None, synthetic_denies=None, utimes=None): # noqa: E501 """SettingsAclsExtended - a model defined in Swagger""" # noqa: E501 self._access = None @@ -83,7 +81,6 @@ def __init__(self, access=None, calcmode=None, calcmode_group=None, calcmode_own self._create_over_smb = None self._dos_attr = None self._group_owner_inheritance = None - self._read_attributes = None self._rwx = None self._synthetic_denies = None self._utimes = None @@ -113,8 +110,6 @@ def __init__(self, access=None, calcmode=None, calcmode_group=None, calcmode_own self.dos_attr = dos_attr if group_owner_inheritance is not None: self.group_owner_inheritance = group_owner_inheritance - if read_attributes is not None: - self.read_attributes = read_attributes if rwx is not None: self.rwx = rwx if synthetic_denies is not None: @@ -470,35 +465,6 @@ def group_owner_inheritance(self, group_owner_inheritance): self._group_owner_inheritance = group_owner_inheritance - @property - def read_attributes(self): - """Gets the read_attributes of this SettingsAclsExtended. # noqa: E501 - - Require read attribute permissions on files with existing ACLs. # noqa: E501 - - :return: The read_attributes of this SettingsAclsExtended. # noqa: E501 - :rtype: str - """ - return self._read_attributes - - @read_attributes.setter - def read_attributes(self, read_attributes): - """Sets the read_attributes of this SettingsAclsExtended. - - Require read attribute permissions on files with existing ACLs. # noqa: E501 - - :param read_attributes: The read_attributes of this SettingsAclsExtended. # noqa: E501 - :type: str - """ - allowed_values = ["ignore", "require"] # noqa: E501 - if read_attributes not in allowed_values: - raise ValueError( - "Invalid value for `read_attributes` ({0}), must be one of {1}" # noqa: E501 - .format(read_attributes, allowed_values) - ) - - self._read_attributes = read_attributes - @property def rwx(self): """Gets the rwx of this SettingsAclsExtended. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_character_encodings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_character_encodings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_character_encodings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_character_encodings.py index 26fcf8718..4a14fc15f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_character_encodings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_character_encodings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_character_encodings_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_character_encodings_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_character_encodings_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_character_encodings_extended.py index 901bd040f..3a547e21c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_character_encodings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_character_encodings_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_character_encodings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_character_encodings_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_character_encodings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_character_encodings_settings.py index 7cba407ae..46e73a06b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_character_encodings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_character_encodings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_compression.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_compression.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_compression.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_compression.py index 442e5ef2d..e9c28b14d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_compression.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_compression.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_compression_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_compression_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_compression_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_compression_extended.py index e6885f201..83eea00aa 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_compression_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_compression_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_compression_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_compression_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_compression_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_compression_settings.py index 4de5f1e4a..26c44ebeb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_compression_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_compression_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_global_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_global.py similarity index 85% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_global_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_global.py index 8f76ce577..e276521ae 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_global_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_global.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class SettingsGlobalExtended(object): +class SettingsGlobal(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -39,7 +39,7 @@ class SettingsGlobalExtended(object): } def __init__(self, global_settings=None): # noqa: E501 - """SettingsGlobalExtended - a model defined in Swagger""" # noqa: E501 + """SettingsGlobal - a model defined in Swagger""" # noqa: E501 self._global_settings = None self.discriminator = None @@ -49,22 +49,22 @@ def __init__(self, global_settings=None): # noqa: E501 @property def global_settings(self): - """Gets the global_settings of this SettingsGlobalExtended. # noqa: E501 + """Gets the global_settings of this SettingsGlobal. # noqa: E501 Specifies the properties for global authentication settings. # noqa: E501 - :return: The global_settings of this SettingsGlobalExtended. # noqa: E501 + :return: The global_settings of this SettingsGlobal. # noqa: E501 :rtype: SettingsGlobalGlobalSettings """ return self._global_settings @global_settings.setter def global_settings(self, global_settings): - """Sets the global_settings of this SettingsGlobalExtended. + """Sets the global_settings of this SettingsGlobal. Specifies the properties for global authentication settings. # noqa: E501 - :param global_settings: The global_settings of this SettingsGlobalExtended. # noqa: E501 + :param global_settings: The global_settings of this SettingsGlobal. # noqa: E501 :type: SettingsGlobalGlobalSettings """ @@ -91,7 +91,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(SettingsGlobalExtended, dict): + if issubclass(SettingsGlobal, dict): for key, value in self.items(): result[key] = value @@ -107,7 +107,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, SettingsGlobalExtended): + if not isinstance(other, SettingsGlobal): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_global.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_global_extended.py similarity index 83% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_global.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_global_extended.py index 4a38b529d..9cead89b3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_global.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_global_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class SettingsGlobal(object): +class SettingsGlobalExtended(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -39,7 +39,7 @@ class SettingsGlobal(object): } def __init__(self, settings=None): # noqa: E501 - """SettingsGlobal - a model defined in Swagger""" # noqa: E501 + """SettingsGlobalExtended - a model defined in Swagger""" # noqa: E501 self._settings = None self.discriminator = None @@ -49,22 +49,22 @@ def __init__(self, settings=None): # noqa: E501 @property def settings(self): - """Gets the settings of this SettingsGlobal. # noqa: E501 + """Gets the settings of this SettingsGlobalExtended. # noqa: E501 Settings for Audit. # noqa: E501 - :return: The settings of this SettingsGlobal. # noqa: E501 + :return: The settings of this SettingsGlobalExtended. # noqa: E501 :rtype: SettingsGlobalSettings """ return self._settings @settings.setter def settings(self, settings): - """Sets the settings of this SettingsGlobal. + """Sets the settings of this SettingsGlobalExtended. Settings for Audit. # noqa: E501 - :param settings: The settings of this SettingsGlobal. # noqa: E501 + :param settings: The settings of this SettingsGlobalExtended. # noqa: E501 :type: SettingsGlobalSettings """ @@ -91,7 +91,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(SettingsGlobal, dict): + if issubclass(SettingsGlobalExtended, dict): for key, value in self.items(): result[key] = value @@ -107,7 +107,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, SettingsGlobal): + if not isinstance(other, SettingsGlobalExtended): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_global_global_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_global_global_settings.py similarity index 86% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_global_global_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_global_global_settings.py index 0b301d21a..c8e81dbb6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_global_global_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_global_global_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -32,9 +32,6 @@ class SettingsGlobalGlobalSettings(object): """ swagger_types = { 'alloc_retries': 'int', - 'concurrent_session_limit': 'int', - 'default_ldap_tls_revocation_check_level': 'str', - 'failed_login_delay_time': 'int', 'gid_range_enabled': 'bool', 'gid_range_max': 'int', 'gid_range_min': 'int', @@ -64,9 +61,6 @@ class SettingsGlobalGlobalSettings(object): attribute_map = { 'alloc_retries': 'alloc_retries', - 'concurrent_session_limit': 'concurrent_session_limit', - 'default_ldap_tls_revocation_check_level': 'default_ldap_tls_revocation_check_level', - 'failed_login_delay_time': 'failed_login_delay_time', 'gid_range_enabled': 'gid_range_enabled', 'gid_range_max': 'gid_range_max', 'gid_range_min': 'gid_range_min', @@ -94,13 +88,10 @@ class SettingsGlobalGlobalSettings(object): 'workgroup': 'workgroup' } - def __init__(self, alloc_retries=None, concurrent_session_limit=None, default_ldap_tls_revocation_check_level=None, failed_login_delay_time=None, gid_range_enabled=None, gid_range_max=None, gid_range_min=None, gid_range_next=None, group_uid=None, load_providers=None, min_mapped_rid=None, null_gid=None, null_uid=None, on_disk_identity=None, rpc_block_time=None, rpc_max_requests=None, rpc_timeout=None, send_ntlmv2=None, space_replacement=None, system_gid_threshold=None, system_uid_threshold=None, uid_range_enabled=None, uid_range_max=None, uid_range_min=None, uid_range_next=None, unknown_gid=None, unknown_uid=None, user_object_cache_size=None, workgroup=None): # noqa: E501 + def __init__(self, alloc_retries=None, gid_range_enabled=None, gid_range_max=None, gid_range_min=None, gid_range_next=None, group_uid=None, load_providers=None, min_mapped_rid=None, null_gid=None, null_uid=None, on_disk_identity=None, rpc_block_time=None, rpc_max_requests=None, rpc_timeout=None, send_ntlmv2=None, space_replacement=None, system_gid_threshold=None, system_uid_threshold=None, uid_range_enabled=None, uid_range_max=None, uid_range_min=None, uid_range_next=None, unknown_gid=None, unknown_uid=None, user_object_cache_size=None, workgroup=None): # noqa: E501 """SettingsGlobalGlobalSettings - a model defined in Swagger""" # noqa: E501 self._alloc_retries = None - self._concurrent_session_limit = None - self._default_ldap_tls_revocation_check_level = None - self._failed_login_delay_time = None self._gid_range_enabled = None self._gid_range_max = None self._gid_range_min = None @@ -130,12 +121,6 @@ def __init__(self, alloc_retries=None, concurrent_session_limit=None, default_ld if alloc_retries is not None: self.alloc_retries = alloc_retries - if concurrent_session_limit is not None: - self.concurrent_session_limit = concurrent_session_limit - if default_ldap_tls_revocation_check_level is not None: - self.default_ldap_tls_revocation_check_level = default_ldap_tls_revocation_check_level - if failed_login_delay_time is not None: - self.failed_login_delay_time = failed_login_delay_time if gid_range_enabled is not None: self.gid_range_enabled = gid_range_enabled if gid_range_max is not None: @@ -214,83 +199,6 @@ def alloc_retries(self, alloc_retries): self._alloc_retries = alloc_retries - @property - def concurrent_session_limit(self): - """Gets the concurrent_session_limit of this SettingsGlobalGlobalSettings. # noqa: E501 - - Specifies the total number of concurrent administrative sessions. # noqa: E501 - - :return: The concurrent_session_limit of this SettingsGlobalGlobalSettings. # noqa: E501 - :rtype: int - """ - return self._concurrent_session_limit - - @concurrent_session_limit.setter - def concurrent_session_limit(self, concurrent_session_limit): - """Sets the concurrent_session_limit of this SettingsGlobalGlobalSettings. - - Specifies the total number of concurrent administrative sessions. # noqa: E501 - - :param concurrent_session_limit: The concurrent_session_limit of this SettingsGlobalGlobalSettings. # noqa: E501 - :type: int - """ - if concurrent_session_limit is not None and concurrent_session_limit > 65535: # noqa: E501 - raise ValueError("Invalid value for `concurrent_session_limit`, must be a value less than or equal to `65535`") # noqa: E501 - if concurrent_session_limit is not None and concurrent_session_limit < 0: # noqa: E501 - raise ValueError("Invalid value for `concurrent_session_limit`, must be a value greater than or equal to `0`") # noqa: E501 - - self._concurrent_session_limit = concurrent_session_limit - - @property - def default_ldap_tls_revocation_check_level(self): - """Gets the default_ldap_tls_revocation_check_level of this SettingsGlobalGlobalSettings. # noqa: E501 - - This setting controls the default behavior of the certificate revocation checking algorithm when the LDAP provider is presented with a digital certificate by an LDAP server. # noqa: E501 - - :return: The default_ldap_tls_revocation_check_level of this SettingsGlobalGlobalSettings. # noqa: E501 - :rtype: str - """ - return self._default_ldap_tls_revocation_check_level - - @default_ldap_tls_revocation_check_level.setter - def default_ldap_tls_revocation_check_level(self, default_ldap_tls_revocation_check_level): - """Sets the default_ldap_tls_revocation_check_level of this SettingsGlobalGlobalSettings. - - This setting controls the default behavior of the certificate revocation checking algorithm when the LDAP provider is presented with a digital certificate by an LDAP server. # noqa: E501 - - :param default_ldap_tls_revocation_check_level: The default_ldap_tls_revocation_check_level of this SettingsGlobalGlobalSettings. # noqa: E501 - :type: str - """ - - self._default_ldap_tls_revocation_check_level = default_ldap_tls_revocation_check_level - - @property - def failed_login_delay_time(self): - """Gets the failed_login_delay_time of this SettingsGlobalGlobalSettings. # noqa: E501 - - Specifies the delay in seconds following a failed login/authentication attempt. # noqa: E501 - - :return: The failed_login_delay_time of this SettingsGlobalGlobalSettings. # noqa: E501 - :rtype: int - """ - return self._failed_login_delay_time - - @failed_login_delay_time.setter - def failed_login_delay_time(self, failed_login_delay_time): - """Sets the failed_login_delay_time of this SettingsGlobalGlobalSettings. - - Specifies the delay in seconds following a failed login/authentication attempt. # noqa: E501 - - :param failed_login_delay_time: The failed_login_delay_time of this SettingsGlobalGlobalSettings. # noqa: E501 - :type: int - """ - if failed_login_delay_time is not None and failed_login_delay_time > 65535: # noqa: E501 - raise ValueError("Invalid value for `failed_login_delay_time`, must be a value less than or equal to `65535`") # noqa: E501 - if failed_login_delay_time is not None and failed_login_delay_time < 0: # noqa: E501 - raise ValueError("Invalid value for `failed_login_delay_time`, must be a value greater than or equal to `0`") # noqa: E501 - - self._failed_login_delay_time = failed_login_delay_time - @property def gid_range_enabled(self): """Gets the gid_range_enabled of this SettingsGlobalGlobalSettings. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_global_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_global_settings.py similarity index 57% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_global_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_global_settings.py index e8b6474b7..36d4a8be4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_global_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_global_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -36,22 +36,13 @@ class SettingsGlobalSettings(object): 'cee_log_time': 'str', 'cee_server_uris': 'list[str]', 'config_auditing_enabled': 'bool', - 'config_syslog_certificate_id': 'str', 'config_syslog_enabled': 'bool', 'config_syslog_servers': 'list[str]', - 'config_syslog_tls_enabled': 'bool', 'hostname': 'str', 'protocol_auditing_enabled': 'bool', - 'protocol_syslog_certificate_id': 'str', 'protocol_syslog_servers': 'list[str]', - 'protocol_syslog_tls_enabled': 'bool', 'retention_period': 'int', - 'syslog_log_time': 'str', - 'system_auditing_enabled': 'bool', - 'system_syslog_certificate_id': 'str', - 'system_syslog_enabled': 'bool', - 'system_syslog_servers': 'list[str]', - 'system_syslog_tls_enabled': 'bool' + 'syslog_log_time': 'str' } attribute_map = { @@ -60,25 +51,16 @@ class SettingsGlobalSettings(object): 'cee_log_time': 'cee_log_time', 'cee_server_uris': 'cee_server_uris', 'config_auditing_enabled': 'config_auditing_enabled', - 'config_syslog_certificate_id': 'config_syslog_certificate_id', 'config_syslog_enabled': 'config_syslog_enabled', 'config_syslog_servers': 'config_syslog_servers', - 'config_syslog_tls_enabled': 'config_syslog_tls_enabled', 'hostname': 'hostname', 'protocol_auditing_enabled': 'protocol_auditing_enabled', - 'protocol_syslog_certificate_id': 'protocol_syslog_certificate_id', 'protocol_syslog_servers': 'protocol_syslog_servers', - 'protocol_syslog_tls_enabled': 'protocol_syslog_tls_enabled', 'retention_period': 'retention_period', - 'syslog_log_time': 'syslog_log_time', - 'system_auditing_enabled': 'system_auditing_enabled', - 'system_syslog_certificate_id': 'system_syslog_certificate_id', - 'system_syslog_enabled': 'system_syslog_enabled', - 'system_syslog_servers': 'system_syslog_servers', - 'system_syslog_tls_enabled': 'system_syslog_tls_enabled' + 'syslog_log_time': 'syslog_log_time' } - def __init__(self, audited_zones=None, auto_purging_enabled=None, cee_log_time=None, cee_server_uris=None, config_auditing_enabled=None, config_syslog_certificate_id=None, config_syslog_enabled=None, config_syslog_servers=None, config_syslog_tls_enabled=None, hostname=None, protocol_auditing_enabled=None, protocol_syslog_certificate_id=None, protocol_syslog_servers=None, protocol_syslog_tls_enabled=None, retention_period=None, syslog_log_time=None, system_auditing_enabled=None, system_syslog_certificate_id=None, system_syslog_enabled=None, system_syslog_servers=None, system_syslog_tls_enabled=None): # noqa: E501 + def __init__(self, audited_zones=None, auto_purging_enabled=None, cee_log_time=None, cee_server_uris=None, config_auditing_enabled=None, config_syslog_enabled=None, config_syslog_servers=None, hostname=None, protocol_auditing_enabled=None, protocol_syslog_servers=None, retention_period=None, syslog_log_time=None): # noqa: E501 """SettingsGlobalSettings - a model defined in Swagger""" # noqa: E501 self._audited_zones = None @@ -86,22 +68,13 @@ def __init__(self, audited_zones=None, auto_purging_enabled=None, cee_log_time=N self._cee_log_time = None self._cee_server_uris = None self._config_auditing_enabled = None - self._config_syslog_certificate_id = None self._config_syslog_enabled = None self._config_syslog_servers = None - self._config_syslog_tls_enabled = None self._hostname = None self._protocol_auditing_enabled = None - self._protocol_syslog_certificate_id = None self._protocol_syslog_servers = None - self._protocol_syslog_tls_enabled = None self._retention_period = None self._syslog_log_time = None - self._system_auditing_enabled = None - self._system_syslog_certificate_id = None - self._system_syslog_enabled = None - self._system_syslog_servers = None - self._system_syslog_tls_enabled = None self.discriminator = None if audited_zones is not None: @@ -114,38 +87,20 @@ def __init__(self, audited_zones=None, auto_purging_enabled=None, cee_log_time=N self.cee_server_uris = cee_server_uris if config_auditing_enabled is not None: self.config_auditing_enabled = config_auditing_enabled - if config_syslog_certificate_id is not None: - self.config_syslog_certificate_id = config_syslog_certificate_id if config_syslog_enabled is not None: self.config_syslog_enabled = config_syslog_enabled if config_syslog_servers is not None: self.config_syslog_servers = config_syslog_servers - if config_syslog_tls_enabled is not None: - self.config_syslog_tls_enabled = config_syslog_tls_enabled if hostname is not None: self.hostname = hostname if protocol_auditing_enabled is not None: self.protocol_auditing_enabled = protocol_auditing_enabled - if protocol_syslog_certificate_id is not None: - self.protocol_syslog_certificate_id = protocol_syslog_certificate_id if protocol_syslog_servers is not None: self.protocol_syslog_servers = protocol_syslog_servers - if protocol_syslog_tls_enabled is not None: - self.protocol_syslog_tls_enabled = protocol_syslog_tls_enabled if retention_period is not None: self.retention_period = retention_period if syslog_log_time is not None: self.syslog_log_time = syslog_log_time - if system_auditing_enabled is not None: - self.system_auditing_enabled = system_auditing_enabled - if system_syslog_certificate_id is not None: - self.system_syslog_certificate_id = system_syslog_certificate_id - if system_syslog_enabled is not None: - self.system_syslog_enabled = system_syslog_enabled - if system_syslog_servers is not None: - self.system_syslog_servers = system_syslog_servers - if system_syslog_tls_enabled is not None: - self.system_syslog_tls_enabled = system_syslog_tls_enabled @property def audited_zones(self): @@ -174,7 +129,7 @@ def audited_zones(self, audited_zones): def auto_purging_enabled(self): """Gets the auto_purging_enabled of this SettingsGlobalSettings. # noqa: E501 - Specifies whether auto purging of audit log files is enabled. # noqa: E501 + whether auto purging of audit log files is enabled. # noqa: E501 :return: The auto_purging_enabled of this SettingsGlobalSettings. # noqa: E501 :rtype: bool @@ -185,7 +140,7 @@ def auto_purging_enabled(self): def auto_purging_enabled(self, auto_purging_enabled): """Sets the auto_purging_enabled of this SettingsGlobalSettings. - Specifies whether auto purging of audit log files is enabled. # noqa: E501 + whether auto purging of audit log files is enabled. # noqa: E501 :param auto_purging_enabled: The auto_purging_enabled of this SettingsGlobalSettings. # noqa: E501 :type: bool @@ -266,33 +221,6 @@ def config_auditing_enabled(self, config_auditing_enabled): self._config_auditing_enabled = config_auditing_enabled - @property - def config_syslog_certificate_id(self): - """Gets the config_syslog_certificate_id of this SettingsGlobalSettings. # noqa: E501 - - Specifies the certificate ID used by configuration syslog forwarding. # noqa: E501 - - :return: The config_syslog_certificate_id of this SettingsGlobalSettings. # noqa: E501 - :rtype: str - """ - return self._config_syslog_certificate_id - - @config_syslog_certificate_id.setter - def config_syslog_certificate_id(self, config_syslog_certificate_id): - """Sets the config_syslog_certificate_id of this SettingsGlobalSettings. - - Specifies the certificate ID used by configuration syslog forwarding. # noqa: E501 - - :param config_syslog_certificate_id: The config_syslog_certificate_id of this SettingsGlobalSettings. # noqa: E501 - :type: str - """ - if config_syslog_certificate_id is not None and len(config_syslog_certificate_id) > 255: - raise ValueError("Invalid value for `config_syslog_certificate_id`, length must be less than or equal to `255`") # noqa: E501 - if config_syslog_certificate_id is not None and len(config_syslog_certificate_id) < 0: - raise ValueError("Invalid value for `config_syslog_certificate_id`, length must be greater than or equal to `0`") # noqa: E501 - - self._config_syslog_certificate_id = config_syslog_certificate_id - @property def config_syslog_enabled(self): """Gets the config_syslog_enabled of this SettingsGlobalSettings. # noqa: E501 @@ -339,29 +267,6 @@ def config_syslog_servers(self, config_syslog_servers): self._config_syslog_servers = config_syslog_servers - @property - def config_syslog_tls_enabled(self): - """Gets the config_syslog_tls_enabled of this SettingsGlobalSettings. # noqa: E501 - - Specifies whether TLS is enabled for configuration syslog forwarding. # noqa: E501 - - :return: The config_syslog_tls_enabled of this SettingsGlobalSettings. # noqa: E501 - :rtype: bool - """ - return self._config_syslog_tls_enabled - - @config_syslog_tls_enabled.setter - def config_syslog_tls_enabled(self, config_syslog_tls_enabled): - """Sets the config_syslog_tls_enabled of this SettingsGlobalSettings. - - Specifies whether TLS is enabled for configuration syslog forwarding. # noqa: E501 - - :param config_syslog_tls_enabled: The config_syslog_tls_enabled of this SettingsGlobalSettings. # noqa: E501 - :type: bool - """ - - self._config_syslog_tls_enabled = config_syslog_tls_enabled - @property def hostname(self): """Gets the hostname of this SettingsGlobalSettings. # noqa: E501 @@ -412,33 +317,6 @@ def protocol_auditing_enabled(self, protocol_auditing_enabled): self._protocol_auditing_enabled = protocol_auditing_enabled - @property - def protocol_syslog_certificate_id(self): - """Gets the protocol_syslog_certificate_id of this SettingsGlobalSettings. # noqa: E501 - - Specifies the certificate ID used by protocol syslog forwarding. # noqa: E501 - - :return: The protocol_syslog_certificate_id of this SettingsGlobalSettings. # noqa: E501 - :rtype: str - """ - return self._protocol_syslog_certificate_id - - @protocol_syslog_certificate_id.setter - def protocol_syslog_certificate_id(self, protocol_syslog_certificate_id): - """Sets the protocol_syslog_certificate_id of this SettingsGlobalSettings. - - Specifies the certificate ID used by protocol syslog forwarding. # noqa: E501 - - :param protocol_syslog_certificate_id: The protocol_syslog_certificate_id of this SettingsGlobalSettings. # noqa: E501 - :type: str - """ - if protocol_syslog_certificate_id is not None and len(protocol_syslog_certificate_id) > 255: - raise ValueError("Invalid value for `protocol_syslog_certificate_id`, length must be less than or equal to `255`") # noqa: E501 - if protocol_syslog_certificate_id is not None and len(protocol_syslog_certificate_id) < 0: - raise ValueError("Invalid value for `protocol_syslog_certificate_id`, length must be greater than or equal to `0`") # noqa: E501 - - self._protocol_syslog_certificate_id = protocol_syslog_certificate_id - @property def protocol_syslog_servers(self): """Gets the protocol_syslog_servers of this SettingsGlobalSettings. # noqa: E501 @@ -462,29 +340,6 @@ def protocol_syslog_servers(self, protocol_syslog_servers): self._protocol_syslog_servers = protocol_syslog_servers - @property - def protocol_syslog_tls_enabled(self): - """Gets the protocol_syslog_tls_enabled of this SettingsGlobalSettings. # noqa: E501 - - Specifies whether TLS is enabled for protocol syslog forwarding. # noqa: E501 - - :return: The protocol_syslog_tls_enabled of this SettingsGlobalSettings. # noqa: E501 - :rtype: bool - """ - return self._protocol_syslog_tls_enabled - - @protocol_syslog_tls_enabled.setter - def protocol_syslog_tls_enabled(self, protocol_syslog_tls_enabled): - """Sets the protocol_syslog_tls_enabled of this SettingsGlobalSettings. - - Specifies whether TLS is enabled for protocol syslog forwarding. # noqa: E501 - - :param protocol_syslog_tls_enabled: The protocol_syslog_tls_enabled of this SettingsGlobalSettings. # noqa: E501 - :type: bool - """ - - self._protocol_syslog_tls_enabled = protocol_syslog_tls_enabled - @property def retention_period(self): """Gets the retention_period of this SettingsGlobalSettings. # noqa: E501 @@ -539,125 +394,6 @@ def syslog_log_time(self, syslog_log_time): self._syslog_log_time = syslog_log_time - @property - def system_auditing_enabled(self): - """Gets the system_auditing_enabled of this SettingsGlobalSettings. # noqa: E501 - - Specifies whether auditd(openbsm) service is enabled. # noqa: E501 - - :return: The system_auditing_enabled of this SettingsGlobalSettings. # noqa: E501 - :rtype: bool - """ - return self._system_auditing_enabled - - @system_auditing_enabled.setter - def system_auditing_enabled(self, system_auditing_enabled): - """Sets the system_auditing_enabled of this SettingsGlobalSettings. - - Specifies whether auditd(openbsm) service is enabled. # noqa: E501 - - :param system_auditing_enabled: The system_auditing_enabled of this SettingsGlobalSettings. # noqa: E501 - :type: bool - """ - - self._system_auditing_enabled = system_auditing_enabled - - @property - def system_syslog_certificate_id(self): - """Gets the system_syslog_certificate_id of this SettingsGlobalSettings. # noqa: E501 - - Specifies the certificate ID used by system syslog forwarding. # noqa: E501 - - :return: The system_syslog_certificate_id of this SettingsGlobalSettings. # noqa: E501 - :rtype: str - """ - return self._system_syslog_certificate_id - - @system_syslog_certificate_id.setter - def system_syslog_certificate_id(self, system_syslog_certificate_id): - """Sets the system_syslog_certificate_id of this SettingsGlobalSettings. - - Specifies the certificate ID used by system syslog forwarding. # noqa: E501 - - :param system_syslog_certificate_id: The system_syslog_certificate_id of this SettingsGlobalSettings. # noqa: E501 - :type: str - """ - if system_syslog_certificate_id is not None and len(system_syslog_certificate_id) > 255: - raise ValueError("Invalid value for `system_syslog_certificate_id`, length must be less than or equal to `255`") # noqa: E501 - if system_syslog_certificate_id is not None and len(system_syslog_certificate_id) < 0: - raise ValueError("Invalid value for `system_syslog_certificate_id`, length must be greater than or equal to `0`") # noqa: E501 - - self._system_syslog_certificate_id = system_syslog_certificate_id - - @property - def system_syslog_enabled(self): - """Gets the system_syslog_enabled of this SettingsGlobalSettings. # noqa: E501 - - Specifies whether system syslog forwarding is enabled. # noqa: E501 - - :return: The system_syslog_enabled of this SettingsGlobalSettings. # noqa: E501 - :rtype: bool - """ - return self._system_syslog_enabled - - @system_syslog_enabled.setter - def system_syslog_enabled(self, system_syslog_enabled): - """Sets the system_syslog_enabled of this SettingsGlobalSettings. - - Specifies whether system syslog forwarding is enabled. # noqa: E501 - - :param system_syslog_enabled: The system_syslog_enabled of this SettingsGlobalSettings. # noqa: E501 - :type: bool - """ - - self._system_syslog_enabled = system_syslog_enabled - - @property - def system_syslog_servers(self): - """Gets the system_syslog_servers of this SettingsGlobalSettings. # noqa: E501 - - Specifies a list of remote servers. System event forwarding are forwarded to syslog of these remote servers. # noqa: E501 - - :return: The system_syslog_servers of this SettingsGlobalSettings. # noqa: E501 - :rtype: list[str] - """ - return self._system_syslog_servers - - @system_syslog_servers.setter - def system_syslog_servers(self, system_syslog_servers): - """Sets the system_syslog_servers of this SettingsGlobalSettings. - - Specifies a list of remote servers. System event forwarding are forwarded to syslog of these remote servers. # noqa: E501 - - :param system_syslog_servers: The system_syslog_servers of this SettingsGlobalSettings. # noqa: E501 - :type: list[str] - """ - - self._system_syslog_servers = system_syslog_servers - - @property - def system_syslog_tls_enabled(self): - """Gets the system_syslog_tls_enabled of this SettingsGlobalSettings. # noqa: E501 - - Specifies whether TLS is enabled for system syslog forwarding. # noqa: E501 - - :return: The system_syslog_tls_enabled of this SettingsGlobalSettings. # noqa: E501 - :rtype: bool - """ - return self._system_syslog_tls_enabled - - @system_syslog_tls_enabled.setter - def system_syslog_tls_enabled(self, system_syslog_tls_enabled): - """Sets the system_syslog_tls_enabled of this SettingsGlobalSettings. - - Specifies whether TLS is enabled for system syslog forwarding. # noqa: E501 - - :param system_syslog_tls_enabled: The system_syslog_tls_enabled of this SettingsGlobalSettings. # noqa: E501 - :type: bool - """ - - self._system_syslog_tls_enabled = system_syslog_tls_enabled - def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_defaults.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_defaults.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_defaults.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_defaults.py index 9d8e0f389..1b606c11f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_defaults.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_defaults.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_defaults_krb5_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_defaults_krb5_settings.py new file mode 100644 index 000000000..994dda462 --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_defaults_krb5_settings.py @@ -0,0 +1,233 @@ +# coding: utf-8 + +""" + Isilon SDK + + Isilon SDK - Language bindings for the OneFS API # noqa: E501 + + OpenAPI spec version: 15 + Contact: sdk@isilon.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + + +class SettingsKrb5DefaultsKrb5Settings(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'allow_weak_crypto': 'bool', + 'always_send_preauth': 'bool', + 'default_realm': 'str', + 'dns_lookup_kdc': 'bool', + 'dns_lookup_realm': 'bool' + } + + attribute_map = { + 'allow_weak_crypto': 'allow_weak_crypto', + 'always_send_preauth': 'always_send_preauth', + 'default_realm': 'default_realm', + 'dns_lookup_kdc': 'dns_lookup_kdc', + 'dns_lookup_realm': 'dns_lookup_realm' + } + + def __init__(self, allow_weak_crypto=None, always_send_preauth=None, default_realm=None, dns_lookup_kdc=None, dns_lookup_realm=None): # noqa: E501 + """SettingsKrb5DefaultsKrb5Settings - a model defined in Swagger""" # noqa: E501 + + self._allow_weak_crypto = None + self._always_send_preauth = None + self._default_realm = None + self._dns_lookup_kdc = None + self._dns_lookup_realm = None + self.discriminator = None + + if allow_weak_crypto is not None: + self.allow_weak_crypto = allow_weak_crypto + if always_send_preauth is not None: + self.always_send_preauth = always_send_preauth + if default_realm is not None: + self.default_realm = default_realm + if dns_lookup_kdc is not None: + self.dns_lookup_kdc = dns_lookup_kdc + if dns_lookup_realm is not None: + self.dns_lookup_realm = dns_lookup_realm + + @property + def allow_weak_crypto(self): + """Gets the allow_weak_crypto of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 + + If true, allow the use of DES encryption # noqa: E501 + + :return: The allow_weak_crypto of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 + :rtype: bool + """ + return self._allow_weak_crypto + + @allow_weak_crypto.setter + def allow_weak_crypto(self, allow_weak_crypto): + """Sets the allow_weak_crypto of this SettingsKrb5DefaultsKrb5Settings. + + If true, allow the use of DES encryption # noqa: E501 + + :param allow_weak_crypto: The allow_weak_crypto of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 + :type: bool + """ + + self._allow_weak_crypto = allow_weak_crypto + + @property + def always_send_preauth(self): + """Gets the always_send_preauth of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 + + If true, always attempts to preauthenticate to the domain controller. # noqa: E501 + + :return: The always_send_preauth of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 + :rtype: bool + """ + return self._always_send_preauth + + @always_send_preauth.setter + def always_send_preauth(self, always_send_preauth): + """Sets the always_send_preauth of this SettingsKrb5DefaultsKrb5Settings. + + If true, always attempts to preauthenticate to the domain controller. # noqa: E501 + + :param always_send_preauth: The always_send_preauth of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 + :type: bool + """ + + self._always_send_preauth = always_send_preauth + + @property + def default_realm(self): + """Gets the default_realm of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 + + Specifies the realm for unqualified names. # noqa: E501 + + :return: The default_realm of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 + :rtype: str + """ + return self._default_realm + + @default_realm.setter + def default_realm(self, default_realm): + """Sets the default_realm of this SettingsKrb5DefaultsKrb5Settings. + + Specifies the realm for unqualified names. # noqa: E501 + + :param default_realm: The default_realm of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 + :type: str + """ + if default_realm is not None and len(default_realm) > 255: + raise ValueError("Invalid value for `default_realm`, length must be less than or equal to `255`") # noqa: E501 + if default_realm is not None and len(default_realm) < 0: + raise ValueError("Invalid value for `default_realm`, length must be greater than or equal to `0`") # noqa: E501 + + self._default_realm = default_realm + + @property + def dns_lookup_kdc(self): + """Gets the dns_lookup_kdc of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 + + If true, find KDCs through the DNS. # noqa: E501 + + :return: The dns_lookup_kdc of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 + :rtype: bool + """ + return self._dns_lookup_kdc + + @dns_lookup_kdc.setter + def dns_lookup_kdc(self, dns_lookup_kdc): + """Sets the dns_lookup_kdc of this SettingsKrb5DefaultsKrb5Settings. + + If true, find KDCs through the DNS. # noqa: E501 + + :param dns_lookup_kdc: The dns_lookup_kdc of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 + :type: bool + """ + + self._dns_lookup_kdc = dns_lookup_kdc + + @property + def dns_lookup_realm(self): + """Gets the dns_lookup_realm of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 + + If true, find realm names through the DNS. # noqa: E501 + + :return: The dns_lookup_realm of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 + :rtype: bool + """ + return self._dns_lookup_realm + + @dns_lookup_realm.setter + def dns_lookup_realm(self, dns_lookup_realm): + """Sets the dns_lookup_realm of this SettingsKrb5DefaultsKrb5Settings. + + If true, find realm names through the DNS. # noqa: E501 + + :param dns_lookup_realm: The dns_lookup_realm of this SettingsKrb5DefaultsKrb5Settings. # noqa: E501 + :type: bool + """ + + self._dns_lookup_realm = dns_lookup_realm + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(SettingsKrb5DefaultsKrb5Settings, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, SettingsKrb5DefaultsKrb5Settings): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + """Returns true if both objects are not equal""" + return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_domain.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_domain.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_domain.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_domain.py index df8508db8..51e784a31 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_domain.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_domain.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_domain_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_domain_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_domain_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_domain_create_params.py index 6d2dee818..6624e1eed 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_domain_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_domain_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_domains.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_domains.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_domains.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_domains.py index 8e4a16c7c..4e5f17cf2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_domains.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_domains.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_domains_domain_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_domains_domain_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_domains_domain_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_domains_domain_item.py index 3804d650e..f1292c6ee 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_domains_domain_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_domains_domain_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_realm.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_realm.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_realm.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_realm.py index e0054f9c9..8726ecaf7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_realm.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_realm.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_realm_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_realm_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_realm_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_realm_create_params.py index 08c1d4b44..6ca83f61c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_realm_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_realm_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_realms.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_realms.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_realms.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_realms.py index bcc21baed..874f3368e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_realms.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_realms.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_realms_realm_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_realms_realm_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_realms_realm_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_realms_realm_item.py index 9e5aa2555..6aaec4fbe 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_krb5_realms_realm_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_krb5_realms_realm_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_mapping.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_mapping.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_mapping.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_mapping.py index 53f67b02e..1df2616e3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_mapping.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_mapping.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_mapping_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_mapping_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_mapping_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_mapping_create_params.py index 5757e032a..89f495159 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_mapping_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_mapping_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_mapping_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_mapping_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_mapping_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_mapping_extended.py index 8d3f58bef..1e2db77da 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_mapping_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_mapping_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_mapping_extended_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_mapping_extended_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_mapping_extended_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_mapping_extended_extended.py index f594c764a..14e37e06c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_mapping_extended_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_mapping_extended_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_mapping_mapping_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_mapping_mapping_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_mapping_mapping_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_mapping_mapping_settings.py index 21075ea4c..ee573ce92 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_mapping_mapping_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_mapping_mapping_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_mappings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_mappings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_mappings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_mappings.py index 31a8bcb4e..88fcad74e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_mappings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_mappings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_mappings_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_mappings_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_mappings_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_mappings_extended.py index 14232306b..7e32a3035 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_mappings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_mappings_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_notifications.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_notifications.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_notifications.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_notifications.py index d62f84ddc..ea9698be9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_notifications.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_notifications.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_reporting_eula.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_reporting_eula.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_reporting_eula.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_reporting_eula.py index 94d19a789..a27cc7497 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_reporting_eula.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_reporting_eula.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_reporting_eula_eula.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_reporting_eula_eula.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_reporting_eula_eula.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_reporting_eula_eula.py index 646a9587f..a07e82389 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_reporting_eula_eula.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_reporting_eula_eula.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_reports.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_reports.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_reports.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_reports.py index cedbfa230..26972cf67 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_reports.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_reports.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_reports_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_reports_extended.py similarity index 84% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_reports_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_reports_extended.py index 86c41a7a9..e899c52d4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_reports_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_reports_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -71,6 +71,7 @@ def __init__(self, live_dir=None, live_retain=None, schedule=None, scheduled_dir def live_dir(self): """Gets the live_dir of this SettingsReportsExtended. # noqa: E501 + The directory on /ifs where manual or live reports will be placed. # noqa: E501 :return: The live_dir of this SettingsReportsExtended. # noqa: E501 :rtype: str @@ -81,16 +82,11 @@ def live_dir(self): def live_dir(self, live_dir): """Sets the live_dir of this SettingsReportsExtended. + The directory on /ifs where manual or live reports will be placed. # noqa: E501 :param live_dir: The live_dir of this SettingsReportsExtended. # noqa: E501 :type: str """ - if live_dir is not None and len(live_dir) > 4096: - raise ValueError("Invalid value for `live_dir`, length must be less than or equal to `4096`") # noqa: E501 - if live_dir is not None and len(live_dir) < 4: - raise ValueError("Invalid value for `live_dir`, length must be greater than or equal to `4`") # noqa: E501 - if live_dir is not None and not re.search(r'^\/ifs$|^\/ifs\/', live_dir): # noqa: E501 - raise ValueError(r"Invalid value for `live_dir`, must be a follow pattern or equal to `/^\/ifs$|^\/ifs\//`") # noqa: E501 self._live_dir = live_dir @@ -146,6 +142,7 @@ def schedule(self, schedule): def scheduled_dir(self): """Gets the scheduled_dir of this SettingsReportsExtended. # noqa: E501 + The directory on /ifs where schedule reports will be placed. # noqa: E501 :return: The scheduled_dir of this SettingsReportsExtended. # noqa: E501 :rtype: str @@ -156,16 +153,11 @@ def scheduled_dir(self): def scheduled_dir(self, scheduled_dir): """Sets the scheduled_dir of this SettingsReportsExtended. + The directory on /ifs where schedule reports will be placed. # noqa: E501 :param scheduled_dir: The scheduled_dir of this SettingsReportsExtended. # noqa: E501 :type: str """ - if scheduled_dir is not None and len(scheduled_dir) > 4096: - raise ValueError("Invalid value for `scheduled_dir`, length must be less than or equal to `4096`") # noqa: E501 - if scheduled_dir is not None and len(scheduled_dir) < 4: - raise ValueError("Invalid value for `scheduled_dir`, length must be greater than or equal to `4`") # noqa: E501 - if scheduled_dir is not None and not re.search(r'^\/ifs$|^\/ifs\/', scheduled_dir): # noqa: E501 - raise ValueError(r"Invalid value for `scheduled_dir`, must be a follow pattern or equal to `/^\/ifs$|^\/ifs\//`") # noqa: E501 self._scheduled_dir = scheduled_dir diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_reports_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_reports_settings.py similarity index 84% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_reports_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_reports_settings.py index 5ab282da9..d9be82a13 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_reports_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_reports_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -56,18 +56,17 @@ def __init__(self, live_dir=None, live_retain=None, schedule=None, scheduled_dir self._scheduled_retain = None self.discriminator = None - if live_dir is not None: - self.live_dir = live_dir + self.live_dir = live_dir self.live_retain = live_retain self.schedule = schedule - if scheduled_dir is not None: - self.scheduled_dir = scheduled_dir + self.scheduled_dir = scheduled_dir self.scheduled_retain = scheduled_retain @property def live_dir(self): """Gets the live_dir of this SettingsReportsSettings. # noqa: E501 + The directory on /ifs where manual or live reports will be placed. # noqa: E501 :return: The live_dir of this SettingsReportsSettings. # noqa: E501 :rtype: str @@ -78,16 +77,13 @@ def live_dir(self): def live_dir(self, live_dir): """Sets the live_dir of this SettingsReportsSettings. + The directory on /ifs where manual or live reports will be placed. # noqa: E501 :param live_dir: The live_dir of this SettingsReportsSettings. # noqa: E501 :type: str """ - if live_dir is not None and len(live_dir) > 4096: - raise ValueError("Invalid value for `live_dir`, length must be less than or equal to `4096`") # noqa: E501 - if live_dir is not None and len(live_dir) < 4: - raise ValueError("Invalid value for `live_dir`, length must be greater than or equal to `4`") # noqa: E501 - if live_dir is not None and not re.search(r'^\/ifs$|^\/ifs\/', live_dir): # noqa: E501 - raise ValueError(r"Invalid value for `live_dir`, must be a follow pattern or equal to `/^\/ifs$|^\/ifs\//`") # noqa: E501 + if live_dir is None: + raise ValueError("Invalid value for `live_dir`, must not be `None`") # noqa: E501 self._live_dir = live_dir @@ -147,6 +143,7 @@ def schedule(self, schedule): def scheduled_dir(self): """Gets the scheduled_dir of this SettingsReportsSettings. # noqa: E501 + The directory on /ifs where schedule reports will be placed. # noqa: E501 :return: The scheduled_dir of this SettingsReportsSettings. # noqa: E501 :rtype: str @@ -157,16 +154,13 @@ def scheduled_dir(self): def scheduled_dir(self, scheduled_dir): """Sets the scheduled_dir of this SettingsReportsSettings. + The directory on /ifs where schedule reports will be placed. # noqa: E501 :param scheduled_dir: The scheduled_dir of this SettingsReportsSettings. # noqa: E501 :type: str """ - if scheduled_dir is not None and len(scheduled_dir) > 4096: - raise ValueError("Invalid value for `scheduled_dir`, length must be less than or equal to `4096`") # noqa: E501 - if scheduled_dir is not None and len(scheduled_dir) < 4: - raise ValueError("Invalid value for `scheduled_dir`, length must be greater than or equal to `4`") # noqa: E501 - if scheduled_dir is not None and not re.search(r'^\/ifs$|^\/ifs\/', scheduled_dir): # noqa: E501 - raise ValueError(r"Invalid value for `scheduled_dir`, must be a follow pattern or equal to `/^\/ifs$|^\/ifs\//`") # noqa: E501 + if scheduled_dir is None: + raise ValueError("Invalid value for `scheduled_dir`, must not be `None`") # noqa: E501 self._scheduled_dir = scheduled_dir diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_sessions.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_sessions.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/settings_sessions.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_sessions.py index 266590d46..210dbe417 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/settings_sessions.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_sessions.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_rekey_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_sessions_settings.py similarity index 71% rename from isilon_sdk/isilon_sdk/v9_11_0/models/cluster_rekey_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/settings_sessions_settings.py index bb7749e1f..5c9f73761 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/cluster_rekey_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/settings_sessions_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class ClusterRekeyExtended(object): +class SettingsSessionsSettings(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -39,7 +39,7 @@ class ClusterRekeyExtended(object): } def __init__(self, key_rotation=None): # noqa: E501 - """ClusterRekeyExtended - a model defined in Swagger""" # noqa: E501 + """SettingsSessionsSettings - a model defined in Swagger""" # noqa: E501 self._key_rotation = None self.discriminator = None @@ -49,28 +49,28 @@ def __init__(self, key_rotation=None): # noqa: E501 @property def key_rotation(self): - """Gets the key_rotation of this ClusterRekeyExtended. # noqa: E501 + """Gets the key_rotation of this SettingsSessionsSettings. # noqa: E501 - The amount of time in seconds between changing the provider master passphrase. # noqa: E501 + The amount of time in seconds before rotating the session signing key with a new key. # noqa: E501 - :return: The key_rotation of this ClusterRekeyExtended. # noqa: E501 + :return: The key_rotation of this SettingsSessionsSettings. # noqa: E501 :rtype: int """ return self._key_rotation @key_rotation.setter def key_rotation(self, key_rotation): - """Sets the key_rotation of this ClusterRekeyExtended. + """Sets the key_rotation of this SettingsSessionsSettings. - The amount of time in seconds between changing the provider master passphrase. # noqa: E501 + The amount of time in seconds before rotating the session signing key with a new key. # noqa: E501 - :param key_rotation: The key_rotation of this ClusterRekeyExtended. # noqa: E501 + :param key_rotation: The key_rotation of this SettingsSessionsSettings. # noqa: E501 :type: int """ - if key_rotation is not None and key_rotation > 2147483647: # noqa: E501 - raise ValueError("Invalid value for `key_rotation`, must be a value less than or equal to `2147483647`") # noqa: E501 - if key_rotation is not None and key_rotation < 0: # noqa: E501 - raise ValueError("Invalid value for `key_rotation`, must be a value greater than or equal to `0`") # noqa: E501 + if key_rotation is not None and key_rotation > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `key_rotation`, must be a value less than or equal to `4294967295`") # noqa: E501 + if key_rotation is not None and key_rotation < 300: # noqa: E501 + raise ValueError("Invalid value for `key_rotation`, must be a value greater than or equal to `300`") # noqa: E501 self._key_rotation = key_rotation @@ -95,7 +95,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(ClusterRekeyExtended, dict): + if issubclass(SettingsSessionsSettings, dict): for key, value in self.items(): result[key] = value @@ -111,7 +111,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, ClusterRekeyExtended): + if not isinstance(other, SettingsSessionsSettings): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_log_level.py b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_log_level.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/smb_log_level.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/smb_log_level.py index d72dcd3de..f2d4327e8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_log_level.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_log_level.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_log_level_filter.py b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_log_level_filter.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/smb_log_level_filter.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/smb_log_level_filter.py index 4c1060fee..44e1e20a1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_log_level_filter.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_log_level_filter.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_log_level_filters.py b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_log_level_filters.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/smb_log_level_filters.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/smb_log_level_filters.py index d76d29f92..58f8e2c57 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_log_level_filters.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_log_level_filters.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_log_level_filters_filter.py b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_log_level_filters_filter.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/smb_log_level_filters_filter.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/smb_log_level_filters_filter.py index bf89a12bb..6af54e2ca 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_log_level_filters_filter.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_log_level_filters_filter.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_openfile.py b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_openfile.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/smb_openfile.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/smb_openfile.py index 6fdccb72c..14444c5b3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_openfile.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_openfile.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_openfiles.py b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_openfiles.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/smb_openfiles.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/smb_openfiles.py index b193c9b09..f4237a158 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_openfiles.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_openfiles.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_sessions.py b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_sessions.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/smb_sessions.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/smb_sessions.py index 4565fdffa..2658cc616 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_sessions.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_sessions.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_sessions_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_sessions_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/smb_sessions_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/smb_sessions_node.py index f8a2c53bc..129a20e9a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_sessions_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_sessions_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_settings_global.py b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_settings_global.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/smb_settings_global.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/smb_settings_global.py index 56021f198..edee6edce 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_settings_global.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_settings_global.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_settings_global_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_settings_global_extended.py similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/models/smb_settings_global_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/smb_settings_global_extended.py index 4bfda2887..e2fc524a4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_settings_global_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_settings_global_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -52,7 +52,6 @@ class SmbSettingsGlobalExtended(object): 'srv_num_workers': 'int', 'support_multichannel': 'bool', 'support_netbios': 'bool', - 'support_smb1': 'bool', 'support_smb2': 'bool', 'support_smb3_encryption': 'bool' } @@ -79,12 +78,11 @@ class SmbSettingsGlobalExtended(object): 'srv_num_workers': 'srv_num_workers', 'support_multichannel': 'support_multichannel', 'support_netbios': 'support_netbios', - 'support_smb1': 'support_smb1', 'support_smb2': 'support_smb2', 'support_smb3_encryption': 'support_smb3_encryption' } - def __init__(self, access_based_share_enum=None, audit_fileshare=None, audit_logon=None, dot_snap_accessible_child=None, dot_snap_accessible_root=None, dot_snap_visible_child=None, dot_snap_visible_root=None, enable_security_signatures=None, guest_user=None, ignore_eas=None, onefs_cpu_multiplier=None, onefs_num_workers=None, reject_unencrypted_access=None, require_security_signatures=None, server_side_copy=None, server_string=None, service=None, srv_cpu_multiplier=None, srv_num_workers=None, support_multichannel=None, support_netbios=None, support_smb1=None, support_smb2=None, support_smb3_encryption=None): # noqa: E501 + def __init__(self, access_based_share_enum=None, audit_fileshare=None, audit_logon=None, dot_snap_accessible_child=None, dot_snap_accessible_root=None, dot_snap_visible_child=None, dot_snap_visible_root=None, enable_security_signatures=None, guest_user=None, ignore_eas=None, onefs_cpu_multiplier=None, onefs_num_workers=None, reject_unencrypted_access=None, require_security_signatures=None, server_side_copy=None, server_string=None, service=None, srv_cpu_multiplier=None, srv_num_workers=None, support_multichannel=None, support_netbios=None, support_smb2=None, support_smb3_encryption=None): # noqa: E501 """SmbSettingsGlobalExtended - a model defined in Swagger""" # noqa: E501 self._access_based_share_enum = None @@ -108,7 +106,6 @@ def __init__(self, access_based_share_enum=None, audit_fileshare=None, audit_log self._srv_num_workers = None self._support_multichannel = None self._support_netbios = None - self._support_smb1 = None self._support_smb2 = None self._support_smb3_encryption = None self.discriminator = None @@ -155,8 +152,6 @@ def __init__(self, access_based_share_enum=None, audit_fileshare=None, audit_log self.support_multichannel = support_multichannel if support_netbios is not None: self.support_netbios = support_netbios - if support_smb1 is not None: - self.support_smb1 = support_smb1 if support_smb2 is not None: self.support_smb2 = support_smb2 if support_smb3_encryption is not None: @@ -669,29 +664,6 @@ def support_netbios(self, support_netbios): self._support_netbios = support_netbios - @property - def support_smb1(self): - """Gets the support_smb1 of this SmbSettingsGlobalExtended. # noqa: E501 - - Support the SMB1 protocol on the server. # noqa: E501 - - :return: The support_smb1 of this SmbSettingsGlobalExtended. # noqa: E501 - :rtype: bool - """ - return self._support_smb1 - - @support_smb1.setter - def support_smb1(self, support_smb1): - """Sets the support_smb1 of this SmbSettingsGlobalExtended. - - Support the SMB1 protocol on the server. # noqa: E501 - - :param support_smb1: The support_smb1 of this SmbSettingsGlobalExtended. # noqa: E501 - :type: bool - """ - - self._support_smb1 = support_smb1 - @property def support_smb2(self): """Gets the support_smb2 of this SmbSettingsGlobalExtended. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_settings_global_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_settings_global_settings.py similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/models/smb_settings_global_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/smb_settings_global_settings.py index 30da1f4fd..181069c91 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_settings_global_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_settings_global_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -52,7 +52,6 @@ class SmbSettingsGlobalSettings(object): 'srv_num_workers': 'int', 'support_multichannel': 'bool', 'support_netbios': 'bool', - 'support_smb1': 'bool', 'support_smb2': 'bool', 'support_smb3_encryption': 'bool' } @@ -79,12 +78,11 @@ class SmbSettingsGlobalSettings(object): 'srv_num_workers': 'srv_num_workers', 'support_multichannel': 'support_multichannel', 'support_netbios': 'support_netbios', - 'support_smb1': 'support_smb1', 'support_smb2': 'support_smb2', 'support_smb3_encryption': 'support_smb3_encryption' } - def __init__(self, access_based_share_enum=None, audit_fileshare=None, audit_logon=None, dot_snap_accessible_child=None, dot_snap_accessible_root=None, dot_snap_visible_child=None, dot_snap_visible_root=None, enable_security_signatures=None, guest_user=None, ignore_eas=None, onefs_cpu_multiplier=None, onefs_num_workers=None, reject_unencrypted_access=None, require_security_signatures=None, server_side_copy=None, server_string=None, service=None, srv_cpu_multiplier=None, srv_num_workers=None, support_multichannel=None, support_netbios=None, support_smb1=None, support_smb2=None, support_smb3_encryption=None): # noqa: E501 + def __init__(self, access_based_share_enum=None, audit_fileshare=None, audit_logon=None, dot_snap_accessible_child=None, dot_snap_accessible_root=None, dot_snap_visible_child=None, dot_snap_visible_root=None, enable_security_signatures=None, guest_user=None, ignore_eas=None, onefs_cpu_multiplier=None, onefs_num_workers=None, reject_unencrypted_access=None, require_security_signatures=None, server_side_copy=None, server_string=None, service=None, srv_cpu_multiplier=None, srv_num_workers=None, support_multichannel=None, support_netbios=None, support_smb2=None, support_smb3_encryption=None): # noqa: E501 """SmbSettingsGlobalSettings - a model defined in Swagger""" # noqa: E501 self._access_based_share_enum = None @@ -108,7 +106,6 @@ def __init__(self, access_based_share_enum=None, audit_fileshare=None, audit_log self._srv_num_workers = None self._support_multichannel = None self._support_netbios = None - self._support_smb1 = None self._support_smb2 = None self._support_smb3_encryption = None self.discriminator = None @@ -155,8 +152,6 @@ def __init__(self, access_based_share_enum=None, audit_fileshare=None, audit_log self.support_multichannel = support_multichannel if support_netbios is not None: self.support_netbios = support_netbios - if support_smb1 is not None: - self.support_smb1 = support_smb1 if support_smb2 is not None: self.support_smb2 = support_smb2 if support_smb3_encryption is not None: @@ -681,29 +676,6 @@ def support_netbios(self, support_netbios): self._support_netbios = support_netbios - @property - def support_smb1(self): - """Gets the support_smb1 of this SmbSettingsGlobalSettings. # noqa: E501 - - Support the SMB1 protocol on the server. # noqa: E501 - - :return: The support_smb1 of this SmbSettingsGlobalSettings. # noqa: E501 - :rtype: bool - """ - return self._support_smb1 - - @support_smb1.setter - def support_smb1(self, support_smb1): - """Sets the support_smb1 of this SmbSettingsGlobalSettings. - - Support the SMB1 protocol on the server. # noqa: E501 - - :param support_smb1: The support_smb1 of this SmbSettingsGlobalSettings. # noqa: E501 - :type: bool - """ - - self._support_smb1 = support_smb1 - @property def support_smb2(self): """Gets the support_smb2 of this SmbSettingsGlobalSettings. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_settings_share.py b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_settings_share.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/smb_settings_share.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/smb_settings_share.py index f6fe5edc1..42e74bde0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_settings_share.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_settings_share.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_settings_share_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_settings_share_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/smb_settings_share_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/smb_settings_share_extended.py index ae1fc911d..4895e9068 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_settings_share_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_settings_share_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_settings_share_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_settings_share_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/smb_settings_share_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/smb_settings_share_settings.py index cfda2047e..7050c9cb8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_settings_share_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_settings_share_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_settings_zone.py b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_settings_zone.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/smb_settings_zone.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/smb_settings_zone.py index 89eb9c082..9d92bb0b7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_settings_zone.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_settings_zone.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_settings_zone_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_settings_zone_settings.py similarity index 91% rename from isilon_sdk/isilon_sdk/v9_11_0/models/smb_settings_zone_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/smb_settings_zone_settings.py index f20a396cf..7ceb153b5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_settings_zone_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_settings_zone_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -37,7 +37,6 @@ class SmbSettingsZoneSettings(object): 'require_security_signatures': 'bool', 'server_side_copy': 'bool', 'support_multichannel': 'bool', - 'support_smb1': 'bool', 'support_smb2': 'bool', 'support_smb3_encryption': 'bool' } @@ -49,12 +48,11 @@ class SmbSettingsZoneSettings(object): 'require_security_signatures': 'require_security_signatures', 'server_side_copy': 'server_side_copy', 'support_multichannel': 'support_multichannel', - 'support_smb1': 'support_smb1', 'support_smb2': 'support_smb2', 'support_smb3_encryption': 'support_smb3_encryption' } - def __init__(self, access_based_share_enum=None, enable_security_signatures=None, reject_unencrypted_access=None, require_security_signatures=None, server_side_copy=None, support_multichannel=None, support_smb1=None, support_smb2=None, support_smb3_encryption=None): # noqa: E501 + def __init__(self, access_based_share_enum=None, enable_security_signatures=None, reject_unencrypted_access=None, require_security_signatures=None, server_side_copy=None, support_multichannel=None, support_smb2=None, support_smb3_encryption=None): # noqa: E501 """SmbSettingsZoneSettings - a model defined in Swagger""" # noqa: E501 self._access_based_share_enum = None @@ -63,7 +61,6 @@ def __init__(self, access_based_share_enum=None, enable_security_signatures=None self._require_security_signatures = None self._server_side_copy = None self._support_multichannel = None - self._support_smb1 = None self._support_smb2 = None self._support_smb3_encryption = None self.discriminator = None @@ -80,8 +77,6 @@ def __init__(self, access_based_share_enum=None, enable_security_signatures=None self.server_side_copy = server_side_copy if support_multichannel is not None: self.support_multichannel = support_multichannel - if support_smb1 is not None: - self.support_smb1 = support_smb1 if support_smb2 is not None: self.support_smb2 = support_smb2 if support_smb3_encryption is not None: @@ -225,29 +220,6 @@ def support_multichannel(self, support_multichannel): self._support_multichannel = support_multichannel - @property - def support_smb1(self): - """Gets the support_smb1 of this SmbSettingsZoneSettings. # noqa: E501 - - Support the SMB1 protocol on the server. # noqa: E501 - - :return: The support_smb1 of this SmbSettingsZoneSettings. # noqa: E501 - :rtype: bool - """ - return self._support_smb1 - - @support_smb1.setter - def support_smb1(self, support_smb1): - """Sets the support_smb1 of this SmbSettingsZoneSettings. - - Support the SMB1 protocol on the server. # noqa: E501 - - :param support_smb1: The support_smb1 of this SmbSettingsZoneSettings. # noqa: E501 - :type: bool - """ - - self._support_smb1 = support_smb1 - @property def support_smb2(self): """Gets the support_smb2 of this SmbSettingsZoneSettings. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_share.py b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_share.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/smb_share.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/smb_share.py index 13b688808..14329a16a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_share.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_share.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_share_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_share_create_params.py similarity index 97% rename from isilon_sdk/isilon_sdk/v9_11_0/models/smb_share_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/smb_share_create_params.py index 8f488ad74..84dcd831c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_share_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_share_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -70,7 +70,8 @@ class SmbShareCreateParams(object): 'sparse_file': 'bool', 'strict_ca_lockout': 'bool', 'strict_flush': 'bool', - 'strict_locking': 'bool' + 'strict_locking': 'bool', + 'zone': 'str' } attribute_map = { @@ -113,10 +114,11 @@ class SmbShareCreateParams(object): 'sparse_file': 'sparse_file', 'strict_ca_lockout': 'strict_ca_lockout', 'strict_flush': 'strict_flush', - 'strict_locking': 'strict_locking' + 'strict_locking': 'strict_locking', + 'zone': 'zone' } - def __init__(self, access_based_enumeration=None, access_based_enumeration_root_only=None, allow_delete_readonly=None, allow_execute_always=None, allow_variable_expansion=None, auto_create_directory=None, browsable=None, ca_timeout=None, ca_write_integrity=None, change_notify=None, continuously_available=None, create_path=None, create_permissions=None, csc_policy=None, description=None, directory_create_mask=None, directory_create_mode=None, file_create_mask=None, file_create_mode=None, file_filter_extensions=None, file_filter_type=None, file_filtering_enabled=None, hide_dot_files=None, host_acl=None, impersonate_guest=None, impersonate_user=None, inheritable_path_acl=None, mangle_byte_start=None, mangle_map=None, name=None, ntfs_acl_support=None, oplocks=None, path=None, permissions=None, run_as_root=None, smb3_encryption_enabled=None, sparse_file=None, strict_ca_lockout=None, strict_flush=None, strict_locking=None): # noqa: E501 + def __init__(self, access_based_enumeration=None, access_based_enumeration_root_only=None, allow_delete_readonly=None, allow_execute_always=None, allow_variable_expansion=None, auto_create_directory=None, browsable=None, ca_timeout=None, ca_write_integrity=None, change_notify=None, continuously_available=None, create_path=None, create_permissions=None, csc_policy=None, description=None, directory_create_mask=None, directory_create_mode=None, file_create_mask=None, file_create_mode=None, file_filter_extensions=None, file_filter_type=None, file_filtering_enabled=None, hide_dot_files=None, host_acl=None, impersonate_guest=None, impersonate_user=None, inheritable_path_acl=None, mangle_byte_start=None, mangle_map=None, name=None, ntfs_acl_support=None, oplocks=None, path=None, permissions=None, run_as_root=None, smb3_encryption_enabled=None, sparse_file=None, strict_ca_lockout=None, strict_flush=None, strict_locking=None, zone=None): # noqa: E501 """SmbShareCreateParams - a model defined in Swagger""" # noqa: E501 self._access_based_enumeration = None @@ -159,6 +161,7 @@ def __init__(self, access_based_enumeration=None, access_based_enumeration_root_ self._strict_ca_lockout = None self._strict_flush = None self._strict_locking = None + self._zone = None self.discriminator = None if access_based_enumeration is not None: @@ -239,6 +242,8 @@ def __init__(self, access_based_enumeration=None, access_based_enumeration_root_ self.strict_flush = strict_flush if strict_locking is not None: self.strict_locking = strict_locking + if zone is not None: + self.zone = zone @property def access_based_enumeration(self): @@ -1242,6 +1247,33 @@ def strict_locking(self, strict_locking): self._strict_locking = strict_locking + @property + def zone(self): + """Gets the zone of this SmbShareCreateParams. # noqa: E501 + + Name of the access zone to which to move this SMB share. # noqa: E501 + + :return: The zone of this SmbShareCreateParams. # noqa: E501 + :rtype: str + """ + return self._zone + + @zone.setter + def zone(self, zone): + """Sets the zone of this SmbShareCreateParams. + + Name of the access zone to which to move this SMB share. # noqa: E501 + + :param zone: The zone of this SmbShareCreateParams. # noqa: E501 + :type: str + """ + if zone is not None and len(zone) > 511: + raise ValueError("Invalid value for `zone`, length must be less than or equal to `511`") # noqa: E501 + if zone is not None and len(zone) < 1: + raise ValueError("Invalid value for `zone`, length must be greater than or equal to `1`") # noqa: E501 + + self._zone = zone + def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_share_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_share_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/smb_share_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/smb_share_extended.py index 216177a38..6f0299cd4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_share_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_share_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_share_permission.py b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_share_permission.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/smb_share_permission.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/smb_share_permission.py index 882925784..8b97e2854 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_share_permission.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_share_permission.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_shares.py b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_shares.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/smb_shares.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/smb_shares.py index 68acc2d09..640bf81d9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_shares.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_shares.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_shares_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_shares_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/smb_shares_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/smb_shares_extended.py index 5e267fea7..fb51ce00f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_shares_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_shares_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_shares_summary.py b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_shares_summary.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/smb_shares_summary.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/smb_shares_summary.py index 9699711c5..a9b2f7173 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_shares_summary.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_shares_summary.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_shares_summary_summary.py b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_shares_summary_summary.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/smb_shares_summary_summary.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/smb_shares_summary_summary.py index 70166d9dc..23d4e4881 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/smb_shares_summary_summary.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/smb_shares_summary_summary.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_alias.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_alias.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_alias.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_alias.py index c126d1793..f2afa1390 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_alias.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_alias.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_alias_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_alias_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_alias_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_alias_create_params.py index d9b924d83..e24a68de0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_alias_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_alias_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_alias_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_alias_extended.py new file mode 100644 index 000000000..00926f4c8 --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_alias_extended.py @@ -0,0 +1,234 @@ +# coding: utf-8 + +""" + Isilon SDK + + Isilon SDK - Language bindings for the OneFS API # noqa: E501 + + OpenAPI spec version: 15 + Contact: sdk@isilon.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + + +class SnapshotAliasExtended(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'created': 'int', + 'id': 'int', + 'name': 'str', + 'target_id': 'int', + 'target_name': 'str' + } + + attribute_map = { + 'created': 'created', + 'id': 'id', + 'name': 'name', + 'target_id': 'target_id', + 'target_name': 'target_name' + } + + def __init__(self, created=None, id=None, name=None, target_id=None, target_name=None): # noqa: E501 + """SnapshotAliasExtended - a model defined in Swagger""" # noqa: E501 + + self._created = None + self._id = None + self._name = None + self._target_id = None + self._target_name = None + self.discriminator = None + + self.created = created + self.id = id + self.name = name + self.target_id = target_id + self.target_name = target_name + + @property + def created(self): + """Gets the created of this SnapshotAliasExtended. # noqa: E501 + + The Unix Epoch time the snapshot alias was created. # noqa: E501 + + :return: The created of this SnapshotAliasExtended. # noqa: E501 + :rtype: int + """ + return self._created + + @created.setter + def created(self, created): + """Sets the created of this SnapshotAliasExtended. + + The Unix Epoch time the snapshot alias was created. # noqa: E501 + + :param created: The created of this SnapshotAliasExtended. # noqa: E501 + :type: int + """ + if created is None: + raise ValueError("Invalid value for `created`, must not be `None`") # noqa: E501 + + self._created = created + + @property + def id(self): + """Gets the id of this SnapshotAliasExtended. # noqa: E501 + + The system ID given to the snapshot alias. # noqa: E501 + + :return: The id of this SnapshotAliasExtended. # noqa: E501 + :rtype: int + """ + return self._id + + @id.setter + def id(self, id): + """Sets the id of this SnapshotAliasExtended. + + The system ID given to the snapshot alias. # noqa: E501 + + :param id: The id of this SnapshotAliasExtended. # noqa: E501 + :type: int + """ + if id is None: + raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 + + self._id = id + + @property + def name(self): + """Gets the name of this SnapshotAliasExtended. # noqa: E501 + + The user or system supplied snapshot alias name. # noqa: E501 + + :return: The name of this SnapshotAliasExtended. # noqa: E501 + :rtype: str + """ + return self._name + + @name.setter + def name(self, name): + """Sets the name of this SnapshotAliasExtended. + + The user or system supplied snapshot alias name. # noqa: E501 + + :param name: The name of this SnapshotAliasExtended. # noqa: E501 + :type: str + """ + if name is None: + raise ValueError("Invalid value for `name`, must not be `None`") # noqa: E501 + + self._name = name + + @property + def target_id(self): + """Gets the target_id of this SnapshotAliasExtended. # noqa: E501 + + The ID of the snapshot pointed to. # noqa: E501 + + :return: The target_id of this SnapshotAliasExtended. # noqa: E501 + :rtype: int + """ + return self._target_id + + @target_id.setter + def target_id(self, target_id): + """Sets the target_id of this SnapshotAliasExtended. + + The ID of the snapshot pointed to. # noqa: E501 + + :param target_id: The target_id of this SnapshotAliasExtended. # noqa: E501 + :type: int + """ + if target_id is None: + raise ValueError("Invalid value for `target_id`, must not be `None`") # noqa: E501 + + self._target_id = target_id + + @property + def target_name(self): + """Gets the target_name of this SnapshotAliasExtended. # noqa: E501 + + The name of the snapshot pointed to. # noqa: E501 + + :return: The target_name of this SnapshotAliasExtended. # noqa: E501 + :rtype: str + """ + return self._target_name + + @target_name.setter + def target_name(self, target_name): + """Sets the target_name of this SnapshotAliasExtended. + + The name of the snapshot pointed to. # noqa: E501 + + :param target_name: The target_name of this SnapshotAliasExtended. # noqa: E501 + :type: str + """ + if target_name is None: + raise ValueError("Invalid value for `target_name`, must not be `None`") # noqa: E501 + + self._target_name = target_name + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(SnapshotAliasExtended, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, SnapshotAliasExtended): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + """Returns true if both objects are not equal""" + return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_aliases.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_aliases.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_aliases.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_aliases.py index b1763d3d2..a3c045f6c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_aliases.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_aliases.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_aliases_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_aliases_extended.py similarity index 82% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_aliases_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_aliases_extended.py index 3261d21eb..2c6a5decf 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_aliases_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_aliases_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -82,7 +82,7 @@ def aliases(self, aliases): def resume(self): """Gets the resume of this SnapshotAliasesExtended. # noqa: E501 - Provide this token as the 'resume' query argument to continue listing results. # noqa: E501 + Resume token value to use in subsequent calls for continuation. # noqa: E501 :return: The resume of this SnapshotAliasesExtended. # noqa: E501 :rtype: str @@ -93,15 +93,11 @@ def resume(self): def resume(self, resume): """Sets the resume of this SnapshotAliasesExtended. - Provide this token as the 'resume' query argument to continue listing results. # noqa: E501 + Resume token value to use in subsequent calls for continuation. # noqa: E501 :param resume: The resume of this SnapshotAliasesExtended. # noqa: E501 :type: str """ - if resume is not None and len(resume) > 8192: - raise ValueError("Invalid value for `resume`, length must be less than or equal to `8192`") # noqa: E501 - if resume is not None and len(resume) < 0: - raise ValueError("Invalid value for `resume`, length must be greater than or equal to `0`") # noqa: E501 self._resume = resume @@ -125,10 +121,6 @@ def total(self, total): :param total: The total of this SnapshotAliasesExtended. # noqa: E501 :type: int """ - if total is not None and total > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `total`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if total is not None and total < 0: # noqa: E501 - raise ValueError("Invalid value for `total`, must be a value greater than or equal to `0`") # noqa: E501 self._total = total diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_changelists.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_changelists.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_changelists.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_changelists.py index 5ba38e1dc..3fc29a53e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_changelists.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_changelists.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_changelists_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_changelists_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_changelists_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_changelists_extended.py index 576da3135..d4b5da867 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_changelists_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_changelists_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_lock.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_lock.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_lock.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_lock.py index c51bee352..4602fe94e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_lock.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_lock.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_lock_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_lock_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_lock_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_lock_create_params.py index a3042337b..43adab440 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_lock_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_lock_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_lock_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_lock_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_lock_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_lock_extended.py index 931e70290..886ea67c0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_lock_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_lock_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_locks.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_locks.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_locks.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_locks.py index f9b405348..db527a4a6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_locks.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_locks.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_locks_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_locks_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_locks_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_locks_extended.py index bc0a4b6f1..8540b03a1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_locks_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_locks_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_pending.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_pending.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_pending.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_pending.py index adc19c288..da4fac300 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_pending.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_pending.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_pending_pending_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_pending_pending_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_pending_pending_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_pending_pending_item.py index c4192f4be..4b37dc7bc 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_pending_pending_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_pending_pending_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_repstates.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_repstates.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_repstates.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_repstates.py index cb2a1f221..9e9491644 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_repstates.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_repstates.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_repstates_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_repstates_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_repstates_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_repstates_extended.py index 7732f7948..3e714e98f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_repstates_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_repstates_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_schedule.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_schedule.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_schedule.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_schedule.py index 4f9c05eda..0ae0e2946 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_schedule.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_schedule.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_schedule_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_schedule_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_schedule_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_schedule_create_params.py index e84aaf827..972bd652c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_schedule_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_schedule_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_schedule_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_schedule_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_schedule_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_schedule_extended.py index 1261ae962..ee030fb21 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_schedule_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_schedule_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_schedule_extended_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_schedule_extended_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_schedule_extended_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_schedule_extended_extended.py index e2faf51c0..5ee0132b9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_schedule_extended_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_schedule_extended_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_schedules.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_schedules.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_schedules.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_schedules.py index 84cb8b0bf..3fb36c9f2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_schedules.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_schedules.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_schedules_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_schedules_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_schedules_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_schedules_extended.py index 03250129c..4930b6819 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_schedules_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_schedules_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_settings.py index 020a74d0e..19d5d4f36 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_settings_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_settings_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_settings_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_settings_extended.py index d7ec15f54..41ba9ef17 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_settings_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_settings_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_settings_settings.py index ac6119768..7a38695b9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_snapshot.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_snapshot.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_snapshot.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_snapshot.py index 2a61fdb86..6f487144e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_snapshot.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_snapshot.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_snapshot_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_snapshot_create_params.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_snapshot_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_snapshot_create_params.py index a753f4dcf..70225127e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_snapshot_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_snapshot_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -162,8 +162,8 @@ def path(self, path): raise ValueError("Invalid value for `path`, length must be less than or equal to `4096`") # noqa: E501 if path is not None and len(path) < 4: raise ValueError("Invalid value for `path`, length must be greater than or equal to `4`") # noqa: E501 - if path is not None and not re.search(r'^\/ifs$|^\/ifs\/|^LIVE$', path): # noqa: E501 - raise ValueError(r"Invalid value for `path`, must be a follow pattern or equal to `/^\/ifs$|^\/ifs\/|^LIVE$/`") # noqa: E501 + if path is not None and not re.search(r'^\/ifs$|^\/ifs\/', path): # noqa: E501 + raise ValueError(r"Invalid value for `path`, must be a follow pattern or equal to `/^\/ifs$|^\/ifs\//`") # noqa: E501 self._path = path diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_alias_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_snapshot_extended.py similarity index 73% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_alias_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_snapshot_extended.py index 911893cd8..8a34cfeab 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_alias_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_snapshot_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class SnapshotAliasExtended(object): +class SnapshotSnapshotExtended(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -32,11 +32,11 @@ class SnapshotAliasExtended(object): """ swagger_types = { 'alias': 'str', - 'created': 'int', 'expires': 'int', + 'name': 'str', + 'created': 'int', 'has_locks': 'bool', 'id': 'int', - 'name': 'str', 'path': 'str', 'pct_filesystem': 'float', 'pct_reserve': 'float', @@ -50,11 +50,11 @@ class SnapshotAliasExtended(object): attribute_map = { 'alias': 'alias', - 'created': 'created', 'expires': 'expires', + 'name': 'name', + 'created': 'created', 'has_locks': 'has_locks', 'id': 'id', - 'name': 'name', 'path': 'path', 'pct_filesystem': 'pct_filesystem', 'pct_reserve': 'pct_reserve', @@ -66,15 +66,15 @@ class SnapshotAliasExtended(object): 'target_name': 'target_name' } - def __init__(self, alias=None, created=None, expires=None, has_locks=None, id=None, name=None, path=None, pct_filesystem=None, pct_reserve=None, schedule=None, shadow_bytes=None, size=None, state=None, target_id=None, target_name=None): # noqa: E501 - """SnapshotAliasExtended - a model defined in Swagger""" # noqa: E501 + def __init__(self, alias=None, expires=None, name=None, created=None, has_locks=None, id=None, path=None, pct_filesystem=None, pct_reserve=None, schedule=None, shadow_bytes=None, size=None, state=None, target_id=None, target_name=None): # noqa: E501 + """SnapshotSnapshotExtended - a model defined in Swagger""" # noqa: E501 self._alias = None - self._created = None self._expires = None + self._name = None + self._created = None self._has_locks = None self._id = None - self._name = None self._path = None self._pct_filesystem = None self._pct_reserve = None @@ -88,13 +88,13 @@ def __init__(self, alias=None, created=None, expires=None, has_locks=None, id=No if alias is not None: self.alias = alias - self.created = created if expires is not None: self.expires = expires - self.has_locks = has_locks - self.id = id if name is not None: self.name = name + self.created = created + self.has_locks = has_locks + self.id = id if path is not None: self.path = path self.pct_filesystem = pct_filesystem @@ -111,22 +111,22 @@ def __init__(self, alias=None, created=None, expires=None, has_locks=None, id=No @property def alias(self): - """Gets the alias of this SnapshotAliasExtended. # noqa: E501 + """Gets the alias of this SnapshotSnapshotExtended. # noqa: E501 - The name of the alias, none for real snapshots. # noqa: E501 + Alias name to create for this snapshot. If null, remove any alias. # noqa: E501 - :return: The alias of this SnapshotAliasExtended. # noqa: E501 + :return: The alias of this SnapshotSnapshotExtended. # noqa: E501 :rtype: str """ return self._alias @alias.setter def alias(self, alias): - """Sets the alias of this SnapshotAliasExtended. + """Sets the alias of this SnapshotSnapshotExtended. - The name of the alias, none for real snapshots. # noqa: E501 + Alias name to create for this snapshot. If null, remove any alias. # noqa: E501 - :param alias: The alias of this SnapshotAliasExtended. # noqa: E501 + :param alias: The alias of this SnapshotSnapshotExtended. # noqa: E501 :type: str """ if alias is not None and len(alias) < 0: @@ -134,24 +134,74 @@ def alias(self, alias): self._alias = alias + @property + def expires(self): + """Gets the expires of this SnapshotSnapshotExtended. # noqa: E501 + + The Unix Epoch time the snapshot will expire and be eligible for automatic deletion. # noqa: E501 + + :return: The expires of this SnapshotSnapshotExtended. # noqa: E501 + :rtype: int + """ + return self._expires + + @expires.setter + def expires(self, expires): + """Sets the expires of this SnapshotSnapshotExtended. + + The Unix Epoch time the snapshot will expire and be eligible for automatic deletion. # noqa: E501 + + :param expires: The expires of this SnapshotSnapshotExtended. # noqa: E501 + :type: int + """ + if expires is not None and expires > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `expires`, must be a value less than or equal to `4294967295`") # noqa: E501 + + self._expires = expires + + @property + def name(self): + """Gets the name of this SnapshotSnapshotExtended. # noqa: E501 + + The user or system supplied snapshot name. This will be null for snapshots pending delete. # noqa: E501 + + :return: The name of this SnapshotSnapshotExtended. # noqa: E501 + :rtype: str + """ + return self._name + + @name.setter + def name(self, name): + """Sets the name of this SnapshotSnapshotExtended. + + The user or system supplied snapshot name. This will be null for snapshots pending delete. # noqa: E501 + + :param name: The name of this SnapshotSnapshotExtended. # noqa: E501 + :type: str + """ + if name is not None and len(name) < 0: + raise ValueError("Invalid value for `name`, length must be greater than or equal to `0`") # noqa: E501 + + self._name = name + @property def created(self): - """Gets the created of this SnapshotAliasExtended. # noqa: E501 + """Gets the created of this SnapshotSnapshotExtended. # noqa: E501 The Unix Epoch time the snapshot was created. # noqa: E501 - :return: The created of this SnapshotAliasExtended. # noqa: E501 + :return: The created of this SnapshotSnapshotExtended. # noqa: E501 :rtype: int """ return self._created @created.setter def created(self, created): - """Sets the created of this SnapshotAliasExtended. + """Sets the created of this SnapshotSnapshotExtended. The Unix Epoch time the snapshot was created. # noqa: E501 - :param created: The created of this SnapshotAliasExtended. # noqa: E501 + :param created: The created of this SnapshotSnapshotExtended. # noqa: E501 :type: int """ if created is None: @@ -163,49 +213,24 @@ def created(self, created): self._created = created - @property - def expires(self): - """Gets the expires of this SnapshotAliasExtended. # noqa: E501 - - The Unix Epoch time the snapshot will expire and be eligible for automatic deletion. # noqa: E501 - - :return: The expires of this SnapshotAliasExtended. # noqa: E501 - :rtype: int - """ - return self._expires - - @expires.setter - def expires(self, expires): - """Sets the expires of this SnapshotAliasExtended. - - The Unix Epoch time the snapshot will expire and be eligible for automatic deletion. # noqa: E501 - - :param expires: The expires of this SnapshotAliasExtended. # noqa: E501 - :type: int - """ - if expires is not None and expires > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `expires`, must be a value less than or equal to `4294967295`") # noqa: E501 - - self._expires = expires - @property def has_locks(self): - """Gets the has_locks of this SnapshotAliasExtended. # noqa: E501 + """Gets the has_locks of this SnapshotSnapshotExtended. # noqa: E501 - True if the snapshot has one or more locks present (see the locks subresource of a snapshot for a list of locks). # noqa: E501 + True if the snapshot has one or more locks present see, see the locks subresource of a snapshot for a list of locks. # noqa: E501 - :return: The has_locks of this SnapshotAliasExtended. # noqa: E501 + :return: The has_locks of this SnapshotSnapshotExtended. # noqa: E501 :rtype: bool """ return self._has_locks @has_locks.setter def has_locks(self, has_locks): - """Sets the has_locks of this SnapshotAliasExtended. + """Sets the has_locks of this SnapshotSnapshotExtended. - True if the snapshot has one or more locks present (see the locks subresource of a snapshot for a list of locks). # noqa: E501 + True if the snapshot has one or more locks present see, see the locks subresource of a snapshot for a list of locks. # noqa: E501 - :param has_locks: The has_locks of this SnapshotAliasExtended. # noqa: E501 + :param has_locks: The has_locks of this SnapshotSnapshotExtended. # noqa: E501 :type: bool """ if has_locks is None: @@ -215,22 +240,22 @@ def has_locks(self, has_locks): @property def id(self): - """Gets the id of this SnapshotAliasExtended. # noqa: E501 + """Gets the id of this SnapshotSnapshotExtended. # noqa: E501 The system ID given to the snapshot. This is useful for tracking the status of delete pending snapshots. # noqa: E501 - :return: The id of this SnapshotAliasExtended. # noqa: E501 + :return: The id of this SnapshotSnapshotExtended. # noqa: E501 :rtype: int """ return self._id @id.setter def id(self, id): - """Sets the id of this SnapshotAliasExtended. + """Sets the id of this SnapshotSnapshotExtended. The system ID given to the snapshot. This is useful for tracking the status of delete pending snapshots. # noqa: E501 - :param id: The id of this SnapshotAliasExtended. # noqa: E501 + :param id: The id of this SnapshotSnapshotExtended. # noqa: E501 :type: int """ if id is None: @@ -240,78 +265,53 @@ def id(self, id): self._id = id - @property - def name(self): - """Gets the name of this SnapshotAliasExtended. # noqa: E501 - - The user or system supplied snapshot name. This will be null for snapshots pending delete. # noqa: E501 - - :return: The name of this SnapshotAliasExtended. # noqa: E501 - :rtype: str - """ - return self._name - - @name.setter - def name(self, name): - """Sets the name of this SnapshotAliasExtended. - - The user or system supplied snapshot name. This will be null for snapshots pending delete. # noqa: E501 - - :param name: The name of this SnapshotAliasExtended. # noqa: E501 - :type: str - """ - if name is not None and len(name) < 0: - raise ValueError("Invalid value for `name`, length must be greater than or equal to `0`") # noqa: E501 - - self._name = name - @property def path(self): - """Gets the path of this SnapshotAliasExtended. # noqa: E501 + """Gets the path of this SnapshotSnapshotExtended. # noqa: E501 The /ifs path snapshotted. # noqa: E501 - :return: The path of this SnapshotAliasExtended. # noqa: E501 + :return: The path of this SnapshotSnapshotExtended. # noqa: E501 :rtype: str """ return self._path @path.setter def path(self, path): - """Sets the path of this SnapshotAliasExtended. + """Sets the path of this SnapshotSnapshotExtended. The /ifs path snapshotted. # noqa: E501 - :param path: The path of this SnapshotAliasExtended. # noqa: E501 + :param path: The path of this SnapshotSnapshotExtended. # noqa: E501 :type: str """ if path is not None and len(path) > 4096: raise ValueError("Invalid value for `path`, length must be less than or equal to `4096`") # noqa: E501 if path is not None and len(path) < 4: raise ValueError("Invalid value for `path`, length must be greater than or equal to `4`") # noqa: E501 - if path is not None and not re.search(r'^\/ifs$|^\/ifs\/|^LIVE$', path): # noqa: E501 - raise ValueError(r"Invalid value for `path`, must be a follow pattern or equal to `/^\/ifs$|^\/ifs\/|^LIVE$/`") # noqa: E501 + if path is not None and not re.search(r'^\/ifs$|^\/ifs\/', path): # noqa: E501 + raise ValueError(r"Invalid value for `path`, must be a follow pattern or equal to `/^\/ifs$|^\/ifs\//`") # noqa: E501 self._path = path @property def pct_filesystem(self): - """Gets the pct_filesystem of this SnapshotAliasExtended. # noqa: E501 + """Gets the pct_filesystem of this SnapshotSnapshotExtended. # noqa: E501 Percentage of /ifs used for storing this snapshot. # noqa: E501 - :return: The pct_filesystem of this SnapshotAliasExtended. # noqa: E501 + :return: The pct_filesystem of this SnapshotSnapshotExtended. # noqa: E501 :rtype: float """ return self._pct_filesystem @pct_filesystem.setter def pct_filesystem(self, pct_filesystem): - """Sets the pct_filesystem of this SnapshotAliasExtended. + """Sets the pct_filesystem of this SnapshotSnapshotExtended. Percentage of /ifs used for storing this snapshot. # noqa: E501 - :param pct_filesystem: The pct_filesystem of this SnapshotAliasExtended. # noqa: E501 + :param pct_filesystem: The pct_filesystem of this SnapshotSnapshotExtended. # noqa: E501 :type: float """ if pct_filesystem is None: @@ -321,22 +321,22 @@ def pct_filesystem(self, pct_filesystem): @property def pct_reserve(self): - """Gets the pct_reserve of this SnapshotAliasExtended. # noqa: E501 + """Gets the pct_reserve of this SnapshotSnapshotExtended. # noqa: E501 Percentage of configured snapshot reserved used for storing this snapshot. # noqa: E501 - :return: The pct_reserve of this SnapshotAliasExtended. # noqa: E501 + :return: The pct_reserve of this SnapshotSnapshotExtended. # noqa: E501 :rtype: float """ return self._pct_reserve @pct_reserve.setter def pct_reserve(self, pct_reserve): - """Sets the pct_reserve of this SnapshotAliasExtended. + """Sets the pct_reserve of this SnapshotSnapshotExtended. Percentage of configured snapshot reserved used for storing this snapshot. # noqa: E501 - :param pct_reserve: The pct_reserve of this SnapshotAliasExtended. # noqa: E501 + :param pct_reserve: The pct_reserve of this SnapshotSnapshotExtended. # noqa: E501 :type: float """ if pct_reserve is None: @@ -346,22 +346,22 @@ def pct_reserve(self, pct_reserve): @property def schedule(self): - """Gets the schedule of this SnapshotAliasExtended. # noqa: E501 + """Gets the schedule of this SnapshotSnapshotExtended. # noqa: E501 The name of the schedule used to create this snapshot, if applicable. # noqa: E501 - :return: The schedule of this SnapshotAliasExtended. # noqa: E501 + :return: The schedule of this SnapshotSnapshotExtended. # noqa: E501 :rtype: str """ return self._schedule @schedule.setter def schedule(self, schedule): - """Sets the schedule of this SnapshotAliasExtended. + """Sets the schedule of this SnapshotSnapshotExtended. The name of the schedule used to create this snapshot, if applicable. # noqa: E501 - :param schedule: The schedule of this SnapshotAliasExtended. # noqa: E501 + :param schedule: The schedule of this SnapshotSnapshotExtended. # noqa: E501 :type: str """ if schedule is not None and len(schedule) < 0: @@ -371,22 +371,22 @@ def schedule(self, schedule): @property def shadow_bytes(self): - """Gets the shadow_bytes of this SnapshotAliasExtended. # noqa: E501 + """Gets the shadow_bytes of this SnapshotSnapshotExtended. # noqa: E501 The amount of shadow bytes referred to by this snapshot. # noqa: E501 - :return: The shadow_bytes of this SnapshotAliasExtended. # noqa: E501 + :return: The shadow_bytes of this SnapshotSnapshotExtended. # noqa: E501 :rtype: int """ return self._shadow_bytes @shadow_bytes.setter def shadow_bytes(self, shadow_bytes): - """Sets the shadow_bytes of this SnapshotAliasExtended. + """Sets the shadow_bytes of this SnapshotSnapshotExtended. The amount of shadow bytes referred to by this snapshot. # noqa: E501 - :param shadow_bytes: The shadow_bytes of this SnapshotAliasExtended. # noqa: E501 + :param shadow_bytes: The shadow_bytes of this SnapshotSnapshotExtended. # noqa: E501 :type: int """ if shadow_bytes is None: @@ -398,22 +398,22 @@ def shadow_bytes(self, shadow_bytes): @property def size(self): - """Gets the size of this SnapshotAliasExtended. # noqa: E501 + """Gets the size of this SnapshotSnapshotExtended. # noqa: E501 The amount of storage in bytes used to store this snapshot. # noqa: E501 - :return: The size of this SnapshotAliasExtended. # noqa: E501 + :return: The size of this SnapshotSnapshotExtended. # noqa: E501 :rtype: int """ return self._size @size.setter def size(self, size): - """Sets the size of this SnapshotAliasExtended. + """Sets the size of this SnapshotSnapshotExtended. The amount of storage in bytes used to store this snapshot. # noqa: E501 - :param size: The size of this SnapshotAliasExtended. # noqa: E501 + :param size: The size of this SnapshotSnapshotExtended. # noqa: E501 :type: int """ if size is None: @@ -427,22 +427,22 @@ def size(self, size): @property def state(self): - """Gets the state of this SnapshotAliasExtended. # noqa: E501 + """Gets the state of this SnapshotSnapshotExtended. # noqa: E501 - The state of this snapshot. # noqa: E501 + Snapshot state. # noqa: E501 - :return: The state of this SnapshotAliasExtended. # noqa: E501 + :return: The state of this SnapshotSnapshotExtended. # noqa: E501 :rtype: str """ return self._state @state.setter def state(self, state): - """Sets the state of this SnapshotAliasExtended. + """Sets the state of this SnapshotSnapshotExtended. - The state of this snapshot. # noqa: E501 + Snapshot state. # noqa: E501 - :param state: The state of this SnapshotAliasExtended. # noqa: E501 + :param state: The state of this SnapshotSnapshotExtended. # noqa: E501 :type: str """ if state is None: @@ -458,22 +458,22 @@ def state(self, state): @property def target_id(self): - """Gets the target_id of this SnapshotAliasExtended. # noqa: E501 + """Gets the target_id of this SnapshotSnapshotExtended. # noqa: E501 The ID of the snapshot pointed to if this is an alias. 18446744073709551615 (max uint64) is returned for an alias to the live filesystem. # noqa: E501 - :return: The target_id of this SnapshotAliasExtended. # noqa: E501 + :return: The target_id of this SnapshotSnapshotExtended. # noqa: E501 :rtype: int """ return self._target_id @target_id.setter def target_id(self, target_id): - """Sets the target_id of this SnapshotAliasExtended. + """Sets the target_id of this SnapshotSnapshotExtended. The ID of the snapshot pointed to if this is an alias. 18446744073709551615 (max uint64) is returned for an alias to the live filesystem. # noqa: E501 - :param target_id: The target_id of this SnapshotAliasExtended. # noqa: E501 + :param target_id: The target_id of this SnapshotSnapshotExtended. # noqa: E501 :type: int """ if target_id is not None and target_id > 9223372036854775807: # noqa: E501 @@ -485,22 +485,22 @@ def target_id(self, target_id): @property def target_name(self): - """Gets the target_name of this SnapshotAliasExtended. # noqa: E501 + """Gets the target_name of this SnapshotSnapshotExtended. # noqa: E501 The name of the snapshot pointed to if this is an alias. # noqa: E501 - :return: The target_name of this SnapshotAliasExtended. # noqa: E501 + :return: The target_name of this SnapshotSnapshotExtended. # noqa: E501 :rtype: str """ return self._target_name @target_name.setter def target_name(self, target_name): - """Sets the target_name of this SnapshotAliasExtended. + """Sets the target_name of this SnapshotSnapshotExtended. The name of the snapshot pointed to if this is an alias. # noqa: E501 - :param target_name: The target_name of this SnapshotAliasExtended. # noqa: E501 + :param target_name: The target_name of this SnapshotSnapshotExtended. # noqa: E501 :type: str """ if target_name is not None and len(target_name) < 0: @@ -529,7 +529,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(SnapshotAliasExtended, dict): + if issubclass(SnapshotSnapshotExtended, dict): for key, value in self.items(): result[key] = value @@ -545,7 +545,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, SnapshotAliasExtended): + if not isinstance(other, SnapshotSnapshotExtended): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/create_snapshot_snapshot_response.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_snapshot_extended_extended.py similarity index 70% rename from isilon_sdk/isilon_sdk/v9_11_0/models/create_snapshot_snapshot_response.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_snapshot_extended_extended.py index a6bff26bc..697fe35c6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/create_snapshot_snapshot_response.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_snapshot_extended_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class CreateSnapshotSnapshotResponse(object): +class SnapshotSnapshotExtendedExtended(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -67,7 +67,7 @@ class CreateSnapshotSnapshotResponse(object): } def __init__(self, alias=None, created=None, expires=None, has_locks=None, id=None, name=None, path=None, pct_filesystem=None, pct_reserve=None, schedule=None, shadow_bytes=None, size=None, state=None, target_id=None, target_name=None): # noqa: E501 - """CreateSnapshotSnapshotResponse - a model defined in Swagger""" # noqa: E501 + """SnapshotSnapshotExtendedExtended - a model defined in Swagger""" # noqa: E501 self._alias = None self._created = None @@ -111,22 +111,22 @@ def __init__(self, alias=None, created=None, expires=None, has_locks=None, id=No @property def alias(self): - """Gets the alias of this CreateSnapshotSnapshotResponse. # noqa: E501 + """Gets the alias of this SnapshotSnapshotExtendedExtended. # noqa: E501 - Alias name to create for this snapshot. If null, remove any alias. # noqa: E501 + The name of the alias, none for real snapshots. # noqa: E501 - :return: The alias of this CreateSnapshotSnapshotResponse. # noqa: E501 + :return: The alias of this SnapshotSnapshotExtendedExtended. # noqa: E501 :rtype: str """ return self._alias @alias.setter def alias(self, alias): - """Sets the alias of this CreateSnapshotSnapshotResponse. + """Sets the alias of this SnapshotSnapshotExtendedExtended. - Alias name to create for this snapshot. If null, remove any alias. # noqa: E501 + The name of the alias, none for real snapshots. # noqa: E501 - :param alias: The alias of this CreateSnapshotSnapshotResponse. # noqa: E501 + :param alias: The alias of this SnapshotSnapshotExtendedExtended. # noqa: E501 :type: str """ if alias is not None and len(alias) < 0: @@ -136,22 +136,22 @@ def alias(self, alias): @property def created(self): - """Gets the created of this CreateSnapshotSnapshotResponse. # noqa: E501 + """Gets the created of this SnapshotSnapshotExtendedExtended. # noqa: E501 The Unix Epoch time the snapshot was created. # noqa: E501 - :return: The created of this CreateSnapshotSnapshotResponse. # noqa: E501 + :return: The created of this SnapshotSnapshotExtendedExtended. # noqa: E501 :rtype: int """ return self._created @created.setter def created(self, created): - """Sets the created of this CreateSnapshotSnapshotResponse. + """Sets the created of this SnapshotSnapshotExtendedExtended. The Unix Epoch time the snapshot was created. # noqa: E501 - :param created: The created of this CreateSnapshotSnapshotResponse. # noqa: E501 + :param created: The created of this SnapshotSnapshotExtendedExtended. # noqa: E501 :type: int """ if created is None: @@ -165,22 +165,22 @@ def created(self, created): @property def expires(self): - """Gets the expires of this CreateSnapshotSnapshotResponse. # noqa: E501 + """Gets the expires of this SnapshotSnapshotExtendedExtended. # noqa: E501 The Unix Epoch time the snapshot will expire and be eligible for automatic deletion. # noqa: E501 - :return: The expires of this CreateSnapshotSnapshotResponse. # noqa: E501 + :return: The expires of this SnapshotSnapshotExtendedExtended. # noqa: E501 :rtype: int """ return self._expires @expires.setter def expires(self, expires): - """Sets the expires of this CreateSnapshotSnapshotResponse. + """Sets the expires of this SnapshotSnapshotExtendedExtended. The Unix Epoch time the snapshot will expire and be eligible for automatic deletion. # noqa: E501 - :param expires: The expires of this CreateSnapshotSnapshotResponse. # noqa: E501 + :param expires: The expires of this SnapshotSnapshotExtendedExtended. # noqa: E501 :type: int """ if expires is not None and expires > 4294967295: # noqa: E501 @@ -190,22 +190,22 @@ def expires(self, expires): @property def has_locks(self): - """Gets the has_locks of this CreateSnapshotSnapshotResponse. # noqa: E501 + """Gets the has_locks of this SnapshotSnapshotExtendedExtended. # noqa: E501 - True if the snapshot has one or more locks present (see the locks subresource of a snapshot for a list of locks). # noqa: E501 + True if the snapshot has one or more locks present see, see the locks subresource of a snapshot for a list of locks. # noqa: E501 - :return: The has_locks of this CreateSnapshotSnapshotResponse. # noqa: E501 + :return: The has_locks of this SnapshotSnapshotExtendedExtended. # noqa: E501 :rtype: bool """ return self._has_locks @has_locks.setter def has_locks(self, has_locks): - """Sets the has_locks of this CreateSnapshotSnapshotResponse. + """Sets the has_locks of this SnapshotSnapshotExtendedExtended. - True if the snapshot has one or more locks present (see the locks subresource of a snapshot for a list of locks). # noqa: E501 + True if the snapshot has one or more locks present see, see the locks subresource of a snapshot for a list of locks. # noqa: E501 - :param has_locks: The has_locks of this CreateSnapshotSnapshotResponse. # noqa: E501 + :param has_locks: The has_locks of this SnapshotSnapshotExtendedExtended. # noqa: E501 :type: bool """ if has_locks is None: @@ -215,22 +215,22 @@ def has_locks(self, has_locks): @property def id(self): - """Gets the id of this CreateSnapshotSnapshotResponse. # noqa: E501 + """Gets the id of this SnapshotSnapshotExtendedExtended. # noqa: E501 The system ID given to the snapshot. This is useful for tracking the status of delete pending snapshots. # noqa: E501 - :return: The id of this CreateSnapshotSnapshotResponse. # noqa: E501 + :return: The id of this SnapshotSnapshotExtendedExtended. # noqa: E501 :rtype: int """ return self._id @id.setter def id(self, id): - """Sets the id of this CreateSnapshotSnapshotResponse. + """Sets the id of this SnapshotSnapshotExtendedExtended. The system ID given to the snapshot. This is useful for tracking the status of delete pending snapshots. # noqa: E501 - :param id: The id of this CreateSnapshotSnapshotResponse. # noqa: E501 + :param id: The id of this SnapshotSnapshotExtendedExtended. # noqa: E501 :type: int """ if id is None: @@ -242,22 +242,22 @@ def id(self, id): @property def name(self): - """Gets the name of this CreateSnapshotSnapshotResponse. # noqa: E501 + """Gets the name of this SnapshotSnapshotExtendedExtended. # noqa: E501 The user or system supplied snapshot name. This will be null for snapshots pending delete. # noqa: E501 - :return: The name of this CreateSnapshotSnapshotResponse. # noqa: E501 + :return: The name of this SnapshotSnapshotExtendedExtended. # noqa: E501 :rtype: str """ return self._name @name.setter def name(self, name): - """Sets the name of this CreateSnapshotSnapshotResponse. + """Sets the name of this SnapshotSnapshotExtendedExtended. The user or system supplied snapshot name. This will be null for snapshots pending delete. # noqa: E501 - :param name: The name of this CreateSnapshotSnapshotResponse. # noqa: E501 + :param name: The name of this SnapshotSnapshotExtendedExtended. # noqa: E501 :type: str """ if name is not None and len(name) < 0: @@ -267,51 +267,51 @@ def name(self, name): @property def path(self): - """Gets the path of this CreateSnapshotSnapshotResponse. # noqa: E501 + """Gets the path of this SnapshotSnapshotExtendedExtended. # noqa: E501 The /ifs path snapshotted. # noqa: E501 - :return: The path of this CreateSnapshotSnapshotResponse. # noqa: E501 + :return: The path of this SnapshotSnapshotExtendedExtended. # noqa: E501 :rtype: str """ return self._path @path.setter def path(self, path): - """Sets the path of this CreateSnapshotSnapshotResponse. + """Sets the path of this SnapshotSnapshotExtendedExtended. The /ifs path snapshotted. # noqa: E501 - :param path: The path of this CreateSnapshotSnapshotResponse. # noqa: E501 + :param path: The path of this SnapshotSnapshotExtendedExtended. # noqa: E501 :type: str """ if path is not None and len(path) > 4096: raise ValueError("Invalid value for `path`, length must be less than or equal to `4096`") # noqa: E501 if path is not None and len(path) < 4: raise ValueError("Invalid value for `path`, length must be greater than or equal to `4`") # noqa: E501 - if path is not None and not re.search(r'^\/ifs$|^\/ifs\/|^LIVE$', path): # noqa: E501 - raise ValueError(r"Invalid value for `path`, must be a follow pattern or equal to `/^\/ifs$|^\/ifs\/|^LIVE$/`") # noqa: E501 + if path is not None and not re.search(r'^\/ifs$|^\/ifs\/', path): # noqa: E501 + raise ValueError(r"Invalid value for `path`, must be a follow pattern or equal to `/^\/ifs$|^\/ifs\//`") # noqa: E501 self._path = path @property def pct_filesystem(self): - """Gets the pct_filesystem of this CreateSnapshotSnapshotResponse. # noqa: E501 + """Gets the pct_filesystem of this SnapshotSnapshotExtendedExtended. # noqa: E501 Percentage of /ifs used for storing this snapshot. # noqa: E501 - :return: The pct_filesystem of this CreateSnapshotSnapshotResponse. # noqa: E501 + :return: The pct_filesystem of this SnapshotSnapshotExtendedExtended. # noqa: E501 :rtype: float """ return self._pct_filesystem @pct_filesystem.setter def pct_filesystem(self, pct_filesystem): - """Sets the pct_filesystem of this CreateSnapshotSnapshotResponse. + """Sets the pct_filesystem of this SnapshotSnapshotExtendedExtended. Percentage of /ifs used for storing this snapshot. # noqa: E501 - :param pct_filesystem: The pct_filesystem of this CreateSnapshotSnapshotResponse. # noqa: E501 + :param pct_filesystem: The pct_filesystem of this SnapshotSnapshotExtendedExtended. # noqa: E501 :type: float """ if pct_filesystem is None: @@ -321,22 +321,22 @@ def pct_filesystem(self, pct_filesystem): @property def pct_reserve(self): - """Gets the pct_reserve of this CreateSnapshotSnapshotResponse. # noqa: E501 + """Gets the pct_reserve of this SnapshotSnapshotExtendedExtended. # noqa: E501 Percentage of configured snapshot reserved used for storing this snapshot. # noqa: E501 - :return: The pct_reserve of this CreateSnapshotSnapshotResponse. # noqa: E501 + :return: The pct_reserve of this SnapshotSnapshotExtendedExtended. # noqa: E501 :rtype: float """ return self._pct_reserve @pct_reserve.setter def pct_reserve(self, pct_reserve): - """Sets the pct_reserve of this CreateSnapshotSnapshotResponse. + """Sets the pct_reserve of this SnapshotSnapshotExtendedExtended. Percentage of configured snapshot reserved used for storing this snapshot. # noqa: E501 - :param pct_reserve: The pct_reserve of this CreateSnapshotSnapshotResponse. # noqa: E501 + :param pct_reserve: The pct_reserve of this SnapshotSnapshotExtendedExtended. # noqa: E501 :type: float """ if pct_reserve is None: @@ -346,22 +346,22 @@ def pct_reserve(self, pct_reserve): @property def schedule(self): - """Gets the schedule of this CreateSnapshotSnapshotResponse. # noqa: E501 + """Gets the schedule of this SnapshotSnapshotExtendedExtended. # noqa: E501 The name of the schedule used to create this snapshot, if applicable. # noqa: E501 - :return: The schedule of this CreateSnapshotSnapshotResponse. # noqa: E501 + :return: The schedule of this SnapshotSnapshotExtendedExtended. # noqa: E501 :rtype: str """ return self._schedule @schedule.setter def schedule(self, schedule): - """Sets the schedule of this CreateSnapshotSnapshotResponse. + """Sets the schedule of this SnapshotSnapshotExtendedExtended. The name of the schedule used to create this snapshot, if applicable. # noqa: E501 - :param schedule: The schedule of this CreateSnapshotSnapshotResponse. # noqa: E501 + :param schedule: The schedule of this SnapshotSnapshotExtendedExtended. # noqa: E501 :type: str """ if schedule is not None and len(schedule) < 0: @@ -371,22 +371,22 @@ def schedule(self, schedule): @property def shadow_bytes(self): - """Gets the shadow_bytes of this CreateSnapshotSnapshotResponse. # noqa: E501 + """Gets the shadow_bytes of this SnapshotSnapshotExtendedExtended. # noqa: E501 The amount of shadow bytes referred to by this snapshot. # noqa: E501 - :return: The shadow_bytes of this CreateSnapshotSnapshotResponse. # noqa: E501 + :return: The shadow_bytes of this SnapshotSnapshotExtendedExtended. # noqa: E501 :rtype: int """ return self._shadow_bytes @shadow_bytes.setter def shadow_bytes(self, shadow_bytes): - """Sets the shadow_bytes of this CreateSnapshotSnapshotResponse. + """Sets the shadow_bytes of this SnapshotSnapshotExtendedExtended. The amount of shadow bytes referred to by this snapshot. # noqa: E501 - :param shadow_bytes: The shadow_bytes of this CreateSnapshotSnapshotResponse. # noqa: E501 + :param shadow_bytes: The shadow_bytes of this SnapshotSnapshotExtendedExtended. # noqa: E501 :type: int """ if shadow_bytes is None: @@ -398,22 +398,22 @@ def shadow_bytes(self, shadow_bytes): @property def size(self): - """Gets the size of this CreateSnapshotSnapshotResponse. # noqa: E501 + """Gets the size of this SnapshotSnapshotExtendedExtended. # noqa: E501 The amount of storage in bytes used to store this snapshot. # noqa: E501 - :return: The size of this CreateSnapshotSnapshotResponse. # noqa: E501 + :return: The size of this SnapshotSnapshotExtendedExtended. # noqa: E501 :rtype: int """ return self._size @size.setter def size(self, size): - """Sets the size of this CreateSnapshotSnapshotResponse. + """Sets the size of this SnapshotSnapshotExtendedExtended. The amount of storage in bytes used to store this snapshot. # noqa: E501 - :param size: The size of this CreateSnapshotSnapshotResponse. # noqa: E501 + :param size: The size of this SnapshotSnapshotExtendedExtended. # noqa: E501 :type: int """ if size is None: @@ -427,22 +427,22 @@ def size(self, size): @property def state(self): - """Gets the state of this CreateSnapshotSnapshotResponse. # noqa: E501 + """Gets the state of this SnapshotSnapshotExtendedExtended. # noqa: E501 - The state of this snapshot. # noqa: E501 + Snapshot state. # noqa: E501 - :return: The state of this CreateSnapshotSnapshotResponse. # noqa: E501 + :return: The state of this SnapshotSnapshotExtendedExtended. # noqa: E501 :rtype: str """ return self._state @state.setter def state(self, state): - """Sets the state of this CreateSnapshotSnapshotResponse. + """Sets the state of this SnapshotSnapshotExtendedExtended. - The state of this snapshot. # noqa: E501 + Snapshot state. # noqa: E501 - :param state: The state of this CreateSnapshotSnapshotResponse. # noqa: E501 + :param state: The state of this SnapshotSnapshotExtendedExtended. # noqa: E501 :type: str """ if state is None: @@ -458,22 +458,22 @@ def state(self, state): @property def target_id(self): - """Gets the target_id of this CreateSnapshotSnapshotResponse. # noqa: E501 + """Gets the target_id of this SnapshotSnapshotExtendedExtended. # noqa: E501 The ID of the snapshot pointed to if this is an alias. 18446744073709551615 (max uint64) is returned for an alias to the live filesystem. # noqa: E501 - :return: The target_id of this CreateSnapshotSnapshotResponse. # noqa: E501 + :return: The target_id of this SnapshotSnapshotExtendedExtended. # noqa: E501 :rtype: int """ return self._target_id @target_id.setter def target_id(self, target_id): - """Sets the target_id of this CreateSnapshotSnapshotResponse. + """Sets the target_id of this SnapshotSnapshotExtendedExtended. The ID of the snapshot pointed to if this is an alias. 18446744073709551615 (max uint64) is returned for an alias to the live filesystem. # noqa: E501 - :param target_id: The target_id of this CreateSnapshotSnapshotResponse. # noqa: E501 + :param target_id: The target_id of this SnapshotSnapshotExtendedExtended. # noqa: E501 :type: int """ if target_id is not None and target_id > 9223372036854775807: # noqa: E501 @@ -485,22 +485,22 @@ def target_id(self, target_id): @property def target_name(self): - """Gets the target_name of this CreateSnapshotSnapshotResponse. # noqa: E501 + """Gets the target_name of this SnapshotSnapshotExtendedExtended. # noqa: E501 The name of the snapshot pointed to if this is an alias. # noqa: E501 - :return: The target_name of this CreateSnapshotSnapshotResponse. # noqa: E501 + :return: The target_name of this SnapshotSnapshotExtendedExtended. # noqa: E501 :rtype: str """ return self._target_name @target_name.setter def target_name(self, target_name): - """Sets the target_name of this CreateSnapshotSnapshotResponse. + """Sets the target_name of this SnapshotSnapshotExtendedExtended. The name of the snapshot pointed to if this is an alias. # noqa: E501 - :param target_name: The target_name of this CreateSnapshotSnapshotResponse. # noqa: E501 + :param target_name: The target_name of this SnapshotSnapshotExtendedExtended. # noqa: E501 :type: str """ if target_name is not None and len(target_name) < 0: @@ -529,7 +529,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(CreateSnapshotSnapshotResponse, dict): + if issubclass(SnapshotSnapshotExtendedExtended, dict): for key, value in self.items(): result[key] = value @@ -545,7 +545,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, CreateSnapshotSnapshotResponse): + if not isinstance(other, SnapshotSnapshotExtendedExtended): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_snapshots.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_snapshots.py similarity index 94% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_snapshots.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_snapshots.py index 583085460..b984692d7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_snapshots.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_snapshots.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,7 +31,7 @@ class SnapshotSnapshots(object): and the value is json key in definition. """ swagger_types = { - 'snapshots': 'list[SnapshotAliasExtended]' + 'snapshots': 'list[SnapshotSnapshotExtended]' } attribute_map = { @@ -53,7 +53,7 @@ def snapshots(self): :return: The snapshots of this SnapshotSnapshots. # noqa: E501 - :rtype: list[SnapshotAliasExtended] + :rtype: list[SnapshotSnapshotExtended] """ return self._snapshots @@ -63,7 +63,7 @@ def snapshots(self, snapshots): :param snapshots: The snapshots of this SnapshotSnapshots. # noqa: E501 - :type: list[SnapshotAliasExtended] + :type: list[SnapshotSnapshotExtended] """ self._snapshots = snapshots diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_snapshots_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_snapshots_extended.py similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_snapshots_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_snapshots_extended.py index b9548c7bf..6e4795250 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_snapshots_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_snapshots_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -32,7 +32,7 @@ class SnapshotSnapshotsExtended(object): """ swagger_types = { 'resume': 'str', - 'snapshots': 'list[SnapshotAliasExtended]', + 'snapshots': 'list[SnapshotSnapshotExtendedExtended]', 'total': 'int' } @@ -90,7 +90,7 @@ def snapshots(self): :return: The snapshots of this SnapshotSnapshotsExtended. # noqa: E501 - :rtype: list[SnapshotAliasExtended] + :rtype: list[SnapshotSnapshotExtendedExtended] """ return self._snapshots @@ -100,7 +100,7 @@ def snapshots(self, snapshots): :param snapshots: The snapshots of this SnapshotSnapshotsExtended. # noqa: E501 - :type: list[SnapshotAliasExtended] + :type: list[SnapshotSnapshotExtendedExtended] """ self._snapshots = snapshots diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_snapshots_summary.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_snapshots_summary.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_snapshots_summary.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_snapshots_summary.py index 535f4f3e1..c9783381d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_snapshots_summary.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_snapshots_summary.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_snapshots_summary_summary.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_snapshots_summary_summary.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_snapshots_summary_summary.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_snapshots_summary_summary.py index b084601ee..707360154 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_snapshots_summary_summary.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_snapshots_summary_summary.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_writable.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_writable.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_writable.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_writable.py index 0fe8b1313..275f67e94 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_writable.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_writable.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_writable_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_writable_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_writable_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_writable_extended.py index c6a4dfb9f..c492daefd 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_writable_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_writable_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_writable_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_writable_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_writable_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_writable_item.py index 94749a001..155a22d3c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_writable_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_writable_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_writable_snapshot_summary.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_writable_snapshot_summary.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_writable_snapshot_summary.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_writable_snapshot_summary.py index aec87e995..fde89b10d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_writable_snapshot_summary.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_writable_snapshot_summary.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_writable_snapshot_summary_summary.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_writable_snapshot_summary_summary.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_writable_snapshot_summary_summary.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_writable_snapshot_summary_summary.py index 853f44da9..88265b49e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_writable_snapshot_summary_summary.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_writable_snapshot_summary_summary.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_writable_writable_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_writable_writable_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_writable_writable_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_writable_writable_item.py index 35513fdc8..87e3bb2f6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snapshot_writable_writable_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snapshot_writable_writable_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snmp_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snmp_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snmp_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snmp_settings.py index 7db8de314..b8981fa2b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snmp_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snmp_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snmp_settings_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snmp_settings_extended.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snmp_settings_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snmp_settings_extended.py index c4b9be00a..5ab45a6ac 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snmp_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snmp_settings_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -386,8 +386,8 @@ def system_contact(self, system_contact): raise ValueError("Invalid value for `system_contact`, length must be less than or equal to `254`") # noqa: E501 if system_contact is not None and len(system_contact) < 3: raise ValueError("Invalid value for `system_contact`, length must be greater than or equal to `3`") # noqa: E501 - if system_contact is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', system_contact): # noqa: E501 - raise ValueError(r"Invalid value for `system_contact`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if system_contact is not None and not re.search(r'[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', system_contact): # noqa: E501 + raise ValueError(r"Invalid value for `system_contact`, must be a follow pattern or equal to `/[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._system_contact = system_contact diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/snmp_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/snmp_settings_settings.py similarity index 98% rename from isilon_sdk/isilon_sdk/v9_11_0/models/snmp_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/snmp_settings_settings.py index 40ab5cb78..4b84ae5f0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/snmp_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/snmp_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -322,8 +322,8 @@ def system_contact(self, system_contact): raise ValueError("Invalid value for `system_contact`, length must be less than or equal to `254`") # noqa: E501 if system_contact is not None and len(system_contact) < 3: raise ValueError("Invalid value for `system_contact`, length must be greater than or equal to `3`") # noqa: E501 - if system_contact is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', system_contact): # noqa: E501 - raise ValueError(r"Invalid value for `system_contact`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if system_contact is not None and not re.search(r'[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', system_contact): # noqa: E501 + raise ValueError(r"Invalid value for `system_contact`, must be a follow pattern or equal to `/[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._system_contact = system_contact diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ssh_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ssh_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ssh_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ssh_settings.py index 80ecbb4fc..809ed886b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ssh_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ssh_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_4_0/models/ssh_settings_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ssh_settings_extended.py new file mode 100644 index 000000000..8e41c896c --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ssh_settings_extended.py @@ -0,0 +1,1027 @@ +# coding: utf-8 + +""" + Isilon SDK + + Isilon SDK - Language bindings for the OneFS API # noqa: E501 + + OpenAPI spec version: 15 + Contact: sdk@isilon.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + + +class SshSettingsExtended(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'auth_settings_template': 'str', + 'authentication_methods': 'str', + 'banner': 'str', + 'ca_signature_algorithms': 'str', + 'challenge_response_authentication': 'bool', + 'ciphers': 'str', + 'host_key_algorithms': 'str', + 'ignore_rhosts': 'bool', + 'kex_algorithms': 'str', + 'keyboard_interactive_authentication': 'bool', + 'log_level': 'str', + 'login_grace_time': 'int', + 'macs': 'str', + 'match': 'str', + 'max_auth_tries': 'int', + 'max_sessions': 'int', + 'max_startups': 'str', + 'password_authentication': 'bool', + 'permit_empty_passwords': 'bool', + 'permit_root_login': 'bool', + 'port': 'int', + 'print_motd': 'bool', + 'pubkey_accepted_key_types': 'str', + 'pubkey_authentication': 'bool', + 'strict_modes': 'bool', + 'subsystem': 'str', + 'syslog_facility': 'str', + 'tcp_keep_alive': 'bool', + 'use_dns': 'bool', + 'use_pam': 'bool' + } + + attribute_map = { + 'auth_settings_template': 'auth_settings_template', + 'authentication_methods': 'authentication_methods', + 'banner': 'banner', + 'ca_signature_algorithms': 'ca_signature_algorithms', + 'challenge_response_authentication': 'challenge_response_authentication', + 'ciphers': 'ciphers', + 'host_key_algorithms': 'host_key_algorithms', + 'ignore_rhosts': 'ignore_rhosts', + 'kex_algorithms': 'kex_algorithms', + 'keyboard_interactive_authentication': 'keyboard_interactive_authentication', + 'log_level': 'log_level', + 'login_grace_time': 'login_grace_time', + 'macs': 'macs', + 'match': 'match', + 'max_auth_tries': 'max_auth_tries', + 'max_sessions': 'max_sessions', + 'max_startups': 'max_startups', + 'password_authentication': 'password_authentication', + 'permit_empty_passwords': 'permit_empty_passwords', + 'permit_root_login': 'permit_root_login', + 'port': 'port', + 'print_motd': 'print_motd', + 'pubkey_accepted_key_types': 'pubkey_accepted_key_types', + 'pubkey_authentication': 'pubkey_authentication', + 'strict_modes': 'strict_modes', + 'subsystem': 'subsystem', + 'syslog_facility': 'syslog_facility', + 'tcp_keep_alive': 'tcp_keep_alive', + 'use_dns': 'use_dns', + 'use_pam': 'use_pam' + } + + def __init__(self, auth_settings_template=None, authentication_methods=None, banner=None, ca_signature_algorithms=None, challenge_response_authentication=None, ciphers=None, host_key_algorithms=None, ignore_rhosts=None, kex_algorithms=None, keyboard_interactive_authentication=None, log_level=None, login_grace_time=None, macs=None, match=None, max_auth_tries=None, max_sessions=None, max_startups=None, password_authentication=None, permit_empty_passwords=None, permit_root_login=None, port=None, print_motd=None, pubkey_accepted_key_types=None, pubkey_authentication=None, strict_modes=None, subsystem=None, syslog_facility=None, tcp_keep_alive=None, use_dns=None, use_pam=None): # noqa: E501 + """SshSettingsExtended - a model defined in Swagger""" # noqa: E501 + + self._auth_settings_template = None + self._authentication_methods = None + self._banner = None + self._ca_signature_algorithms = None + self._challenge_response_authentication = None + self._ciphers = None + self._host_key_algorithms = None + self._ignore_rhosts = None + self._kex_algorithms = None + self._keyboard_interactive_authentication = None + self._log_level = None + self._login_grace_time = None + self._macs = None + self._match = None + self._max_auth_tries = None + self._max_sessions = None + self._max_startups = None + self._password_authentication = None + self._permit_empty_passwords = None + self._permit_root_login = None + self._port = None + self._print_motd = None + self._pubkey_accepted_key_types = None + self._pubkey_authentication = None + self._strict_modes = None + self._subsystem = None + self._syslog_facility = None + self._tcp_keep_alive = None + self._use_dns = None + self._use_pam = None + self.discriminator = None + + if auth_settings_template is not None: + self.auth_settings_template = auth_settings_template + if authentication_methods is not None: + self.authentication_methods = authentication_methods + if banner is not None: + self.banner = banner + if ca_signature_algorithms is not None: + self.ca_signature_algorithms = ca_signature_algorithms + if challenge_response_authentication is not None: + self.challenge_response_authentication = challenge_response_authentication + if ciphers is not None: + self.ciphers = ciphers + if host_key_algorithms is not None: + self.host_key_algorithms = host_key_algorithms + if ignore_rhosts is not None: + self.ignore_rhosts = ignore_rhosts + if kex_algorithms is not None: + self.kex_algorithms = kex_algorithms + if keyboard_interactive_authentication is not None: + self.keyboard_interactive_authentication = keyboard_interactive_authentication + if log_level is not None: + self.log_level = log_level + if login_grace_time is not None: + self.login_grace_time = login_grace_time + if macs is not None: + self.macs = macs + if match is not None: + self.match = match + if max_auth_tries is not None: + self.max_auth_tries = max_auth_tries + if max_sessions is not None: + self.max_sessions = max_sessions + if max_startups is not None: + self.max_startups = max_startups + if password_authentication is not None: + self.password_authentication = password_authentication + if permit_empty_passwords is not None: + self.permit_empty_passwords = permit_empty_passwords + if permit_root_login is not None: + self.permit_root_login = permit_root_login + if port is not None: + self.port = port + if print_motd is not None: + self.print_motd = print_motd + if pubkey_accepted_key_types is not None: + self.pubkey_accepted_key_types = pubkey_accepted_key_types + if pubkey_authentication is not None: + self.pubkey_authentication = pubkey_authentication + if strict_modes is not None: + self.strict_modes = strict_modes + if subsystem is not None: + self.subsystem = subsystem + if syslog_facility is not None: + self.syslog_facility = syslog_facility + if tcp_keep_alive is not None: + self.tcp_keep_alive = tcp_keep_alive + if use_dns is not None: + self.use_dns = use_dns + if use_pam is not None: + self.use_pam = use_pam + + @property + def auth_settings_template(self): + """Gets the auth_settings_template of this SshSettingsExtended. # noqa: E501 + + Specifies the configuration template for the supported method by which a user is authenticated. # noqa: E501 + + :return: The auth_settings_template of this SshSettingsExtended. # noqa: E501 + :rtype: str + """ + return self._auth_settings_template + + @auth_settings_template.setter + def auth_settings_template(self, auth_settings_template): + """Sets the auth_settings_template of this SshSettingsExtended. + + Specifies the configuration template for the supported method by which a user is authenticated. # noqa: E501 + + :param auth_settings_template: The auth_settings_template of this SshSettingsExtended. # noqa: E501 + :type: str + """ + allowed_values = ["password", "publickey", "both", "any", "custom"] # noqa: E501 + if auth_settings_template not in allowed_values: + raise ValueError( + "Invalid value for `auth_settings_template` ({0}), must be one of {1}" # noqa: E501 + .format(auth_settings_template, allowed_values) + ) + + self._auth_settings_template = auth_settings_template + + @property + def authentication_methods(self): + """Gets the authentication_methods of this SshSettingsExtended. # noqa: E501 + + Specifies the authentication methods that must be successfully completed for a user to be granted access. # noqa: E501 + + :return: The authentication_methods of this SshSettingsExtended. # noqa: E501 + :rtype: str + """ + return self._authentication_methods + + @authentication_methods.setter + def authentication_methods(self, authentication_methods): + """Sets the authentication_methods of this SshSettingsExtended. + + Specifies the authentication methods that must be successfully completed for a user to be granted access. # noqa: E501 + + :param authentication_methods: The authentication_methods of this SshSettingsExtended. # noqa: E501 + :type: str + """ + if authentication_methods is not None and len(authentication_methods) > 1024: + raise ValueError("Invalid value for `authentication_methods`, length must be less than or equal to `1024`") # noqa: E501 + if authentication_methods is not None and len(authentication_methods) < 0: + raise ValueError("Invalid value for `authentication_methods`, length must be greater than or equal to `0`") # noqa: E501 + if authentication_methods is not None and not re.search(r'^[^ ]*$', authentication_methods): # noqa: E501 + raise ValueError(r"Invalid value for `authentication_methods`, must be a follow pattern or equal to `/^[^ ]*$/`") # noqa: E501 + + self._authentication_methods = authentication_methods + + @property + def banner(self): + """Gets the banner of this SshSettingsExtended. # noqa: E501 + + Specifies file name to be used as SSH warning banner that is shown before the password prompt # noqa: E501 + + :return: The banner of this SshSettingsExtended. # noqa: E501 + :rtype: str + """ + return self._banner + + @banner.setter + def banner(self, banner): + """Sets the banner of this SshSettingsExtended. + + Specifies file name to be used as SSH warning banner that is shown before the password prompt # noqa: E501 + + :param banner: The banner of this SshSettingsExtended. # noqa: E501 + :type: str + """ + if banner is not None and len(banner) > 4096: + raise ValueError("Invalid value for `banner`, length must be less than or equal to `4096`") # noqa: E501 + if banner is not None and len(banner) < 0: + raise ValueError("Invalid value for `banner`, length must be greater than or equal to `0`") # noqa: E501 + if banner is not None and not re.search(r'^[^ ]*$', banner): # noqa: E501 + raise ValueError(r"Invalid value for `banner`, must be a follow pattern or equal to `/^[^ ]*$/`") # noqa: E501 + + self._banner = banner + + @property + def ca_signature_algorithms(self): + """Gets the ca_signature_algorithms of this SshSettingsExtended. # noqa: E501 + + Specifies which algorithms are allowed for signing of certificates by certificate authorities (CAs). # noqa: E501 + + :return: The ca_signature_algorithms of this SshSettingsExtended. # noqa: E501 + :rtype: str + """ + return self._ca_signature_algorithms + + @ca_signature_algorithms.setter + def ca_signature_algorithms(self, ca_signature_algorithms): + """Sets the ca_signature_algorithms of this SshSettingsExtended. + + Specifies which algorithms are allowed for signing of certificates by certificate authorities (CAs). # noqa: E501 + + :param ca_signature_algorithms: The ca_signature_algorithms of this SshSettingsExtended. # noqa: E501 + :type: str + """ + if ca_signature_algorithms is not None and len(ca_signature_algorithms) > 4096: + raise ValueError("Invalid value for `ca_signature_algorithms`, length must be less than or equal to `4096`") # noqa: E501 + if ca_signature_algorithms is not None and len(ca_signature_algorithms) < 0: + raise ValueError("Invalid value for `ca_signature_algorithms`, length must be greater than or equal to `0`") # noqa: E501 + if ca_signature_algorithms is not None and not re.search(r'^(\\+?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$', ca_signature_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `ca_signature_algorithms`, must be a follow pattern or equal to `/^(\\+?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$/`") # noqa: E501 + + self._ca_signature_algorithms = ca_signature_algorithms + + @property + def challenge_response_authentication(self): + """Gets the challenge_response_authentication of this SshSettingsExtended. # noqa: E501 + + Specifies whether challenge-response authentication is allowed. # noqa: E501 + + :return: The challenge_response_authentication of this SshSettingsExtended. # noqa: E501 + :rtype: bool + """ + return self._challenge_response_authentication + + @challenge_response_authentication.setter + def challenge_response_authentication(self, challenge_response_authentication): + """Sets the challenge_response_authentication of this SshSettingsExtended. + + Specifies whether challenge-response authentication is allowed. # noqa: E501 + + :param challenge_response_authentication: The challenge_response_authentication of this SshSettingsExtended. # noqa: E501 + :type: bool + """ + + self._challenge_response_authentication = challenge_response_authentication + + @property + def ciphers(self): + """Gets the ciphers of this SshSettingsExtended. # noqa: E501 + + Specifies the ciphers allowed for protocol version 2. # noqa: E501 + + :return: The ciphers of this SshSettingsExtended. # noqa: E501 + :rtype: str + """ + return self._ciphers + + @ciphers.setter + def ciphers(self, ciphers): + """Sets the ciphers of this SshSettingsExtended. + + Specifies the ciphers allowed for protocol version 2. # noqa: E501 + + :param ciphers: The ciphers of this SshSettingsExtended. # noqa: E501 + :type: str + """ + if ciphers is not None and len(ciphers) > 4096: + raise ValueError("Invalid value for `ciphers`, length must be less than or equal to `4096`") # noqa: E501 + if ciphers is not None and len(ciphers) < 7: + raise ValueError("Invalid value for `ciphers`, length must be greater than or equal to `7`") # noqa: E501 + if ciphers is not None and not re.search(r'^(\\+?)(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com)(,(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com))*$', ciphers): # noqa: E501 + raise ValueError(r"Invalid value for `ciphers`, must be a follow pattern or equal to `/^(\\+?)(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com)(,(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com))*$/`") # noqa: E501 + + self._ciphers = ciphers + + @property + def host_key_algorithms(self): + """Gets the host_key_algorithms of this SshSettingsExtended. # noqa: E501 + + Specifies the protocol version 2 host key algorithms the server offers. # noqa: E501 + + :return: The host_key_algorithms of this SshSettingsExtended. # noqa: E501 + :rtype: str + """ + return self._host_key_algorithms + + @host_key_algorithms.setter + def host_key_algorithms(self, host_key_algorithms): + """Sets the host_key_algorithms of this SshSettingsExtended. + + Specifies the protocol version 2 host key algorithms the server offers. # noqa: E501 + + :param host_key_algorithms: The host_key_algorithms of this SshSettingsExtended. # noqa: E501 + :type: str + """ + if host_key_algorithms is not None and len(host_key_algorithms) > 4096: + raise ValueError("Invalid value for `host_key_algorithms`, length must be less than or equal to `4096`") # noqa: E501 + if host_key_algorithms is not None and len(host_key_algorithms) < 7: + raise ValueError("Invalid value for `host_key_algorithms`, length must be greater than or equal to `7`") # noqa: E501 + if host_key_algorithms is not None and not re.search(r'^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com))*$', host_key_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `host_key_algorithms`, must be a follow pattern or equal to `/^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com))*$/`") # noqa: E501 + + self._host_key_algorithms = host_key_algorithms + + @property + def ignore_rhosts(self): + """Gets the ignore_rhosts of this SshSettingsExtended. # noqa: E501 + + If true, ignores .rhosts and .shosts files. # noqa: E501 + + :return: The ignore_rhosts of this SshSettingsExtended. # noqa: E501 + :rtype: bool + """ + return self._ignore_rhosts + + @ignore_rhosts.setter + def ignore_rhosts(self, ignore_rhosts): + """Sets the ignore_rhosts of this SshSettingsExtended. + + If true, ignores .rhosts and .shosts files. # noqa: E501 + + :param ignore_rhosts: The ignore_rhosts of this SshSettingsExtended. # noqa: E501 + :type: bool + """ + + self._ignore_rhosts = ignore_rhosts + + @property + def kex_algorithms(self): + """Gets the kex_algorithms of this SshSettingsExtended. # noqa: E501 + + Specifies the available KEX algorithms. # noqa: E501 + + :return: The kex_algorithms of this SshSettingsExtended. # noqa: E501 + :rtype: str + """ + return self._kex_algorithms + + @kex_algorithms.setter + def kex_algorithms(self, kex_algorithms): + """Sets the kex_algorithms of this SshSettingsExtended. + + Specifies the available KEX algorithms. # noqa: E501 + + :param kex_algorithms: The kex_algorithms of this SshSettingsExtended. # noqa: E501 + :type: str + """ + if kex_algorithms is not None and len(kex_algorithms) > 4096: + raise ValueError("Invalid value for `kex_algorithms`, length must be less than or equal to `4096`") # noqa: E501 + if kex_algorithms is not None and len(kex_algorithms) < 18: + raise ValueError("Invalid value for `kex_algorithms`, length must be greater than or equal to `18`") # noqa: E501 + if kex_algorithms is not None and not re.search(r'^(\\+?)(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$', kex_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `kex_algorithms`, must be a follow pattern or equal to `/^(\\+?)(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$/`") # noqa: E501 + + self._kex_algorithms = kex_algorithms + + @property + def keyboard_interactive_authentication(self): + """Gets the keyboard_interactive_authentication of this SshSettingsExtended. # noqa: E501 + + Specifies whether to allow keyboard-interactive authentication. # noqa: E501 + + :return: The keyboard_interactive_authentication of this SshSettingsExtended. # noqa: E501 + :rtype: bool + """ + return self._keyboard_interactive_authentication + + @keyboard_interactive_authentication.setter + def keyboard_interactive_authentication(self, keyboard_interactive_authentication): + """Sets the keyboard_interactive_authentication of this SshSettingsExtended. + + Specifies whether to allow keyboard-interactive authentication. # noqa: E501 + + :param keyboard_interactive_authentication: The keyboard_interactive_authentication of this SshSettingsExtended. # noqa: E501 + :type: bool + """ + + self._keyboard_interactive_authentication = keyboard_interactive_authentication + + @property + def log_level(self): + """Gets the log_level of this SshSettingsExtended. # noqa: E501 + + Specifies the log level when logging messages from sshd(8). # noqa: E501 + + :return: The log_level of this SshSettingsExtended. # noqa: E501 + :rtype: str + """ + return self._log_level + + @log_level.setter + def log_level(self, log_level): + """Sets the log_level of this SshSettingsExtended. + + Specifies the log level when logging messages from sshd(8). # noqa: E501 + + :param log_level: The log_level of this SshSettingsExtended. # noqa: E501 + :type: str + """ + allowed_values = ["INFO", "QUIET", "FATAL", "ERROR", "VERBOSE", "DEBUG", "DEBUG1", "DEBUG2", "DEBUG3"] # noqa: E501 + if log_level not in allowed_values: + raise ValueError( + "Invalid value for `log_level` ({0}), must be one of {1}" # noqa: E501 + .format(log_level, allowed_values) + ) + + self._log_level = log_level + + @property + def login_grace_time(self): + """Gets the login_grace_time of this SshSettingsExtended. # noqa: E501 + + Specifies the length of time in seconds before idle log in fails. If the value is 0, there is no time limit. # noqa: E501 + + :return: The login_grace_time of this SshSettingsExtended. # noqa: E501 + :rtype: int + """ + return self._login_grace_time + + @login_grace_time.setter + def login_grace_time(self, login_grace_time): + """Sets the login_grace_time of this SshSettingsExtended. + + Specifies the length of time in seconds before idle log in fails. If the value is 0, there is no time limit. # noqa: E501 + + :param login_grace_time: The login_grace_time of this SshSettingsExtended. # noqa: E501 + :type: int + """ + if login_grace_time is not None and login_grace_time > 600: # noqa: E501 + raise ValueError("Invalid value for `login_grace_time`, must be a value less than or equal to `600`") # noqa: E501 + if login_grace_time is not None and login_grace_time < 0: # noqa: E501 + raise ValueError("Invalid value for `login_grace_time`, must be a value greater than or equal to `0`") # noqa: E501 + + self._login_grace_time = login_grace_time + + @property + def macs(self): + """Gets the macs of this SshSettingsExtended. # noqa: E501 + + Specifies the available MAC algorithms. # noqa: E501 + + :return: The macs of this SshSettingsExtended. # noqa: E501 + :rtype: str + """ + return self._macs + + @macs.setter + def macs(self, macs): + """Sets the macs of this SshSettingsExtended. + + Specifies the available MAC algorithms. # noqa: E501 + + :param macs: The macs of this SshSettingsExtended. # noqa: E501 + :type: str + """ + if macs is not None and len(macs) > 4096: + raise ValueError("Invalid value for `macs`, length must be less than or equal to `4096`") # noqa: E501 + if macs is not None and len(macs) < 8: + raise ValueError("Invalid value for `macs`, length must be greater than or equal to `8`") # noqa: E501 + if macs is not None and not re.search(r'^(\\+?)(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$', macs): # noqa: E501 + raise ValueError(r"Invalid value for `macs`, must be a follow pattern or equal to `/^(\\+?)(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$/`") # noqa: E501 + + self._macs = macs + + @property + def match(self): + """Gets the match of this SshSettingsExtended. # noqa: E501 + + Specifies match blocks. # noqa: E501 + + :return: The match of this SshSettingsExtended. # noqa: E501 + :rtype: str + """ + return self._match + + @match.setter + def match(self, match): + """Sets the match of this SshSettingsExtended. + + Specifies match blocks. # noqa: E501 + + :param match: The match of this SshSettingsExtended. # noqa: E501 + :type: str + """ + if match is not None and len(match) > 8192: + raise ValueError("Invalid value for `match`, length must be less than or equal to `8192`") # noqa: E501 + if match is not None and len(match) < 0: + raise ValueError("Invalid value for `match`, length must be greater than or equal to `0`") # noqa: E501 + + self._match = match + + @property + def max_auth_tries(self): + """Gets the max_auth_tries of this SshSettingsExtended. # noqa: E501 + + Specifies the maximum number of authentication attempts per connection. # noqa: E501 + + :return: The max_auth_tries of this SshSettingsExtended. # noqa: E501 + :rtype: int + """ + return self._max_auth_tries + + @max_auth_tries.setter + def max_auth_tries(self, max_auth_tries): + """Sets the max_auth_tries of this SshSettingsExtended. + + Specifies the maximum number of authentication attempts per connection. # noqa: E501 + + :param max_auth_tries: The max_auth_tries of this SshSettingsExtended. # noqa: E501 + :type: int + """ + if max_auth_tries is not None and max_auth_tries > 1024: # noqa: E501 + raise ValueError("Invalid value for `max_auth_tries`, must be a value less than or equal to `1024`") # noqa: E501 + if max_auth_tries is not None and max_auth_tries < 0: # noqa: E501 + raise ValueError("Invalid value for `max_auth_tries`, must be a value greater than or equal to `0`") # noqa: E501 + + self._max_auth_tries = max_auth_tries + + @property + def max_sessions(self): + """Gets the max_sessions of this SshSettingsExtended. # noqa: E501 + + Specifies the maximum number of open sessions permitted per network connection. # noqa: E501 + + :return: The max_sessions of this SshSettingsExtended. # noqa: E501 + :rtype: int + """ + return self._max_sessions + + @max_sessions.setter + def max_sessions(self, max_sessions): + """Sets the max_sessions of this SshSettingsExtended. + + Specifies the maximum number of open sessions permitted per network connection. # noqa: E501 + + :param max_sessions: The max_sessions of this SshSettingsExtended. # noqa: E501 + :type: int + """ + if max_sessions is not None and max_sessions > 1024: # noqa: E501 + raise ValueError("Invalid value for `max_sessions`, must be a value less than or equal to `1024`") # noqa: E501 + if max_sessions is not None and max_sessions < 0: # noqa: E501 + raise ValueError("Invalid value for `max_sessions`, must be a value greater than or equal to `0`") # noqa: E501 + + self._max_sessions = max_sessions + + @property + def max_startups(self): + """Gets the max_startups of this SshSettingsExtended. # noqa: E501 + + Specifies maximum number of unauthenticated connections. # noqa: E501 + + :return: The max_startups of this SshSettingsExtended. # noqa: E501 + :rtype: str + """ + return self._max_startups + + @max_startups.setter + def max_startups(self, max_startups): + """Sets the max_startups of this SshSettingsExtended. + + Specifies maximum number of unauthenticated connections. # noqa: E501 + + :param max_startups: The max_startups of this SshSettingsExtended. # noqa: E501 + :type: str + """ + if max_startups is not None and len(max_startups) > 11: + raise ValueError("Invalid value for `max_startups`, length must be less than or equal to `11`") # noqa: E501 + if max_startups is not None and len(max_startups) < 0: + raise ValueError("Invalid value for `max_startups`, length must be greater than or equal to `0`") # noqa: E501 + if max_startups is not None and not re.search(r'^$|^([0-9]|[0-9][0-9]|[0-9][0-9][0-9]):([0-9]|[0-9][0-9]|[0-9][0-9][0-9]):([0-9]|[0-9][0-9]|[0-9][0-9][0-9])$', max_startups): # noqa: E501 + raise ValueError(r"Invalid value for `max_startups`, must be a follow pattern or equal to `/^$|^([0-9]|[0-9][0-9]|[0-9][0-9][0-9]):([0-9]|[0-9][0-9]|[0-9][0-9][0-9]):([0-9]|[0-9][0-9]|[0-9][0-9][0-9])$/`") # noqa: E501 + + self._max_startups = max_startups + + @property + def password_authentication(self): + """Gets the password_authentication of this SshSettingsExtended. # noqa: E501 + + Specifies whether password authentication is allowed. # noqa: E501 + + :return: The password_authentication of this SshSettingsExtended. # noqa: E501 + :rtype: bool + """ + return self._password_authentication + + @password_authentication.setter + def password_authentication(self, password_authentication): + """Sets the password_authentication of this SshSettingsExtended. + + Specifies whether password authentication is allowed. # noqa: E501 + + :param password_authentication: The password_authentication of this SshSettingsExtended. # noqa: E501 + :type: bool + """ + + self._password_authentication = password_authentication + + @property + def permit_empty_passwords(self): + """Gets the permit_empty_passwords of this SshSettingsExtended. # noqa: E501 + + Enable empty passwords if password authentication is allowed. # noqa: E501 + + :return: The permit_empty_passwords of this SshSettingsExtended. # noqa: E501 + :rtype: bool + """ + return self._permit_empty_passwords + + @permit_empty_passwords.setter + def permit_empty_passwords(self, permit_empty_passwords): + """Sets the permit_empty_passwords of this SshSettingsExtended. + + Enable empty passwords if password authentication is allowed. # noqa: E501 + + :param permit_empty_passwords: The permit_empty_passwords of this SshSettingsExtended. # noqa: E501 + :type: bool + """ + + self._permit_empty_passwords = permit_empty_passwords + + @property + def permit_root_login(self): + """Gets the permit_root_login of this SshSettingsExtended. # noqa: E501 + + Enable root SSH login. # noqa: E501 + + :return: The permit_root_login of this SshSettingsExtended. # noqa: E501 + :rtype: bool + """ + return self._permit_root_login + + @permit_root_login.setter + def permit_root_login(self, permit_root_login): + """Sets the permit_root_login of this SshSettingsExtended. + + Enable root SSH login. # noqa: E501 + + :param permit_root_login: The permit_root_login of this SshSettingsExtended. # noqa: E501 + :type: bool + """ + + self._permit_root_login = permit_root_login + + @property + def port(self): + """Gets the port of this SshSettingsExtended. # noqa: E501 + + Specifies the port sshd(8) should listen on # noqa: E501 + + :return: The port of this SshSettingsExtended. # noqa: E501 + :rtype: int + """ + return self._port + + @port.setter + def port(self, port): + """Sets the port of this SshSettingsExtended. + + Specifies the port sshd(8) should listen on # noqa: E501 + + :param port: The port of this SshSettingsExtended. # noqa: E501 + :type: int + """ + if port is not None and port > 65535: # noqa: E501 + raise ValueError("Invalid value for `port`, must be a value less than or equal to `65535`") # noqa: E501 + if port is not None and port < 1: # noqa: E501 + raise ValueError("Invalid value for `port`, must be a value greater than or equal to `1`") # noqa: E501 + + self._port = port + + @property + def print_motd(self): + """Gets the print_motd of this SshSettingsExtended. # noqa: E501 + + Enable printing /etc/motd when a user logs in. # noqa: E501 + + :return: The print_motd of this SshSettingsExtended. # noqa: E501 + :rtype: bool + """ + return self._print_motd + + @print_motd.setter + def print_motd(self, print_motd): + """Sets the print_motd of this SshSettingsExtended. + + Enable printing /etc/motd when a user logs in. # noqa: E501 + + :param print_motd: The print_motd of this SshSettingsExtended. # noqa: E501 + :type: bool + """ + + self._print_motd = print_motd + + @property + def pubkey_accepted_key_types(self): + """Gets the pubkey_accepted_key_types of this SshSettingsExtended. # noqa: E501 + + Specifies the accepted public key types. # noqa: E501 + + :return: The pubkey_accepted_key_types of this SshSettingsExtended. # noqa: E501 + :rtype: str + """ + return self._pubkey_accepted_key_types + + @pubkey_accepted_key_types.setter + def pubkey_accepted_key_types(self, pubkey_accepted_key_types): + """Sets the pubkey_accepted_key_types of this SshSettingsExtended. + + Specifies the accepted public key types. # noqa: E501 + + :param pubkey_accepted_key_types: The pubkey_accepted_key_types of this SshSettingsExtended. # noqa: E501 + :type: str + """ + if pubkey_accepted_key_types is not None and len(pubkey_accepted_key_types) > 4096: + raise ValueError("Invalid value for `pubkey_accepted_key_types`, length must be less than or equal to `4096`") # noqa: E501 + if pubkey_accepted_key_types is not None and len(pubkey_accepted_key_types) < 7: + raise ValueError("Invalid value for `pubkey_accepted_key_types`, length must be greater than or equal to `7`") # noqa: E501 + if pubkey_accepted_key_types is not None and not re.search(r'^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com))*$', pubkey_accepted_key_types): # noqa: E501 + raise ValueError(r"Invalid value for `pubkey_accepted_key_types`, must be a follow pattern or equal to `/^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com))*$/`") # noqa: E501 + + self._pubkey_accepted_key_types = pubkey_accepted_key_types + + @property + def pubkey_authentication(self): + """Gets the pubkey_authentication of this SshSettingsExtended. # noqa: E501 + + Specifies whether public key authentication is allowed. # noqa: E501 + + :return: The pubkey_authentication of this SshSettingsExtended. # noqa: E501 + :rtype: bool + """ + return self._pubkey_authentication + + @pubkey_authentication.setter + def pubkey_authentication(self, pubkey_authentication): + """Sets the pubkey_authentication of this SshSettingsExtended. + + Specifies whether public key authentication is allowed. # noqa: E501 + + :param pubkey_authentication: The pubkey_authentication of this SshSettingsExtended. # noqa: E501 + :type: bool + """ + + self._pubkey_authentication = pubkey_authentication + + @property + def strict_modes(self): + """Gets the strict_modes of this SshSettingsExtended. # noqa: E501 + + Specifies if sshd(8) should check home directory permissions before accepting login. # noqa: E501 + + :return: The strict_modes of this SshSettingsExtended. # noqa: E501 + :rtype: bool + """ + return self._strict_modes + + @strict_modes.setter + def strict_modes(self, strict_modes): + """Sets the strict_modes of this SshSettingsExtended. + + Specifies if sshd(8) should check home directory permissions before accepting login. # noqa: E501 + + :param strict_modes: The strict_modes of this SshSettingsExtended. # noqa: E501 + :type: bool + """ + + self._strict_modes = strict_modes + + @property + def subsystem(self): + """Gets the subsystem of this SshSettingsExtended. # noqa: E501 + + Specifies an external subsystem. # noqa: E501 + + :return: The subsystem of this SshSettingsExtended. # noqa: E501 + :rtype: str + """ + return self._subsystem + + @subsystem.setter + def subsystem(self, subsystem): + """Sets the subsystem of this SshSettingsExtended. + + Specifies an external subsystem. # noqa: E501 + + :param subsystem: The subsystem of this SshSettingsExtended. # noqa: E501 + :type: str + """ + if subsystem is not None and len(subsystem) > 1024: + raise ValueError("Invalid value for `subsystem`, length must be less than or equal to `1024`") # noqa: E501 + if subsystem is not None and len(subsystem) < 0: + raise ValueError("Invalid value for `subsystem`, length must be greater than or equal to `0`") # noqa: E501 + if subsystem is not None and not re.search(r'b\'^[^\\\\n]*$\'', subsystem): # noqa: E501 + raise ValueError(r"Invalid value for `subsystem`, must be a follow pattern or equal to `/b'^[^\\\\n]*$'/`") # noqa: E501 + + self._subsystem = subsystem + + @property + def syslog_facility(self): + """Gets the syslog_facility of this SshSettingsExtended. # noqa: E501 + + Specifies the facility code when logging messages from sshd(8). # noqa: E501 + + :return: The syslog_facility of this SshSettingsExtended. # noqa: E501 + :rtype: str + """ + return self._syslog_facility + + @syslog_facility.setter + def syslog_facility(self, syslog_facility): + """Sets the syslog_facility of this SshSettingsExtended. + + Specifies the facility code when logging messages from sshd(8). # noqa: E501 + + :param syslog_facility: The syslog_facility of this SshSettingsExtended. # noqa: E501 + :type: str + """ + allowed_values = ["AUTH", "DAEMON", "USER", "LOCAL0", "LOCAL1", "LOCAL2", "LOCAL3", "LOCAL4", "LOCAL5", "LOCAL6", "LOCAL7"] # noqa: E501 + if syslog_facility not in allowed_values: + raise ValueError( + "Invalid value for `syslog_facility` ({0}), must be one of {1}" # noqa: E501 + .format(syslog_facility, allowed_values) + ) + + self._syslog_facility = syslog_facility + + @property + def tcp_keep_alive(self): + """Gets the tcp_keep_alive of this SshSettingsExtended. # noqa: E501 + + Enable sending TCP keep alive messages. # noqa: E501 + + :return: The tcp_keep_alive of this SshSettingsExtended. # noqa: E501 + :rtype: bool + """ + return self._tcp_keep_alive + + @tcp_keep_alive.setter + def tcp_keep_alive(self, tcp_keep_alive): + """Sets the tcp_keep_alive of this SshSettingsExtended. + + Enable sending TCP keep alive messages. # noqa: E501 + + :param tcp_keep_alive: The tcp_keep_alive of this SshSettingsExtended. # noqa: E501 + :type: bool + """ + + self._tcp_keep_alive = tcp_keep_alive + + @property + def use_dns(self): + """Gets the use_dns of this SshSettingsExtended. # noqa: E501 + + Specifies whether sshd should look up the remote host name. # noqa: E501 + + :return: The use_dns of this SshSettingsExtended. # noqa: E501 + :rtype: bool + """ + return self._use_dns + + @use_dns.setter + def use_dns(self, use_dns): + """Sets the use_dns of this SshSettingsExtended. + + Specifies whether sshd should look up the remote host name. # noqa: E501 + + :param use_dns: The use_dns of this SshSettingsExtended. # noqa: E501 + :type: bool + """ + + self._use_dns = use_dns + + @property + def use_pam(self): + """Gets the use_pam of this SshSettingsExtended. # noqa: E501 + + Enables the Pluggable Authentication Module interface. # noqa: E501 + + :return: The use_pam of this SshSettingsExtended. # noqa: E501 + :rtype: bool + """ + return self._use_pam + + @use_pam.setter + def use_pam(self, use_pam): + """Sets the use_pam of this SshSettingsExtended. + + Enables the Pluggable Authentication Module interface. # noqa: E501 + + :param use_pam: The use_pam of this SshSettingsExtended. # noqa: E501 + :type: bool + """ + + self._use_pam = use_pam + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(SshSettingsExtended, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, SshSettingsExtended): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + """Returns true if both objects are not equal""" + return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/ssh_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/ssh_settings_settings.py similarity index 80% rename from isilon_sdk/isilon_sdk/v9_11_0/models/ssh_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/ssh_settings_settings.py index d3d3c13f8..9d59598ce 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/ssh_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/ssh_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -37,8 +37,6 @@ class SshSettingsSettings(object): 'ca_signature_algorithms': 'str', 'challenge_response_authentication': 'bool', 'ciphers': 'str', - 'client_alive_count_max': 'int', - 'client_alive_interval': 'int', 'host_key_algorithms': 'str', 'ignore_rhosts': 'bool', 'kex_algorithms': 'str', @@ -72,8 +70,6 @@ class SshSettingsSettings(object): 'ca_signature_algorithms': 'ca_signature_algorithms', 'challenge_response_authentication': 'challenge_response_authentication', 'ciphers': 'ciphers', - 'client_alive_count_max': 'client_alive_count_max', - 'client_alive_interval': 'client_alive_interval', 'host_key_algorithms': 'host_key_algorithms', 'ignore_rhosts': 'ignore_rhosts', 'kex_algorithms': 'kex_algorithms', @@ -100,7 +96,7 @@ class SshSettingsSettings(object): 'use_pam': 'use_pam' } - def __init__(self, auth_settings_template=None, authentication_methods=None, banner=None, ca_signature_algorithms=None, challenge_response_authentication=None, ciphers=None, client_alive_count_max=None, client_alive_interval=None, host_key_algorithms=None, ignore_rhosts=None, kex_algorithms=None, keyboard_interactive_authentication=None, log_level=None, login_grace_time=None, macs=None, match=None, max_auth_tries=None, max_sessions=None, max_startups=None, password_authentication=None, permit_empty_passwords=None, permit_root_login=None, port=None, print_motd=None, pubkey_accepted_key_types=None, pubkey_authentication=None, strict_modes=None, subsystem=None, syslog_facility=None, tcp_keep_alive=None, use_dns=None, use_pam=None): # noqa: E501 + def __init__(self, auth_settings_template=None, authentication_methods=None, banner=None, ca_signature_algorithms=None, challenge_response_authentication=None, ciphers=None, host_key_algorithms=None, ignore_rhosts=None, kex_algorithms=None, keyboard_interactive_authentication=None, log_level=None, login_grace_time=None, macs=None, match=None, max_auth_tries=None, max_sessions=None, max_startups=None, password_authentication=None, permit_empty_passwords=None, permit_root_login=None, port=None, print_motd=None, pubkey_accepted_key_types=None, pubkey_authentication=None, strict_modes=None, subsystem=None, syslog_facility=None, tcp_keep_alive=None, use_dns=None, use_pam=None): # noqa: E501 """SshSettingsSettings - a model defined in Swagger""" # noqa: E501 self._auth_settings_template = None @@ -109,8 +105,6 @@ def __init__(self, auth_settings_template=None, authentication_methods=None, ban self._ca_signature_algorithms = None self._challenge_response_authentication = None self._ciphers = None - self._client_alive_count_max = None - self._client_alive_interval = None self._host_key_algorithms = None self._ignore_rhosts = None self._kex_algorithms = None @@ -149,10 +143,6 @@ def __init__(self, auth_settings_template=None, authentication_methods=None, ban self.challenge_response_authentication = challenge_response_authentication if ciphers is not None: self.ciphers = ciphers - if client_alive_count_max is not None: - self.client_alive_count_max = client_alive_count_max - if client_alive_interval is not None: - self.client_alive_interval = client_alive_interval if host_key_algorithms is not None: self.host_key_algorithms = host_key_algorithms if ignore_rhosts is not None: @@ -313,8 +303,8 @@ def ca_signature_algorithms(self, ca_signature_algorithms): raise ValueError("Invalid value for `ca_signature_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if ca_signature_algorithms is not None and len(ca_signature_algorithms) < 0: raise ValueError("Invalid value for `ca_signature_algorithms`, length must be greater than or equal to `0`") # noqa: E501 - if ca_signature_algorithms is not None and not re.search(r'^([+]?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$', ca_signature_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `ca_signature_algorithms`, must be a follow pattern or equal to `/^([+]?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$/`") # noqa: E501 + if ca_signature_algorithms is not None and not re.search(r'^(\\+?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$', ca_signature_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `ca_signature_algorithms`, must be a follow pattern or equal to `/^(\\+?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$/`") # noqa: E501 self._ca_signature_algorithms = ca_signature_algorithms @@ -365,65 +355,11 @@ def ciphers(self, ciphers): raise ValueError("Invalid value for `ciphers`, length must be less than or equal to `4096`") # noqa: E501 if ciphers is not None and len(ciphers) < 7: raise ValueError("Invalid value for `ciphers`, length must be greater than or equal to `7`") # noqa: E501 - if ciphers is not None and not re.search(r'^([+]?)(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com)(,(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com))*$', ciphers): # noqa: E501 - raise ValueError(r"Invalid value for `ciphers`, must be a follow pattern or equal to `/^([+]?)(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com)(,(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com))*$/`") # noqa: E501 + if ciphers is not None and not re.search(r'^(\\+?)(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com)(,(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com))*$', ciphers): # noqa: E501 + raise ValueError(r"Invalid value for `ciphers`, must be a follow pattern or equal to `/^(\\+?)(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com)(,(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com))*$/`") # noqa: E501 self._ciphers = ciphers - @property - def client_alive_count_max(self): - """Gets the client_alive_count_max of this SshSettingsSettings. # noqa: E501 - - Specifies the number of client alive messages which may be sent without sshd receiving any messages back from the client. If this threshold is reached, sshd will disconnect the client, terminating the session. Setting this to zero disables connection termination. # noqa: E501 - - :return: The client_alive_count_max of this SshSettingsSettings. # noqa: E501 - :rtype: int - """ - return self._client_alive_count_max - - @client_alive_count_max.setter - def client_alive_count_max(self, client_alive_count_max): - """Sets the client_alive_count_max of this SshSettingsSettings. - - Specifies the number of client alive messages which may be sent without sshd receiving any messages back from the client. If this threshold is reached, sshd will disconnect the client, terminating the session. Setting this to zero disables connection termination. # noqa: E501 - - :param client_alive_count_max: The client_alive_count_max of this SshSettingsSettings. # noqa: E501 - :type: int - """ - if client_alive_count_max is not None and client_alive_count_max > 1000: # noqa: E501 - raise ValueError("Invalid value for `client_alive_count_max`, must be a value less than or equal to `1000`") # noqa: E501 - if client_alive_count_max is not None and client_alive_count_max < 0: # noqa: E501 - raise ValueError("Invalid value for `client_alive_count_max`, must be a value greater than or equal to `0`") # noqa: E501 - - self._client_alive_count_max = client_alive_count_max - - @property - def client_alive_interval(self): - """Gets the client_alive_interval of this SshSettingsSettings. # noqa: E501 - - Specifies a timeout interval in seconds after which if no data has been received from the client, sshd will request a response from the client. Setting this to zero means that these messages will not be sent. # noqa: E501 - - :return: The client_alive_interval of this SshSettingsSettings. # noqa: E501 - :rtype: int - """ - return self._client_alive_interval - - @client_alive_interval.setter - def client_alive_interval(self, client_alive_interval): - """Sets the client_alive_interval of this SshSettingsSettings. - - Specifies a timeout interval in seconds after which if no data has been received from the client, sshd will request a response from the client. Setting this to zero means that these messages will not be sent. # noqa: E501 - - :param client_alive_interval: The client_alive_interval of this SshSettingsSettings. # noqa: E501 - :type: int - """ - if client_alive_interval is not None and client_alive_interval > 3600: # noqa: E501 - raise ValueError("Invalid value for `client_alive_interval`, must be a value less than or equal to `3600`") # noqa: E501 - if client_alive_interval is not None and client_alive_interval < 0: # noqa: E501 - raise ValueError("Invalid value for `client_alive_interval`, must be a value greater than or equal to `0`") # noqa: E501 - - self._client_alive_interval = client_alive_interval - @property def host_key_algorithms(self): """Gets the host_key_algorithms of this SshSettingsSettings. # noqa: E501 @@ -448,8 +384,8 @@ def host_key_algorithms(self, host_key_algorithms): raise ValueError("Invalid value for `host_key_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if host_key_algorithms is not None and len(host_key_algorithms) < 7: raise ValueError("Invalid value for `host_key_algorithms`, length must be greater than or equal to `7`") # noqa: E501 - if host_key_algorithms is not None and not re.search(r'^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$', host_key_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `host_key_algorithms`, must be a follow pattern or equal to `/^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$/`") # noqa: E501 + if host_key_algorithms is not None and not re.search(r'^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com))*$', host_key_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `host_key_algorithms`, must be a follow pattern or equal to `/^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com))*$/`") # noqa: E501 self._host_key_algorithms = host_key_algorithms @@ -500,8 +436,8 @@ def kex_algorithms(self, kex_algorithms): raise ValueError("Invalid value for `kex_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if kex_algorithms is not None and len(kex_algorithms) < 18: raise ValueError("Invalid value for `kex_algorithms`, length must be greater than or equal to `18`") # noqa: E501 - if kex_algorithms is not None and not re.search(r'^([+]?)(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$', kex_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `kex_algorithms`, must be a follow pattern or equal to `/^([+]?)(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$/`") # noqa: E501 + if kex_algorithms is not None and not re.search(r'^(\\+?)(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$', kex_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `kex_algorithms`, must be a follow pattern or equal to `/^(\\+?)(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$/`") # noqa: E501 self._kex_algorithms = kex_algorithms @@ -608,8 +544,8 @@ def macs(self, macs): raise ValueError("Invalid value for `macs`, length must be less than or equal to `4096`") # noqa: E501 if macs is not None and len(macs) < 8: raise ValueError("Invalid value for `macs`, length must be greater than or equal to `8`") # noqa: E501 - if macs is not None and not re.search(r'^([+]?)(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh[.]com|hmac-sha1-etm@openssh[.]com|hmac-sha2-256-etm@openssh[.]com|hmac-sha2-512-etm@openssh[.]com|umac-64-etm@openssh[.]com|umac-128-etm@openssh[.]com)(,(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh[.]com|hmac-sha1-etm@openssh[.]com|hmac-sha2-256-etm@openssh[.]com|hmac-sha2-512-etm@openssh[.]com|umac-64-etm@openssh[.]com|umac-128-etm@openssh[.]com))*$', macs): # noqa: E501 - raise ValueError(r"Invalid value for `macs`, must be a follow pattern or equal to `/^([+]?)(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh[.]com|hmac-sha1-etm@openssh[.]com|hmac-sha2-256-etm@openssh[.]com|hmac-sha2-512-etm@openssh[.]com|umac-64-etm@openssh[.]com|umac-128-etm@openssh[.]com)(,(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh[.]com|hmac-sha1-etm@openssh[.]com|hmac-sha2-256-etm@openssh[.]com|hmac-sha2-512-etm@openssh[.]com|umac-64-etm@openssh[.]com|umac-128-etm@openssh[.]com))*$/`") # noqa: E501 + if macs is not None and not re.search(r'^(\\+?)(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$', macs): # noqa: E501 + raise ValueError(r"Invalid value for `macs`, must be a follow pattern or equal to `/^(\\+?)(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$/`") # noqa: E501 self._macs = macs @@ -866,8 +802,8 @@ def pubkey_accepted_key_types(self, pubkey_accepted_key_types): raise ValueError("Invalid value for `pubkey_accepted_key_types`, length must be less than or equal to `4096`") # noqa: E501 if pubkey_accepted_key_types is not None and len(pubkey_accepted_key_types) < 7: raise ValueError("Invalid value for `pubkey_accepted_key_types`, length must be greater than or equal to `7`") # noqa: E501 - if pubkey_accepted_key_types is not None and not re.search(r'^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$', pubkey_accepted_key_types): # noqa: E501 - raise ValueError(r"Invalid value for `pubkey_accepted_key_types`, must be a follow pattern or equal to `/^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$/`") # noqa: E501 + if pubkey_accepted_key_types is not None and not re.search(r'^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com))*$', pubkey_accepted_key_types): # noqa: E501 + raise ValueError(r"Invalid value for `pubkey_accepted_key_types`, must be a follow pattern or equal to `/^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com))*$/`") # noqa: E501 self._pubkey_accepted_key_types = pubkey_accepted_key_types @@ -941,6 +877,8 @@ def subsystem(self, subsystem): raise ValueError("Invalid value for `subsystem`, length must be less than or equal to `1024`") # noqa: E501 if subsystem is not None and len(subsystem) < 0: raise ValueError("Invalid value for `subsystem`, length must be greater than or equal to `0`") # noqa: E501 + if subsystem is not None and not re.search(r'b\'^[^\\\\n]*$\'', subsystem): # noqa: E501 + raise ValueError(r"Invalid value for `subsystem`, must be a follow pattern or equal to `/b'^[^\\\\n]*$'/`") # noqa: E501 self._subsystem = subsystem diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/statistics_current.py b/isilon_sdk/isilon_sdk/v9_4_0/models/statistics_current.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/statistics_current.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/statistics_current.py index d5b3799ac..1e9ddfbc2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/statistics_current.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/statistics_current.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/statistics_current_stat.py b/isilon_sdk/isilon_sdk/v9_4_0/models/statistics_current_stat.py similarity index 90% rename from isilon_sdk/isilon_sdk/v9_11_0/models/statistics_current_stat.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/statistics_current_stat.py index 190750d11..8dc1f25cf 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/statistics_current_stat.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/statistics_current_stat.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -35,7 +35,6 @@ class StatisticsCurrentStat(object): 'error': 'str', 'error_code': 'int', 'key': 'str', - 'node': 'int', 'time': 'int', 'value': 'str' } @@ -45,19 +44,17 @@ class StatisticsCurrentStat(object): 'error': 'error', 'error_code': 'error_code', 'key': 'key', - 'node': 'node', 'time': 'time', 'value': 'value' } - def __init__(self, devid=None, error=None, error_code=None, key=None, node=None, time=None, value=None): # noqa: E501 + def __init__(self, devid=None, error=None, error_code=None, key=None, time=None, value=None): # noqa: E501 """StatisticsCurrentStat - a model defined in Swagger""" # noqa: E501 self._devid = None self._error = None self._error_code = None self._key = None - self._node = None self._time = None self._value = None self.discriminator = None @@ -68,8 +65,6 @@ def __init__(self, devid=None, error=None, error_code=None, key=None, node=None, if error_code is not None: self.error_code = error_code self.key = key - if node is not None: - self.node = node self.time = time if value is not None: self.value = value @@ -170,29 +165,6 @@ def key(self, key): self._key = key - @property - def node(self): - """Gets the node of this StatisticsCurrentStat. # noqa: E501 - - The LNN of node, if requested. # noqa: E501 - - :return: The node of this StatisticsCurrentStat. # noqa: E501 - :rtype: int - """ - return self._node - - @node.setter - def node(self, node): - """Sets the node of this StatisticsCurrentStat. - - The LNN of node, if requested. # noqa: E501 - - :param node: The node of this StatisticsCurrentStat. # noqa: E501 - :type: int - """ - - self._node = node - @property def time(self): """Gets the time of this StatisticsCurrentStat. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/statistics_history.py b/isilon_sdk/isilon_sdk/v9_4_0/models/statistics_history.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/statistics_history.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/statistics_history.py index df839fbb3..9e16ede97 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/statistics_history.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/statistics_history.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/statistics_history_stat.py b/isilon_sdk/isilon_sdk/v9_4_0/models/statistics_history_stat.py similarity index 90% rename from isilon_sdk/isilon_sdk/v9_11_0/models/statistics_history_stat.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/statistics_history_stat.py index 4fd97d826..5ee21b3a9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/statistics_history_stat.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/statistics_history_stat.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -35,7 +35,6 @@ class StatisticsHistoryStat(object): 'error': 'str', 'error_code': 'int', 'key': 'str', - 'node': 'int', 'resolution': 'int', 'values': 'list[StatisticsHistoryStatValue]' } @@ -45,19 +44,17 @@ class StatisticsHistoryStat(object): 'error': 'error', 'error_code': 'error_code', 'key': 'key', - 'node': 'node', 'resolution': 'resolution', 'values': 'values' } - def __init__(self, devid=None, error=None, error_code=None, key=None, node=None, resolution=None, values=None): # noqa: E501 + def __init__(self, devid=None, error=None, error_code=None, key=None, resolution=None, values=None): # noqa: E501 """StatisticsHistoryStat - a model defined in Swagger""" # noqa: E501 self._devid = None self._error = None self._error_code = None self._key = None - self._node = None self._resolution = None self._values = None self.discriminator = None @@ -68,8 +65,6 @@ def __init__(self, devid=None, error=None, error_code=None, key=None, node=None, if error_code is not None: self.error_code = error_code self.key = key - if node is not None: - self.node = node self.resolution = resolution if values is not None: self.values = values @@ -170,29 +165,6 @@ def key(self, key): self._key = key - @property - def node(self): - """Gets the node of this StatisticsHistoryStat. # noqa: E501 - - The LNN of node, if requested. # noqa: E501 - - :return: The node of this StatisticsHistoryStat. # noqa: E501 - :rtype: int - """ - return self._node - - @node.setter - def node(self, node): - """Sets the node of this StatisticsHistoryStat. - - The LNN of node, if requested. # noqa: E501 - - :param node: The node of this StatisticsHistoryStat. # noqa: E501 - :type: int - """ - - self._node = node - @property def resolution(self): """Gets the resolution of this StatisticsHistoryStat. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/statistics_history_stat_value.py b/isilon_sdk/isilon_sdk/v9_4_0/models/statistics_history_stat_value.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/statistics_history_stat_value.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/statistics_history_stat_value.py index f36a2aa7e..20fa131b2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/statistics_history_stat_value.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/statistics_history_stat_value.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/statistics_key.py b/isilon_sdk/isilon_sdk/v9_4_0/models/statistics_key.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/statistics_key.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/statistics_key.py index 9e36a0cfc..b733d6d28 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/statistics_key.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/statistics_key.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/statistics_key_policy.py b/isilon_sdk/isilon_sdk/v9_4_0/models/statistics_key_policy.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/statistics_key_policy.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/statistics_key_policy.py index 64a7308c8..3ebda746f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/statistics_key_policy.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/statistics_key_policy.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/statistics_keys.py b/isilon_sdk/isilon_sdk/v9_4_0/models/statistics_keys.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/statistics_keys.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/statistics_keys.py index ac3ac3621..7899983de 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/statistics_keys.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/statistics_keys.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/statistics_keys_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/statistics_keys_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/statistics_keys_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/statistics_keys_extended.py index 8a1edeeb3..67fd0dd50 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/statistics_keys_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/statistics_keys_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/statistics_operation.py b/isilon_sdk/isilon_sdk/v9_4_0/models/statistics_operation.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/statistics_operation.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/statistics_operation.py index 990364743..f2b3d43a3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/statistics_operation.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/statistics_operation.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/statistics_operations.py b/isilon_sdk/isilon_sdk/v9_4_0/models/statistics_operations.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/statistics_operations.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/statistics_operations.py index 41f8f4446..edb5522d0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/statistics_operations.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/statistics_operations.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/statistics_protocol.py b/isilon_sdk/isilon_sdk/v9_4_0/models/statistics_protocol.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/statistics_protocol.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/statistics_protocol.py index 15ca42650..834e338ae 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/statistics_protocol.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/statistics_protocol.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/statistics_protocols.py b/isilon_sdk/isilon_sdk/v9_4_0/models/statistics_protocols.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/statistics_protocols.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/statistics_protocols.py index 8ef2d4a3a..40417551e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/statistics_protocols.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/statistics_protocols.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_nodepool.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_nodepool.py similarity index 69% rename from isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_nodepool.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_nodepool.py index dbb0a9ea0..63d65bc27 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_nodepool.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_nodepool.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -37,10 +37,7 @@ class StoragepoolNodepool(object): 'name': 'str', 'node_type_ids': 'list[int]', 'protection_policy': 'str', - 'sjm_enabled': 'bool', - 'tier': 'str', - 'transfer_limit_pct': 'int', - 'transfer_limit_state': 'str' + 'tier': 'str' } attribute_map = { @@ -50,13 +47,10 @@ class StoragepoolNodepool(object): 'name': 'name', 'node_type_ids': 'node_type_ids', 'protection_policy': 'protection_policy', - 'sjm_enabled': 'sjm_enabled', - 'tier': 'tier', - 'transfer_limit_pct': 'transfer_limit_pct', - 'transfer_limit_state': 'transfer_limit_state' + 'tier': 'tier' } - def __init__(self, assess=None, l3=None, lnns=None, name=None, node_type_ids=None, protection_policy=None, sjm_enabled=None, tier=None, transfer_limit_pct=None, transfer_limit_state=None): # noqa: E501 + def __init__(self, assess=None, l3=None, lnns=None, name=None, node_type_ids=None, protection_policy=None, tier=None): # noqa: E501 """StoragepoolNodepool - a model defined in Swagger""" # noqa: E501 self._assess = None @@ -65,10 +59,7 @@ def __init__(self, assess=None, l3=None, lnns=None, name=None, node_type_ids=Non self._name = None self._node_type_ids = None self._protection_policy = None - self._sjm_enabled = None self._tier = None - self._transfer_limit_pct = None - self._transfer_limit_state = None self.discriminator = None if assess is not None: @@ -83,14 +74,8 @@ def __init__(self, assess=None, l3=None, lnns=None, name=None, node_type_ids=Non self.node_type_ids = node_type_ids if protection_policy is not None: self.protection_policy = protection_policy - if sjm_enabled is not None: - self.sjm_enabled = sjm_enabled if tier is not None: self.tier = tier - if transfer_limit_pct is not None: - self.transfer_limit_pct = transfer_limit_pct - if transfer_limit_state is not None: - self.transfer_limit_state = transfer_limit_state @property def assess(self): @@ -238,29 +223,6 @@ def protection_policy(self, protection_policy): self._protection_policy = protection_policy - @property - def sjm_enabled(self): - """Gets the sjm_enabled of this StoragepoolNodepool. # noqa: E501 - - SJM enabled on nodepool # noqa: E501 - - :return: The sjm_enabled of this StoragepoolNodepool. # noqa: E501 - :rtype: bool - """ - return self._sjm_enabled - - @sjm_enabled.setter - def sjm_enabled(self, sjm_enabled): - """Sets the sjm_enabled of this StoragepoolNodepool. - - SJM enabled on nodepool # noqa: E501 - - :param sjm_enabled: The sjm_enabled of this StoragepoolNodepool. # noqa: E501 - :type: bool - """ - - self._sjm_enabled = sjm_enabled - @property def tier(self): """Gets the tier of this StoragepoolNodepool. # noqa: E501 @@ -284,62 +246,6 @@ def tier(self, tier): self._tier = tier - @property - def transfer_limit_pct(self): - """Gets the transfer_limit_pct of this StoragepoolNodepool. # noqa: E501 - - Stop moving files to this nodepool when this limit is met # noqa: E501 - - :return: The transfer_limit_pct of this StoragepoolNodepool. # noqa: E501 - :rtype: int - """ - return self._transfer_limit_pct - - @transfer_limit_pct.setter - def transfer_limit_pct(self, transfer_limit_pct): - """Sets the transfer_limit_pct of this StoragepoolNodepool. - - Stop moving files to this nodepool when this limit is met # noqa: E501 - - :param transfer_limit_pct: The transfer_limit_pct of this StoragepoolNodepool. # noqa: E501 - :type: int - """ - if transfer_limit_pct is not None and transfer_limit_pct > 100: # noqa: E501 - raise ValueError("Invalid value for `transfer_limit_pct`, must be a value less than or equal to `100`") # noqa: E501 - if transfer_limit_pct is not None and transfer_limit_pct < 0: # noqa: E501 - raise ValueError("Invalid value for `transfer_limit_pct`, must be a value greater than or equal to `0`") # noqa: E501 - - self._transfer_limit_pct = transfer_limit_pct - - @property - def transfer_limit_state(self): - """Gets the transfer_limit_state of this StoragepoolNodepool. # noqa: E501 - - How the transfer limit value is being applied # noqa: E501 - - :return: The transfer_limit_state of this StoragepoolNodepool. # noqa: E501 - :rtype: str - """ - return self._transfer_limit_state - - @transfer_limit_state.setter - def transfer_limit_state(self, transfer_limit_state): - """Sets the transfer_limit_state of this StoragepoolNodepool. - - How the transfer limit value is being applied # noqa: E501 - - :param transfer_limit_state: The transfer_limit_state of this StoragepoolNodepool. # noqa: E501 - :type: str - """ - allowed_values = ["disabled", "default"] # noqa: E501 - if transfer_limit_state not in allowed_values: - raise ValueError( - "Invalid value for `transfer_limit_state` ({0}), must be one of {1}" # noqa: E501 - .format(transfer_limit_state, allowed_values) - ) - - self._transfer_limit_state = transfer_limit_state - def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_nodepool_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_nodepool_create_params.py similarity index 65% rename from isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_nodepool_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_nodepool_create_params.py index ebce25271..2993aa148 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_nodepool_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_nodepool_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,54 +31,72 @@ class StoragepoolNodepoolCreateParams(object): and the value is json key in definition. """ swagger_types = { + 'assess': 'bool', 'l3': 'bool', 'lnns': 'list[int]', 'name': 'str', + 'node_type_ids': 'list[int]', 'protection_policy': 'str', - 'sjm_enabled': 'bool', - 'tier': 'str', - 'transfer_limit_pct': 'int', - 'transfer_limit_state': 'str' + 'tier': 'str' } attribute_map = { + 'assess': 'assess', 'l3': 'l3', 'lnns': 'lnns', 'name': 'name', + 'node_type_ids': 'node_type_ids', 'protection_policy': 'protection_policy', - 'sjm_enabled': 'sjm_enabled', - 'tier': 'tier', - 'transfer_limit_pct': 'transfer_limit_pct', - 'transfer_limit_state': 'transfer_limit_state' + 'tier': 'tier' } - def __init__(self, l3=None, lnns=None, name=None, protection_policy=None, sjm_enabled=None, tier=None, transfer_limit_pct=None, transfer_limit_state=None): # noqa: E501 + def __init__(self, assess=None, l3=None, lnns=None, name=None, node_type_ids=None, protection_policy=None, tier=None): # noqa: E501 """StoragepoolNodepoolCreateParams - a model defined in Swagger""" # noqa: E501 + self._assess = None self._l3 = None self._lnns = None self._name = None + self._node_type_ids = None self._protection_policy = None - self._sjm_enabled = None self._tier = None - self._transfer_limit_pct = None - self._transfer_limit_state = None self.discriminator = None + if assess is not None: + self.assess = assess if l3 is not None: self.l3 = l3 self.lnns = lnns self.name = name + if node_type_ids is not None: + self.node_type_ids = node_type_ids if protection_policy is not None: self.protection_policy = protection_policy - if sjm_enabled is not None: - self.sjm_enabled = sjm_enabled if tier is not None: self.tier = tier - if transfer_limit_pct is not None: - self.transfer_limit_pct = transfer_limit_pct - if transfer_limit_state is not None: - self.transfer_limit_state = transfer_limit_state + + @property + def assess(self): + """Gets the assess of this StoragepoolNodepoolCreateParams. # noqa: E501 + + Test that the action is possible # noqa: E501 + + :return: The assess of this StoragepoolNodepoolCreateParams. # noqa: E501 + :rtype: bool + """ + return self._assess + + @assess.setter + def assess(self, assess): + """Sets the assess of this StoragepoolNodepoolCreateParams. + + Test that the action is possible # noqa: E501 + + :param assess: The assess of this StoragepoolNodepoolCreateParams. # noqa: E501 + :type: bool + """ + + self._assess = assess @property def l3(self): @@ -157,6 +175,29 @@ def name(self, name): self._name = name + @property + def node_type_ids(self): + """Gets the node_type_ids of this StoragepoolNodepoolCreateParams. # noqa: E501 + + The node types that are part of this pool. # noqa: E501 + + :return: The node_type_ids of this StoragepoolNodepoolCreateParams. # noqa: E501 + :rtype: list[int] + """ + return self._node_type_ids + + @node_type_ids.setter + def node_type_ids(self, node_type_ids): + """Sets the node_type_ids of this StoragepoolNodepoolCreateParams. + + The node types that are part of this pool. # noqa: E501 + + :param node_type_ids: The node_type_ids of this StoragepoolNodepoolCreateParams. # noqa: E501 + :type: list[int] + """ + + self._node_type_ids = node_type_ids + @property def protection_policy(self): """Gets the protection_policy of this StoragepoolNodepoolCreateParams. # noqa: E501 @@ -184,29 +225,6 @@ def protection_policy(self, protection_policy): self._protection_policy = protection_policy - @property - def sjm_enabled(self): - """Gets the sjm_enabled of this StoragepoolNodepoolCreateParams. # noqa: E501 - - SJM enabled on nodepool # noqa: E501 - - :return: The sjm_enabled of this StoragepoolNodepoolCreateParams. # noqa: E501 - :rtype: bool - """ - return self._sjm_enabled - - @sjm_enabled.setter - def sjm_enabled(self, sjm_enabled): - """Sets the sjm_enabled of this StoragepoolNodepoolCreateParams. - - SJM enabled on nodepool # noqa: E501 - - :param sjm_enabled: The sjm_enabled of this StoragepoolNodepoolCreateParams. # noqa: E501 - :type: bool - """ - - self._sjm_enabled = sjm_enabled - @property def tier(self): """Gets the tier of this StoragepoolNodepoolCreateParams. # noqa: E501 @@ -230,62 +248,6 @@ def tier(self, tier): self._tier = tier - @property - def transfer_limit_pct(self): - """Gets the transfer_limit_pct of this StoragepoolNodepoolCreateParams. # noqa: E501 - - Stop moving files to this nodepool when this limit is met # noqa: E501 - - :return: The transfer_limit_pct of this StoragepoolNodepoolCreateParams. # noqa: E501 - :rtype: int - """ - return self._transfer_limit_pct - - @transfer_limit_pct.setter - def transfer_limit_pct(self, transfer_limit_pct): - """Sets the transfer_limit_pct of this StoragepoolNodepoolCreateParams. - - Stop moving files to this nodepool when this limit is met # noqa: E501 - - :param transfer_limit_pct: The transfer_limit_pct of this StoragepoolNodepoolCreateParams. # noqa: E501 - :type: int - """ - if transfer_limit_pct is not None and transfer_limit_pct > 100: # noqa: E501 - raise ValueError("Invalid value for `transfer_limit_pct`, must be a value less than or equal to `100`") # noqa: E501 - if transfer_limit_pct is not None and transfer_limit_pct < 0: # noqa: E501 - raise ValueError("Invalid value for `transfer_limit_pct`, must be a value greater than or equal to `0`") # noqa: E501 - - self._transfer_limit_pct = transfer_limit_pct - - @property - def transfer_limit_state(self): - """Gets the transfer_limit_state of this StoragepoolNodepoolCreateParams. # noqa: E501 - - How the transfer limit value is being applied # noqa: E501 - - :return: The transfer_limit_state of this StoragepoolNodepoolCreateParams. # noqa: E501 - :rtype: str - """ - return self._transfer_limit_state - - @transfer_limit_state.setter - def transfer_limit_state(self, transfer_limit_state): - """Sets the transfer_limit_state of this StoragepoolNodepoolCreateParams. - - How the transfer limit value is being applied # noqa: E501 - - :param transfer_limit_state: The transfer_limit_state of this StoragepoolNodepoolCreateParams. # noqa: E501 - :type: str - """ - allowed_values = ["disabled", "default"] # noqa: E501 - if transfer_limit_state not in allowed_values: - raise ValueError( - "Invalid value for `transfer_limit_state` ({0}), must be one of {1}" # noqa: E501 - .format(transfer_limit_state, allowed_values) - ) - - self._transfer_limit_state = transfer_limit_state - def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_nodepool_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_nodepool_extended.py similarity index 79% rename from isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_nodepool_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_nodepool_extended.py index e107e5818..71e421a1d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_nodepool_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_nodepool_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -42,11 +42,8 @@ class StoragepoolNodepoolExtended(object): 'name': 'str', 'node_type_ids': 'list[int]', 'protection_policy': 'str', - 'sjm_enabled': 'bool', 'tier': 'str', - 'transfer_limit_pct': 'int', - 'transfer_limit_state': 'str', - 'usage': 'StoragepoolStoragepoolUsage' + 'usage': 'StoragepoolTierUsage' } attribute_map = { @@ -61,14 +58,11 @@ class StoragepoolNodepoolExtended(object): 'name': 'name', 'node_type_ids': 'node_type_ids', 'protection_policy': 'protection_policy', - 'sjm_enabled': 'sjm_enabled', 'tier': 'tier', - 'transfer_limit_pct': 'transfer_limit_pct', - 'transfer_limit_state': 'transfer_limit_state', 'usage': 'usage' } - def __init__(self, can_disable_l3=None, can_enable_l3=None, health_flags=None, id=None, l3=None, l3_status=None, lnns=None, manual=None, name=None, node_type_ids=None, protection_policy=None, sjm_enabled=None, tier=None, transfer_limit_pct=None, transfer_limit_state=None, usage=None): # noqa: E501 + def __init__(self, can_disable_l3=None, can_enable_l3=None, health_flags=None, id=None, l3=None, l3_status=None, lnns=None, manual=None, name=None, node_type_ids=None, protection_policy=None, tier=None, usage=None): # noqa: E501 """StoragepoolNodepoolExtended - a model defined in Swagger""" # noqa: E501 self._can_disable_l3 = None @@ -82,10 +76,7 @@ def __init__(self, can_disable_l3=None, can_enable_l3=None, health_flags=None, i self._name = None self._node_type_ids = None self._protection_policy = None - self._sjm_enabled = None self._tier = None - self._transfer_limit_pct = None - self._transfer_limit_state = None self._usage = None self.discriminator = None @@ -102,13 +93,8 @@ def __init__(self, can_disable_l3=None, can_enable_l3=None, health_flags=None, i self.node_type_ids = node_type_ids if protection_policy is not None: self.protection_policy = protection_policy - self.sjm_enabled = sjm_enabled if tier is not None: self.tier = tier - if transfer_limit_pct is not None: - self.transfer_limit_pct = transfer_limit_pct - if transfer_limit_state is not None: - self.transfer_limit_state = transfer_limit_state if usage is not None: self.usage = usage @@ -408,31 +394,6 @@ def protection_policy(self, protection_policy): self._protection_policy = protection_policy - @property - def sjm_enabled(self): - """Gets the sjm_enabled of this StoragepoolNodepoolExtended. # noqa: E501 - - Indicates if SJM is currently enabled on this node pool # noqa: E501 - - :return: The sjm_enabled of this StoragepoolNodepoolExtended. # noqa: E501 - :rtype: bool - """ - return self._sjm_enabled - - @sjm_enabled.setter - def sjm_enabled(self, sjm_enabled): - """Sets the sjm_enabled of this StoragepoolNodepoolExtended. - - Indicates if SJM is currently enabled on this node pool # noqa: E501 - - :param sjm_enabled: The sjm_enabled of this StoragepoolNodepoolExtended. # noqa: E501 - :type: bool - """ - if sjm_enabled is None: - raise ValueError("Invalid value for `sjm_enabled`, must not be `None`") # noqa: E501 - - self._sjm_enabled = sjm_enabled - @property def tier(self): """Gets the tier of this StoragepoolNodepoolExtended. # noqa: E501 @@ -456,62 +417,6 @@ def tier(self, tier): self._tier = tier - @property - def transfer_limit_pct(self): - """Gets the transfer_limit_pct of this StoragepoolNodepoolExtended. # noqa: E501 - - Stop moving files to this nodepool when this limit is met # noqa: E501 - - :return: The transfer_limit_pct of this StoragepoolNodepoolExtended. # noqa: E501 - :rtype: int - """ - return self._transfer_limit_pct - - @transfer_limit_pct.setter - def transfer_limit_pct(self, transfer_limit_pct): - """Sets the transfer_limit_pct of this StoragepoolNodepoolExtended. - - Stop moving files to this nodepool when this limit is met # noqa: E501 - - :param transfer_limit_pct: The transfer_limit_pct of this StoragepoolNodepoolExtended. # noqa: E501 - :type: int - """ - if transfer_limit_pct is not None and transfer_limit_pct > 100: # noqa: E501 - raise ValueError("Invalid value for `transfer_limit_pct`, must be a value less than or equal to `100`") # noqa: E501 - if transfer_limit_pct is not None and transfer_limit_pct < 0: # noqa: E501 - raise ValueError("Invalid value for `transfer_limit_pct`, must be a value greater than or equal to `0`") # noqa: E501 - - self._transfer_limit_pct = transfer_limit_pct - - @property - def transfer_limit_state(self): - """Gets the transfer_limit_state of this StoragepoolNodepoolExtended. # noqa: E501 - - How the transfer limit value is being applied # noqa: E501 - - :return: The transfer_limit_state of this StoragepoolNodepoolExtended. # noqa: E501 - :rtype: str - """ - return self._transfer_limit_state - - @transfer_limit_state.setter - def transfer_limit_state(self, transfer_limit_state): - """Sets the transfer_limit_state of this StoragepoolNodepoolExtended. - - How the transfer limit value is being applied # noqa: E501 - - :param transfer_limit_state: The transfer_limit_state of this StoragepoolNodepoolExtended. # noqa: E501 - :type: str - """ - allowed_values = ["enabled", "disabled", "default"] # noqa: E501 - if transfer_limit_state not in allowed_values: - raise ValueError( - "Invalid value for `transfer_limit_state` ({0}), must be one of {1}" # noqa: E501 - .format(transfer_limit_state, allowed_values) - ) - - self._transfer_limit_state = transfer_limit_state - @property def usage(self): """Gets the usage of this StoragepoolNodepoolExtended. # noqa: E501 @@ -519,7 +424,7 @@ def usage(self): Total pool usage. # noqa: E501 :return: The usage of this StoragepoolNodepoolExtended. # noqa: E501 - :rtype: StoragepoolStoragepoolUsage + :rtype: StoragepoolTierUsage """ return self._usage @@ -530,7 +435,7 @@ def usage(self, usage): Total pool usage. # noqa: E501 :param usage: The usage of this StoragepoolNodepoolExtended. # noqa: E501 - :type: StoragepoolStoragepoolUsage + :type: StoragepoolTierUsage """ self._usage = usage diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_nodepools.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_nodepools.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_nodepools.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_nodepools.py index 2579b599a..a89448afa 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_nodepools.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_nodepools.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_nodepools_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_nodepools_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_nodepools_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_nodepools_extended.py index 2bd6124a4..29564fc9f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_nodepools_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_nodepools_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_nodetype.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_nodetype.py similarity index 85% rename from isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_nodetype.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_nodetype.py index 75207d23a..0ee75dae2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_nodetype.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_nodetype.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -34,33 +34,29 @@ class StoragepoolNodetype(object): 'id': 'int', 'manual': 'bool', 'nodes': 'list[int]', - 'product_name': 'str', - 'sjm_capable': 'bool' + 'product_name': 'str' } attribute_map = { 'id': 'id', 'manual': 'manual', 'nodes': 'nodes', - 'product_name': 'product_name', - 'sjm_capable': 'sjm_capable' + 'product_name': 'product_name' } - def __init__(self, id=None, manual=None, nodes=None, product_name=None, sjm_capable=None): # noqa: E501 + def __init__(self, id=None, manual=None, nodes=None, product_name=None): # noqa: E501 """StoragepoolNodetype - a model defined in Swagger""" # noqa: E501 self._id = None self._manual = None self._nodes = None self._product_name = None - self._sjm_capable = None self.discriminator = None self.id = id self.manual = manual self.nodes = nodes self.product_name = product_name - self.sjm_capable = sjm_capable @property def id(self): @@ -170,31 +166,6 @@ def product_name(self, product_name): self._product_name = product_name - @property - def sjm_capable(self): - """Gets the sjm_capable of this StoragepoolNodetype. # noqa: E501 - - Whether SJM is supported by this nodetype # noqa: E501 - - :return: The sjm_capable of this StoragepoolNodetype. # noqa: E501 - :rtype: bool - """ - return self._sjm_capable - - @sjm_capable.setter - def sjm_capable(self, sjm_capable): - """Sets the sjm_capable of this StoragepoolNodetype. - - Whether SJM is supported by this nodetype # noqa: E501 - - :param sjm_capable: The sjm_capable of this StoragepoolNodetype. # noqa: E501 - :type: bool - """ - if sjm_capable is None: - raise ValueError("Invalid value for `sjm_capable`, must not be `None`") # noqa: E501 - - self._sjm_capable = sjm_capable - def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_nodetypes.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_nodetypes.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_nodetypes.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_nodetypes.py index a305b713e..285273ece 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_nodetypes.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_nodetypes.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_nodetypes_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_nodetypes_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_nodetypes_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_nodetypes_extended.py index d1762b0b5..d5d88077b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_nodetypes_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_nodetypes_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_settings.py index 0bfd941cd..16f114848 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_settings_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_settings_extended.py similarity index 85% rename from isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_settings_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_settings_extended.py index a80020d42..b1866517f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_settings_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -33,8 +33,6 @@ class StoragepoolSettingsExtended(object): swagger_types = { 'automatically_manage_io_optimization': 'str', 'automatically_manage_protection': 'str', - 'default_transfer_limit_pct': 'int', - 'default_transfer_limit_state': 'str', 'global_namespace_acceleration_enabled': 'bool', 'protect_directories_one_level_higher': 'bool', 'spillover_enabled': 'bool', @@ -52,8 +50,6 @@ class StoragepoolSettingsExtended(object): attribute_map = { 'automatically_manage_io_optimization': 'automatically_manage_io_optimization', 'automatically_manage_protection': 'automatically_manage_protection', - 'default_transfer_limit_pct': 'default_transfer_limit_pct', - 'default_transfer_limit_state': 'default_transfer_limit_state', 'global_namespace_acceleration_enabled': 'global_namespace_acceleration_enabled', 'protect_directories_one_level_higher': 'protect_directories_one_level_higher', 'spillover_enabled': 'spillover_enabled', @@ -68,13 +64,11 @@ class StoragepoolSettingsExtended(object): 'virtual_hot_spare_limit_percent': 'virtual_hot_spare_limit_percent' } - def __init__(self, automatically_manage_io_optimization=None, automatically_manage_protection=None, default_transfer_limit_pct=None, default_transfer_limit_state=None, global_namespace_acceleration_enabled=None, protect_directories_one_level_higher=None, spillover_enabled=None, spillover_target=None, ssd_l3_cache_default_enabled=None, ssd_qab_mirrors=None, ssd_system_btree_mirrors=None, ssd_system_delta_mirrors=None, virtual_hot_spare_deny_writes=None, virtual_hot_spare_hide_spare=None, virtual_hot_spare_limit_drives=None, virtual_hot_spare_limit_percent=None): # noqa: E501 + def __init__(self, automatically_manage_io_optimization=None, automatically_manage_protection=None, global_namespace_acceleration_enabled=None, protect_directories_one_level_higher=None, spillover_enabled=None, spillover_target=None, ssd_l3_cache_default_enabled=None, ssd_qab_mirrors=None, ssd_system_btree_mirrors=None, ssd_system_delta_mirrors=None, virtual_hot_spare_deny_writes=None, virtual_hot_spare_hide_spare=None, virtual_hot_spare_limit_drives=None, virtual_hot_spare_limit_percent=None): # noqa: E501 """StoragepoolSettingsExtended - a model defined in Swagger""" # noqa: E501 self._automatically_manage_io_optimization = None self._automatically_manage_protection = None - self._default_transfer_limit_pct = None - self._default_transfer_limit_state = None self._global_namespace_acceleration_enabled = None self._protect_directories_one_level_higher = None self._spillover_enabled = None @@ -93,10 +87,6 @@ def __init__(self, automatically_manage_io_optimization=None, automatically_mana self.automatically_manage_io_optimization = automatically_manage_io_optimization if automatically_manage_protection is not None: self.automatically_manage_protection = automatically_manage_protection - if default_transfer_limit_pct is not None: - self.default_transfer_limit_pct = default_transfer_limit_pct - if default_transfer_limit_state is not None: - self.default_transfer_limit_state = default_transfer_limit_state if global_namespace_acceleration_enabled is not None: self.global_namespace_acceleration_enabled = global_namespace_acceleration_enabled if protect_directories_one_level_higher is not None: @@ -180,62 +170,6 @@ def automatically_manage_protection(self, automatically_manage_protection): self._automatically_manage_protection = automatically_manage_protection - @property - def default_transfer_limit_pct(self): - """Gets the default_transfer_limit_pct of this StoragepoolSettingsExtended. # noqa: E501 - - Applies to all storagepools that fall back on the default transfer limit. Stop moving files to this pool when this limit is met # noqa: E501 - - :return: The default_transfer_limit_pct of this StoragepoolSettingsExtended. # noqa: E501 - :rtype: int - """ - return self._default_transfer_limit_pct - - @default_transfer_limit_pct.setter - def default_transfer_limit_pct(self, default_transfer_limit_pct): - """Sets the default_transfer_limit_pct of this StoragepoolSettingsExtended. - - Applies to all storagepools that fall back on the default transfer limit. Stop moving files to this pool when this limit is met # noqa: E501 - - :param default_transfer_limit_pct: The default_transfer_limit_pct of this StoragepoolSettingsExtended. # noqa: E501 - :type: int - """ - if default_transfer_limit_pct is not None and default_transfer_limit_pct > 100: # noqa: E501 - raise ValueError("Invalid value for `default_transfer_limit_pct`, must be a value less than or equal to `100`") # noqa: E501 - if default_transfer_limit_pct is not None and default_transfer_limit_pct < 0: # noqa: E501 - raise ValueError("Invalid value for `default_transfer_limit_pct`, must be a value greater than or equal to `0`") # noqa: E501 - - self._default_transfer_limit_pct = default_transfer_limit_pct - - @property - def default_transfer_limit_state(self): - """Gets the default_transfer_limit_state of this StoragepoolSettingsExtended. # noqa: E501 - - How the default transfer limit value is applied # noqa: E501 - - :return: The default_transfer_limit_state of this StoragepoolSettingsExtended. # noqa: E501 - :rtype: str - """ - return self._default_transfer_limit_state - - @default_transfer_limit_state.setter - def default_transfer_limit_state(self, default_transfer_limit_state): - """Sets the default_transfer_limit_state of this StoragepoolSettingsExtended. - - How the default transfer limit value is applied # noqa: E501 - - :param default_transfer_limit_state: The default_transfer_limit_state of this StoragepoolSettingsExtended. # noqa: E501 - :type: str - """ - allowed_values = ["disabled"] # noqa: E501 - if default_transfer_limit_state not in allowed_values: - raise ValueError( - "Invalid value for `default_transfer_limit_state` ({0}), must be one of {1}" # noqa: E501 - .format(default_transfer_limit_state, allowed_values) - ) - - self._default_transfer_limit_state = default_transfer_limit_state - @property def global_namespace_acceleration_enabled(self): """Gets the global_namespace_acceleration_enabled of this StoragepoolSettingsExtended. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_settings_settings.py similarity index 86% rename from isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_settings_settings.py index b8b7d5789..5dfd4e536 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -33,8 +33,6 @@ class StoragepoolSettingsSettings(object): swagger_types = { 'automatically_manage_io_optimization': 'str', 'automatically_manage_protection': 'str', - 'default_transfer_limit_pct': 'int', - 'default_transfer_limit_state': 'str', 'global_namespace_acceleration_enabled': 'bool', 'global_namespace_acceleration_state': 'str', 'protect_directories_one_level_higher': 'bool', @@ -53,8 +51,6 @@ class StoragepoolSettingsSettings(object): attribute_map = { 'automatically_manage_io_optimization': 'automatically_manage_io_optimization', 'automatically_manage_protection': 'automatically_manage_protection', - 'default_transfer_limit_pct': 'default_transfer_limit_pct', - 'default_transfer_limit_state': 'default_transfer_limit_state', 'global_namespace_acceleration_enabled': 'global_namespace_acceleration_enabled', 'global_namespace_acceleration_state': 'global_namespace_acceleration_state', 'protect_directories_one_level_higher': 'protect_directories_one_level_higher', @@ -70,13 +66,11 @@ class StoragepoolSettingsSettings(object): 'virtual_hot_spare_limit_percent': 'virtual_hot_spare_limit_percent' } - def __init__(self, automatically_manage_io_optimization=None, automatically_manage_protection=None, default_transfer_limit_pct=None, default_transfer_limit_state=None, global_namespace_acceleration_enabled=None, global_namespace_acceleration_state=None, protect_directories_one_level_higher=None, spillover_enabled=None, spillover_target=None, ssd_l3_cache_default_enabled=None, ssd_qab_mirrors=None, ssd_system_btree_mirrors=None, ssd_system_delta_mirrors=None, virtual_hot_spare_deny_writes=None, virtual_hot_spare_hide_spare=None, virtual_hot_spare_limit_drives=None, virtual_hot_spare_limit_percent=None): # noqa: E501 + def __init__(self, automatically_manage_io_optimization=None, automatically_manage_protection=None, global_namespace_acceleration_enabled=None, global_namespace_acceleration_state=None, protect_directories_one_level_higher=None, spillover_enabled=None, spillover_target=None, ssd_l3_cache_default_enabled=None, ssd_qab_mirrors=None, ssd_system_btree_mirrors=None, ssd_system_delta_mirrors=None, virtual_hot_spare_deny_writes=None, virtual_hot_spare_hide_spare=None, virtual_hot_spare_limit_drives=None, virtual_hot_spare_limit_percent=None): # noqa: E501 """StoragepoolSettingsSettings - a model defined in Swagger""" # noqa: E501 self._automatically_manage_io_optimization = None self._automatically_manage_protection = None - self._default_transfer_limit_pct = None - self._default_transfer_limit_state = None self._global_namespace_acceleration_enabled = None self._global_namespace_acceleration_state = None self._protect_directories_one_level_higher = None @@ -94,10 +88,6 @@ def __init__(self, automatically_manage_io_optimization=None, automatically_mana self.automatically_manage_io_optimization = automatically_manage_io_optimization self.automatically_manage_protection = automatically_manage_protection - if default_transfer_limit_pct is not None: - self.default_transfer_limit_pct = default_transfer_limit_pct - if default_transfer_limit_state is not None: - self.default_transfer_limit_state = default_transfer_limit_state self.global_namespace_acceleration_enabled = global_namespace_acceleration_enabled self.global_namespace_acceleration_state = global_namespace_acceleration_state self.protect_directories_one_level_higher = protect_directories_one_level_higher @@ -174,62 +164,6 @@ def automatically_manage_protection(self, automatically_manage_protection): self._automatically_manage_protection = automatically_manage_protection - @property - def default_transfer_limit_pct(self): - """Gets the default_transfer_limit_pct of this StoragepoolSettingsSettings. # noqa: E501 - - Applies to all storagepools that fall back on the default transfer limit. Stop moving files to this pool when this limit is met # noqa: E501 - - :return: The default_transfer_limit_pct of this StoragepoolSettingsSettings. # noqa: E501 - :rtype: int - """ - return self._default_transfer_limit_pct - - @default_transfer_limit_pct.setter - def default_transfer_limit_pct(self, default_transfer_limit_pct): - """Sets the default_transfer_limit_pct of this StoragepoolSettingsSettings. - - Applies to all storagepools that fall back on the default transfer limit. Stop moving files to this pool when this limit is met # noqa: E501 - - :param default_transfer_limit_pct: The default_transfer_limit_pct of this StoragepoolSettingsSettings. # noqa: E501 - :type: int - """ - if default_transfer_limit_pct is not None and default_transfer_limit_pct > 100: # noqa: E501 - raise ValueError("Invalid value for `default_transfer_limit_pct`, must be a value less than or equal to `100`") # noqa: E501 - if default_transfer_limit_pct is not None and default_transfer_limit_pct < 0: # noqa: E501 - raise ValueError("Invalid value for `default_transfer_limit_pct`, must be a value greater than or equal to `0`") # noqa: E501 - - self._default_transfer_limit_pct = default_transfer_limit_pct - - @property - def default_transfer_limit_state(self): - """Gets the default_transfer_limit_state of this StoragepoolSettingsSettings. # noqa: E501 - - How the default transfer limit value is applied # noqa: E501 - - :return: The default_transfer_limit_state of this StoragepoolSettingsSettings. # noqa: E501 - :rtype: str - """ - return self._default_transfer_limit_state - - @default_transfer_limit_state.setter - def default_transfer_limit_state(self, default_transfer_limit_state): - """Sets the default_transfer_limit_state of this StoragepoolSettingsSettings. - - How the default transfer limit value is applied # noqa: E501 - - :param default_transfer_limit_state: The default_transfer_limit_state of this StoragepoolSettingsSettings. # noqa: E501 - :type: str - """ - allowed_values = ["disabled"] # noqa: E501 - if default_transfer_limit_state not in allowed_values: - raise ValueError( - "Invalid value for `default_transfer_limit_state` ({0}), must be one of {1}" # noqa: E501 - .format(default_transfer_limit_state, allowed_values) - ) - - self._default_transfer_limit_state = default_transfer_limit_state - @property def global_namespace_acceleration_enabled(self): """Gets the global_namespace_acceleration_enabled of this StoragepoolSettingsSettings. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_settings_settings_spillover_target.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_settings_settings_spillover_target.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_settings_settings_spillover_target.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_settings_settings_spillover_target.py index 4fad7e793..5431dbe7d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_settings_settings_spillover_target.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_settings_settings_spillover_target.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_settings_spillover_target.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_settings_spillover_target.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_settings_spillover_target.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_settings_spillover_target.py index 3c9b52d1d..a474ab7d0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_settings_spillover_target.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_settings_spillover_target.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_status.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_status.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_status.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_status.py index 40c2c0de1..6d8eb83e9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_status.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_status.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_status_unhealthy_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_status_unhealthy_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_status_unhealthy_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_status_unhealthy_item.py index afb4b60bf..06a2e917b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_status_unhealthy_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_status_unhealthy_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_status_unhealthy_item_affected_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_status_unhealthy_item_affected_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_status_unhealthy_item_affected_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_status_unhealthy_item_affected_item.py index fc194a3f5..b0a06c435 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_status_unhealthy_item_affected_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_status_unhealthy_item_affected_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_status_unhealthy_item_affected_item_device.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_status_unhealthy_item_affected_item_device.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_status_unhealthy_item_affected_item_device.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_status_unhealthy_item_affected_item_device.py index aadfc1d20..3357200ae 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_status_unhealthy_item_affected_item_device.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_status_unhealthy_item_affected_item_device.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_status_unhealthy_item_diskpool.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_status_unhealthy_item_diskpool.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_status_unhealthy_item_diskpool.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_status_unhealthy_item_diskpool.py index 57e8de7d8..1487746e1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_status_unhealthy_item_diskpool.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_status_unhealthy_item_diskpool.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_storagepool.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_storagepool.py similarity index 84% rename from isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_storagepool.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_storagepool.py index 5c72480c5..0f343d564 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_storagepool.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_storagepool.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -43,10 +43,8 @@ class StoragepoolStoragepool(object): 'name': 'str', 'node_type_ids': 'list[int]', 'protection_policy': 'str', - 'transfer_limit_pct': 'int', - 'transfer_limit_state': 'str', 'type': 'str', - 'usage': 'StoragepoolStoragepoolUsage' + 'usage': 'StoragepoolTierUsage' } attribute_map = { @@ -62,13 +60,11 @@ class StoragepoolStoragepool(object): 'name': 'name', 'node_type_ids': 'node_type_ids', 'protection_policy': 'protection_policy', - 'transfer_limit_pct': 'transfer_limit_pct', - 'transfer_limit_state': 'transfer_limit_state', 'type': 'type', 'usage': 'usage' } - def __init__(self, can_disable_l3=None, can_enable_l3=None, children=None, health_flags=None, id=None, l3=None, l3_status=None, lnns=None, manual=None, name=None, node_type_ids=None, protection_policy=None, transfer_limit_pct=None, transfer_limit_state=None, type=None, usage=None): # noqa: E501 + def __init__(self, can_disable_l3=None, can_enable_l3=None, children=None, health_flags=None, id=None, l3=None, l3_status=None, lnns=None, manual=None, name=None, node_type_ids=None, protection_policy=None, type=None, usage=None): # noqa: E501 """StoragepoolStoragepool - a model defined in Swagger""" # noqa: E501 self._can_disable_l3 = None @@ -83,8 +79,6 @@ def __init__(self, can_disable_l3=None, can_enable_l3=None, children=None, healt self._name = None self._node_type_ids = None self._protection_policy = None - self._transfer_limit_pct = None - self._transfer_limit_state = None self._type = None self._usage = None self.discriminator = None @@ -109,10 +103,6 @@ def __init__(self, can_disable_l3=None, can_enable_l3=None, children=None, healt self.node_type_ids = node_type_ids if protection_policy is not None: self.protection_policy = protection_policy - if transfer_limit_pct is not None: - self.transfer_limit_pct = transfer_limit_pct - if transfer_limit_state is not None: - self.transfer_limit_state = transfer_limit_state self.type = type if usage is not None: self.usage = usage @@ -426,62 +416,6 @@ def protection_policy(self, protection_policy): self._protection_policy = protection_policy - @property - def transfer_limit_pct(self): - """Gets the transfer_limit_pct of this StoragepoolStoragepool. # noqa: E501 - - Stop moving files to this pool when this limit is met # noqa: E501 - - :return: The transfer_limit_pct of this StoragepoolStoragepool. # noqa: E501 - :rtype: int - """ - return self._transfer_limit_pct - - @transfer_limit_pct.setter - def transfer_limit_pct(self, transfer_limit_pct): - """Sets the transfer_limit_pct of this StoragepoolStoragepool. - - Stop moving files to this pool when this limit is met # noqa: E501 - - :param transfer_limit_pct: The transfer_limit_pct of this StoragepoolStoragepool. # noqa: E501 - :type: int - """ - if transfer_limit_pct is not None and transfer_limit_pct > 100: # noqa: E501 - raise ValueError("Invalid value for `transfer_limit_pct`, must be a value less than or equal to `100`") # noqa: E501 - if transfer_limit_pct is not None and transfer_limit_pct < 0: # noqa: E501 - raise ValueError("Invalid value for `transfer_limit_pct`, must be a value greater than or equal to `0`") # noqa: E501 - - self._transfer_limit_pct = transfer_limit_pct - - @property - def transfer_limit_state(self): - """Gets the transfer_limit_state of this StoragepoolStoragepool. # noqa: E501 - - How the transfer limit value is being applied # noqa: E501 - - :return: The transfer_limit_state of this StoragepoolStoragepool. # noqa: E501 - :rtype: str - """ - return self._transfer_limit_state - - @transfer_limit_state.setter - def transfer_limit_state(self, transfer_limit_state): - """Sets the transfer_limit_state of this StoragepoolStoragepool. - - How the transfer limit value is being applied # noqa: E501 - - :param transfer_limit_state: The transfer_limit_state of this StoragepoolStoragepool. # noqa: E501 - :type: str - """ - allowed_values = ["enabled", "disabled", "default"] # noqa: E501 - if transfer_limit_state not in allowed_values: - raise ValueError( - "Invalid value for `transfer_limit_state` ({0}), must be one of {1}" # noqa: E501 - .format(transfer_limit_state, allowed_values) - ) - - self._transfer_limit_state = transfer_limit_state - @property def type(self): """Gets the type of this StoragepoolStoragepool. # noqa: E501 @@ -520,7 +454,7 @@ def usage(self): Total pool usage. # noqa: E501 :return: The usage of this StoragepoolStoragepool. # noqa: E501 - :rtype: StoragepoolStoragepoolUsage + :rtype: StoragepoolTierUsage """ return self._usage @@ -531,7 +465,7 @@ def usage(self, usage): Total pool usage. # noqa: E501 :param usage: The usage of this StoragepoolStoragepool. # noqa: E501 - :type: StoragepoolStoragepoolUsage + :type: StoragepoolTierUsage """ self._usage = usage diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_storagepools.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_storagepools.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_storagepools.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_storagepools.py index f546eb73c..8e4cd38a0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_storagepools.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_storagepools.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_suggested_protection.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_suggested_protection.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_suggested_protection.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_suggested_protection.py index e9b08c05b..b75622037 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_suggested_protection.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_suggested_protection.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_groups.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_tier.py similarity index 57% rename from isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_groups.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_tier.py index de528311e..95e17824d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/diagnostics_gather_groups.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_tier.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class DiagnosticsGatherGroups(object): +class StoragepoolTier(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -31,44 +31,72 @@ class DiagnosticsGatherGroups(object): and the value is json key in definition. """ swagger_types = { - 'groups': 'list[str]' + 'children': 'list[str]', + 'name': 'str' } attribute_map = { - 'groups': 'groups' + 'children': 'children', + 'name': 'name' } - def __init__(self, groups=None): # noqa: E501 - """DiagnosticsGatherGroups - a model defined in Swagger""" # noqa: E501 + def __init__(self, children=None, name=None): # noqa: E501 + """StoragepoolTier - a model defined in Swagger""" # noqa: E501 - self._groups = None + self._children = None + self._name = None self.discriminator = None - if groups is not None: - self.groups = groups + if children is not None: + self.children = children + if name is not None: + self.name = name @property - def groups(self): - """Gets the groups of this DiagnosticsGatherGroups. # noqa: E501 + def children(self): + """Gets the children of this StoragepoolTier. # noqa: E501 - The list of valid component group arguments. # noqa: E501 + The names or IDs of the tier's children. # noqa: E501 - :return: The groups of this DiagnosticsGatherGroups. # noqa: E501 + :return: The children of this StoragepoolTier. # noqa: E501 :rtype: list[str] """ - return self._groups + return self._children - @groups.setter - def groups(self, groups): - """Sets the groups of this DiagnosticsGatherGroups. + @children.setter + def children(self, children): + """Sets the children of this StoragepoolTier. - The list of valid component group arguments. # noqa: E501 + The names or IDs of the tier's children. # noqa: E501 - :param groups: The groups of this DiagnosticsGatherGroups. # noqa: E501 + :param children: The children of this StoragepoolTier. # noqa: E501 :type: list[str] """ - self._groups = groups + self._children = children + + @property + def name(self): + """Gets the name of this StoragepoolTier. # noqa: E501 + + The tier name. # noqa: E501 + + :return: The name of this StoragepoolTier. # noqa: E501 + :rtype: str + """ + return self._name + + @name.setter + def name(self, name): + """Sets the name of this StoragepoolTier. + + The tier name. # noqa: E501 + + :param name: The name of this StoragepoolTier. # noqa: E501 + :type: str + """ + + self._name = name def to_dict(self): """Returns the model properties as a dict""" @@ -91,7 +119,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(DiagnosticsGatherGroups, dict): + if issubclass(StoragepoolTier, dict): for key, value in self.items(): result[key] = value @@ -107,7 +135,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, DiagnosticsGatherGroups): + if not isinstance(other, StoragepoolTier): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/network_interface_name.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_tier_create_params.py similarity index 55% rename from isilon_sdk/isilon_sdk/v9_11_0/models/network_interface_name.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_tier_create_params.py index d4261f726..6ecfd0108 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/network_interface_name.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_tier_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class NetworkInterfaceName(object): +class StoragepoolTierCreateParams(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -31,72 +31,73 @@ class NetworkInterfaceName(object): and the value is json key in definition. """ swagger_types = { - 'ethernet': 'list[str]', - 'infiniband': 'list[str]' + 'children': 'list[str]', + 'name': 'str' } attribute_map = { - 'ethernet': 'ethernet', - 'infiniband': 'infiniband' + 'children': 'children', + 'name': 'name' } - def __init__(self, ethernet=None, infiniband=None): # noqa: E501 - """NetworkInterfaceName - a model defined in Swagger""" # noqa: E501 + def __init__(self, children=None, name=None): # noqa: E501 + """StoragepoolTierCreateParams - a model defined in Swagger""" # noqa: E501 - self._ethernet = None - self._infiniband = None + self._children = None + self._name = None self.discriminator = None - if ethernet is not None: - self.ethernet = ethernet - if infiniband is not None: - self.infiniband = infiniband + if children is not None: + self.children = children + self.name = name @property - def ethernet(self): - """Gets the ethernet of this NetworkInterfaceName. # noqa: E501 + def children(self): + """Gets the children of this StoragepoolTierCreateParams. # noqa: E501 - List of supported ethernet interface names. # noqa: E501 + The names or IDs of the tier's children. # noqa: E501 - :return: The ethernet of this NetworkInterfaceName. # noqa: E501 + :return: The children of this StoragepoolTierCreateParams. # noqa: E501 :rtype: list[str] """ - return self._ethernet + return self._children - @ethernet.setter - def ethernet(self, ethernet): - """Sets the ethernet of this NetworkInterfaceName. + @children.setter + def children(self, children): + """Sets the children of this StoragepoolTierCreateParams. - List of supported ethernet interface names. # noqa: E501 + The names or IDs of the tier's children. # noqa: E501 - :param ethernet: The ethernet of this NetworkInterfaceName. # noqa: E501 + :param children: The children of this StoragepoolTierCreateParams. # noqa: E501 :type: list[str] """ - self._ethernet = ethernet + self._children = children @property - def infiniband(self): - """Gets the infiniband of this NetworkInterfaceName. # noqa: E501 + def name(self): + """Gets the name of this StoragepoolTierCreateParams. # noqa: E501 - List of supported infiniband interface names. # noqa: E501 + The tier name. # noqa: E501 - :return: The infiniband of this NetworkInterfaceName. # noqa: E501 - :rtype: list[str] + :return: The name of this StoragepoolTierCreateParams. # noqa: E501 + :rtype: str """ - return self._infiniband + return self._name - @infiniband.setter - def infiniband(self, infiniband): - """Sets the infiniband of this NetworkInterfaceName. + @name.setter + def name(self, name): + """Sets the name of this StoragepoolTierCreateParams. - List of supported infiniband interface names. # noqa: E501 + The tier name. # noqa: E501 - :param infiniband: The infiniband of this NetworkInterfaceName. # noqa: E501 - :type: list[str] + :param name: The name of this StoragepoolTierCreateParams. # noqa: E501 + :type: str """ + if name is None: + raise ValueError("Invalid value for `name`, must not be `None`") # noqa: E501 - self._infiniband = infiniband + self._name = name def to_dict(self): """Returns the model properties as a dict""" @@ -119,7 +120,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(NetworkInterfaceName, dict): + if issubclass(StoragepoolTierCreateParams, dict): for key, value in self.items(): result[key] = value @@ -135,7 +136,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, NetworkInterfaceName): + if not isinstance(other, StoragepoolTierCreateParams): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_tier_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_tier_extended.py similarity index 56% rename from isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_tier_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_tier_extended.py index 793f4d651..adcc02e56 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_tier_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_tier_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -32,49 +32,35 @@ class StoragepoolTierExtended(object): """ swagger_types = { 'children': 'list[str]', + 'name': 'str', 'id': 'int', 'lnns': 'list[int]', - 'name': 'str', - 'node_type_ids': 'list[int]', - 'transfer_limit_pct': 'int', - 'transfer_limit_state': 'str', - 'usage': 'StoragepoolStoragepoolUsage' + 'usage': 'StoragepoolTierUsage' } attribute_map = { 'children': 'children', + 'name': 'name', 'id': 'id', 'lnns': 'lnns', - 'name': 'name', - 'node_type_ids': 'node_type_ids', - 'transfer_limit_pct': 'transfer_limit_pct', - 'transfer_limit_state': 'transfer_limit_state', 'usage': 'usage' } - def __init__(self, children=None, id=None, lnns=None, name=None, node_type_ids=None, transfer_limit_pct=None, transfer_limit_state=None, usage=None): # noqa: E501 + def __init__(self, children=None, name=None, id=None, lnns=None, usage=None): # noqa: E501 """StoragepoolTierExtended - a model defined in Swagger""" # noqa: E501 self._children = None + self._name = None self._id = None self._lnns = None - self._name = None - self._node_type_ids = None - self._transfer_limit_pct = None - self._transfer_limit_state = None self._usage = None self.discriminator = None if children is not None: self.children = children + self.name = name self.id = id self.lnns = lnns - self.name = name - self.node_type_ids = node_type_ids - if transfer_limit_pct is not None: - self.transfer_limit_pct = transfer_limit_pct - if transfer_limit_state is not None: - self.transfer_limit_state = transfer_limit_state if usage is not None: self.usage = usage @@ -101,6 +87,31 @@ def children(self, children): self._children = children + @property + def name(self): + """Gets the name of this StoragepoolTierExtended. # noqa: E501 + + The tier name. # noqa: E501 + + :return: The name of this StoragepoolTierExtended. # noqa: E501 + :rtype: str + """ + return self._name + + @name.setter + def name(self, name): + """Sets the name of this StoragepoolTierExtended. + + The tier name. # noqa: E501 + + :param name: The name of this StoragepoolTierExtended. # noqa: E501 + :type: str + """ + if name is None: + raise ValueError("Invalid value for `name`, must not be `None`") # noqa: E501 + + self._name = name + @property def id(self): """Gets the id of this StoragepoolTierExtended. # noqa: E501 @@ -123,10 +134,6 @@ def id(self, id): """ if id is None: raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 - if id is not None and id > 2147483647: # noqa: E501 - raise ValueError("Invalid value for `id`, must be a value less than or equal to `2147483647`") # noqa: E501 - if id is not None and id < 1: # noqa: E501 - raise ValueError("Invalid value for `id`, must be a value greater than or equal to `1`") # noqa: E501 self._id = id @@ -155,116 +162,6 @@ def lnns(self, lnns): self._lnns = lnns - @property - def name(self): - """Gets the name of this StoragepoolTierExtended. # noqa: E501 - - The tier name. # noqa: E501 - - :return: The name of this StoragepoolTierExtended. # noqa: E501 - :rtype: str - """ - return self._name - - @name.setter - def name(self, name): - """Sets the name of this StoragepoolTierExtended. - - The tier name. # noqa: E501 - - :param name: The name of this StoragepoolTierExtended. # noqa: E501 - :type: str - """ - if name is None: - raise ValueError("Invalid value for `name`, must not be `None`") # noqa: E501 - if name is not None and len(name) > 255: - raise ValueError("Invalid value for `name`, length must be less than or equal to `255`") # noqa: E501 - if name is not None and len(name) < 1: - raise ValueError("Invalid value for `name`, length must be greater than or equal to `1`") # noqa: E501 - - self._name = name - - @property - def node_type_ids(self): - """Gets the node_type_ids of this StoragepoolTierExtended. # noqa: E501 - - The node types that are part of this pool. # noqa: E501 - - :return: The node_type_ids of this StoragepoolTierExtended. # noqa: E501 - :rtype: list[int] - """ - return self._node_type_ids - - @node_type_ids.setter - def node_type_ids(self, node_type_ids): - """Sets the node_type_ids of this StoragepoolTierExtended. - - The node types that are part of this pool. # noqa: E501 - - :param node_type_ids: The node_type_ids of this StoragepoolTierExtended. # noqa: E501 - :type: list[int] - """ - if node_type_ids is None: - raise ValueError("Invalid value for `node_type_ids`, must not be `None`") # noqa: E501 - - self._node_type_ids = node_type_ids - - @property - def transfer_limit_pct(self): - """Gets the transfer_limit_pct of this StoragepoolTierExtended. # noqa: E501 - - Stop moving files to this tier when this limit is met # noqa: E501 - - :return: The transfer_limit_pct of this StoragepoolTierExtended. # noqa: E501 - :rtype: int - """ - return self._transfer_limit_pct - - @transfer_limit_pct.setter - def transfer_limit_pct(self, transfer_limit_pct): - """Sets the transfer_limit_pct of this StoragepoolTierExtended. - - Stop moving files to this tier when this limit is met # noqa: E501 - - :param transfer_limit_pct: The transfer_limit_pct of this StoragepoolTierExtended. # noqa: E501 - :type: int - """ - if transfer_limit_pct is not None and transfer_limit_pct > 100: # noqa: E501 - raise ValueError("Invalid value for `transfer_limit_pct`, must be a value less than or equal to `100`") # noqa: E501 - if transfer_limit_pct is not None and transfer_limit_pct < 0: # noqa: E501 - raise ValueError("Invalid value for `transfer_limit_pct`, must be a value greater than or equal to `0`") # noqa: E501 - - self._transfer_limit_pct = transfer_limit_pct - - @property - def transfer_limit_state(self): - """Gets the transfer_limit_state of this StoragepoolTierExtended. # noqa: E501 - - How the transfer limit value is being applied # noqa: E501 - - :return: The transfer_limit_state of this StoragepoolTierExtended. # noqa: E501 - :rtype: str - """ - return self._transfer_limit_state - - @transfer_limit_state.setter - def transfer_limit_state(self, transfer_limit_state): - """Sets the transfer_limit_state of this StoragepoolTierExtended. - - How the transfer limit value is being applied # noqa: E501 - - :param transfer_limit_state: The transfer_limit_state of this StoragepoolTierExtended. # noqa: E501 - :type: str - """ - allowed_values = ["enabled", "disabled", "default"] # noqa: E501 - if transfer_limit_state not in allowed_values: - raise ValueError( - "Invalid value for `transfer_limit_state` ({0}), must be one of {1}" # noqa: E501 - .format(transfer_limit_state, allowed_values) - ) - - self._transfer_limit_state = transfer_limit_state - @property def usage(self): """Gets the usage of this StoragepoolTierExtended. # noqa: E501 @@ -272,7 +169,7 @@ def usage(self): Total pool usage. # noqa: E501 :return: The usage of this StoragepoolTierExtended. # noqa: E501 - :rtype: StoragepoolStoragepoolUsage + :rtype: StoragepoolTierUsage """ return self._usage @@ -283,7 +180,7 @@ def usage(self, usage): Total pool usage. # noqa: E501 :param usage: The usage of this StoragepoolTierExtended. # noqa: E501 - :type: StoragepoolStoragepoolUsage + :type: StoragepoolTierUsage """ self._usage = usage diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_storagepool_usage.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_tier_usage.py similarity index 80% rename from isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_storagepool_usage.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_tier_usage.py index cf5db120c..8cfdd3048 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_storagepool_usage.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_tier_usage.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class StoragepoolStoragepoolUsage(object): +class StoragepoolTierUsage(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -77,7 +77,7 @@ class StoragepoolStoragepoolUsage(object): } def __init__(self, avail_bytes=None, avail_hdd_bytes=None, avail_ssd_bytes=None, balanced=None, free_bytes=None, free_hdd_bytes=None, free_ssd_bytes=None, pct_used=None, pct_used_hdd=None, pct_used_ssd=None, total_bytes=None, total_hdd_bytes=None, total_ssd_bytes=None, usable_bytes=None, usable_hdd_bytes=None, usable_ssd_bytes=None, used_bytes=None, used_hdd_bytes=None, used_ssd_bytes=None, virtual_hot_spare_bytes=None): # noqa: E501 - """StoragepoolStoragepoolUsage - a model defined in Swagger""" # noqa: E501 + """StoragepoolTierUsage - a model defined in Swagger""" # noqa: E501 self._avail_bytes = None self._avail_hdd_bytes = None @@ -126,22 +126,22 @@ def __init__(self, avail_bytes=None, avail_hdd_bytes=None, avail_ssd_bytes=None, @property def avail_bytes(self): - """Gets the avail_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + """Gets the avail_bytes of this StoragepoolTierUsage. # noqa: E501 Available free bytes remaining in the pool when virtual hot spare is taken into account. # noqa: E501 - :return: The avail_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :return: The avail_bytes of this StoragepoolTierUsage. # noqa: E501 :rtype: str """ return self._avail_bytes @avail_bytes.setter def avail_bytes(self, avail_bytes): - """Sets the avail_bytes of this StoragepoolStoragepoolUsage. + """Sets the avail_bytes of this StoragepoolTierUsage. Available free bytes remaining in the pool when virtual hot spare is taken into account. # noqa: E501 - :param avail_bytes: The avail_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :param avail_bytes: The avail_bytes of this StoragepoolTierUsage. # noqa: E501 :type: str """ if avail_bytes is None: @@ -155,22 +155,22 @@ def avail_bytes(self, avail_bytes): @property def avail_hdd_bytes(self): - """Gets the avail_hdd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + """Gets the avail_hdd_bytes of this StoragepoolTierUsage. # noqa: E501 Available free bytes remaining in the pool on HDD drives when virtual hot spare is taken into account. # noqa: E501 - :return: The avail_hdd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :return: The avail_hdd_bytes of this StoragepoolTierUsage. # noqa: E501 :rtype: str """ return self._avail_hdd_bytes @avail_hdd_bytes.setter def avail_hdd_bytes(self, avail_hdd_bytes): - """Sets the avail_hdd_bytes of this StoragepoolStoragepoolUsage. + """Sets the avail_hdd_bytes of this StoragepoolTierUsage. Available free bytes remaining in the pool on HDD drives when virtual hot spare is taken into account. # noqa: E501 - :param avail_hdd_bytes: The avail_hdd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :param avail_hdd_bytes: The avail_hdd_bytes of this StoragepoolTierUsage. # noqa: E501 :type: str """ if avail_hdd_bytes is None: @@ -184,22 +184,22 @@ def avail_hdd_bytes(self, avail_hdd_bytes): @property def avail_ssd_bytes(self): - """Gets the avail_ssd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + """Gets the avail_ssd_bytes of this StoragepoolTierUsage. # noqa: E501 Available free bytes remaining in the pool on SSD drives when virtual hot spare is taken into account. # noqa: E501 - :return: The avail_ssd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :return: The avail_ssd_bytes of this StoragepoolTierUsage. # noqa: E501 :rtype: str """ return self._avail_ssd_bytes @avail_ssd_bytes.setter def avail_ssd_bytes(self, avail_ssd_bytes): - """Sets the avail_ssd_bytes of this StoragepoolStoragepoolUsage. + """Sets the avail_ssd_bytes of this StoragepoolTierUsage. Available free bytes remaining in the pool on SSD drives when virtual hot spare is taken into account. # noqa: E501 - :param avail_ssd_bytes: The avail_ssd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :param avail_ssd_bytes: The avail_ssd_bytes of this StoragepoolTierUsage. # noqa: E501 :type: str """ if avail_ssd_bytes is None: @@ -213,22 +213,22 @@ def avail_ssd_bytes(self, avail_ssd_bytes): @property def balanced(self): - """Gets the balanced of this StoragepoolStoragepoolUsage. # noqa: E501 + """Gets the balanced of this StoragepoolTierUsage. # noqa: E501 Whether or not the pool usage is currently balanced. # noqa: E501 - :return: The balanced of this StoragepoolStoragepoolUsage. # noqa: E501 + :return: The balanced of this StoragepoolTierUsage. # noqa: E501 :rtype: bool """ return self._balanced @balanced.setter def balanced(self, balanced): - """Sets the balanced of this StoragepoolStoragepoolUsage. + """Sets the balanced of this StoragepoolTierUsage. Whether or not the pool usage is currently balanced. # noqa: E501 - :param balanced: The balanced of this StoragepoolStoragepoolUsage. # noqa: E501 + :param balanced: The balanced of this StoragepoolTierUsage. # noqa: E501 :type: bool """ if balanced is None: @@ -238,22 +238,22 @@ def balanced(self, balanced): @property def free_bytes(self): - """Gets the free_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + """Gets the free_bytes of this StoragepoolTierUsage. # noqa: E501 Free bytes remaining in the pool. # noqa: E501 - :return: The free_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :return: The free_bytes of this StoragepoolTierUsage. # noqa: E501 :rtype: str """ return self._free_bytes @free_bytes.setter def free_bytes(self, free_bytes): - """Sets the free_bytes of this StoragepoolStoragepoolUsage. + """Sets the free_bytes of this StoragepoolTierUsage. Free bytes remaining in the pool. # noqa: E501 - :param free_bytes: The free_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :param free_bytes: The free_bytes of this StoragepoolTierUsage. # noqa: E501 :type: str """ if free_bytes is None: @@ -267,22 +267,22 @@ def free_bytes(self, free_bytes): @property def free_hdd_bytes(self): - """Gets the free_hdd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + """Gets the free_hdd_bytes of this StoragepoolTierUsage. # noqa: E501 Free bytes remaining in the pool on HDD drives. # noqa: E501 - :return: The free_hdd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :return: The free_hdd_bytes of this StoragepoolTierUsage. # noqa: E501 :rtype: str """ return self._free_hdd_bytes @free_hdd_bytes.setter def free_hdd_bytes(self, free_hdd_bytes): - """Sets the free_hdd_bytes of this StoragepoolStoragepoolUsage. + """Sets the free_hdd_bytes of this StoragepoolTierUsage. Free bytes remaining in the pool on HDD drives. # noqa: E501 - :param free_hdd_bytes: The free_hdd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :param free_hdd_bytes: The free_hdd_bytes of this StoragepoolTierUsage. # noqa: E501 :type: str """ if free_hdd_bytes is None: @@ -296,22 +296,22 @@ def free_hdd_bytes(self, free_hdd_bytes): @property def free_ssd_bytes(self): - """Gets the free_ssd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + """Gets the free_ssd_bytes of this StoragepoolTierUsage. # noqa: E501 Free bytes remaining in the pool on SSD drives. # noqa: E501 - :return: The free_ssd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :return: The free_ssd_bytes of this StoragepoolTierUsage. # noqa: E501 :rtype: str """ return self._free_ssd_bytes @free_ssd_bytes.setter def free_ssd_bytes(self, free_ssd_bytes): - """Sets the free_ssd_bytes of this StoragepoolStoragepoolUsage. + """Sets the free_ssd_bytes of this StoragepoolTierUsage. Free bytes remaining in the pool on SSD drives. # noqa: E501 - :param free_ssd_bytes: The free_ssd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :param free_ssd_bytes: The free_ssd_bytes of this StoragepoolTierUsage. # noqa: E501 :type: str """ if free_ssd_bytes is None: @@ -325,22 +325,22 @@ def free_ssd_bytes(self, free_ssd_bytes): @property def pct_used(self): - """Gets the pct_used of this StoragepoolStoragepoolUsage. # noqa: E501 + """Gets the pct_used of this StoragepoolTierUsage. # noqa: E501 Percentage of usable space in the pool which is used. # noqa: E501 - :return: The pct_used of this StoragepoolStoragepoolUsage. # noqa: E501 + :return: The pct_used of this StoragepoolTierUsage. # noqa: E501 :rtype: str """ return self._pct_used @pct_used.setter def pct_used(self, pct_used): - """Sets the pct_used of this StoragepoolStoragepoolUsage. + """Sets the pct_used of this StoragepoolTierUsage. Percentage of usable space in the pool which is used. # noqa: E501 - :param pct_used: The pct_used of this StoragepoolStoragepoolUsage. # noqa: E501 + :param pct_used: The pct_used of this StoragepoolTierUsage. # noqa: E501 :type: str """ if pct_used is None: @@ -354,22 +354,22 @@ def pct_used(self, pct_used): @property def pct_used_hdd(self): - """Gets the pct_used_hdd of this StoragepoolStoragepoolUsage. # noqa: E501 + """Gets the pct_used_hdd of this StoragepoolTierUsage. # noqa: E501 Percentage of usable space on HDD drives in the pool which is used. # noqa: E501 - :return: The pct_used_hdd of this StoragepoolStoragepoolUsage. # noqa: E501 + :return: The pct_used_hdd of this StoragepoolTierUsage. # noqa: E501 :rtype: str """ return self._pct_used_hdd @pct_used_hdd.setter def pct_used_hdd(self, pct_used_hdd): - """Sets the pct_used_hdd of this StoragepoolStoragepoolUsage. + """Sets the pct_used_hdd of this StoragepoolTierUsage. Percentage of usable space on HDD drives in the pool which is used. # noqa: E501 - :param pct_used_hdd: The pct_used_hdd of this StoragepoolStoragepoolUsage. # noqa: E501 + :param pct_used_hdd: The pct_used_hdd of this StoragepoolTierUsage. # noqa: E501 :type: str """ if pct_used_hdd is None: @@ -383,22 +383,22 @@ def pct_used_hdd(self, pct_used_hdd): @property def pct_used_ssd(self): - """Gets the pct_used_ssd of this StoragepoolStoragepoolUsage. # noqa: E501 + """Gets the pct_used_ssd of this StoragepoolTierUsage. # noqa: E501 Percentage of usable space on SSD drives in the pool which is used. # noqa: E501 - :return: The pct_used_ssd of this StoragepoolStoragepoolUsage. # noqa: E501 + :return: The pct_used_ssd of this StoragepoolTierUsage. # noqa: E501 :rtype: str """ return self._pct_used_ssd @pct_used_ssd.setter def pct_used_ssd(self, pct_used_ssd): - """Sets the pct_used_ssd of this StoragepoolStoragepoolUsage. + """Sets the pct_used_ssd of this StoragepoolTierUsage. Percentage of usable space on SSD drives in the pool which is used. # noqa: E501 - :param pct_used_ssd: The pct_used_ssd of this StoragepoolStoragepoolUsage. # noqa: E501 + :param pct_used_ssd: The pct_used_ssd of this StoragepoolTierUsage. # noqa: E501 :type: str """ if pct_used_ssd is None: @@ -412,22 +412,22 @@ def pct_used_ssd(self, pct_used_ssd): @property def total_bytes(self): - """Gets the total_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + """Gets the total_bytes of this StoragepoolTierUsage. # noqa: E501 Total bytes in the pool. # noqa: E501 - :return: The total_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :return: The total_bytes of this StoragepoolTierUsage. # noqa: E501 :rtype: str """ return self._total_bytes @total_bytes.setter def total_bytes(self, total_bytes): - """Sets the total_bytes of this StoragepoolStoragepoolUsage. + """Sets the total_bytes of this StoragepoolTierUsage. Total bytes in the pool. # noqa: E501 - :param total_bytes: The total_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :param total_bytes: The total_bytes of this StoragepoolTierUsage. # noqa: E501 :type: str """ if total_bytes is None: @@ -441,22 +441,22 @@ def total_bytes(self, total_bytes): @property def total_hdd_bytes(self): - """Gets the total_hdd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + """Gets the total_hdd_bytes of this StoragepoolTierUsage. # noqa: E501 Total bytes in the pool on HDD drives. # noqa: E501 - :return: The total_hdd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :return: The total_hdd_bytes of this StoragepoolTierUsage. # noqa: E501 :rtype: str """ return self._total_hdd_bytes @total_hdd_bytes.setter def total_hdd_bytes(self, total_hdd_bytes): - """Sets the total_hdd_bytes of this StoragepoolStoragepoolUsage. + """Sets the total_hdd_bytes of this StoragepoolTierUsage. Total bytes in the pool on HDD drives. # noqa: E501 - :param total_hdd_bytes: The total_hdd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :param total_hdd_bytes: The total_hdd_bytes of this StoragepoolTierUsage. # noqa: E501 :type: str """ if total_hdd_bytes is None: @@ -470,22 +470,22 @@ def total_hdd_bytes(self, total_hdd_bytes): @property def total_ssd_bytes(self): - """Gets the total_ssd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + """Gets the total_ssd_bytes of this StoragepoolTierUsage. # noqa: E501 Total bytes in the pool on SSD drives. # noqa: E501 - :return: The total_ssd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :return: The total_ssd_bytes of this StoragepoolTierUsage. # noqa: E501 :rtype: str """ return self._total_ssd_bytes @total_ssd_bytes.setter def total_ssd_bytes(self, total_ssd_bytes): - """Sets the total_ssd_bytes of this StoragepoolStoragepoolUsage. + """Sets the total_ssd_bytes of this StoragepoolTierUsage. Total bytes in the pool on SSD drives. # noqa: E501 - :param total_ssd_bytes: The total_ssd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :param total_ssd_bytes: The total_ssd_bytes of this StoragepoolTierUsage. # noqa: E501 :type: str """ if total_ssd_bytes is None: @@ -499,22 +499,22 @@ def total_ssd_bytes(self, total_ssd_bytes): @property def usable_bytes(self): - """Gets the usable_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + """Gets the usable_bytes of this StoragepoolTierUsage. # noqa: E501 Total bytes in the pool drives when virtual hot spare is taken into account. # noqa: E501 - :return: The usable_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :return: The usable_bytes of this StoragepoolTierUsage. # noqa: E501 :rtype: str """ return self._usable_bytes @usable_bytes.setter def usable_bytes(self, usable_bytes): - """Sets the usable_bytes of this StoragepoolStoragepoolUsage. + """Sets the usable_bytes of this StoragepoolTierUsage. Total bytes in the pool drives when virtual hot spare is taken into account. # noqa: E501 - :param usable_bytes: The usable_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :param usable_bytes: The usable_bytes of this StoragepoolTierUsage. # noqa: E501 :type: str """ if usable_bytes is None: @@ -528,22 +528,22 @@ def usable_bytes(self, usable_bytes): @property def usable_hdd_bytes(self): - """Gets the usable_hdd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + """Gets the usable_hdd_bytes of this StoragepoolTierUsage. # noqa: E501 Total bytes in the pool on HDD drives when virtual hot spare is taken into account. # noqa: E501 - :return: The usable_hdd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :return: The usable_hdd_bytes of this StoragepoolTierUsage. # noqa: E501 :rtype: str """ return self._usable_hdd_bytes @usable_hdd_bytes.setter def usable_hdd_bytes(self, usable_hdd_bytes): - """Sets the usable_hdd_bytes of this StoragepoolStoragepoolUsage. + """Sets the usable_hdd_bytes of this StoragepoolTierUsage. Total bytes in the pool on HDD drives when virtual hot spare is taken into account. # noqa: E501 - :param usable_hdd_bytes: The usable_hdd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :param usable_hdd_bytes: The usable_hdd_bytes of this StoragepoolTierUsage. # noqa: E501 :type: str """ if usable_hdd_bytes is None: @@ -557,22 +557,22 @@ def usable_hdd_bytes(self, usable_hdd_bytes): @property def usable_ssd_bytes(self): - """Gets the usable_ssd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + """Gets the usable_ssd_bytes of this StoragepoolTierUsage. # noqa: E501 Total bytes in the pool on SSD drives when virtual hot spare is taken into account. # noqa: E501 - :return: The usable_ssd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :return: The usable_ssd_bytes of this StoragepoolTierUsage. # noqa: E501 :rtype: str """ return self._usable_ssd_bytes @usable_ssd_bytes.setter def usable_ssd_bytes(self, usable_ssd_bytes): - """Sets the usable_ssd_bytes of this StoragepoolStoragepoolUsage. + """Sets the usable_ssd_bytes of this StoragepoolTierUsage. Total bytes in the pool on SSD drives when virtual hot spare is taken into account. # noqa: E501 - :param usable_ssd_bytes: The usable_ssd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :param usable_ssd_bytes: The usable_ssd_bytes of this StoragepoolTierUsage. # noqa: E501 :type: str """ if usable_ssd_bytes is None: @@ -586,22 +586,22 @@ def usable_ssd_bytes(self, usable_ssd_bytes): @property def used_bytes(self): - """Gets the used_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + """Gets the used_bytes of this StoragepoolTierUsage. # noqa: E501 Used bytes in the pool. # noqa: E501 - :return: The used_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :return: The used_bytes of this StoragepoolTierUsage. # noqa: E501 :rtype: str """ return self._used_bytes @used_bytes.setter def used_bytes(self, used_bytes): - """Sets the used_bytes of this StoragepoolStoragepoolUsage. + """Sets the used_bytes of this StoragepoolTierUsage. Used bytes in the pool. # noqa: E501 - :param used_bytes: The used_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :param used_bytes: The used_bytes of this StoragepoolTierUsage. # noqa: E501 :type: str """ if used_bytes is not None and len(used_bytes) > 255: @@ -613,22 +613,22 @@ def used_bytes(self, used_bytes): @property def used_hdd_bytes(self): - """Gets the used_hdd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + """Gets the used_hdd_bytes of this StoragepoolTierUsage. # noqa: E501 Used bytes in the pool on HDD drives. # noqa: E501 - :return: The used_hdd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :return: The used_hdd_bytes of this StoragepoolTierUsage. # noqa: E501 :rtype: str """ return self._used_hdd_bytes @used_hdd_bytes.setter def used_hdd_bytes(self, used_hdd_bytes): - """Sets the used_hdd_bytes of this StoragepoolStoragepoolUsage. + """Sets the used_hdd_bytes of this StoragepoolTierUsage. Used bytes in the pool on HDD drives. # noqa: E501 - :param used_hdd_bytes: The used_hdd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :param used_hdd_bytes: The used_hdd_bytes of this StoragepoolTierUsage. # noqa: E501 :type: str """ if used_hdd_bytes is None: @@ -642,22 +642,22 @@ def used_hdd_bytes(self, used_hdd_bytes): @property def used_ssd_bytes(self): - """Gets the used_ssd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + """Gets the used_ssd_bytes of this StoragepoolTierUsage. # noqa: E501 Used bytes in the pool on SSD drives. # noqa: E501 - :return: The used_ssd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :return: The used_ssd_bytes of this StoragepoolTierUsage. # noqa: E501 :rtype: str """ return self._used_ssd_bytes @used_ssd_bytes.setter def used_ssd_bytes(self, used_ssd_bytes): - """Sets the used_ssd_bytes of this StoragepoolStoragepoolUsage. + """Sets the used_ssd_bytes of this StoragepoolTierUsage. Used bytes in the pool on SSD drives. # noqa: E501 - :param used_ssd_bytes: The used_ssd_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :param used_ssd_bytes: The used_ssd_bytes of this StoragepoolTierUsage. # noqa: E501 :type: str """ if used_ssd_bytes is None: @@ -671,22 +671,22 @@ def used_ssd_bytes(self, used_ssd_bytes): @property def virtual_hot_spare_bytes(self): - """Gets the virtual_hot_spare_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + """Gets the virtual_hot_spare_bytes of this StoragepoolTierUsage. # noqa: E501 Bytes reserved for virtual hot spare in the pool. # noqa: E501 - :return: The virtual_hot_spare_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :return: The virtual_hot_spare_bytes of this StoragepoolTierUsage. # noqa: E501 :rtype: str """ return self._virtual_hot_spare_bytes @virtual_hot_spare_bytes.setter def virtual_hot_spare_bytes(self, virtual_hot_spare_bytes): - """Sets the virtual_hot_spare_bytes of this StoragepoolStoragepoolUsage. + """Sets the virtual_hot_spare_bytes of this StoragepoolTierUsage. Bytes reserved for virtual hot spare in the pool. # noqa: E501 - :param virtual_hot_spare_bytes: The virtual_hot_spare_bytes of this StoragepoolStoragepoolUsage. # noqa: E501 + :param virtual_hot_spare_bytes: The virtual_hot_spare_bytes of this StoragepoolTierUsage. # noqa: E501 :type: str """ if virtual_hot_spare_bytes is not None and len(virtual_hot_spare_bytes) > 255: @@ -717,7 +717,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(StoragepoolStoragepoolUsage, dict): + if issubclass(StoragepoolTierUsage, dict): for key, value in self.items(): result[key] = value @@ -733,7 +733,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, StoragepoolStoragepoolUsage): + if not isinstance(other, StoragepoolTierUsage): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_tiers.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_tiers.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_tiers.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_tiers.py index 507c70964..aabd96a39 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_tiers.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_tiers.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_tiers_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_tiers_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_tiers_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_tiers_extended.py index e1f5272ad..e15e3706c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_tiers_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_tiers_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_unprovisioned.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_unprovisioned.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_unprovisioned.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_unprovisioned.py index 32ae901b9..fd3bab93c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_unprovisioned.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_unprovisioned.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_unprovisioned_unprovisioned.py b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_unprovisioned_unprovisioned.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_unprovisioned_unprovisioned.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_unprovisioned_unprovisioned.py index 51a832796..20cf5b90a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/storagepool_unprovisioned_unprovisioned.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/storagepool_unprovisioned_unprovisioned.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/subnets_subnet_pool.py b/isilon_sdk/isilon_sdk/v9_4_0/models/subnets_subnet_pool.py similarity index 85% rename from isilon_sdk/isilon_sdk/v9_11_0/models/subnets_subnet_pool.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/subnets_subnet_pool.py index 4393d967f..1871dde8a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/subnets_subnet_pool.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/subnets_subnet_pool.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -36,11 +36,11 @@ class SubnetsSubnetPool(object): 'alloc_method': 'str', 'description': 'str', 'ifaces': 'list[SubnetsSubnetPoolIface]', - 'ipv6_perform_dad': 'bool', 'name': 'str', - 'nfs_rroce_only': 'bool', + 'nfsv3_rroce_only': 'bool', 'ranges': 'list[SubnetsSubnetPoolRange]', 'rebalance_policy': 'str', + 'sc_auto_unsuspend_delay': 'int', 'sc_connect_policy': 'str', 'sc_dns_zone': 'str', 'sc_dns_zone_aliases': 'list[str]', @@ -56,11 +56,11 @@ class SubnetsSubnetPool(object): 'alloc_method': 'alloc_method', 'description': 'description', 'ifaces': 'ifaces', - 'ipv6_perform_dad': 'ipv6_perform_dad', 'name': 'name', - 'nfs_rroce_only': 'nfs_rroce_only', + 'nfsv3_rroce_only': 'nfsv3_rroce_only', 'ranges': 'ranges', 'rebalance_policy': 'rebalance_policy', + 'sc_auto_unsuspend_delay': 'sc_auto_unsuspend_delay', 'sc_connect_policy': 'sc_connect_policy', 'sc_dns_zone': 'sc_dns_zone', 'sc_dns_zone_aliases': 'sc_dns_zone_aliases', @@ -70,7 +70,7 @@ class SubnetsSubnetPool(object): 'static_routes': 'static_routes' } - def __init__(self, access_zone=None, aggregation_mode=None, alloc_method=None, description=None, ifaces=None, ipv6_perform_dad=None, name=None, nfs_rroce_only=None, ranges=None, rebalance_policy=None, sc_connect_policy=None, sc_dns_zone=None, sc_dns_zone_aliases=None, sc_failover_policy=None, sc_subnet=None, sc_ttl=None, static_routes=None): # noqa: E501 + def __init__(self, access_zone=None, aggregation_mode=None, alloc_method=None, description=None, ifaces=None, name=None, nfsv3_rroce_only=None, ranges=None, rebalance_policy=None, sc_auto_unsuspend_delay=None, sc_connect_policy=None, sc_dns_zone=None, sc_dns_zone_aliases=None, sc_failover_policy=None, sc_subnet=None, sc_ttl=None, static_routes=None): # noqa: E501 """SubnetsSubnetPool - a model defined in Swagger""" # noqa: E501 self._access_zone = None @@ -78,11 +78,11 @@ def __init__(self, access_zone=None, aggregation_mode=None, alloc_method=None, d self._alloc_method = None self._description = None self._ifaces = None - self._ipv6_perform_dad = None self._name = None - self._nfs_rroce_only = None + self._nfsv3_rroce_only = None self._ranges = None self._rebalance_policy = None + self._sc_auto_unsuspend_delay = None self._sc_connect_policy = None self._sc_dns_zone = None self._sc_dns_zone_aliases = None @@ -102,16 +102,16 @@ def __init__(self, access_zone=None, aggregation_mode=None, alloc_method=None, d self.description = description if ifaces is not None: self.ifaces = ifaces - if ipv6_perform_dad is not None: - self.ipv6_perform_dad = ipv6_perform_dad if name is not None: self.name = name - if nfs_rroce_only is not None: - self.nfs_rroce_only = nfs_rroce_only + if nfsv3_rroce_only is not None: + self.nfsv3_rroce_only = nfsv3_rroce_only if ranges is not None: self.ranges = ranges if rebalance_policy is not None: self.rebalance_policy = rebalance_policy + if sc_auto_unsuspend_delay is not None: + self.sc_auto_unsuspend_delay = sc_auto_unsuspend_delay if sc_connect_policy is not None: self.sc_connect_policy = sc_connect_policy if sc_dns_zone is not None: @@ -158,7 +158,7 @@ def access_zone(self, access_zone): def aggregation_mode(self): """Gets the aggregation_mode of this SubnetsSubnetPool. # noqa: E501 - OneFS supports the following NIC aggregation modes. 'fec' was renamed to 'loadbalance' in OneFS 9.7. # noqa: E501 + OneFS supports the following NIC aggregation modes. # noqa: E501 :return: The aggregation_mode of this SubnetsSubnetPool. # noqa: E501 :rtype: str @@ -169,7 +169,7 @@ def aggregation_mode(self): def aggregation_mode(self, aggregation_mode): """Sets the aggregation_mode of this SubnetsSubnetPool. - OneFS supports the following NIC aggregation modes. 'fec' was renamed to 'loadbalance' in OneFS 9.7. # noqa: E501 + OneFS supports the following NIC aggregation modes. # noqa: E501 :param aggregation_mode: The aggregation_mode of this SubnetsSubnetPool. # noqa: E501 :type: str @@ -250,29 +250,6 @@ def ifaces(self, ifaces): self._ifaces = ifaces - @property - def ipv6_perform_dad(self): - """Gets the ipv6_perform_dad of this SubnetsSubnetPool. # noqa: E501 - - Indicates if the Network Pool should perform IPv6 Duplicate Address Detection when configuring the IPs. Only applies to IPv6 Network Pools. # noqa: E501 - - :return: The ipv6_perform_dad of this SubnetsSubnetPool. # noqa: E501 - :rtype: bool - """ - return self._ipv6_perform_dad - - @ipv6_perform_dad.setter - def ipv6_perform_dad(self, ipv6_perform_dad): - """Sets the ipv6_perform_dad of this SubnetsSubnetPool. - - Indicates if the Network Pool should perform IPv6 Duplicate Address Detection when configuring the IPs. Only applies to IPv6 Network Pools. # noqa: E501 - - :param ipv6_perform_dad: The ipv6_perform_dad of this SubnetsSubnetPool. # noqa: E501 - :type: bool - """ - - self._ipv6_perform_dad = ipv6_perform_dad - @property def name(self): """Gets the name of this SubnetsSubnetPool. # noqa: E501 @@ -303,27 +280,27 @@ def name(self, name): self._name = name @property - def nfs_rroce_only(self): - """Gets the nfs_rroce_only of this SubnetsSubnetPool. # noqa: E501 + def nfsv3_rroce_only(self): + """Gets the nfsv3_rroce_only of this SubnetsSubnetPool. # noqa: E501 Indicates that pool contains only RDMA RRoCE capable interfaces. # noqa: E501 - :return: The nfs_rroce_only of this SubnetsSubnetPool. # noqa: E501 + :return: The nfsv3_rroce_only of this SubnetsSubnetPool. # noqa: E501 :rtype: bool """ - return self._nfs_rroce_only + return self._nfsv3_rroce_only - @nfs_rroce_only.setter - def nfs_rroce_only(self, nfs_rroce_only): - """Sets the nfs_rroce_only of this SubnetsSubnetPool. + @nfsv3_rroce_only.setter + def nfsv3_rroce_only(self, nfsv3_rroce_only): + """Sets the nfsv3_rroce_only of this SubnetsSubnetPool. Indicates that pool contains only RDMA RRoCE capable interfaces. # noqa: E501 - :param nfs_rroce_only: The nfs_rroce_only of this SubnetsSubnetPool. # noqa: E501 + :param nfsv3_rroce_only: The nfsv3_rroce_only of this SubnetsSubnetPool. # noqa: E501 :type: bool """ - self._nfs_rroce_only = nfs_rroce_only + self._nfsv3_rroce_only = nfsv3_rroce_only @property def ranges(self): @@ -352,7 +329,7 @@ def ranges(self, ranges): def rebalance_policy(self): """Gets the rebalance_policy of this SubnetsSubnetPool. # noqa: E501 - Rebalance policy. # noqa: E501 + Rebalance policy.. # noqa: E501 :return: The rebalance_policy of this SubnetsSubnetPool. # noqa: E501 :rtype: str @@ -363,7 +340,7 @@ def rebalance_policy(self): def rebalance_policy(self, rebalance_policy): """Sets the rebalance_policy of this SubnetsSubnetPool. - Rebalance policy. # noqa: E501 + Rebalance policy.. # noqa: E501 :param rebalance_policy: The rebalance_policy of this SubnetsSubnetPool. # noqa: E501 :type: str @@ -371,6 +348,33 @@ def rebalance_policy(self, rebalance_policy): self._rebalance_policy = rebalance_policy + @property + def sc_auto_unsuspend_delay(self): + """Gets the sc_auto_unsuspend_delay of this SubnetsSubnetPool. # noqa: E501 + + Time delay in seconds before a node which has been automatically unsuspended becomes usable in SmartConnect responses for pool zones. # noqa: E501 + + :return: The sc_auto_unsuspend_delay of this SubnetsSubnetPool. # noqa: E501 + :rtype: int + """ + return self._sc_auto_unsuspend_delay + + @sc_auto_unsuspend_delay.setter + def sc_auto_unsuspend_delay(self, sc_auto_unsuspend_delay): + """Sets the sc_auto_unsuspend_delay of this SubnetsSubnetPool. + + Time delay in seconds before a node which has been automatically unsuspended becomes usable in SmartConnect responses for pool zones. # noqa: E501 + + :param sc_auto_unsuspend_delay: The sc_auto_unsuspend_delay of this SubnetsSubnetPool. # noqa: E501 + :type: int + """ + if sc_auto_unsuspend_delay is not None and sc_auto_unsuspend_delay > 86400: # noqa: E501 + raise ValueError("Invalid value for `sc_auto_unsuspend_delay`, must be a value less than or equal to `86400`") # noqa: E501 + if sc_auto_unsuspend_delay is not None and sc_auto_unsuspend_delay < 0: # noqa: E501 + raise ValueError("Invalid value for `sc_auto_unsuspend_delay`, must be a value greater than or equal to `0`") # noqa: E501 + + self._sc_auto_unsuspend_delay = sc_auto_unsuspend_delay + @property def sc_connect_policy(self): """Gets the sc_connect_policy of this SubnetsSubnetPool. # noqa: E501 @@ -418,8 +422,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone @@ -527,7 +531,7 @@ def sc_ttl(self, sc_ttl): def static_routes(self): """Gets the static_routes of this SubnetsSubnetPool. # noqa: E501 - List of configured static routes in this network pool # noqa: E501 + List of interface members in this pool. # noqa: E501 :return: The static_routes of this SubnetsSubnetPool. # noqa: E501 :rtype: list[SubnetsSubnetPoolStaticRoute] @@ -538,7 +542,7 @@ def static_routes(self): def static_routes(self, static_routes): """Sets the static_routes of this SubnetsSubnetPool. - List of configured static routes in this network pool # noqa: E501 + List of interface members in this pool. # noqa: E501 :param static_routes: The static_routes of this SubnetsSubnetPool. # noqa: E501 :type: list[SubnetsSubnetPoolStaticRoute] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/subnets_subnet_pool_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/subnets_subnet_pool_create_params.py similarity index 85% rename from isilon_sdk/isilon_sdk/v9_11_0/models/subnets_subnet_pool_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/subnets_subnet_pool_create_params.py index c68f86ac2..31aa24bbf 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/subnets_subnet_pool_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/subnets_subnet_pool_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -36,11 +36,11 @@ class SubnetsSubnetPoolCreateParams(object): 'alloc_method': 'str', 'description': 'str', 'ifaces': 'list[SubnetsSubnetPoolIface]', - 'ipv6_perform_dad': 'bool', 'name': 'str', - 'nfs_rroce_only': 'bool', + 'nfsv3_rroce_only': 'bool', 'ranges': 'list[SubnetsSubnetPoolRange]', 'rebalance_policy': 'str', + 'sc_auto_unsuspend_delay': 'int', 'sc_connect_policy': 'str', 'sc_dns_zone': 'str', 'sc_dns_zone_aliases': 'list[str]', @@ -56,11 +56,11 @@ class SubnetsSubnetPoolCreateParams(object): 'alloc_method': 'alloc_method', 'description': 'description', 'ifaces': 'ifaces', - 'ipv6_perform_dad': 'ipv6_perform_dad', 'name': 'name', - 'nfs_rroce_only': 'nfs_rroce_only', + 'nfsv3_rroce_only': 'nfsv3_rroce_only', 'ranges': 'ranges', 'rebalance_policy': 'rebalance_policy', + 'sc_auto_unsuspend_delay': 'sc_auto_unsuspend_delay', 'sc_connect_policy': 'sc_connect_policy', 'sc_dns_zone': 'sc_dns_zone', 'sc_dns_zone_aliases': 'sc_dns_zone_aliases', @@ -70,7 +70,7 @@ class SubnetsSubnetPoolCreateParams(object): 'static_routes': 'static_routes' } - def __init__(self, access_zone=None, aggregation_mode=None, alloc_method=None, description=None, ifaces=None, ipv6_perform_dad=None, name=None, nfs_rroce_only=None, ranges=None, rebalance_policy=None, sc_connect_policy=None, sc_dns_zone=None, sc_dns_zone_aliases=None, sc_failover_policy=None, sc_subnet=None, sc_ttl=None, static_routes=None): # noqa: E501 + def __init__(self, access_zone=None, aggregation_mode=None, alloc_method=None, description=None, ifaces=None, name=None, nfsv3_rroce_only=None, ranges=None, rebalance_policy=None, sc_auto_unsuspend_delay=None, sc_connect_policy=None, sc_dns_zone=None, sc_dns_zone_aliases=None, sc_failover_policy=None, sc_subnet=None, sc_ttl=None, static_routes=None): # noqa: E501 """SubnetsSubnetPoolCreateParams - a model defined in Swagger""" # noqa: E501 self._access_zone = None @@ -78,11 +78,11 @@ def __init__(self, access_zone=None, aggregation_mode=None, alloc_method=None, d self._alloc_method = None self._description = None self._ifaces = None - self._ipv6_perform_dad = None self._name = None - self._nfs_rroce_only = None + self._nfsv3_rroce_only = None self._ranges = None self._rebalance_policy = None + self._sc_auto_unsuspend_delay = None self._sc_connect_policy = None self._sc_dns_zone = None self._sc_dns_zone_aliases = None @@ -102,15 +102,15 @@ def __init__(self, access_zone=None, aggregation_mode=None, alloc_method=None, d self.description = description if ifaces is not None: self.ifaces = ifaces - if ipv6_perform_dad is not None: - self.ipv6_perform_dad = ipv6_perform_dad self.name = name - if nfs_rroce_only is not None: - self.nfs_rroce_only = nfs_rroce_only + if nfsv3_rroce_only is not None: + self.nfsv3_rroce_only = nfsv3_rroce_only if ranges is not None: self.ranges = ranges if rebalance_policy is not None: self.rebalance_policy = rebalance_policy + if sc_auto_unsuspend_delay is not None: + self.sc_auto_unsuspend_delay = sc_auto_unsuspend_delay if sc_connect_policy is not None: self.sc_connect_policy = sc_connect_policy if sc_dns_zone is not None: @@ -157,7 +157,7 @@ def access_zone(self, access_zone): def aggregation_mode(self): """Gets the aggregation_mode of this SubnetsSubnetPoolCreateParams. # noqa: E501 - OneFS supports the following NIC aggregation modes. 'fec' was renamed to 'loadbalance' in OneFS 9.7. # noqa: E501 + OneFS supports the following NIC aggregation modes. # noqa: E501 :return: The aggregation_mode of this SubnetsSubnetPoolCreateParams. # noqa: E501 :rtype: str @@ -168,12 +168,12 @@ def aggregation_mode(self): def aggregation_mode(self, aggregation_mode): """Sets the aggregation_mode of this SubnetsSubnetPoolCreateParams. - OneFS supports the following NIC aggregation modes. 'fec' was renamed to 'loadbalance' in OneFS 9.7. # noqa: E501 + OneFS supports the following NIC aggregation modes. # noqa: E501 :param aggregation_mode: The aggregation_mode of this SubnetsSubnetPoolCreateParams. # noqa: E501 :type: str """ - allowed_values = ["roundrobin", "failover", "lacp", "loadbalance", "none"] # noqa: E501 + allowed_values = ["roundrobin", "failover", "lacp", "fec"] # noqa: E501 if aggregation_mode not in allowed_values: raise ValueError( "Invalid value for `aggregation_mode` ({0}), must be one of {1}" # noqa: E501 @@ -202,7 +202,7 @@ def alloc_method(self, alloc_method): :param alloc_method: The alloc_method of this SubnetsSubnetPoolCreateParams. # noqa: E501 :type: str """ - allowed_values = ["dynamic", "static", "externally_managed"] # noqa: E501 + allowed_values = ["dynamic", "static"] # noqa: E501 if alloc_method not in allowed_values: raise ValueError( "Invalid value for `alloc_method` ({0}), must be one of {1}" # noqa: E501 @@ -261,29 +261,6 @@ def ifaces(self, ifaces): self._ifaces = ifaces - @property - def ipv6_perform_dad(self): - """Gets the ipv6_perform_dad of this SubnetsSubnetPoolCreateParams. # noqa: E501 - - Indicates if the Network Pool should perform IPv6 Duplicate Address Detection when configuring the IPs. Only applies to IPv6 Network Pools. # noqa: E501 - - :return: The ipv6_perform_dad of this SubnetsSubnetPoolCreateParams. # noqa: E501 - :rtype: bool - """ - return self._ipv6_perform_dad - - @ipv6_perform_dad.setter - def ipv6_perform_dad(self, ipv6_perform_dad): - """Sets the ipv6_perform_dad of this SubnetsSubnetPoolCreateParams. - - Indicates if the Network Pool should perform IPv6 Duplicate Address Detection when configuring the IPs. Only applies to IPv6 Network Pools. # noqa: E501 - - :param ipv6_perform_dad: The ipv6_perform_dad of this SubnetsSubnetPoolCreateParams. # noqa: E501 - :type: bool - """ - - self._ipv6_perform_dad = ipv6_perform_dad - @property def name(self): """Gets the name of this SubnetsSubnetPoolCreateParams. # noqa: E501 @@ -316,27 +293,27 @@ def name(self, name): self._name = name @property - def nfs_rroce_only(self): - """Gets the nfs_rroce_only of this SubnetsSubnetPoolCreateParams. # noqa: E501 + def nfsv3_rroce_only(self): + """Gets the nfsv3_rroce_only of this SubnetsSubnetPoolCreateParams. # noqa: E501 Indicates that pool contains only RDMA RRoCE capable interfaces. # noqa: E501 - :return: The nfs_rroce_only of this SubnetsSubnetPoolCreateParams. # noqa: E501 + :return: The nfsv3_rroce_only of this SubnetsSubnetPoolCreateParams. # noqa: E501 :rtype: bool """ - return self._nfs_rroce_only + return self._nfsv3_rroce_only - @nfs_rroce_only.setter - def nfs_rroce_only(self, nfs_rroce_only): - """Sets the nfs_rroce_only of this SubnetsSubnetPoolCreateParams. + @nfsv3_rroce_only.setter + def nfsv3_rroce_only(self, nfsv3_rroce_only): + """Sets the nfsv3_rroce_only of this SubnetsSubnetPoolCreateParams. Indicates that pool contains only RDMA RRoCE capable interfaces. # noqa: E501 - :param nfs_rroce_only: The nfs_rroce_only of this SubnetsSubnetPoolCreateParams. # noqa: E501 + :param nfsv3_rroce_only: The nfsv3_rroce_only of this SubnetsSubnetPoolCreateParams. # noqa: E501 :type: bool """ - self._nfs_rroce_only = nfs_rroce_only + self._nfsv3_rroce_only = nfsv3_rroce_only @property def ranges(self): @@ -365,7 +342,7 @@ def ranges(self, ranges): def rebalance_policy(self): """Gets the rebalance_policy of this SubnetsSubnetPoolCreateParams. # noqa: E501 - Rebalance policy. # noqa: E501 + Rebalance policy.. # noqa: E501 :return: The rebalance_policy of this SubnetsSubnetPoolCreateParams. # noqa: E501 :rtype: str @@ -376,7 +353,7 @@ def rebalance_policy(self): def rebalance_policy(self, rebalance_policy): """Sets the rebalance_policy of this SubnetsSubnetPoolCreateParams. - Rebalance policy. # noqa: E501 + Rebalance policy.. # noqa: E501 :param rebalance_policy: The rebalance_policy of this SubnetsSubnetPoolCreateParams. # noqa: E501 :type: str @@ -390,6 +367,33 @@ def rebalance_policy(self, rebalance_policy): self._rebalance_policy = rebalance_policy + @property + def sc_auto_unsuspend_delay(self): + """Gets the sc_auto_unsuspend_delay of this SubnetsSubnetPoolCreateParams. # noqa: E501 + + Time delay in seconds before a node which has been automatically unsuspended becomes usable in SmartConnect responses for pool zones. # noqa: E501 + + :return: The sc_auto_unsuspend_delay of this SubnetsSubnetPoolCreateParams. # noqa: E501 + :rtype: int + """ + return self._sc_auto_unsuspend_delay + + @sc_auto_unsuspend_delay.setter + def sc_auto_unsuspend_delay(self, sc_auto_unsuspend_delay): + """Sets the sc_auto_unsuspend_delay of this SubnetsSubnetPoolCreateParams. + + Time delay in seconds before a node which has been automatically unsuspended becomes usable in SmartConnect responses for pool zones. # noqa: E501 + + :param sc_auto_unsuspend_delay: The sc_auto_unsuspend_delay of this SubnetsSubnetPoolCreateParams. # noqa: E501 + :type: int + """ + if sc_auto_unsuspend_delay is not None and sc_auto_unsuspend_delay > 86400: # noqa: E501 + raise ValueError("Invalid value for `sc_auto_unsuspend_delay`, must be a value less than or equal to `86400`") # noqa: E501 + if sc_auto_unsuspend_delay is not None and sc_auto_unsuspend_delay < 0: # noqa: E501 + raise ValueError("Invalid value for `sc_auto_unsuspend_delay`, must be a value greater than or equal to `0`") # noqa: E501 + + self._sc_auto_unsuspend_delay = sc_auto_unsuspend_delay + @property def sc_connect_policy(self): """Gets the sc_connect_policy of this SubnetsSubnetPoolCreateParams. # noqa: E501 @@ -443,8 +447,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone @@ -558,7 +562,7 @@ def sc_ttl(self, sc_ttl): def static_routes(self): """Gets the static_routes of this SubnetsSubnetPoolCreateParams. # noqa: E501 - List of configured static routes in this network pool # noqa: E501 + List of interface members in this pool. # noqa: E501 :return: The static_routes of this SubnetsSubnetPoolCreateParams. # noqa: E501 :rtype: list[SubnetsSubnetPoolStaticRoute] @@ -569,7 +573,7 @@ def static_routes(self): def static_routes(self, static_routes): """Sets the static_routes of this SubnetsSubnetPoolCreateParams. - List of configured static routes in this network pool # noqa: E501 + List of interface members in this pool. # noqa: E501 :param static_routes: The static_routes of this SubnetsSubnetPoolCreateParams. # noqa: E501 :type: list[SubnetsSubnetPoolStaticRoute] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/subnets_subnet_pool_iface.py b/isilon_sdk/isilon_sdk/v9_4_0/models/subnets_subnet_pool_iface.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/subnets_subnet_pool_iface.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/subnets_subnet_pool_iface.py index 53119522d..28c2ba4c3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/subnets_subnet_pool_iface.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/subnets_subnet_pool_iface.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/subnets_subnet_pool_range.py b/isilon_sdk/isilon_sdk/v9_4_0/models/subnets_subnet_pool_range.py similarity index 95% rename from isilon_sdk/isilon_sdk/v9_11_0/models/subnets_subnet_pool_range.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/subnets_subnet_pool_range.py index 68d28f0e4..d18ec92db 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/subnets_subnet_pool_range.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/subnets_subnet_pool_range.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `40`") # noqa: E501 if high is not None and len(high) < 1: raise ValueError("Invalid value for `high`, length must be greater than or equal to `1`") # noqa: E501 - if high is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if high is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `40`") # noqa: E501 if low is not None and len(low) < 1: raise ValueError("Invalid value for `low`, length must be greater than or equal to `1`") # noqa: E501 - if low is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if low is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/subnets_subnet_pool_static_route.py b/isilon_sdk/isilon_sdk/v9_4_0/models/subnets_subnet_pool_static_route.py similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/models/subnets_subnet_pool_static_route.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/subnets_subnet_pool_static_route.py index 9dd54feb7..cc219977e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/subnets_subnet_pool_static_route.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/subnets_subnet_pool_static_route.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -80,8 +80,8 @@ def gateway(self, gateway): raise ValueError("Invalid value for `gateway`, length must be less than or equal to `40`") # noqa: E501 if gateway is not None and len(gateway) < 1: raise ValueError("Invalid value for `gateway`, length must be greater than or equal to `1`") # noqa: E501 - if gateway is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', gateway): # noqa: E501 - raise ValueError(r"Invalid value for `gateway`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if gateway is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', gateway): # noqa: E501 + raise ValueError(r"Invalid value for `gateway`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._gateway = gateway @@ -140,8 +140,8 @@ def subnet(self, subnet): raise ValueError("Invalid value for `subnet`, length must be less than or equal to `40`") # noqa: E501 if subnet is not None and len(subnet) < 1: raise ValueError("Invalid value for `subnet`, length must be greater than or equal to `1`") # noqa: E501 - if subnet is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', subnet): # noqa: E501 - raise ValueError(r"Invalid value for `subnet`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if subnet is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', subnet): # noqa: E501 + raise ValueError(r"Invalid value for `subnet`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._subnet = subnet diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/subnets_subnet_pools.py b/isilon_sdk/isilon_sdk/v9_4_0/models/subnets_subnet_pools.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/subnets_subnet_pools.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/subnets_subnet_pools.py index 8615c3cb4..980bf03ee 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/subnets_subnet_pools.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/subnets_subnet_pools.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/subnets_subnet_pools_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/subnets_subnet_pools_extended.py similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/models/subnets_subnet_pools_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/subnets_subnet_pools_extended.py index 38a315eb9..c5a20dcea 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/subnets_subnet_pools_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/subnets_subnet_pools_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,7 +31,7 @@ class SubnetsSubnetPoolsExtended(object): and the value is json key in definition. """ swagger_types = { - 'pools': 'list[SubnetsSubnetPoolsPoolExtended]', + 'pools': 'list[SubnetsSubnetPoolsPool]', 'resume': 'str', 'total': 'int' } @@ -63,7 +63,7 @@ def pools(self): :return: The pools of this SubnetsSubnetPoolsExtended. # noqa: E501 - :rtype: list[SubnetsSubnetPoolsPoolExtended] + :rtype: list[SubnetsSubnetPoolsPool] """ return self._pools @@ -73,7 +73,7 @@ def pools(self, pools): :param pools: The pools of this SubnetsSubnetPoolsExtended. # noqa: E501 - :type: list[SubnetsSubnetPoolsPoolExtended] + :type: list[SubnetsSubnetPoolsPool] """ self._pools = pools diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/subnets_subnet_pools_pool.py b/isilon_sdk/isilon_sdk/v9_4_0/models/subnets_subnet_pools_pool.py similarity index 79% rename from isilon_sdk/isilon_sdk/v9_11_0/models/subnets_subnet_pools_pool.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/subnets_subnet_pools_pool.py index f8f150584..f2c69c5c5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/subnets_subnet_pools_pool.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/subnets_subnet_pools_pool.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -36,18 +36,15 @@ class SubnetsSubnetPoolsPool(object): 'aggregation_mode': 'str', 'alloc_method': 'str', 'description': 'str', - 'external_manager': 'str', - 'firewall_policy': 'str', 'groupnet': 'str', 'id': 'str', 'ifaces': 'list[SubnetsSubnetPoolIface]', - 'ipv6_perform_dad': 'bool', - 'linklayer': 'str', 'name': 'str', - 'nfs_rroce_only': 'bool', + 'nfsv3_rroce_only': 'bool', 'ranges': 'list[SubnetsSubnetPoolRange]', 'rebalance_policy': 'str', 'rules': 'list[str]', + 'sc_auto_unsuspend_delay': 'int', 'sc_connect_policy': 'str', 'sc_dns_zone': 'str', 'sc_dns_zone_aliases': 'list[str]', @@ -65,18 +62,15 @@ class SubnetsSubnetPoolsPool(object): 'aggregation_mode': 'aggregation_mode', 'alloc_method': 'alloc_method', 'description': 'description', - 'external_manager': 'external_manager', - 'firewall_policy': 'firewall_policy', 'groupnet': 'groupnet', 'id': 'id', 'ifaces': 'ifaces', - 'ipv6_perform_dad': 'ipv6_perform_dad', - 'linklayer': 'linklayer', 'name': 'name', - 'nfs_rroce_only': 'nfs_rroce_only', + 'nfsv3_rroce_only': 'nfsv3_rroce_only', 'ranges': 'ranges', 'rebalance_policy': 'rebalance_policy', 'rules': 'rules', + 'sc_auto_unsuspend_delay': 'sc_auto_unsuspend_delay', 'sc_connect_policy': 'sc_connect_policy', 'sc_dns_zone': 'sc_dns_zone', 'sc_dns_zone_aliases': 'sc_dns_zone_aliases', @@ -88,7 +82,7 @@ class SubnetsSubnetPoolsPool(object): 'subnet': 'subnet' } - def __init__(self, access_zone=None, addr_family=None, aggregation_mode=None, alloc_method=None, description=None, external_manager=None, firewall_policy=None, groupnet=None, id=None, ifaces=None, ipv6_perform_dad=None, linklayer=None, name=None, nfs_rroce_only=None, ranges=None, rebalance_policy=None, rules=None, sc_connect_policy=None, sc_dns_zone=None, sc_dns_zone_aliases=None, sc_failover_policy=None, sc_subnet=None, sc_suspended_nodes=None, sc_ttl=None, static_routes=None, subnet=None): # noqa: E501 + def __init__(self, access_zone=None, addr_family=None, aggregation_mode=None, alloc_method=None, description=None, groupnet=None, id=None, ifaces=None, name=None, nfsv3_rroce_only=None, ranges=None, rebalance_policy=None, rules=None, sc_auto_unsuspend_delay=None, sc_connect_policy=None, sc_dns_zone=None, sc_dns_zone_aliases=None, sc_failover_policy=None, sc_subnet=None, sc_suspended_nodes=None, sc_ttl=None, static_routes=None, subnet=None): # noqa: E501 """SubnetsSubnetPoolsPool - a model defined in Swagger""" # noqa: E501 self._access_zone = None @@ -96,18 +90,15 @@ def __init__(self, access_zone=None, addr_family=None, aggregation_mode=None, al self._aggregation_mode = None self._alloc_method = None self._description = None - self._external_manager = None - self._firewall_policy = None self._groupnet = None self._id = None self._ifaces = None - self._ipv6_perform_dad = None - self._linklayer = None self._name = None - self._nfs_rroce_only = None + self._nfsv3_rroce_only = None self._ranges = None self._rebalance_policy = None self._rules = None + self._sc_auto_unsuspend_delay = None self._sc_connect_policy = None self._sc_dns_zone = None self._sc_dns_zone_aliases = None @@ -124,19 +115,15 @@ def __init__(self, access_zone=None, addr_family=None, aggregation_mode=None, al self.aggregation_mode = aggregation_mode self.alloc_method = alloc_method self.description = description - if external_manager is not None: - self.external_manager = external_manager - self.firewall_policy = firewall_policy self.groupnet = groupnet self.id = id self.ifaces = ifaces - self.ipv6_perform_dad = ipv6_perform_dad - self.linklayer = linklayer self.name = name - self.nfs_rroce_only = nfs_rroce_only + self.nfsv3_rroce_only = nfsv3_rroce_only self.ranges = ranges self.rebalance_policy = rebalance_policy self.rules = rules + self.sc_auto_unsuspend_delay = sc_auto_unsuspend_delay self.sc_connect_policy = sc_connect_policy self.sc_dns_zone = sc_dns_zone self.sc_dns_zone_aliases = sc_dns_zone_aliases @@ -211,7 +198,7 @@ def addr_family(self, addr_family): def aggregation_mode(self): """Gets the aggregation_mode of this SubnetsSubnetPoolsPool. # noqa: E501 - OneFS supports the following NIC aggregation modes. 'fec' was renamed to 'loadbalance' in OneFS 9.7. # noqa: E501 + OneFS supports the following NIC aggregation modes. # noqa: E501 :return: The aggregation_mode of this SubnetsSubnetPoolsPool. # noqa: E501 :rtype: str @@ -222,14 +209,14 @@ def aggregation_mode(self): def aggregation_mode(self, aggregation_mode): """Sets the aggregation_mode of this SubnetsSubnetPoolsPool. - OneFS supports the following NIC aggregation modes. 'fec' was renamed to 'loadbalance' in OneFS 9.7. # noqa: E501 + OneFS supports the following NIC aggregation modes. # noqa: E501 :param aggregation_mode: The aggregation_mode of this SubnetsSubnetPoolsPool. # noqa: E501 :type: str """ if aggregation_mode is None: raise ValueError("Invalid value for `aggregation_mode`, must not be `None`") # noqa: E501 - allowed_values = ["roundrobin", "failover", "lacp", "loadbalance", "none"] # noqa: E501 + allowed_values = ["roundrobin", "failover", "lacp", "fec"] # noqa: E501 if aggregation_mode not in allowed_values: raise ValueError( "Invalid value for `aggregation_mode` ({0}), must be one of {1}" # noqa: E501 @@ -260,7 +247,7 @@ def alloc_method(self, alloc_method): """ if alloc_method is None: raise ValueError("Invalid value for `alloc_method`, must not be `None`") # noqa: E501 - allowed_values = ["dynamic", "static", "externally_managed"] # noqa: E501 + allowed_values = ["dynamic", "static"] # noqa: E501 if alloc_method not in allowed_values: raise ValueError( "Invalid value for `alloc_method` ({0}), must be one of {1}" # noqa: E501 @@ -298,62 +285,6 @@ def description(self, description): self._description = description - @property - def external_manager(self): - """Gets the external_manager of this SubnetsSubnetPoolsPool. # noqa: E501 - - Name of the system allocating the IPs for this Network Pool. # noqa: E501 - - :return: The external_manager of this SubnetsSubnetPoolsPool. # noqa: E501 - :rtype: str - """ - return self._external_manager - - @external_manager.setter - def external_manager(self, external_manager): - """Sets the external_manager of this SubnetsSubnetPoolsPool. - - Name of the system allocating the IPs for this Network Pool. # noqa: E501 - - :param external_manager: The external_manager of this SubnetsSubnetPoolsPool. # noqa: E501 - :type: str - """ - if external_manager is not None and len(external_manager) > 128: - raise ValueError("Invalid value for `external_manager`, length must be less than or equal to `128`") # noqa: E501 - if external_manager is not None and len(external_manager) < 0: - raise ValueError("Invalid value for `external_manager`, length must be greater than or equal to `0`") # noqa: E501 - - self._external_manager = external_manager - - @property - def firewall_policy(self): - """Gets the firewall_policy of this SubnetsSubnetPoolsPool. # noqa: E501 - - Name of the Firewall Policy associated with this Network Pool. # noqa: E501 - - :return: The firewall_policy of this SubnetsSubnetPoolsPool. # noqa: E501 - :rtype: str - """ - return self._firewall_policy - - @firewall_policy.setter - def firewall_policy(self, firewall_policy): - """Sets the firewall_policy of this SubnetsSubnetPoolsPool. - - Name of the Firewall Policy associated with this Network Pool. # noqa: E501 - - :param firewall_policy: The firewall_policy of this SubnetsSubnetPoolsPool. # noqa: E501 - :type: str - """ - if firewall_policy is None: - raise ValueError("Invalid value for `firewall_policy`, must not be `None`") # noqa: E501 - if firewall_policy is not None and len(firewall_policy) > 32: - raise ValueError("Invalid value for `firewall_policy`, length must be less than or equal to `32`") # noqa: E501 - if firewall_policy is not None and len(firewall_policy) < 1: - raise ValueError("Invalid value for `firewall_policy`, length must be greater than or equal to `1`") # noqa: E501 - - self._firewall_policy = firewall_policy - @property def groupnet(self): """Gets the groupnet of this SubnetsSubnetPoolsPool. # noqa: E501 @@ -437,62 +368,6 @@ def ifaces(self, ifaces): self._ifaces = ifaces - @property - def ipv6_perform_dad(self): - """Gets the ipv6_perform_dad of this SubnetsSubnetPoolsPool. # noqa: E501 - - Indicates if the Network Pool should perform IPv6 Duplicate Address Detection when configuring the IPs. Only applies to IPv6 Network Pools. # noqa: E501 - - :return: The ipv6_perform_dad of this SubnetsSubnetPoolsPool. # noqa: E501 - :rtype: bool - """ - return self._ipv6_perform_dad - - @ipv6_perform_dad.setter - def ipv6_perform_dad(self, ipv6_perform_dad): - """Sets the ipv6_perform_dad of this SubnetsSubnetPoolsPool. - - Indicates if the Network Pool should perform IPv6 Duplicate Address Detection when configuring the IPs. Only applies to IPv6 Network Pools. # noqa: E501 - - :param ipv6_perform_dad: The ipv6_perform_dad of this SubnetsSubnetPoolsPool. # noqa: E501 - :type: bool - """ - if ipv6_perform_dad is None: - raise ValueError("Invalid value for `ipv6_perform_dad`, must not be `None`") # noqa: E501 - - self._ipv6_perform_dad = ipv6_perform_dad - - @property - def linklayer(self): - """Gets the linklayer of this SubnetsSubnetPoolsPool. # noqa: E501 - - Specifies the type of network linklayer this Network Pool uses. # noqa: E501 - - :return: The linklayer of this SubnetsSubnetPoolsPool. # noqa: E501 - :rtype: str - """ - return self._linklayer - - @linklayer.setter - def linklayer(self, linklayer): - """Sets the linklayer of this SubnetsSubnetPoolsPool. - - Specifies the type of network linklayer this Network Pool uses. # noqa: E501 - - :param linklayer: The linklayer of this SubnetsSubnetPoolsPool. # noqa: E501 - :type: str - """ - if linklayer is None: - raise ValueError("Invalid value for `linklayer`, must not be `None`") # noqa: E501 - allowed_values = ["ethernet", "infiniband"] # noqa: E501 - if linklayer not in allowed_values: - raise ValueError( - "Invalid value for `linklayer` ({0}), must be one of {1}" # noqa: E501 - .format(linklayer, allowed_values) - ) - - self._linklayer = linklayer - @property def name(self): """Gets the name of this SubnetsSubnetPoolsPool. # noqa: E501 @@ -525,29 +400,29 @@ def name(self, name): self._name = name @property - def nfs_rroce_only(self): - """Gets the nfs_rroce_only of this SubnetsSubnetPoolsPool. # noqa: E501 + def nfsv3_rroce_only(self): + """Gets the nfsv3_rroce_only of this SubnetsSubnetPoolsPool. # noqa: E501 Indicates that pool contains only RDMA RRoCE capable interfaces. # noqa: E501 - :return: The nfs_rroce_only of this SubnetsSubnetPoolsPool. # noqa: E501 + :return: The nfsv3_rroce_only of this SubnetsSubnetPoolsPool. # noqa: E501 :rtype: bool """ - return self._nfs_rroce_only + return self._nfsv3_rroce_only - @nfs_rroce_only.setter - def nfs_rroce_only(self, nfs_rroce_only): - """Sets the nfs_rroce_only of this SubnetsSubnetPoolsPool. + @nfsv3_rroce_only.setter + def nfsv3_rroce_only(self, nfsv3_rroce_only): + """Sets the nfsv3_rroce_only of this SubnetsSubnetPoolsPool. Indicates that pool contains only RDMA RRoCE capable interfaces. # noqa: E501 - :param nfs_rroce_only: The nfs_rroce_only of this SubnetsSubnetPoolsPool. # noqa: E501 + :param nfsv3_rroce_only: The nfsv3_rroce_only of this SubnetsSubnetPoolsPool. # noqa: E501 :type: bool """ - if nfs_rroce_only is None: - raise ValueError("Invalid value for `nfs_rroce_only`, must not be `None`") # noqa: E501 + if nfsv3_rroce_only is None: + raise ValueError("Invalid value for `nfsv3_rroce_only`, must not be `None`") # noqa: E501 - self._nfs_rroce_only = nfs_rroce_only + self._nfsv3_rroce_only = nfsv3_rroce_only @property def ranges(self): @@ -578,7 +453,7 @@ def ranges(self, ranges): def rebalance_policy(self): """Gets the rebalance_policy of this SubnetsSubnetPoolsPool. # noqa: E501 - Rebalance policy. # noqa: E501 + Rebalance policy.. # noqa: E501 :return: The rebalance_policy of this SubnetsSubnetPoolsPool. # noqa: E501 :rtype: str @@ -589,7 +464,7 @@ def rebalance_policy(self): def rebalance_policy(self, rebalance_policy): """Sets the rebalance_policy of this SubnetsSubnetPoolsPool. - Rebalance policy. # noqa: E501 + Rebalance policy.. # noqa: E501 :param rebalance_policy: The rebalance_policy of this SubnetsSubnetPoolsPool. # noqa: E501 :type: str @@ -630,6 +505,35 @@ def rules(self, rules): self._rules = rules + @property + def sc_auto_unsuspend_delay(self): + """Gets the sc_auto_unsuspend_delay of this SubnetsSubnetPoolsPool. # noqa: E501 + + Time delay in seconds before a node which has been automatically unsuspended becomes usable in SmartConnect responses for pool zones. # noqa: E501 + + :return: The sc_auto_unsuspend_delay of this SubnetsSubnetPoolsPool. # noqa: E501 + :rtype: int + """ + return self._sc_auto_unsuspend_delay + + @sc_auto_unsuspend_delay.setter + def sc_auto_unsuspend_delay(self, sc_auto_unsuspend_delay): + """Sets the sc_auto_unsuspend_delay of this SubnetsSubnetPoolsPool. + + Time delay in seconds before a node which has been automatically unsuspended becomes usable in SmartConnect responses for pool zones. # noqa: E501 + + :param sc_auto_unsuspend_delay: The sc_auto_unsuspend_delay of this SubnetsSubnetPoolsPool. # noqa: E501 + :type: int + """ + if sc_auto_unsuspend_delay is None: + raise ValueError("Invalid value for `sc_auto_unsuspend_delay`, must not be `None`") # noqa: E501 + if sc_auto_unsuspend_delay is not None and sc_auto_unsuspend_delay > 86400: # noqa: E501 + raise ValueError("Invalid value for `sc_auto_unsuspend_delay`, must be a value less than or equal to `86400`") # noqa: E501 + if sc_auto_unsuspend_delay is not None and sc_auto_unsuspend_delay < 0: # noqa: E501 + raise ValueError("Invalid value for `sc_auto_unsuspend_delay`, must be a value greater than or equal to `0`") # noqa: E501 + + self._sc_auto_unsuspend_delay = sc_auto_unsuspend_delay + @property def sc_connect_policy(self): """Gets the sc_connect_policy of this SubnetsSubnetPoolsPool. # noqa: E501 @@ -687,8 +591,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone @@ -835,7 +739,7 @@ def sc_ttl(self, sc_ttl): def static_routes(self): """Gets the static_routes of this SubnetsSubnetPoolsPool. # noqa: E501 - List of configured static routes in this network pool # noqa: E501 + List of interface members in this pool. # noqa: E501 :return: The static_routes of this SubnetsSubnetPoolsPool. # noqa: E501 :rtype: list[SubnetsSubnetPoolStaticRoute] @@ -846,7 +750,7 @@ def static_routes(self): def static_routes(self, static_routes): """Sets the static_routes of this SubnetsSubnetPoolsPool. - List of configured static routes in this network pool # noqa: E501 + List of interface members in this pool. # noqa: E501 :param static_routes: The static_routes of this SubnetsSubnetPoolsPool. # noqa: E501 :type: list[SubnetsSubnetPoolStaticRoute] diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_client.py b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_client.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/summary_client.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/summary_client.py index 5be9f8651..0350c4cbd 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_client.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_client.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_client_client_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_client_client_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/summary_client_client_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/summary_client_client_item.py index ecd2dc0cc..7b5d99175 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_client_client_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_client_client_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_cloud.py b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_cloud.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/summary_cloud.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/summary_cloud.py index efffc474d..7459879b0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_cloud.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_cloud.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_cloud_cloud_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_cloud_cloud_item.py similarity index 94% rename from isilon_sdk/isilon_sdk/v9_11_0/models/summary_cloud_cloud_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/summary_cloud_cloud_item.py index a4980acf5..c730eb77c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_cloud_cloud_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_cloud_cloud_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -32,7 +32,7 @@ class SummaryCloudCloudItem(object): """ swagger_types = { 'account': 'str', - 'account_key': 'int', + 'account_key': 'str', 'cloud': 'str', 'deletes': 'int', 'guid': 'str', @@ -138,10 +138,10 @@ def account(self, account): def account_key(self): """Gets the account_key of this SummaryCloudCloudItem. # noqa: E501 - Key used along with cluster GUID, to uniquely identify an account # noqa: E501 + Key for account # noqa: E501 :return: The account_key of this SummaryCloudCloudItem. # noqa: E501 - :rtype: int + :rtype: str """ return self._account_key @@ -149,15 +149,15 @@ def account_key(self): def account_key(self, account_key): """Sets the account_key of this SummaryCloudCloudItem. - Key used along with cluster GUID, to uniquely identify an account # noqa: E501 + Key for account # noqa: E501 :param account_key: The account_key of this SummaryCloudCloudItem. # noqa: E501 - :type: int + :type: str """ - if account_key is not None and account_key > 4294967295: # noqa: E501 - raise ValueError("Invalid value for `account_key`, must be a value less than or equal to `4294967295`") # noqa: E501 - if account_key is not None and account_key < 0: # noqa: E501 - raise ValueError("Invalid value for `account_key`, must be a value greater than or equal to `0`") # noqa: E501 + if account_key is not None and len(account_key) > 256: + raise ValueError("Invalid value for `account_key`, length must be less than or equal to `256`") # noqa: E501 + if account_key is not None and len(account_key) < 1: + raise ValueError("Invalid value for `account_key`, length must be greater than or equal to `1`") # noqa: E501 self._account_key = account_key @@ -183,8 +183,8 @@ def cloud(self, cloud): """ if cloud is not None and len(cloud) > 255: raise ValueError("Invalid value for `cloud`, length must be less than or equal to `255`") # noqa: E501 - if cloud is not None and len(cloud) < 0: - raise ValueError("Invalid value for `cloud`, length must be greater than or equal to `0`") # noqa: E501 + if cloud is not None and len(cloud) < 1: + raise ValueError("Invalid value for `cloud`, length must be greater than or equal to `1`") # noqa: E501 self._cloud = cloud @@ -237,8 +237,8 @@ def guid(self, guid): """ if guid is not None and len(guid) > 255: raise ValueError("Invalid value for `guid`, length must be less than or equal to `255`") # noqa: E501 - if guid is not None and len(guid) < 0: - raise ValueError("Invalid value for `guid`, length must be greater than or equal to `0`") # noqa: E501 + if guid is not None and len(guid) < 1: + raise ValueError("Invalid value for `guid`, length must be greater than or equal to `1`") # noqa: E501 self._guid = guid @@ -345,8 +345,8 @@ def policy(self, policy): """ if policy is not None and len(policy) > 255: raise ValueError("Invalid value for `policy`, length must be less than or equal to `255`") # noqa: E501 - if policy is not None and len(policy) < 0: - raise ValueError("Invalid value for `policy`, length must be greater than or equal to `0`") # noqa: E501 + if policy is not None and len(policy) < 1: + raise ValueError("Invalid value for `policy`, length must be greater than or equal to `1`") # noqa: E501 self._policy = policy diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_drive.py b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_drive.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/summary_drive.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/summary_drive.py index eeca94674..29cac3024 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_drive.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_drive.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_drive_drive_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_drive_drive_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/summary_drive_drive_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/summary_drive_drive_item.py index 41830af69..896f7e9d4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_drive_drive_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_drive_drive_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_heat.py b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_heat.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/summary_heat.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/summary_heat.py index 0ec4230ee..90cf9ef47 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_heat.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_heat.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_heat_heat_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_heat_heat_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/summary_heat_heat_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/summary_heat_heat_item.py index ba160e458..e91c07645 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_heat_heat_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_heat_heat_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol.py b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol.py index 7180aeaca..abd4366a9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_protocol_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_protocol_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_protocol_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_protocol_item.py index e0169849b..e929a0906 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_protocol_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_protocol_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats.py b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats.py index 3d21fb392..6e4b308e4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats_protocol_stats.py b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats_protocol_stats.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats_protocol_stats.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats_protocol_stats.py index c29d11e2c..018106cc3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats_protocol_stats.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats_protocol_stats.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats_protocol_stats_cpu.py b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats_protocol_stats_cpu.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats_protocol_stats_cpu.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats_protocol_stats_cpu.py index c106dda0d..7ef806e71 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats_protocol_stats_cpu.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats_protocol_stats_cpu.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats_protocol_stats_disk.py b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats_protocol_stats_disk.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats_protocol_stats_disk.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats_protocol_stats_disk.py index aac760581..aaa878b30 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats_protocol_stats_disk.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats_protocol_stats_disk.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats_protocol_stats_network.py b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats_protocol_stats_network.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats_protocol_stats_network.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats_protocol_stats_network.py index fec1cbb3e..9c3012373 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats_protocol_stats_network.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats_protocol_stats_network.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats_protocol_stats_network_in.py b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats_protocol_stats_network_in.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats_protocol_stats_network_in.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats_protocol_stats_network_in.py index b2765ed84..1631ea5d1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats_protocol_stats_network_in.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats_protocol_stats_network_in.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats_protocol_stats_network_out.py b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats_protocol_stats_network_out.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats_protocol_stats_network_out.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats_protocol_stats_network_out.py index 5ef5cd1f5..6927904ba 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats_protocol_stats_network_out.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats_protocol_stats_network_out.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats_protocol_stats_onefs.py b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats_protocol_stats_onefs.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats_protocol_stats_onefs.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats_protocol_stats_onefs.py index ba10f186f..2db072877 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats_protocol_stats_onefs.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats_protocol_stats_onefs.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats_protocol_stats_protocol.py b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats_protocol_stats_protocol.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats_protocol_stats_protocol.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats_protocol_stats_protocol.py index c566d1f27..e8e352617 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats_protocol_stats_protocol.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats_protocol_stats_protocol.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats_protocol_stats_protocol_data_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats_protocol_stats_protocol_data_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats_protocol_stats_protocol_data_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats_protocol_stats_protocol_data_item.py index d548998b7..4b864ab3f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_protocol_stats_protocol_stats_protocol_data_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_protocol_stats_protocol_stats_protocol_data_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_system.py b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_system.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/summary_system.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/summary_system.py index fceb01899..bf3ea354f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_system.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_system.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_system_system_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_system_system_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/summary_system_system_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/summary_system_system_item.py index 274d538b8..e4b2987dc 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_system_system_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_system_system_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_workload.py b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_workload.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/summary_workload.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/summary_workload.py index 5452d5b4a..e93891df6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_workload.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_workload.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_workload_workload_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_workload_workload_item.py similarity index 87% rename from isilon_sdk/isilon_sdk/v9_11_0/models/summary_workload_workload_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/summary_workload_workload_item.py index d7718d084..a2a776358 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/summary_workload_workload_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/summary_workload_workload_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -43,9 +43,6 @@ class SummaryWorkloadWorkloadItem(object): 'job_type': 'str', 'l2': 'float', 'l3': 'float', - 'latency_other': 'float', - 'latency_read': 'float', - 'latency_write': 'float', 'local_address': 'str', 'local_name': 'str', 'node': 'float', @@ -81,9 +78,6 @@ class SummaryWorkloadWorkloadItem(object): 'job_type': 'job_type', 'l2': 'l2', 'l3': 'l3', - 'latency_other': 'latency_other', - 'latency_read': 'latency_read', - 'latency_write': 'latency_write', 'local_address': 'local_address', 'local_name': 'local_name', 'node': 'node', @@ -106,7 +100,7 @@ class SummaryWorkloadWorkloadItem(object): 'zone_name': 'zone_name' } - def __init__(self, bytes_in=None, bytes_out=None, cpu=None, domain_id=None, error=None, export_id=None, group_id=None, group_sid=None, groupname=None, job_type=None, l2=None, l3=None, latency_other=None, latency_read=None, latency_write=None, local_address=None, local_name=None, node=None, ops=None, path=None, protocol=None, reads=None, remote_address=None, remote_name=None, share_name=None, system_name=None, time=None, user_id=None, user_sid=None, username=None, workload_id=None, workload_type=None, writes=None, zone_id=None, zone_name=None): # noqa: E501 + def __init__(self, bytes_in=None, bytes_out=None, cpu=None, domain_id=None, error=None, export_id=None, group_id=None, group_sid=None, groupname=None, job_type=None, l2=None, l3=None, local_address=None, local_name=None, node=None, ops=None, path=None, protocol=None, reads=None, remote_address=None, remote_name=None, share_name=None, system_name=None, time=None, user_id=None, user_sid=None, username=None, workload_id=None, workload_type=None, writes=None, zone_id=None, zone_name=None): # noqa: E501 """SummaryWorkloadWorkloadItem - a model defined in Swagger""" # noqa: E501 self._bytes_in = None @@ -121,9 +115,6 @@ def __init__(self, bytes_in=None, bytes_out=None, cpu=None, domain_id=None, erro self._job_type = None self._l2 = None self._l3 = None - self._latency_other = None - self._latency_read = None - self._latency_write = None self._local_address = None self._local_name = None self._node = None @@ -165,9 +156,6 @@ def __init__(self, bytes_in=None, bytes_out=None, cpu=None, domain_id=None, erro self.job_type = job_type self.l2 = l2 self.l3 = l3 - self.latency_other = latency_other - self.latency_read = latency_read - self.latency_write = latency_write if local_address is not None: self.local_address = local_address if local_name is not None: @@ -510,93 +498,6 @@ def l3(self, l3): self._l3 = l3 - @property - def latency_other(self): - """Gets the latency_other of this SummaryWorkloadWorkloadItem. # noqa: E501 - - Latency on other operations. # noqa: E501 - - :return: The latency_other of this SummaryWorkloadWorkloadItem. # noqa: E501 - :rtype: float - """ - return self._latency_other - - @latency_other.setter - def latency_other(self, latency_other): - """Sets the latency_other of this SummaryWorkloadWorkloadItem. - - Latency on other operations. # noqa: E501 - - :param latency_other: The latency_other of this SummaryWorkloadWorkloadItem. # noqa: E501 - :type: float - """ - if latency_other is None: - raise ValueError("Invalid value for `latency_other`, must not be `None`") # noqa: E501 - if latency_other is not None and latency_other > 18446744073709551615: # noqa: E501 - raise ValueError("Invalid value for `latency_other`, must be a value less than or equal to `18446744073709551615`") # noqa: E501 - if latency_other is not None and latency_other < 0: # noqa: E501 - raise ValueError("Invalid value for `latency_other`, must be a value greater than or equal to `0`") # noqa: E501 - - self._latency_other = latency_other - - @property - def latency_read(self): - """Gets the latency_read of this SummaryWorkloadWorkloadItem. # noqa: E501 - - Latency on disk read operations. # noqa: E501 - - :return: The latency_read of this SummaryWorkloadWorkloadItem. # noqa: E501 - :rtype: float - """ - return self._latency_read - - @latency_read.setter - def latency_read(self, latency_read): - """Sets the latency_read of this SummaryWorkloadWorkloadItem. - - Latency on disk read operations. # noqa: E501 - - :param latency_read: The latency_read of this SummaryWorkloadWorkloadItem. # noqa: E501 - :type: float - """ - if latency_read is None: - raise ValueError("Invalid value for `latency_read`, must not be `None`") # noqa: E501 - if latency_read is not None and latency_read > 18446744073709551615: # noqa: E501 - raise ValueError("Invalid value for `latency_read`, must be a value less than or equal to `18446744073709551615`") # noqa: E501 - if latency_read is not None and latency_read < 0: # noqa: E501 - raise ValueError("Invalid value for `latency_read`, must be a value greater than or equal to `0`") # noqa: E501 - - self._latency_read = latency_read - - @property - def latency_write(self): - """Gets the latency_write of this SummaryWorkloadWorkloadItem. # noqa: E501 - - Latency on disk write operations. # noqa: E501 - - :return: The latency_write of this SummaryWorkloadWorkloadItem. # noqa: E501 - :rtype: float - """ - return self._latency_write - - @latency_write.setter - def latency_write(self, latency_write): - """Sets the latency_write of this SummaryWorkloadWorkloadItem. - - Latency on disk write operations. # noqa: E501 - - :param latency_write: The latency_write of this SummaryWorkloadWorkloadItem. # noqa: E501 - :type: float - """ - if latency_write is None: - raise ValueError("Invalid value for `latency_write`, must not be `None`") # noqa: E501 - if latency_write is not None and latency_write > 18446744073709551615: # noqa: E501 - raise ValueError("Invalid value for `latency_write`, must be a value less than or equal to `18446744073709551615`") # noqa: E501 - if latency_write is not None and latency_write < 0: # noqa: E501 - raise ValueError("Invalid value for `latency_write`, must be a value greater than or equal to `0`") # noqa: E501 - - self._latency_write = latency_write - @property def local_address(self): """Gets the local_address of this SummaryWorkloadWorkloadItem. # noqa: E501 @@ -705,7 +606,7 @@ def ops(self, ops): def path(self): """Gets the path of this SummaryWorkloadWorkloadItem. # noqa: E501 - The path which the operation was requested on. # noqa: E501 + The path which the operation was requestion on. # noqa: E501 :return: The path of this SummaryWorkloadWorkloadItem. # noqa: E501 :rtype: str @@ -716,7 +617,7 @@ def path(self): def path(self, path): """Sets the path of this SummaryWorkloadWorkloadItem. - The path which the operation was requested on. # noqa: E501 + The path which the operation was requestion on. # noqa: E501 :param path: The path of this SummaryWorkloadWorkloadItem. # noqa: E501 :type: str diff --git a/isilon_sdk/isilon_sdk/v9_4_0/models/swift_account.py b/isilon_sdk/isilon_sdk/v9_4_0/models/swift_account.py new file mode 100644 index 000000000..ec4aec3ce --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/swift_account.py @@ -0,0 +1,258 @@ +# coding: utf-8 + +""" + Isilon SDK + + Isilon SDK - Language bindings for the OneFS API # noqa: E501 + + OpenAPI spec version: 15 + Contact: sdk@isilon.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + + +class SwiftAccount(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'id': 'str', + 'name': 'str', + 'swiftgroup': 'str', + 'swiftuser': 'str', + 'users': 'list[str]', + 'zone': 'str' + } + + attribute_map = { + 'id': 'id', + 'name': 'name', + 'swiftgroup': 'swiftgroup', + 'swiftuser': 'swiftuser', + 'users': 'users', + 'zone': 'zone' + } + + def __init__(self, id=None, name=None, swiftgroup=None, swiftuser=None, users=None, zone=None): # noqa: E501 + """SwiftAccount - a model defined in Swagger""" # noqa: E501 + + self._id = None + self._name = None + self._swiftgroup = None + self._swiftuser = None + self._users = None + self._zone = None + self.discriminator = None + + if id is not None: + self.id = id + self.name = name + if swiftgroup is not None: + self.swiftgroup = swiftgroup + if swiftuser is not None: + self.swiftuser = swiftuser + if users is not None: + self.users = users + if zone is not None: + self.zone = zone + + @property + def id(self): + """Gets the id of this SwiftAccount. # noqa: E501 + + Unique id of swift account # noqa: E501 + + :return: The id of this SwiftAccount. # noqa: E501 + :rtype: str + """ + return self._id + + @id.setter + def id(self, id): + """Sets the id of this SwiftAccount. + + Unique id of swift account # noqa: E501 + + :param id: The id of this SwiftAccount. # noqa: E501 + :type: str + """ + + self._id = id + + @property + def name(self): + """Gets the name of this SwiftAccount. # noqa: E501 + + Name of Swift account # noqa: E501 + + :return: The name of this SwiftAccount. # noqa: E501 + :rtype: str + """ + return self._name + + @name.setter + def name(self, name): + """Sets the name of this SwiftAccount. + + Name of Swift account # noqa: E501 + + :param name: The name of this SwiftAccount. # noqa: E501 + :type: str + """ + if name is None: + raise ValueError("Invalid value for `name`, must not be `None`") # noqa: E501 + + self._name = name + + @property + def swiftgroup(self): + """Gets the swiftgroup of this SwiftAccount. # noqa: E501 + + Group with filesystem ownership of this account # noqa: E501 + + :return: The swiftgroup of this SwiftAccount. # noqa: E501 + :rtype: str + """ + return self._swiftgroup + + @swiftgroup.setter + def swiftgroup(self, swiftgroup): + """Sets the swiftgroup of this SwiftAccount. + + Group with filesystem ownership of this account # noqa: E501 + + :param swiftgroup: The swiftgroup of this SwiftAccount. # noqa: E501 + :type: str + """ + + self._swiftgroup = swiftgroup + + @property + def swiftuser(self): + """Gets the swiftuser of this SwiftAccount. # noqa: E501 + + User with filesystem ownership of this account # noqa: E501 + + :return: The swiftuser of this SwiftAccount. # noqa: E501 + :rtype: str + """ + return self._swiftuser + + @swiftuser.setter + def swiftuser(self, swiftuser): + """Sets the swiftuser of this SwiftAccount. + + User with filesystem ownership of this account # noqa: E501 + + :param swiftuser: The swiftuser of this SwiftAccount. # noqa: E501 + :type: str + """ + + self._swiftuser = swiftuser + + @property + def users(self): + """Gets the users of this SwiftAccount. # noqa: E501 + + Users who are allowed to access Swift account # noqa: E501 + + :return: The users of this SwiftAccount. # noqa: E501 + :rtype: list[str] + """ + return self._users + + @users.setter + def users(self, users): + """Sets the users of this SwiftAccount. + + Users who are allowed to access Swift account # noqa: E501 + + :param users: The users of this SwiftAccount. # noqa: E501 + :type: list[str] + """ + + self._users = users + + @property + def zone(self): + """Gets the zone of this SwiftAccount. # noqa: E501 + + Name of access zone for account # noqa: E501 + + :return: The zone of this SwiftAccount. # noqa: E501 + :rtype: str + """ + return self._zone + + @zone.setter + def zone(self, zone): + """Sets the zone of this SwiftAccount. + + Name of access zone for account # noqa: E501 + + :param zone: The zone of this SwiftAccount. # noqa: E501 + :type: str + """ + + self._zone = zone + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(SwiftAccount, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, SwiftAccount): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + """Returns true if both objects are not equal""" + return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_4_0/models/swift_account_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/swift_account_extended.py new file mode 100644 index 000000000..2d4a9bf36 --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/swift_account_extended.py @@ -0,0 +1,285 @@ +# coding: utf-8 + +""" + Isilon SDK + + Isilon SDK - Language bindings for the OneFS API # noqa: E501 + + OpenAPI spec version: 15 + Contact: sdk@isilon.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + + +class SwiftAccountExtended(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'id': 'str', + 'name': 'str', + 'path': 'str', + 'swiftgroup': 'str', + 'swiftuser': 'str', + 'users': 'list[str]', + 'zone': 'str' + } + + attribute_map = { + 'id': 'id', + 'name': 'name', + 'path': 'path', + 'swiftgroup': 'swiftgroup', + 'swiftuser': 'swiftuser', + 'users': 'users', + 'zone': 'zone' + } + + def __init__(self, id=None, name=None, path=None, swiftgroup=None, swiftuser=None, users=None, zone=None): # noqa: E501 + """SwiftAccountExtended - a model defined in Swagger""" # noqa: E501 + + self._id = None + self._name = None + self._path = None + self._swiftgroup = None + self._swiftuser = None + self._users = None + self._zone = None + self.discriminator = None + + if id is not None: + self.id = id + if name is not None: + self.name = name + if path is not None: + self.path = path + if swiftgroup is not None: + self.swiftgroup = swiftgroup + if swiftuser is not None: + self.swiftuser = swiftuser + if users is not None: + self.users = users + if zone is not None: + self.zone = zone + + @property + def id(self): + """Gets the id of this SwiftAccountExtended. # noqa: E501 + + Unique id of swift account # noqa: E501 + + :return: The id of this SwiftAccountExtended. # noqa: E501 + :rtype: str + """ + return self._id + + @id.setter + def id(self, id): + """Sets the id of this SwiftAccountExtended. + + Unique id of swift account # noqa: E501 + + :param id: The id of this SwiftAccountExtended. # noqa: E501 + :type: str + """ + + self._id = id + + @property + def name(self): + """Gets the name of this SwiftAccountExtended. # noqa: E501 + + Name of Swift account # noqa: E501 + + :return: The name of this SwiftAccountExtended. # noqa: E501 + :rtype: str + """ + return self._name + + @name.setter + def name(self, name): + """Sets the name of this SwiftAccountExtended. + + Name of Swift account # noqa: E501 + + :param name: The name of this SwiftAccountExtended. # noqa: E501 + :type: str + """ + + self._name = name + + @property + def path(self): + """Gets the path of this SwiftAccountExtended. # noqa: E501 + + Path to root of Swift account # noqa: E501 + + :return: The path of this SwiftAccountExtended. # noqa: E501 + :rtype: str + """ + return self._path + + @path.setter + def path(self, path): + """Sets the path of this SwiftAccountExtended. + + Path to root of Swift account # noqa: E501 + + :param path: The path of this SwiftAccountExtended. # noqa: E501 + :type: str + """ + + self._path = path + + @property + def swiftgroup(self): + """Gets the swiftgroup of this SwiftAccountExtended. # noqa: E501 + + Group with filesystem ownership of this account # noqa: E501 + + :return: The swiftgroup of this SwiftAccountExtended. # noqa: E501 + :rtype: str + """ + return self._swiftgroup + + @swiftgroup.setter + def swiftgroup(self, swiftgroup): + """Sets the swiftgroup of this SwiftAccountExtended. + + Group with filesystem ownership of this account # noqa: E501 + + :param swiftgroup: The swiftgroup of this SwiftAccountExtended. # noqa: E501 + :type: str + """ + + self._swiftgroup = swiftgroup + + @property + def swiftuser(self): + """Gets the swiftuser of this SwiftAccountExtended. # noqa: E501 + + User with filesystem ownership of this account # noqa: E501 + + :return: The swiftuser of this SwiftAccountExtended. # noqa: E501 + :rtype: str + """ + return self._swiftuser + + @swiftuser.setter + def swiftuser(self, swiftuser): + """Sets the swiftuser of this SwiftAccountExtended. + + User with filesystem ownership of this account # noqa: E501 + + :param swiftuser: The swiftuser of this SwiftAccountExtended. # noqa: E501 + :type: str + """ + + self._swiftuser = swiftuser + + @property + def users(self): + """Gets the users of this SwiftAccountExtended. # noqa: E501 + + Users who are allowed to access Swift account # noqa: E501 + + :return: The users of this SwiftAccountExtended. # noqa: E501 + :rtype: list[str] + """ + return self._users + + @users.setter + def users(self, users): + """Sets the users of this SwiftAccountExtended. + + Users who are allowed to access Swift account # noqa: E501 + + :param users: The users of this SwiftAccountExtended. # noqa: E501 + :type: list[str] + """ + + self._users = users + + @property + def zone(self): + """Gets the zone of this SwiftAccountExtended. # noqa: E501 + + Name of access zone for account # noqa: E501 + + :return: The zone of this SwiftAccountExtended. # noqa: E501 + :rtype: str + """ + return self._zone + + @zone.setter + def zone(self, zone): + """Sets the zone of this SwiftAccountExtended. + + Name of access zone for account # noqa: E501 + + :param zone: The zone of this SwiftAccountExtended. # noqa: E501 + :type: str + """ + + self._zone = zone + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(SwiftAccountExtended, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, SwiftAccountExtended): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + """Returns true if both objects are not equal""" + return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/config_namespace.py b/isilon_sdk/isilon_sdk/v9_4_0/models/swift_accounts.py similarity index 70% rename from isilon_sdk/isilon_sdk/v9_11_0/models/config_namespace.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/swift_accounts.py index f681e1385..e9ae5e4d9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/config_namespace.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/swift_accounts.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class ConfigNamespace(object): +class SwiftAccounts(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -31,42 +31,42 @@ class ConfigNamespace(object): and the value is json key in definition. """ swagger_types = { - 'entries': 'list[ConfigNamespaceEntry]' + 'accounts': 'list[SwiftAccountExtended]' } attribute_map = { - 'entries': 'entries' + 'accounts': 'accounts' } - def __init__(self, entries=None): # noqa: E501 - """ConfigNamespace - a model defined in Swagger""" # noqa: E501 + def __init__(self, accounts=None): # noqa: E501 + """SwiftAccounts - a model defined in Swagger""" # noqa: E501 - self._entries = None + self._accounts = None self.discriminator = None - if entries is not None: - self.entries = entries + if accounts is not None: + self.accounts = accounts @property - def entries(self): - """Gets the entries of this ConfigNamespace. # noqa: E501 + def accounts(self): + """Gets the accounts of this SwiftAccounts. # noqa: E501 - :return: The entries of this ConfigNamespace. # noqa: E501 - :rtype: list[ConfigNamespaceEntry] + :return: The accounts of this SwiftAccounts. # noqa: E501 + :rtype: list[SwiftAccountExtended] """ - return self._entries + return self._accounts - @entries.setter - def entries(self, entries): - """Sets the entries of this ConfigNamespace. + @accounts.setter + def accounts(self, accounts): + """Sets the accounts of this SwiftAccounts. - :param entries: The entries of this ConfigNamespace. # noqa: E501 - :type: list[ConfigNamespaceEntry] + :param accounts: The accounts of this SwiftAccounts. # noqa: E501 + :type: list[SwiftAccountExtended] """ - self._entries = entries + self._accounts = accounts def to_dict(self): """Returns the model properties as a dict""" @@ -89,7 +89,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(ConfigNamespace, dict): + if issubclass(SwiftAccounts, dict): for key, value in self.items(): result[key] = value @@ -105,7 +105,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, ConfigNamespace): + if not isinstance(other, SwiftAccounts): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_jobs_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/swift_accounts_extended.py similarity index 72% rename from isilon_sdk/isilon_sdk/v9_11_0/models/datamover_jobs_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/swift_accounts_extended.py index 50daa8d63..29ccc4cc2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/datamover_jobs_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/swift_accounts_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -17,7 +17,7 @@ import six -class DatamoverJobsExtended(object): +class SwiftAccountsExtended(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. @@ -31,71 +31,71 @@ class DatamoverJobsExtended(object): and the value is json key in definition. """ swagger_types = { - 'jobs': 'list[DatamoverJob]', + 'accounts': 'list[SwiftAccountExtended]', 'resume': 'str', 'total': 'int' } attribute_map = { - 'jobs': 'jobs', + 'accounts': 'accounts', 'resume': 'resume', 'total': 'total' } - def __init__(self, jobs=None, resume=None, total=None): # noqa: E501 - """DatamoverJobsExtended - a model defined in Swagger""" # noqa: E501 + def __init__(self, accounts=None, resume=None, total=None): # noqa: E501 + """SwiftAccountsExtended - a model defined in Swagger""" # noqa: E501 - self._jobs = None + self._accounts = None self._resume = None self._total = None self.discriminator = None - if jobs is not None: - self.jobs = jobs + if accounts is not None: + self.accounts = accounts if resume is not None: self.resume = resume if total is not None: self.total = total @property - def jobs(self): - """Gets the jobs of this DatamoverJobsExtended. # noqa: E501 + def accounts(self): + """Gets the accounts of this SwiftAccountsExtended. # noqa: E501 - :return: The jobs of this DatamoverJobsExtended. # noqa: E501 - :rtype: list[DatamoverJob] + :return: The accounts of this SwiftAccountsExtended. # noqa: E501 + :rtype: list[SwiftAccountExtended] """ - return self._jobs + return self._accounts - @jobs.setter - def jobs(self, jobs): - """Sets the jobs of this DatamoverJobsExtended. + @accounts.setter + def accounts(self, accounts): + """Sets the accounts of this SwiftAccountsExtended. - :param jobs: The jobs of this DatamoverJobsExtended. # noqa: E501 - :type: list[DatamoverJob] + :param accounts: The accounts of this SwiftAccountsExtended. # noqa: E501 + :type: list[SwiftAccountExtended] """ - self._jobs = jobs + self._accounts = accounts @property def resume(self): - """Gets the resume of this DatamoverJobsExtended. # noqa: E501 + """Gets the resume of this SwiftAccountsExtended. # noqa: E501 Provide this token as the 'resume' query argument to continue listing results. # noqa: E501 - :return: The resume of this DatamoverJobsExtended. # noqa: E501 + :return: The resume of this SwiftAccountsExtended. # noqa: E501 :rtype: str """ return self._resume @resume.setter def resume(self, resume): - """Sets the resume of this DatamoverJobsExtended. + """Sets the resume of this SwiftAccountsExtended. Provide this token as the 'resume' query argument to continue listing results. # noqa: E501 - :param resume: The resume of this DatamoverJobsExtended. # noqa: E501 + :param resume: The resume of this SwiftAccountsExtended. # noqa: E501 :type: str """ if resume is not None and len(resume) > 8192: @@ -107,22 +107,22 @@ def resume(self, resume): @property def total(self): - """Gets the total of this DatamoverJobsExtended. # noqa: E501 + """Gets the total of this SwiftAccountsExtended. # noqa: E501 Total number of items available. # noqa: E501 - :return: The total of this DatamoverJobsExtended. # noqa: E501 + :return: The total of this SwiftAccountsExtended. # noqa: E501 :rtype: int """ return self._total @total.setter def total(self, total): - """Sets the total of this DatamoverJobsExtended. + """Sets the total of this SwiftAccountsExtended. Total number of items available. # noqa: E501 - :param total: The total of this DatamoverJobsExtended. # noqa: E501 + :param total: The total of this SwiftAccountsExtended. # noqa: E501 :type: int """ if total is not None and total > 9223372036854775807: # noqa: E501 @@ -153,7 +153,7 @@ def to_dict(self): )) else: result[attr] = value - if issubclass(DatamoverJobsExtended, dict): + if issubclass(SwiftAccountsExtended, dict): for key, value in self.items(): result[key] = value @@ -169,7 +169,7 @@ def __repr__(self): def __eq__(self, other): """Returns true if both objects are equal""" - if not isinstance(other, DatamoverJobsExtended): + if not isinstance(other, SwiftAccountsExtended): return False return self.__dict__ == other.__dict__ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_job.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_job.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_job.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_job.py index ee930f67a..4fde09248 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_job.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_job.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_job_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_job_create_params.py similarity index 56% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_job_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_job_create_params.py index 9edb376d6..1ffbd88e7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_job_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_job_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -34,7 +34,13 @@ class SyncJobCreateParams(object): 'action': 'str', 'id': 'str', 'log_level': 'str', + 'service_policy': 'bool', + 'skip_copy': 'bool', + 'skip_failover': 'bool', + 'skip_map': 'bool', 'source_snapshot': 'str', + 'tgt_path': 'str', + 'timestamp': 'int', 'workers_per_node': 'int' } @@ -42,17 +48,29 @@ class SyncJobCreateParams(object): 'action': 'action', 'id': 'id', 'log_level': 'log_level', + 'service_policy': 'service_policy', + 'skip_copy': 'skip_copy', + 'skip_failover': 'skip_failover', + 'skip_map': 'skip_map', 'source_snapshot': 'source_snapshot', + 'tgt_path': 'tgt_path', + 'timestamp': 'timestamp', 'workers_per_node': 'workers_per_node' } - def __init__(self, action=None, id=None, log_level=None, source_snapshot=None, workers_per_node=None): # noqa: E501 + def __init__(self, action=None, id=None, log_level=None, service_policy=None, skip_copy=None, skip_failover=None, skip_map=None, source_snapshot=None, tgt_path=None, timestamp=None, workers_per_node=None): # noqa: E501 """SyncJobCreateParams - a model defined in Swagger""" # noqa: E501 self._action = None self._id = None self._log_level = None + self._service_policy = None + self._skip_copy = None + self._skip_failover = None + self._skip_map = None self._source_snapshot = None + self._tgt_path = None + self._timestamp = None self._workers_per_node = None self.discriminator = None @@ -61,8 +79,20 @@ def __init__(self, action=None, id=None, log_level=None, source_snapshot=None, w self.id = id if log_level is not None: self.log_level = log_level + if service_policy is not None: + self.service_policy = service_policy + if skip_copy is not None: + self.skip_copy = skip_copy + if skip_failover is not None: + self.skip_failover = skip_failover + if skip_map is not None: + self.skip_map = skip_map if source_snapshot is not None: self.source_snapshot = source_snapshot + if tgt_path is not None: + self.tgt_path = tgt_path + if timestamp is not None: + self.timestamp = timestamp if workers_per_node is not None: self.workers_per_node = workers_per_node @@ -153,6 +183,98 @@ def log_level(self, log_level): self._log_level = log_level + @property + def service_policy(self): + """Gets the service_policy of this SyncJobCreateParams. # noqa: E501 + + If true, this is a service replication policy. # noqa: E501 + + :return: The service_policy of this SyncJobCreateParams. # noqa: E501 + :rtype: bool + """ + return self._service_policy + + @service_policy.setter + def service_policy(self, service_policy): + """Sets the service_policy of this SyncJobCreateParams. + + If true, this is a service replication policy. # noqa: E501 + + :param service_policy: The service_policy of this SyncJobCreateParams. # noqa: E501 + :type: bool + """ + + self._service_policy = service_policy + + @property + def skip_copy(self): + """Gets the skip_copy of this SyncJobCreateParams. # noqa: E501 + + Skips the copy phase of the service replication allow-write operation. # noqa: E501 + + :return: The skip_copy of this SyncJobCreateParams. # noqa: E501 + :rtype: bool + """ + return self._skip_copy + + @skip_copy.setter + def skip_copy(self, skip_copy): + """Sets the skip_copy of this SyncJobCreateParams. + + Skips the copy phase of the service replication allow-write operation. # noqa: E501 + + :param skip_copy: The skip_copy of this SyncJobCreateParams. # noqa: E501 + :type: bool + """ + + self._skip_copy = skip_copy + + @property + def skip_failover(self): + """Gets the skip_failover of this SyncJobCreateParams. # noqa: E501 + + Skips the data failover phase of the service replication allow-write operation. # noqa: E501 + + :return: The skip_failover of this SyncJobCreateParams. # noqa: E501 + :rtype: bool + """ + return self._skip_failover + + @skip_failover.setter + def skip_failover(self, skip_failover): + """Sets the skip_failover of this SyncJobCreateParams. + + Skips the data failover phase of the service replication allow-write operation. # noqa: E501 + + :param skip_failover: The skip_failover of this SyncJobCreateParams. # noqa: E501 + :type: bool + """ + + self._skip_failover = skip_failover + + @property + def skip_map(self): + """Gets the skip_map of this SyncJobCreateParams. # noqa: E501 + + Skips the mapping phase of the service replication allow-write operation. # noqa: E501 + + :return: The skip_map of this SyncJobCreateParams. # noqa: E501 + :rtype: bool + """ + return self._skip_map + + @skip_map.setter + def skip_map(self, skip_map): + """Sets the skip_map of this SyncJobCreateParams. + + Skips the mapping phase of the service replication allow-write operation. # noqa: E501 + + :param skip_map: The skip_map of this SyncJobCreateParams. # noqa: E501 + :type: bool + """ + + self._skip_map = skip_map + @property def source_snapshot(self): """Gets the source_snapshot of this SyncJobCreateParams. # noqa: E501 @@ -180,6 +302,60 @@ def source_snapshot(self, source_snapshot): self._source_snapshot = source_snapshot + @property + def tgt_path(self): + """Gets the tgt_path of this SyncJobCreateParams. # noqa: E501 + + Specifies the directory to output the service replication files for restoration. # noqa: E501 + + :return: The tgt_path of this SyncJobCreateParams. # noqa: E501 + :rtype: str + """ + return self._tgt_path + + @tgt_path.setter + def tgt_path(self, tgt_path): + """Sets the tgt_path of this SyncJobCreateParams. + + Specifies the directory to output the service replication files for restoration. # noqa: E501 + + :param tgt_path: The tgt_path of this SyncJobCreateParams. # noqa: E501 + :type: str + """ + if tgt_path is not None and len(tgt_path) > 4096: + raise ValueError("Invalid value for `tgt_path`, length must be less than or equal to `4096`") # noqa: E501 + if tgt_path is not None and len(tgt_path) < 0: + raise ValueError("Invalid value for `tgt_path`, length must be greater than or equal to `0`") # noqa: E501 + + self._tgt_path = tgt_path + + @property + def timestamp(self): + """Gets the timestamp of this SyncJobCreateParams. # noqa: E501 + + Specifies the timestamp of a service replication policy backup to restore from. # noqa: E501 + + :return: The timestamp of this SyncJobCreateParams. # noqa: E501 + :rtype: int + """ + return self._timestamp + + @timestamp.setter + def timestamp(self, timestamp): + """Sets the timestamp of this SyncJobCreateParams. + + Specifies the timestamp of a service replication policy backup to restore from. # noqa: E501 + + :param timestamp: The timestamp of this SyncJobCreateParams. # noqa: E501 + :type: int + """ + if timestamp is not None and timestamp > 9223372036854775807: # noqa: E501 + raise ValueError("Invalid value for `timestamp`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 + if timestamp is not None and timestamp < 0: # noqa: E501 + raise ValueError("Invalid value for `timestamp`, must be a value greater than or equal to `0`") # noqa: E501 + + self._timestamp = timestamp + @property def workers_per_node(self): """Gets the workers_per_node of this SyncJobCreateParams. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_job_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_job_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_job_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_job_extended.py index 6f2cc7355..1e923e72d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_job_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_job_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -448,7 +448,7 @@ def action(self, action): """ if action is None: raise ValueError("Invalid value for `action`, must not be `None`") # noqa: E501 - allowed_values = ["none", "copy", "move", "remove", "sync", "allow_write", "allow_write_revert", "resync_prep", "resync_prep_domain_mark", "resync_prep_restore", "resync_prep_finalize", "resync_prep_commit", "snap_revert_domain_mark", "synciq_domain_mark", "worm_domain_mark", "test", "run"] # noqa: E501 + allowed_values = ["resync_prep", "allow_write", "allow_write_revert", "test", "run", "none"] # noqa: E501 if action not in allowed_values: raise ValueError( "Invalid value for `action` ({0}), must be one of {1}" # noqa: E501 @@ -2355,7 +2355,7 @@ def state(self, state): """ if state is None: raise ValueError("Invalid value for `state`, must not be `None`") # noqa: E501 - allowed_values = ["scheduled", "running", "paused", "finished", "failed", "canceled", "needs_attention", "skipped", "pending", "unknown", "success w/ prior failures"] # noqa: E501 + allowed_values = ["scheduled", "running", "paused", "finished", "failed", "canceled", "needs_attention", "skipped", "pending", "unknown"] # noqa: E501 if state not in allowed_values: raise ValueError( "Invalid value for `state` ({0}), must be one of {1}" # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_job_phase.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_job_phase.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_job_phase.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_job_phase.py index 76e1c61bb..8c7aedb87 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_job_phase.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_job_phase.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_job_phase_statistics.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_job_phase_statistics.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_job_phase_statistics.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_job_phase_statistics.py index 8219f15f0..718dd4cb7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_job_phase_statistics.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_job_phase_statistics.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_job_policy.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_job_policy.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_job_policy.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_job_policy.py index 4c2925524..967577f04 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_job_policy.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_job_policy.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -102,7 +102,7 @@ def action(self, action): :param action: The action of this SyncJobPolicy. # noqa: E501 :type: str """ - allowed_values = ["none", "copy", "move", "remove", "sync", "allow_write", "allow_write_revert", "resync_prep", "resync_prep_domain_mark", "resync_prep_restore", "resync_prep_finalize", "resync_prep_commit", "snap_revert_domain_mark", "synciq_domain_mark", "worm_domain_mark", "test", "run"] # noqa: E501 + allowed_values = ["none", "copy", "move", "remove", "sync", "allow_write", "allow_write_revert", "resync_prep", "resync_prep_domain_mark", "resync_prep_restore", "resync_prep_finalize", "resync_prep_commit", "snap_revert_domain_mark", "synciq_domain_mark", "worm_domain_mark"] # noqa: E501 if action not in allowed_values: raise ValueError( "Invalid value for `action` ({0}), must be one of {1}" # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_job_service_report_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_job_service_report_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_job_service_report_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_job_service_report_item.py index 77b19bdaf..940aa122f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_job_service_report_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_job_service_report_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_job_worker.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_job_worker.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_job_worker.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_job_worker.py index ea88b8d13..ab1b1f0ec 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_job_worker.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_job_worker.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_jobs.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_jobs.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_jobs.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_jobs.py index 0c62709d8..fc2b5c4a2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_jobs.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_jobs.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_jobs_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_jobs_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_jobs_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_jobs_extended.py index e671ac899..b5584fda4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_jobs_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_jobs_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_policies.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_policies.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_policies.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_policies.py index f3ec4e582..1eb3f6bb1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_policies.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_policies.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_policies_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_policies_extended.py similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_policies_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_policies_extended.py index c33df3340..4902d75a7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_policies_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_policies_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,7 +31,7 @@ class SyncPoliciesExtended(object): and the value is json key in definition. """ swagger_types = { - 'policies': 'list[SyncPolicyExtended]', + 'policies': 'list[SyncPolicyExtendedExtended]', 'resume': 'str', 'total': 'int' } @@ -63,7 +63,7 @@ def policies(self): :return: The policies of this SyncPoliciesExtended. # noqa: E501 - :rtype: list[SyncPolicyExtended] + :rtype: list[SyncPolicyExtendedExtended] """ return self._policies @@ -73,7 +73,7 @@ def policies(self, policies): :param policies: The policies of this SyncPoliciesExtended. # noqa: E501 - :type: list[SyncPolicyExtended] + :type: list[SyncPolicyExtendedExtended] """ self._policies = policies diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_policy.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_policy.py similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_policy.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_policy.py index 79c59186e..a5caeb7b4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_policy.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_policy.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -45,7 +45,6 @@ class SyncPolicy(object): 'disable_fofb': 'bool', 'disable_quota_tmp_dir': 'bool', 'disable_stf': 'bool', - 'elliptic_curve_list': 'str', 'enable_hash_tmpdir': 'bool', 'enabled': 'bool', 'encryption_cipher_list': 'str', @@ -108,7 +107,6 @@ class SyncPolicy(object): 'disable_fofb': 'disable_fofb', 'disable_quota_tmp_dir': 'disable_quota_tmp_dir', 'disable_stf': 'disable_stf', - 'elliptic_curve_list': 'elliptic_curve_list', 'enable_hash_tmpdir': 'enable_hash_tmpdir', 'enabled': 'enabled', 'encryption_cipher_list': 'encryption_cipher_list', @@ -156,7 +154,7 @@ class SyncPolicy(object): 'workers_per_node': 'workers_per_node' } - def __init__(self, accelerated_failback=None, action=None, allow_copy_fb=None, bandwidth_reservation=None, changelist=None, check_integrity=None, cloud_deep_copy=None, conflicted=None, delete_quotas=None, description=None, disable_file_split=None, disable_fofb=None, disable_quota_tmp_dir=None, disable_stf=None, elliptic_curve_list=None, enable_hash_tmpdir=None, enabled=None, encryption_cipher_list=None, expected_dataloss=None, file_matching_pattern=None, force_interface=None, ignore_recursive_quota=None, job_delay=None, linked_service_policies=None, log_level=None, log_removed_files=None, name=None, ocsp_address=None, ocsp_issuer_certificate_id=None, password=None, priority=None, report_max_age=None, report_max_count=None, restrict_target_network=None, rpo_alert=None, schedule=None, service_policy=None, skip_lookup=None, skip_when_source_unmodified=None, snapshot_sync_existing=None, snapshot_sync_pattern=None, source_exclude_directories=None, source_include_directories=None, source_network=None, source_root_path=None, source_snapshot_archive=None, source_snapshot_expiration=None, source_snapshot_pattern=None, sync_existing_snapshot_expiration=None, sync_existing_target_snapshot_pattern=None, target_certificate_id=None, target_compare_initial_sync=None, target_detect_modifications=None, target_host=None, target_path=None, target_snapshot_alias=None, target_snapshot_archive=None, target_snapshot_expiration=None, target_snapshot_pattern=None, workers_per_node=None): # noqa: E501 + def __init__(self, accelerated_failback=None, action=None, allow_copy_fb=None, bandwidth_reservation=None, changelist=None, check_integrity=None, cloud_deep_copy=None, conflicted=None, delete_quotas=None, description=None, disable_file_split=None, disable_fofb=None, disable_quota_tmp_dir=None, disable_stf=None, enable_hash_tmpdir=None, enabled=None, encryption_cipher_list=None, expected_dataloss=None, file_matching_pattern=None, force_interface=None, ignore_recursive_quota=None, job_delay=None, linked_service_policies=None, log_level=None, log_removed_files=None, name=None, ocsp_address=None, ocsp_issuer_certificate_id=None, password=None, priority=None, report_max_age=None, report_max_count=None, restrict_target_network=None, rpo_alert=None, schedule=None, service_policy=None, skip_lookup=None, skip_when_source_unmodified=None, snapshot_sync_existing=None, snapshot_sync_pattern=None, source_exclude_directories=None, source_include_directories=None, source_network=None, source_root_path=None, source_snapshot_archive=None, source_snapshot_expiration=None, source_snapshot_pattern=None, sync_existing_snapshot_expiration=None, sync_existing_target_snapshot_pattern=None, target_certificate_id=None, target_compare_initial_sync=None, target_detect_modifications=None, target_host=None, target_path=None, target_snapshot_alias=None, target_snapshot_archive=None, target_snapshot_expiration=None, target_snapshot_pattern=None, workers_per_node=None): # noqa: E501 """SyncPolicy - a model defined in Swagger""" # noqa: E501 self._accelerated_failback = None @@ -173,7 +171,6 @@ def __init__(self, accelerated_failback=None, action=None, allow_copy_fb=None, b self._disable_fofb = None self._disable_quota_tmp_dir = None self._disable_stf = None - self._elliptic_curve_list = None self._enable_hash_tmpdir = None self._enabled = None self._encryption_cipher_list = None @@ -249,8 +246,6 @@ def __init__(self, accelerated_failback=None, action=None, allow_copy_fb=None, b self.disable_quota_tmp_dir = disable_quota_tmp_dir if disable_stf is not None: self.disable_stf = disable_stf - if elliptic_curve_list is not None: - self.elliptic_curve_list = elliptic_curve_list if enable_hash_tmpdir is not None: self.enable_hash_tmpdir = enable_hash_tmpdir if enabled is not None: @@ -684,33 +679,6 @@ def disable_stf(self, disable_stf): self._disable_stf = disable_stf - @property - def elliptic_curve_list(self): - """Gets the elliptic_curve_list of this SyncPolicy. # noqa: E501 - - The elliptic curve list being used with encryption. For SyncIQ targets, this list serves as a list of supported elliptic curves. For SyncIQ sources, the list of elliptic curves will be attempted to be used in order. # noqa: E501 - - :return: The elliptic_curve_list of this SyncPolicy. # noqa: E501 - :rtype: str - """ - return self._elliptic_curve_list - - @elliptic_curve_list.setter - def elliptic_curve_list(self, elliptic_curve_list): - """Sets the elliptic_curve_list of this SyncPolicy. - - The elliptic curve list being used with encryption. For SyncIQ targets, this list serves as a list of supported elliptic curves. For SyncIQ sources, the list of elliptic curves will be attempted to be used in order. # noqa: E501 - - :param elliptic_curve_list: The elliptic_curve_list of this SyncPolicy. # noqa: E501 - :type: str - """ - if elliptic_curve_list is not None and len(elliptic_curve_list) > 255: - raise ValueError("Invalid value for `elliptic_curve_list`, length must be less than or equal to `255`") # noqa: E501 - if elliptic_curve_list is not None and len(elliptic_curve_list) < 0: - raise ValueError("Invalid value for `elliptic_curve_list`, length must be greater than or equal to `0`") # noqa: E501 - - self._elliptic_curve_list = elliptic_curve_list - @property def enable_hash_tmpdir(self): """Gets the enable_hash_tmpdir of this SyncPolicy. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_policy_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_policy_create_params.py similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_policy_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_policy_create_params.py index f80c896a3..cfaa9e562 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_policy_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_policy_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -44,7 +44,6 @@ class SyncPolicyCreateParams(object): 'disable_fofb': 'bool', 'disable_quota_tmp_dir': 'bool', 'disable_stf': 'bool', - 'elliptic_curve_list': 'str', 'enable_hash_tmpdir': 'bool', 'enabled': 'bool', 'encryption_cipher_list': 'str', @@ -106,7 +105,6 @@ class SyncPolicyCreateParams(object): 'disable_fofb': 'disable_fofb', 'disable_quota_tmp_dir': 'disable_quota_tmp_dir', 'disable_stf': 'disable_stf', - 'elliptic_curve_list': 'elliptic_curve_list', 'enable_hash_tmpdir': 'enable_hash_tmpdir', 'enabled': 'enabled', 'encryption_cipher_list': 'encryption_cipher_list', @@ -154,7 +152,7 @@ class SyncPolicyCreateParams(object): 'workers_per_node': 'workers_per_node' } - def __init__(self, accelerated_failback=None, action=None, allow_copy_fb=None, bandwidth_reservation=None, changelist=None, check_integrity=None, cloud_deep_copy=None, delete_quotas=None, description=None, disable_file_split=None, disable_fofb=None, disable_quota_tmp_dir=None, disable_stf=None, elliptic_curve_list=None, enable_hash_tmpdir=None, enabled=None, encryption_cipher_list=None, expected_dataloss=None, file_matching_pattern=None, force_interface=None, ignore_recursive_quota=None, job_delay=None, linked_service_policies=None, log_level=None, log_removed_files=None, name=None, ocsp_address=None, ocsp_issuer_certificate_id=None, password=None, priority=None, report_max_age=None, report_max_count=None, restrict_target_network=None, rpo_alert=None, schedule=None, service_policy=None, skip_lookup=None, skip_when_source_unmodified=None, snapshot_sync_existing=None, snapshot_sync_pattern=None, source_exclude_directories=None, source_include_directories=None, source_network=None, source_root_path=None, source_snapshot_archive=None, source_snapshot_expiration=None, source_snapshot_pattern=None, sync_existing_snapshot_expiration=None, sync_existing_target_snapshot_pattern=None, target_certificate_id=None, target_compare_initial_sync=None, target_detect_modifications=None, target_host=None, target_path=None, target_snapshot_alias=None, target_snapshot_archive=None, target_snapshot_expiration=None, target_snapshot_pattern=None, workers_per_node=None): # noqa: E501 + def __init__(self, accelerated_failback=None, action=None, allow_copy_fb=None, bandwidth_reservation=None, changelist=None, check_integrity=None, cloud_deep_copy=None, delete_quotas=None, description=None, disable_file_split=None, disable_fofb=None, disable_quota_tmp_dir=None, disable_stf=None, enable_hash_tmpdir=None, enabled=None, encryption_cipher_list=None, expected_dataloss=None, file_matching_pattern=None, force_interface=None, ignore_recursive_quota=None, job_delay=None, linked_service_policies=None, log_level=None, log_removed_files=None, name=None, ocsp_address=None, ocsp_issuer_certificate_id=None, password=None, priority=None, report_max_age=None, report_max_count=None, restrict_target_network=None, rpo_alert=None, schedule=None, service_policy=None, skip_lookup=None, skip_when_source_unmodified=None, snapshot_sync_existing=None, snapshot_sync_pattern=None, source_exclude_directories=None, source_include_directories=None, source_network=None, source_root_path=None, source_snapshot_archive=None, source_snapshot_expiration=None, source_snapshot_pattern=None, sync_existing_snapshot_expiration=None, sync_existing_target_snapshot_pattern=None, target_certificate_id=None, target_compare_initial_sync=None, target_detect_modifications=None, target_host=None, target_path=None, target_snapshot_alias=None, target_snapshot_archive=None, target_snapshot_expiration=None, target_snapshot_pattern=None, workers_per_node=None): # noqa: E501 """SyncPolicyCreateParams - a model defined in Swagger""" # noqa: E501 self._accelerated_failback = None @@ -170,7 +168,6 @@ def __init__(self, accelerated_failback=None, action=None, allow_copy_fb=None, b self._disable_fofb = None self._disable_quota_tmp_dir = None self._disable_stf = None - self._elliptic_curve_list = None self._enable_hash_tmpdir = None self._enabled = None self._encryption_cipher_list = None @@ -243,8 +240,6 @@ def __init__(self, accelerated_failback=None, action=None, allow_copy_fb=None, b self.disable_quota_tmp_dir = disable_quota_tmp_dir if disable_stf is not None: self.disable_stf = disable_stf - if elliptic_curve_list is not None: - self.elliptic_curve_list = elliptic_curve_list if enable_hash_tmpdir is not None: self.enable_hash_tmpdir = enable_hash_tmpdir if enabled is not None: @@ -653,33 +648,6 @@ def disable_stf(self, disable_stf): self._disable_stf = disable_stf - @property - def elliptic_curve_list(self): - """Gets the elliptic_curve_list of this SyncPolicyCreateParams. # noqa: E501 - - The elliptic curve list being used with encryption. For SyncIQ targets, this list serves as a list of supported elliptic curves. For SyncIQ sources, the list of elliptic curves will be attempted to be used in order. # noqa: E501 - - :return: The elliptic_curve_list of this SyncPolicyCreateParams. # noqa: E501 - :rtype: str - """ - return self._elliptic_curve_list - - @elliptic_curve_list.setter - def elliptic_curve_list(self, elliptic_curve_list): - """Sets the elliptic_curve_list of this SyncPolicyCreateParams. - - The elliptic curve list being used with encryption. For SyncIQ targets, this list serves as a list of supported elliptic curves. For SyncIQ sources, the list of elliptic curves will be attempted to be used in order. # noqa: E501 - - :param elliptic_curve_list: The elliptic_curve_list of this SyncPolicyCreateParams. # noqa: E501 - :type: str - """ - if elliptic_curve_list is not None and len(elliptic_curve_list) > 255: - raise ValueError("Invalid value for `elliptic_curve_list`, length must be less than or equal to `255`") # noqa: E501 - if elliptic_curve_list is not None and len(elliptic_curve_list) < 0: - raise ValueError("Invalid value for `elliptic_curve_list`, length must be greater than or equal to `0`") # noqa: E501 - - self._elliptic_curve_list = elliptic_curve_list - @property def enable_hash_tmpdir(self): """Gets the enable_hash_tmpdir of this SyncPolicyCreateParams. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_policy_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_policy_extended.py similarity index 96% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_policy_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_policy_extended.py index 0475e4587..05fe37021 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_policy_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_policy_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -46,7 +46,6 @@ class SyncPolicyExtended(object): 'disable_fofb': 'bool', 'disable_quota_tmp_dir': 'bool', 'disable_stf': 'bool', - 'elliptic_curve_list': 'str', 'enable_hash_tmpdir': 'bool', 'enabled': 'bool', 'encrypted': 'bool', @@ -119,7 +118,6 @@ class SyncPolicyExtended(object): 'disable_fofb': 'disable_fofb', 'disable_quota_tmp_dir': 'disable_quota_tmp_dir', 'disable_stf': 'disable_stf', - 'elliptic_curve_list': 'elliptic_curve_list', 'enable_hash_tmpdir': 'enable_hash_tmpdir', 'enabled': 'enabled', 'encrypted': 'encrypted', @@ -176,7 +174,7 @@ class SyncPolicyExtended(object): 'workers_per_node': 'workers_per_node' } - def __init__(self, accelerated_failback=None, action=None, allow_copy_fb=None, bandwidth_reservation=None, changelist=None, check_integrity=None, cloud_deep_copy=None, conflicted=None, database_mirrored=None, delete_quotas=None, description=None, disable_file_split=None, disable_fofb=None, disable_quota_tmp_dir=None, disable_stf=None, elliptic_curve_list=None, enable_hash_tmpdir=None, enabled=None, encrypted=None, encryption_cipher_list=None, expected_dataloss=None, file_matching_pattern=None, force_interface=None, has_sync_state=None, id=None, ignore_recursive_quota=None, job_delay=None, last_job_state=None, last_started=None, last_success=None, linked_service_policies=None, log_level=None, log_removed_files=None, name=None, next_run=None, ocsp_address=None, ocsp_issuer_certificate_id=None, password_set=None, priority=None, report_max_age=None, report_max_count=None, restrict_target_network=None, rpo_alert=None, schedule=None, service_policy=None, skip_lookup=None, skip_when_source_unmodified=None, snapshot_sync_existing=None, snapshot_sync_pattern=None, source_certificate_id=None, source_domain_marked=None, source_exclude_directories=None, source_include_directories=None, source_network=None, source_root_path=None, source_snapshot_archive=None, source_snapshot_expiration=None, source_snapshot_pattern=None, sync_existing_snapshot_expiration=None, sync_existing_target_snapshot_pattern=None, target_certificate_id=None, target_compare_initial_sync=None, target_detect_modifications=None, target_host=None, target_path=None, target_snapshot_alias=None, target_snapshot_archive=None, target_snapshot_expiration=None, target_snapshot_pattern=None, workers_per_node=None): # noqa: E501 + def __init__(self, accelerated_failback=None, action=None, allow_copy_fb=None, bandwidth_reservation=None, changelist=None, check_integrity=None, cloud_deep_copy=None, conflicted=None, database_mirrored=None, delete_quotas=None, description=None, disable_file_split=None, disable_fofb=None, disable_quota_tmp_dir=None, disable_stf=None, enable_hash_tmpdir=None, enabled=None, encrypted=None, encryption_cipher_list=None, expected_dataloss=None, file_matching_pattern=None, force_interface=None, has_sync_state=None, id=None, ignore_recursive_quota=None, job_delay=None, last_job_state=None, last_started=None, last_success=None, linked_service_policies=None, log_level=None, log_removed_files=None, name=None, next_run=None, ocsp_address=None, ocsp_issuer_certificate_id=None, password_set=None, priority=None, report_max_age=None, report_max_count=None, restrict_target_network=None, rpo_alert=None, schedule=None, service_policy=None, skip_lookup=None, skip_when_source_unmodified=None, snapshot_sync_existing=None, snapshot_sync_pattern=None, source_certificate_id=None, source_domain_marked=None, source_exclude_directories=None, source_include_directories=None, source_network=None, source_root_path=None, source_snapshot_archive=None, source_snapshot_expiration=None, source_snapshot_pattern=None, sync_existing_snapshot_expiration=None, sync_existing_target_snapshot_pattern=None, target_certificate_id=None, target_compare_initial_sync=None, target_detect_modifications=None, target_host=None, target_path=None, target_snapshot_alias=None, target_snapshot_archive=None, target_snapshot_expiration=None, target_snapshot_pattern=None, workers_per_node=None): # noqa: E501 """SyncPolicyExtended - a model defined in Swagger""" # noqa: E501 self._accelerated_failback = None @@ -194,7 +192,6 @@ def __init__(self, accelerated_failback=None, action=None, allow_copy_fb=None, b self._disable_fofb = None self._disable_quota_tmp_dir = None self._disable_stf = None - self._elliptic_curve_list = None self._enable_hash_tmpdir = None self._enabled = None self._encrypted = None @@ -281,8 +278,6 @@ def __init__(self, accelerated_failback=None, action=None, allow_copy_fb=None, b self.disable_quota_tmp_dir = disable_quota_tmp_dir if disable_stf is not None: self.disable_stf = disable_stf - if elliptic_curve_list is not None: - self.elliptic_curve_list = elliptic_curve_list if enable_hash_tmpdir is not None: self.enable_hash_tmpdir = enable_hash_tmpdir self.enabled = enabled @@ -750,33 +745,6 @@ def disable_stf(self, disable_stf): self._disable_stf = disable_stf - @property - def elliptic_curve_list(self): - """Gets the elliptic_curve_list of this SyncPolicyExtended. # noqa: E501 - - The elliptic curve list being used with encryption. For SyncIQ targets, this list serves as a list of supported elliptic curves. For SyncIQ sources, the list of elliptic curves will be attempted to be used in order. # noqa: E501 - - :return: The elliptic_curve_list of this SyncPolicyExtended. # noqa: E501 - :rtype: str - """ - return self._elliptic_curve_list - - @elliptic_curve_list.setter - def elliptic_curve_list(self, elliptic_curve_list): - """Sets the elliptic_curve_list of this SyncPolicyExtended. - - The elliptic curve list being used with encryption. For SyncIQ targets, this list serves as a list of supported elliptic curves. For SyncIQ sources, the list of elliptic curves will be attempted to be used in order. # noqa: E501 - - :param elliptic_curve_list: The elliptic_curve_list of this SyncPolicyExtended. # noqa: E501 - :type: str - """ - if elliptic_curve_list is not None and len(elliptic_curve_list) > 255: - raise ValueError("Invalid value for `elliptic_curve_list`, length must be less than or equal to `255`") # noqa: E501 - if elliptic_curve_list is not None and len(elliptic_curve_list) < 0: - raise ValueError("Invalid value for `elliptic_curve_list`, length must be greater than or equal to `0`") # noqa: E501 - - self._elliptic_curve_list = elliptic_curve_list - @property def enable_hash_tmpdir(self): """Gets the enable_hash_tmpdir of this SyncPolicyExtended. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_4_0/models/sync_policy_extended_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_policy_extended_extended.py new file mode 100644 index 000000000..daf6c4149 --- /dev/null +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_policy_extended_extended.py @@ -0,0 +1,2170 @@ +# coding: utf-8 + +""" + Isilon SDK + + Isilon SDK - Language bindings for the OneFS API # noqa: E501 + + OpenAPI spec version: 15 + Contact: sdk@isilon.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + + +class SyncPolicyExtendedExtended(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'accelerated_failback': 'bool', + 'action': 'str', + 'allow_copy_fb': 'bool', + 'bandwidth_reservation': 'int', + 'changelist': 'bool', + 'check_integrity': 'bool', + 'cloud_deep_copy': 'str', + 'conflicted': 'bool', + 'database_mirrored': 'bool', + 'delete_quotas': 'bool', + 'description': 'str', + 'disable_file_split': 'bool', + 'disable_fofb': 'bool', + 'disable_quota_tmp_dir': 'bool', + 'disable_stf': 'bool', + 'enable_hash_tmpdir': 'bool', + 'enabled': 'bool', + 'encrypted': 'bool', + 'encryption_cipher_list': 'str', + 'expected_dataloss': 'bool', + 'file_matching_pattern': 'SyncPolicyFileMatchingPattern', + 'force_interface': 'bool', + 'has_sync_state': 'bool', + 'id': 'str', + 'ignore_recursive_quota': 'bool', + 'job_delay': 'int', + 'last_job_state': 'str', + 'last_started': 'int', + 'last_success': 'int', + 'linked_service_policies': 'list[str]', + 'log_level': 'str', + 'log_removed_files': 'bool', + 'name': 'str', + 'next_run': 'int', + 'ocsp_address': 'str', + 'ocsp_issuer_certificate_id': 'str', + 'password_set': 'bool', + 'priority': 'int', + 'report_max_age': 'int', + 'report_max_count': 'int', + 'restrict_target_network': 'bool', + 'rpo_alert': 'int', + 'schedule': 'str', + 'service_policy': 'bool', + 'skip_lookup': 'bool', + 'skip_when_source_unmodified': 'bool', + 'snapshot_sync_existing': 'bool', + 'snapshot_sync_pattern': 'str', + 'source_certificate_id': 'str', + 'source_domain_marked': 'bool', + 'source_exclude_directories': 'list[str]', + 'source_include_directories': 'list[str]', + 'source_network': 'SyncPolicySourceNetwork', + 'source_root_path': 'str', + 'source_snapshot_archive': 'bool', + 'source_snapshot_expiration': 'int', + 'source_snapshot_pattern': 'str', + 'sync_existing_snapshot_expiration': 'bool', + 'sync_existing_target_snapshot_pattern': 'str', + 'target_certificate_id': 'str', + 'target_compare_initial_sync': 'bool', + 'target_detect_modifications': 'bool', + 'target_host': 'str', + 'target_path': 'str', + 'target_snapshot_alias': 'str', + 'target_snapshot_archive': 'bool', + 'target_snapshot_expiration': 'int', + 'target_snapshot_pattern': 'str', + 'workers_per_node': 'int' + } + + attribute_map = { + 'accelerated_failback': 'accelerated_failback', + 'action': 'action', + 'allow_copy_fb': 'allow_copy_fb', + 'bandwidth_reservation': 'bandwidth_reservation', + 'changelist': 'changelist', + 'check_integrity': 'check_integrity', + 'cloud_deep_copy': 'cloud_deep_copy', + 'conflicted': 'conflicted', + 'database_mirrored': 'database_mirrored', + 'delete_quotas': 'delete_quotas', + 'description': 'description', + 'disable_file_split': 'disable_file_split', + 'disable_fofb': 'disable_fofb', + 'disable_quota_tmp_dir': 'disable_quota_tmp_dir', + 'disable_stf': 'disable_stf', + 'enable_hash_tmpdir': 'enable_hash_tmpdir', + 'enabled': 'enabled', + 'encrypted': 'encrypted', + 'encryption_cipher_list': 'encryption_cipher_list', + 'expected_dataloss': 'expected_dataloss', + 'file_matching_pattern': 'file_matching_pattern', + 'force_interface': 'force_interface', + 'has_sync_state': 'has_sync_state', + 'id': 'id', + 'ignore_recursive_quota': 'ignore_recursive_quota', + 'job_delay': 'job_delay', + 'last_job_state': 'last_job_state', + 'last_started': 'last_started', + 'last_success': 'last_success', + 'linked_service_policies': 'linked_service_policies', + 'log_level': 'log_level', + 'log_removed_files': 'log_removed_files', + 'name': 'name', + 'next_run': 'next_run', + 'ocsp_address': 'ocsp_address', + 'ocsp_issuer_certificate_id': 'ocsp_issuer_certificate_id', + 'password_set': 'password_set', + 'priority': 'priority', + 'report_max_age': 'report_max_age', + 'report_max_count': 'report_max_count', + 'restrict_target_network': 'restrict_target_network', + 'rpo_alert': 'rpo_alert', + 'schedule': 'schedule', + 'service_policy': 'service_policy', + 'skip_lookup': 'skip_lookup', + 'skip_when_source_unmodified': 'skip_when_source_unmodified', + 'snapshot_sync_existing': 'snapshot_sync_existing', + 'snapshot_sync_pattern': 'snapshot_sync_pattern', + 'source_certificate_id': 'source_certificate_id', + 'source_domain_marked': 'source_domain_marked', + 'source_exclude_directories': 'source_exclude_directories', + 'source_include_directories': 'source_include_directories', + 'source_network': 'source_network', + 'source_root_path': 'source_root_path', + 'source_snapshot_archive': 'source_snapshot_archive', + 'source_snapshot_expiration': 'source_snapshot_expiration', + 'source_snapshot_pattern': 'source_snapshot_pattern', + 'sync_existing_snapshot_expiration': 'sync_existing_snapshot_expiration', + 'sync_existing_target_snapshot_pattern': 'sync_existing_target_snapshot_pattern', + 'target_certificate_id': 'target_certificate_id', + 'target_compare_initial_sync': 'target_compare_initial_sync', + 'target_detect_modifications': 'target_detect_modifications', + 'target_host': 'target_host', + 'target_path': 'target_path', + 'target_snapshot_alias': 'target_snapshot_alias', + 'target_snapshot_archive': 'target_snapshot_archive', + 'target_snapshot_expiration': 'target_snapshot_expiration', + 'target_snapshot_pattern': 'target_snapshot_pattern', + 'workers_per_node': 'workers_per_node' + } + + def __init__(self, accelerated_failback=None, action=None, allow_copy_fb=None, bandwidth_reservation=None, changelist=None, check_integrity=None, cloud_deep_copy=None, conflicted=None, database_mirrored=None, delete_quotas=None, description=None, disable_file_split=None, disable_fofb=None, disable_quota_tmp_dir=None, disable_stf=None, enable_hash_tmpdir=None, enabled=None, encrypted=None, encryption_cipher_list=None, expected_dataloss=None, file_matching_pattern=None, force_interface=None, has_sync_state=None, id=None, ignore_recursive_quota=None, job_delay=None, last_job_state=None, last_started=None, last_success=None, linked_service_policies=None, log_level=None, log_removed_files=None, name=None, next_run=None, ocsp_address=None, ocsp_issuer_certificate_id=None, password_set=None, priority=None, report_max_age=None, report_max_count=None, restrict_target_network=None, rpo_alert=None, schedule=None, service_policy=None, skip_lookup=None, skip_when_source_unmodified=None, snapshot_sync_existing=None, snapshot_sync_pattern=None, source_certificate_id=None, source_domain_marked=None, source_exclude_directories=None, source_include_directories=None, source_network=None, source_root_path=None, source_snapshot_archive=None, source_snapshot_expiration=None, source_snapshot_pattern=None, sync_existing_snapshot_expiration=None, sync_existing_target_snapshot_pattern=None, target_certificate_id=None, target_compare_initial_sync=None, target_detect_modifications=None, target_host=None, target_path=None, target_snapshot_alias=None, target_snapshot_archive=None, target_snapshot_expiration=None, target_snapshot_pattern=None, workers_per_node=None): # noqa: E501 + """SyncPolicyExtendedExtended - a model defined in Swagger""" # noqa: E501 + + self._accelerated_failback = None + self._action = None + self._allow_copy_fb = None + self._bandwidth_reservation = None + self._changelist = None + self._check_integrity = None + self._cloud_deep_copy = None + self._conflicted = None + self._database_mirrored = None + self._delete_quotas = None + self._description = None + self._disable_file_split = None + self._disable_fofb = None + self._disable_quota_tmp_dir = None + self._disable_stf = None + self._enable_hash_tmpdir = None + self._enabled = None + self._encrypted = None + self._encryption_cipher_list = None + self._expected_dataloss = None + self._file_matching_pattern = None + self._force_interface = None + self._has_sync_state = None + self._id = None + self._ignore_recursive_quota = None + self._job_delay = None + self._last_job_state = None + self._last_started = None + self._last_success = None + self._linked_service_policies = None + self._log_level = None + self._log_removed_files = None + self._name = None + self._next_run = None + self._ocsp_address = None + self._ocsp_issuer_certificate_id = None + self._password_set = None + self._priority = None + self._report_max_age = None + self._report_max_count = None + self._restrict_target_network = None + self._rpo_alert = None + self._schedule = None + self._service_policy = None + self._skip_lookup = None + self._skip_when_source_unmodified = None + self._snapshot_sync_existing = None + self._snapshot_sync_pattern = None + self._source_certificate_id = None + self._source_domain_marked = None + self._source_exclude_directories = None + self._source_include_directories = None + self._source_network = None + self._source_root_path = None + self._source_snapshot_archive = None + self._source_snapshot_expiration = None + self._source_snapshot_pattern = None + self._sync_existing_snapshot_expiration = None + self._sync_existing_target_snapshot_pattern = None + self._target_certificate_id = None + self._target_compare_initial_sync = None + self._target_detect_modifications = None + self._target_host = None + self._target_path = None + self._target_snapshot_alias = None + self._target_snapshot_archive = None + self._target_snapshot_expiration = None + self._target_snapshot_pattern = None + self._workers_per_node = None + self.discriminator = None + + if accelerated_failback is not None: + self.accelerated_failback = accelerated_failback + if action is not None: + self.action = action + if allow_copy_fb is not None: + self.allow_copy_fb = allow_copy_fb + if bandwidth_reservation is not None: + self.bandwidth_reservation = bandwidth_reservation + if changelist is not None: + self.changelist = changelist + if check_integrity is not None: + self.check_integrity = check_integrity + if cloud_deep_copy is not None: + self.cloud_deep_copy = cloud_deep_copy + if conflicted is not None: + self.conflicted = conflicted + self.database_mirrored = database_mirrored + if delete_quotas is not None: + self.delete_quotas = delete_quotas + if description is not None: + self.description = description + if disable_file_split is not None: + self.disable_file_split = disable_file_split + if disable_fofb is not None: + self.disable_fofb = disable_fofb + if disable_quota_tmp_dir is not None: + self.disable_quota_tmp_dir = disable_quota_tmp_dir + if disable_stf is not None: + self.disable_stf = disable_stf + if enable_hash_tmpdir is not None: + self.enable_hash_tmpdir = enable_hash_tmpdir + self.enabled = enabled + self.encrypted = encrypted + if encryption_cipher_list is not None: + self.encryption_cipher_list = encryption_cipher_list + if expected_dataloss is not None: + self.expected_dataloss = expected_dataloss + if file_matching_pattern is not None: + self.file_matching_pattern = file_matching_pattern + if force_interface is not None: + self.force_interface = force_interface + if has_sync_state is not None: + self.has_sync_state = has_sync_state + self.id = id + if ignore_recursive_quota is not None: + self.ignore_recursive_quota = ignore_recursive_quota + if job_delay is not None: + self.job_delay = job_delay + if last_job_state is not None: + self.last_job_state = last_job_state + if last_started is not None: + self.last_started = last_started + if last_success is not None: + self.last_success = last_success + if linked_service_policies is not None: + self.linked_service_policies = linked_service_policies + if log_level is not None: + self.log_level = log_level + if log_removed_files is not None: + self.log_removed_files = log_removed_files + self.name = name + if next_run is not None: + self.next_run = next_run + if ocsp_address is not None: + self.ocsp_address = ocsp_address + if ocsp_issuer_certificate_id is not None: + self.ocsp_issuer_certificate_id = ocsp_issuer_certificate_id + if password_set is not None: + self.password_set = password_set + if priority is not None: + self.priority = priority + if report_max_age is not None: + self.report_max_age = report_max_age + if report_max_count is not None: + self.report_max_count = report_max_count + if restrict_target_network is not None: + self.restrict_target_network = restrict_target_network + if rpo_alert is not None: + self.rpo_alert = rpo_alert + self.schedule = schedule + if service_policy is not None: + self.service_policy = service_policy + if skip_lookup is not None: + self.skip_lookup = skip_lookup + if skip_when_source_unmodified is not None: + self.skip_when_source_unmodified = skip_when_source_unmodified + if snapshot_sync_existing is not None: + self.snapshot_sync_existing = snapshot_sync_existing + if snapshot_sync_pattern is not None: + self.snapshot_sync_pattern = snapshot_sync_pattern + self.source_certificate_id = source_certificate_id + self.source_domain_marked = source_domain_marked + if source_exclude_directories is not None: + self.source_exclude_directories = source_exclude_directories + if source_include_directories is not None: + self.source_include_directories = source_include_directories + if source_network is not None: + self.source_network = source_network + self.source_root_path = source_root_path + if source_snapshot_archive is not None: + self.source_snapshot_archive = source_snapshot_archive + if source_snapshot_expiration is not None: + self.source_snapshot_expiration = source_snapshot_expiration + if source_snapshot_pattern is not None: + self.source_snapshot_pattern = source_snapshot_pattern + if sync_existing_snapshot_expiration is not None: + self.sync_existing_snapshot_expiration = sync_existing_snapshot_expiration + if sync_existing_target_snapshot_pattern is not None: + self.sync_existing_target_snapshot_pattern = sync_existing_target_snapshot_pattern + if target_certificate_id is not None: + self.target_certificate_id = target_certificate_id + if target_compare_initial_sync is not None: + self.target_compare_initial_sync = target_compare_initial_sync + if target_detect_modifications is not None: + self.target_detect_modifications = target_detect_modifications + self.target_host = target_host + self.target_path = target_path + if target_snapshot_alias is not None: + self.target_snapshot_alias = target_snapshot_alias + if target_snapshot_archive is not None: + self.target_snapshot_archive = target_snapshot_archive + if target_snapshot_expiration is not None: + self.target_snapshot_expiration = target_snapshot_expiration + if target_snapshot_pattern is not None: + self.target_snapshot_pattern = target_snapshot_pattern + if workers_per_node is not None: + self.workers_per_node = workers_per_node + + @property + def accelerated_failback(self): + """Gets the accelerated_failback of this SyncPolicyExtendedExtended. # noqa: E501 + + If set to true, SyncIQ will perform failback configuration tasks during the next job run, rather than waiting to perform those tasks during the failback process. Performing these tasks ahead of time will increase the speed of failback operations. # noqa: E501 + + :return: The accelerated_failback of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._accelerated_failback + + @accelerated_failback.setter + def accelerated_failback(self, accelerated_failback): + """Sets the accelerated_failback of this SyncPolicyExtendedExtended. + + If set to true, SyncIQ will perform failback configuration tasks during the next job run, rather than waiting to perform those tasks during the failback process. Performing these tasks ahead of time will increase the speed of failback operations. # noqa: E501 + + :param accelerated_failback: The accelerated_failback of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + + self._accelerated_failback = accelerated_failback + + @property + def action(self): + """Gets the action of this SyncPolicyExtendedExtended. # noqa: E501 + + If 'copy', source files will be copied to the target cluster. If 'sync', the target directory will be made an image of the source directory: Files and directories that have been deleted on the source, have been moved within the target directory, or no longer match the selection criteria will be deleted from the target directory. # noqa: E501 + + :return: The action of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._action + + @action.setter + def action(self, action): + """Sets the action of this SyncPolicyExtendedExtended. + + If 'copy', source files will be copied to the target cluster. If 'sync', the target directory will be made an image of the source directory: Files and directories that have been deleted on the source, have been moved within the target directory, or no longer match the selection criteria will be deleted from the target directory. # noqa: E501 + + :param action: The action of this SyncPolicyExtendedExtended. # noqa: E501 + :type: str + """ + allowed_values = ["copy", "sync"] # noqa: E501 + if action not in allowed_values: + raise ValueError( + "Invalid value for `action` ({0}), must be one of {1}" # noqa: E501 + .format(action, allowed_values) + ) + + self._action = action + + @property + def allow_copy_fb(self): + """Gets the allow_copy_fb of this SyncPolicyExtendedExtended. # noqa: E501 + + If set to true, SyncIQ will allow a policy with copy action failback which is not supported by default. # noqa: E501 + + :return: The allow_copy_fb of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._allow_copy_fb + + @allow_copy_fb.setter + def allow_copy_fb(self, allow_copy_fb): + """Sets the allow_copy_fb of this SyncPolicyExtendedExtended. + + If set to true, SyncIQ will allow a policy with copy action failback which is not supported by default. # noqa: E501 + + :param allow_copy_fb: The allow_copy_fb of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + + self._allow_copy_fb = allow_copy_fb + + @property + def bandwidth_reservation(self): + """Gets the bandwidth_reservation of this SyncPolicyExtendedExtended. # noqa: E501 + + The desired bandwidth reservation for this policy in kb/s. This feature will not activate unless a SyncIQ bandwidth rule is in effect. # noqa: E501 + + :return: The bandwidth_reservation of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: int + """ + return self._bandwidth_reservation + + @bandwidth_reservation.setter + def bandwidth_reservation(self, bandwidth_reservation): + """Sets the bandwidth_reservation of this SyncPolicyExtendedExtended. + + The desired bandwidth reservation for this policy in kb/s. This feature will not activate unless a SyncIQ bandwidth rule is in effect. # noqa: E501 + + :param bandwidth_reservation: The bandwidth_reservation of this SyncPolicyExtendedExtended. # noqa: E501 + :type: int + """ + if bandwidth_reservation is not None and bandwidth_reservation > 9223372036854775807: # noqa: E501 + raise ValueError("Invalid value for `bandwidth_reservation`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 + if bandwidth_reservation is not None and bandwidth_reservation < 0: # noqa: E501 + raise ValueError("Invalid value for `bandwidth_reservation`, must be a value greater than or equal to `0`") # noqa: E501 + + self._bandwidth_reservation = bandwidth_reservation + + @property + def changelist(self): + """Gets the changelist of this SyncPolicyExtendedExtended. # noqa: E501 + + If true, retain previous source snapshot and incremental repstate, both of which are required for changelist creation. # noqa: E501 + + :return: The changelist of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._changelist + + @changelist.setter + def changelist(self, changelist): + """Sets the changelist of this SyncPolicyExtendedExtended. + + If true, retain previous source snapshot and incremental repstate, both of which are required for changelist creation. # noqa: E501 + + :param changelist: The changelist of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + + self._changelist = changelist + + @property + def check_integrity(self): + """Gets the check_integrity of this SyncPolicyExtendedExtended. # noqa: E501 + + If true, the sync target performs cyclic redundancy checks (CRC) on the data as it is received. # noqa: E501 + + :return: The check_integrity of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._check_integrity + + @check_integrity.setter + def check_integrity(self, check_integrity): + """Sets the check_integrity of this SyncPolicyExtendedExtended. + + If true, the sync target performs cyclic redundancy checks (CRC) on the data as it is received. # noqa: E501 + + :param check_integrity: The check_integrity of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + + self._check_integrity = check_integrity + + @property + def cloud_deep_copy(self): + """Gets the cloud_deep_copy of this SyncPolicyExtendedExtended. # noqa: E501 + + If set to deny, replicates all CloudPools smartlinks to the target cluster as smartlinks; if the target cluster does not support the smartlinks, the job will fail. If set to force, replicates all smartlinks to the target cluster as regular files. If set to allow, SyncIQ will attempt to replicate smartlinks to the target cluster as smartlinks; if the target cluster does not support the smartlinks, SyncIQ will replicate the smartlinks as regular files. # noqa: E501 + + :return: The cloud_deep_copy of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._cloud_deep_copy + + @cloud_deep_copy.setter + def cloud_deep_copy(self, cloud_deep_copy): + """Sets the cloud_deep_copy of this SyncPolicyExtendedExtended. + + If set to deny, replicates all CloudPools smartlinks to the target cluster as smartlinks; if the target cluster does not support the smartlinks, the job will fail. If set to force, replicates all smartlinks to the target cluster as regular files. If set to allow, SyncIQ will attempt to replicate smartlinks to the target cluster as smartlinks; if the target cluster does not support the smartlinks, SyncIQ will replicate the smartlinks as regular files. # noqa: E501 + + :param cloud_deep_copy: The cloud_deep_copy of this SyncPolicyExtendedExtended. # noqa: E501 + :type: str + """ + allowed_values = ["deny", "allow", "force"] # noqa: E501 + if cloud_deep_copy not in allowed_values: + raise ValueError( + "Invalid value for `cloud_deep_copy` ({0}), must be one of {1}" # noqa: E501 + .format(cloud_deep_copy, allowed_values) + ) + + self._cloud_deep_copy = cloud_deep_copy + + @property + def conflicted(self): + """Gets the conflicted of this SyncPolicyExtendedExtended. # noqa: E501 + + NOTE: This field should not be changed without the help of PowerScale support. If true, the most recent run of this policy encountered an error and this policy will not start any more scheduled jobs until this field is manually set back to 'false'. # noqa: E501 + + :return: The conflicted of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._conflicted + + @conflicted.setter + def conflicted(self, conflicted): + """Sets the conflicted of this SyncPolicyExtendedExtended. + + NOTE: This field should not be changed without the help of PowerScale support. If true, the most recent run of this policy encountered an error and this policy will not start any more scheduled jobs until this field is manually set back to 'false'. # noqa: E501 + + :param conflicted: The conflicted of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + + self._conflicted = conflicted + + @property + def database_mirrored(self): + """Gets the database_mirrored of this SyncPolicyExtendedExtended. # noqa: E501 + + If true, SyncIQ databases have been mirrored. # noqa: E501 + + :return: The database_mirrored of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._database_mirrored + + @database_mirrored.setter + def database_mirrored(self, database_mirrored): + """Sets the database_mirrored of this SyncPolicyExtendedExtended. + + If true, SyncIQ databases have been mirrored. # noqa: E501 + + :param database_mirrored: The database_mirrored of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + if database_mirrored is None: + raise ValueError("Invalid value for `database_mirrored`, must not be `None`") # noqa: E501 + + self._database_mirrored = database_mirrored + + @property + def delete_quotas(self): + """Gets the delete_quotas of this SyncPolicyExtendedExtended. # noqa: E501 + + If true, forcibly remove quotas on the target after they have been removed on the source. # noqa: E501 + + :return: The delete_quotas of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._delete_quotas + + @delete_quotas.setter + def delete_quotas(self, delete_quotas): + """Sets the delete_quotas of this SyncPolicyExtendedExtended. + + If true, forcibly remove quotas on the target after they have been removed on the source. # noqa: E501 + + :param delete_quotas: The delete_quotas of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + + self._delete_quotas = delete_quotas + + @property + def description(self): + """Gets the description of this SyncPolicyExtendedExtended. # noqa: E501 + + User-assigned description of this sync policy. # noqa: E501 + + :return: The description of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._description + + @description.setter + def description(self, description): + """Sets the description of this SyncPolicyExtendedExtended. + + User-assigned description of this sync policy. # noqa: E501 + + :param description: The description of this SyncPolicyExtendedExtended. # noqa: E501 + :type: str + """ + if description is not None and len(description) > 255: + raise ValueError("Invalid value for `description`, length must be less than or equal to `255`") # noqa: E501 + if description is not None and len(description) < 0: + raise ValueError("Invalid value for `description`, length must be greater than or equal to `0`") # noqa: E501 + + self._description = description + + @property + def disable_file_split(self): + """Gets the disable_file_split of this SyncPolicyExtendedExtended. # noqa: E501 + + NOTE: This field should not be changed without the help of PowerScale support. If true, the 7.2+ file splitting capability will be disabled. # noqa: E501 + + :return: The disable_file_split of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._disable_file_split + + @disable_file_split.setter + def disable_file_split(self, disable_file_split): + """Sets the disable_file_split of this SyncPolicyExtendedExtended. + + NOTE: This field should not be changed without the help of PowerScale support. If true, the 7.2+ file splitting capability will be disabled. # noqa: E501 + + :param disable_file_split: The disable_file_split of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + + self._disable_file_split = disable_file_split + + @property + def disable_fofb(self): + """Gets the disable_fofb of this SyncPolicyExtendedExtended. # noqa: E501 + + NOTE: This field should not be changed without the help of PowerScale support. Enable/disable sync failover/failback. # noqa: E501 + + :return: The disable_fofb of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._disable_fofb + + @disable_fofb.setter + def disable_fofb(self, disable_fofb): + """Sets the disable_fofb of this SyncPolicyExtendedExtended. + + NOTE: This field should not be changed without the help of PowerScale support. Enable/disable sync failover/failback. # noqa: E501 + + :param disable_fofb: The disable_fofb of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + + self._disable_fofb = disable_fofb + + @property + def disable_quota_tmp_dir(self): + """Gets the disable_quota_tmp_dir of this SyncPolicyExtendedExtended. # noqa: E501 + + If set to true, SyncIQ will not create temporary quota directories to aid in replication to target paths which contain quotas. # noqa: E501 + + :return: The disable_quota_tmp_dir of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._disable_quota_tmp_dir + + @disable_quota_tmp_dir.setter + def disable_quota_tmp_dir(self, disable_quota_tmp_dir): + """Sets the disable_quota_tmp_dir of this SyncPolicyExtendedExtended. + + If set to true, SyncIQ will not create temporary quota directories to aid in replication to target paths which contain quotas. # noqa: E501 + + :param disable_quota_tmp_dir: The disable_quota_tmp_dir of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + + self._disable_quota_tmp_dir = disable_quota_tmp_dir + + @property + def disable_stf(self): + """Gets the disable_stf of this SyncPolicyExtendedExtended. # noqa: E501 + + NOTE: This field should not be changed without the help of PowerScale support. Enable/disable the 6.5+ STF based data transfer and uses only treewalk. # noqa: E501 + + :return: The disable_stf of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._disable_stf + + @disable_stf.setter + def disable_stf(self, disable_stf): + """Sets the disable_stf of this SyncPolicyExtendedExtended. + + NOTE: This field should not be changed without the help of PowerScale support. Enable/disable the 6.5+ STF based data transfer and uses only treewalk. # noqa: E501 + + :param disable_stf: The disable_stf of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + + self._disable_stf = disable_stf + + @property + def enable_hash_tmpdir(self): + """Gets the enable_hash_tmpdir of this SyncPolicyExtendedExtended. # noqa: E501 + + If true, syncs will use temporary working directory subdirectories to reduce lock contention. # noqa: E501 + + :return: The enable_hash_tmpdir of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._enable_hash_tmpdir + + @enable_hash_tmpdir.setter + def enable_hash_tmpdir(self, enable_hash_tmpdir): + """Sets the enable_hash_tmpdir of this SyncPolicyExtendedExtended. + + If true, syncs will use temporary working directory subdirectories to reduce lock contention. # noqa: E501 + + :param enable_hash_tmpdir: The enable_hash_tmpdir of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + + self._enable_hash_tmpdir = enable_hash_tmpdir + + @property + def enabled(self): + """Gets the enabled of this SyncPolicyExtendedExtended. # noqa: E501 + + If true, jobs will be automatically run based on this policy, according to its schedule. # noqa: E501 + + :return: The enabled of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._enabled + + @enabled.setter + def enabled(self, enabled): + """Sets the enabled of this SyncPolicyExtendedExtended. + + If true, jobs will be automatically run based on this policy, according to its schedule. # noqa: E501 + + :param enabled: The enabled of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + if enabled is None: + raise ValueError("Invalid value for `enabled`, must not be `None`") # noqa: E501 + + self._enabled = enabled + + @property + def encrypted(self): + """Gets the encrypted of this SyncPolicyExtendedExtended. # noqa: E501 + + If true, syncs will be encrypted. # noqa: E501 + + :return: The encrypted of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._encrypted + + @encrypted.setter + def encrypted(self, encrypted): + """Sets the encrypted of this SyncPolicyExtendedExtended. + + If true, syncs will be encrypted. # noqa: E501 + + :param encrypted: The encrypted of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + if encrypted is None: + raise ValueError("Invalid value for `encrypted`, must not be `None`") # noqa: E501 + + self._encrypted = encrypted + + @property + def encryption_cipher_list(self): + """Gets the encryption_cipher_list of this SyncPolicyExtendedExtended. # noqa: E501 + + The cipher list being used with encryption. For SyncIQ targets, this list serves as a list of supported ciphers. For SyncIQ sources, the list of ciphers will be attempted to be used in order. # noqa: E501 + + :return: The encryption_cipher_list of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._encryption_cipher_list + + @encryption_cipher_list.setter + def encryption_cipher_list(self, encryption_cipher_list): + """Sets the encryption_cipher_list of this SyncPolicyExtendedExtended. + + The cipher list being used with encryption. For SyncIQ targets, this list serves as a list of supported ciphers. For SyncIQ sources, the list of ciphers will be attempted to be used in order. # noqa: E501 + + :param encryption_cipher_list: The encryption_cipher_list of this SyncPolicyExtendedExtended. # noqa: E501 + :type: str + """ + if encryption_cipher_list is not None and len(encryption_cipher_list) > 255: + raise ValueError("Invalid value for `encryption_cipher_list`, length must be less than or equal to `255`") # noqa: E501 + if encryption_cipher_list is not None and len(encryption_cipher_list) < 0: + raise ValueError("Invalid value for `encryption_cipher_list`, length must be greater than or equal to `0`") # noqa: E501 + + self._encryption_cipher_list = encryption_cipher_list + + @property + def expected_dataloss(self): + """Gets the expected_dataloss of this SyncPolicyExtendedExtended. # noqa: E501 + + NOTE: This field should not be changed without the help of PowerScale support. Continue sending files even with the corrupted filesystem. # noqa: E501 + + :return: The expected_dataloss of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._expected_dataloss + + @expected_dataloss.setter + def expected_dataloss(self, expected_dataloss): + """Sets the expected_dataloss of this SyncPolicyExtendedExtended. + + NOTE: This field should not be changed without the help of PowerScale support. Continue sending files even with the corrupted filesystem. # noqa: E501 + + :param expected_dataloss: The expected_dataloss of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + + self._expected_dataloss = expected_dataloss + + @property + def file_matching_pattern(self): + """Gets the file_matching_pattern of this SyncPolicyExtendedExtended. # noqa: E501 + + A file matching pattern, organized as an OR'ed set of AND'ed file criteria, for example ((a AND b) OR (x AND y)) used to define a set of files with specific properties. Policies of type 'sync' cannot use 'path' or time criteria in their matching patterns, but policies of type 'copy' can use all listed criteria. # noqa: E501 + + :return: The file_matching_pattern of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: SyncPolicyFileMatchingPattern + """ + return self._file_matching_pattern + + @file_matching_pattern.setter + def file_matching_pattern(self, file_matching_pattern): + """Sets the file_matching_pattern of this SyncPolicyExtendedExtended. + + A file matching pattern, organized as an OR'ed set of AND'ed file criteria, for example ((a AND b) OR (x AND y)) used to define a set of files with specific properties. Policies of type 'sync' cannot use 'path' or time criteria in their matching patterns, but policies of type 'copy' can use all listed criteria. # noqa: E501 + + :param file_matching_pattern: The file_matching_pattern of this SyncPolicyExtendedExtended. # noqa: E501 + :type: SyncPolicyFileMatchingPattern + """ + + self._file_matching_pattern = file_matching_pattern + + @property + def force_interface(self): + """Gets the force_interface of this SyncPolicyExtendedExtended. # noqa: E501 + + NOTE: This field should not be changed without the help of PowerScale support. Determines whether data is sent only through the subnet and pool specified in the \"source_network\" field. This option can be useful if there are multiple interfaces for the given source subnet. If you enable this option, the net.inet.ip.choose_ifa_by_ipsrc sysctl should be set. # noqa: E501 + + :return: The force_interface of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._force_interface + + @force_interface.setter + def force_interface(self, force_interface): + """Sets the force_interface of this SyncPolicyExtendedExtended. + + NOTE: This field should not be changed without the help of PowerScale support. Determines whether data is sent only through the subnet and pool specified in the \"source_network\" field. This option can be useful if there are multiple interfaces for the given source subnet. If you enable this option, the net.inet.ip.choose_ifa_by_ipsrc sysctl should be set. # noqa: E501 + + :param force_interface: The force_interface of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + + self._force_interface = force_interface + + @property + def has_sync_state(self): + """Gets the has_sync_state of this SyncPolicyExtendedExtended. # noqa: E501 + + This field is false if the policy is in its initial sync state and true otherwise. Setting this field to false will reset the policy's sync state. # noqa: E501 + + :return: The has_sync_state of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._has_sync_state + + @has_sync_state.setter + def has_sync_state(self, has_sync_state): + """Sets the has_sync_state of this SyncPolicyExtendedExtended. + + This field is false if the policy is in its initial sync state and true otherwise. Setting this field to false will reset the policy's sync state. # noqa: E501 + + :param has_sync_state: The has_sync_state of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + + self._has_sync_state = has_sync_state + + @property + def id(self): + """Gets the id of this SyncPolicyExtendedExtended. # noqa: E501 + + The system ID given to this sync policy. # noqa: E501 + + :return: The id of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._id + + @id.setter + def id(self, id): + """Sets the id of this SyncPolicyExtendedExtended. + + The system ID given to this sync policy. # noqa: E501 + + :param id: The id of this SyncPolicyExtendedExtended. # noqa: E501 + :type: str + """ + if id is None: + raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501 + if id is not None and len(id) > 255: + raise ValueError("Invalid value for `id`, length must be less than or equal to `255`") # noqa: E501 + if id is not None and len(id) < 1: + raise ValueError("Invalid value for `id`, length must be greater than or equal to `1`") # noqa: E501 + + self._id = id + + @property + def ignore_recursive_quota(self): + """Gets the ignore_recursive_quota of this SyncPolicyExtendedExtended. # noqa: E501 + + If set to true, SyncIQ will not check the recursive quota in target paths to aid in replication to target paths which contain no quota but target cluster has lots of quotas. # noqa: E501 + + :return: The ignore_recursive_quota of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._ignore_recursive_quota + + @ignore_recursive_quota.setter + def ignore_recursive_quota(self, ignore_recursive_quota): + """Sets the ignore_recursive_quota of this SyncPolicyExtendedExtended. + + If set to true, SyncIQ will not check the recursive quota in target paths to aid in replication to target paths which contain no quota but target cluster has lots of quotas. # noqa: E501 + + :param ignore_recursive_quota: The ignore_recursive_quota of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + + self._ignore_recursive_quota = ignore_recursive_quota + + @property + def job_delay(self): + """Gets the job_delay of this SyncPolicyExtendedExtended. # noqa: E501 + + If --schedule is set to When-Source-Modified, the duration to wait after a modification is made before starting a job (default is 0 seconds). # noqa: E501 + + :return: The job_delay of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: int + """ + return self._job_delay + + @job_delay.setter + def job_delay(self, job_delay): + """Sets the job_delay of this SyncPolicyExtendedExtended. + + If --schedule is set to When-Source-Modified, the duration to wait after a modification is made before starting a job (default is 0 seconds). # noqa: E501 + + :param job_delay: The job_delay of this SyncPolicyExtendedExtended. # noqa: E501 + :type: int + """ + if job_delay is not None and job_delay > 9223372036854775807: # noqa: E501 + raise ValueError("Invalid value for `job_delay`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 + if job_delay is not None and job_delay < 0: # noqa: E501 + raise ValueError("Invalid value for `job_delay`, must be a value greater than or equal to `0`") # noqa: E501 + + self._job_delay = job_delay + + @property + def last_job_state(self): + """Gets the last_job_state of this SyncPolicyExtendedExtended. # noqa: E501 + + This is the state of the most recent job for this policy. # noqa: E501 + + :return: The last_job_state of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._last_job_state + + @last_job_state.setter + def last_job_state(self, last_job_state): + """Sets the last_job_state of this SyncPolicyExtendedExtended. + + This is the state of the most recent job for this policy. # noqa: E501 + + :param last_job_state: The last_job_state of this SyncPolicyExtendedExtended. # noqa: E501 + :type: str + """ + if last_job_state is not None and len(last_job_state) > 255: + raise ValueError("Invalid value for `last_job_state`, length must be less than or equal to `255`") # noqa: E501 + if last_job_state is not None and len(last_job_state) < 1: + raise ValueError("Invalid value for `last_job_state`, length must be greater than or equal to `1`") # noqa: E501 + + self._last_job_state = last_job_state + + @property + def last_started(self): + """Gets the last_started of this SyncPolicyExtendedExtended. # noqa: E501 + + The most recent time a job was started for this policy. Value is null if the policy has never been run. # noqa: E501 + + :return: The last_started of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: int + """ + return self._last_started + + @last_started.setter + def last_started(self, last_started): + """Sets the last_started of this SyncPolicyExtendedExtended. + + The most recent time a job was started for this policy. Value is null if the policy has never been run. # noqa: E501 + + :param last_started: The last_started of this SyncPolicyExtendedExtended. # noqa: E501 + :type: int + """ + if last_started is not None and last_started > 9223372036854775807: # noqa: E501 + raise ValueError("Invalid value for `last_started`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 + if last_started is not None and last_started < 0: # noqa: E501 + raise ValueError("Invalid value for `last_started`, must be a value greater than or equal to `0`") # noqa: E501 + + self._last_started = last_started + + @property + def last_success(self): + """Gets the last_success of this SyncPolicyExtendedExtended. # noqa: E501 + + Timestamp of last known successfully completed synchronization. Value is null if the policy has never completed successfully. # noqa: E501 + + :return: The last_success of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: int + """ + return self._last_success + + @last_success.setter + def last_success(self, last_success): + """Sets the last_success of this SyncPolicyExtendedExtended. + + Timestamp of last known successfully completed synchronization. Value is null if the policy has never completed successfully. # noqa: E501 + + :param last_success: The last_success of this SyncPolicyExtendedExtended. # noqa: E501 + :type: int + """ + if last_success is not None and last_success > 9223372036854775807: # noqa: E501 + raise ValueError("Invalid value for `last_success`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 + if last_success is not None and last_success < 0: # noqa: E501 + raise ValueError("Invalid value for `last_success`, must be a value greater than or equal to `0`") # noqa: E501 + + self._last_success = last_success + + @property + def linked_service_policies(self): + """Gets the linked_service_policies of this SyncPolicyExtendedExtended. # noqa: E501 + + A list of service replication policies that this data replication policy will be associated with. # noqa: E501 + + :return: The linked_service_policies of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: list[str] + """ + return self._linked_service_policies + + @linked_service_policies.setter + def linked_service_policies(self, linked_service_policies): + """Sets the linked_service_policies of this SyncPolicyExtendedExtended. + + A list of service replication policies that this data replication policy will be associated with. # noqa: E501 + + :param linked_service_policies: The linked_service_policies of this SyncPolicyExtendedExtended. # noqa: E501 + :type: list[str] + """ + + self._linked_service_policies = linked_service_policies + + @property + def log_level(self): + """Gets the log_level of this SyncPolicyExtendedExtended. # noqa: E501 + + Severity an event must reach before it is logged. # noqa: E501 + + :return: The log_level of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._log_level + + @log_level.setter + def log_level(self, log_level): + """Sets the log_level of this SyncPolicyExtendedExtended. + + Severity an event must reach before it is logged. # noqa: E501 + + :param log_level: The log_level of this SyncPolicyExtendedExtended. # noqa: E501 + :type: str + """ + allowed_values = ["fatal", "error", "notice", "info", "copy", "debug", "trace"] # noqa: E501 + if log_level not in allowed_values: + raise ValueError( + "Invalid value for `log_level` ({0}), must be one of {1}" # noqa: E501 + .format(log_level, allowed_values) + ) + + self._log_level = log_level + + @property + def log_removed_files(self): + """Gets the log_removed_files of this SyncPolicyExtendedExtended. # noqa: E501 + + If true, the system will log any files or directories that are deleted due to a sync. # noqa: E501 + + :return: The log_removed_files of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._log_removed_files + + @log_removed_files.setter + def log_removed_files(self, log_removed_files): + """Sets the log_removed_files of this SyncPolicyExtendedExtended. + + If true, the system will log any files or directories that are deleted due to a sync. # noqa: E501 + + :param log_removed_files: The log_removed_files of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + + self._log_removed_files = log_removed_files + + @property + def name(self): + """Gets the name of this SyncPolicyExtendedExtended. # noqa: E501 + + User-assigned name of this sync policy. # noqa: E501 + + :return: The name of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._name + + @name.setter + def name(self, name): + """Sets the name of this SyncPolicyExtendedExtended. + + User-assigned name of this sync policy. # noqa: E501 + + :param name: The name of this SyncPolicyExtendedExtended. # noqa: E501 + :type: str + """ + if name is None: + raise ValueError("Invalid value for `name`, must not be `None`") # noqa: E501 + if name is not None and len(name) > 255: + raise ValueError("Invalid value for `name`, length must be less than or equal to `255`") # noqa: E501 + if name is not None and len(name) < 1: + raise ValueError("Invalid value for `name`, length must be greater than or equal to `1`") # noqa: E501 + + self._name = name + + @property + def next_run(self): + """Gets the next_run of this SyncPolicyExtendedExtended. # noqa: E501 + + This is the next time a job is scheduled to run for this policy in Unix epoch seconds. This field is null if the job is not scheduled. # noqa: E501 + + :return: The next_run of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: int + """ + return self._next_run + + @next_run.setter + def next_run(self, next_run): + """Sets the next_run of this SyncPolicyExtendedExtended. + + This is the next time a job is scheduled to run for this policy in Unix epoch seconds. This field is null if the job is not scheduled. # noqa: E501 + + :param next_run: The next_run of this SyncPolicyExtendedExtended. # noqa: E501 + :type: int + """ + if next_run is not None and next_run > 9223372036854775807: # noqa: E501 + raise ValueError("Invalid value for `next_run`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 + if next_run is not None and next_run < 0: # noqa: E501 + raise ValueError("Invalid value for `next_run`, must be a value greater than or equal to `0`") # noqa: E501 + + self._next_run = next_run + + @property + def ocsp_address(self): + """Gets the ocsp_address of this SyncPolicyExtendedExtended. # noqa: E501 + + The address of the OCSP responder to which to connect. # noqa: E501 + + :return: The ocsp_address of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._ocsp_address + + @ocsp_address.setter + def ocsp_address(self, ocsp_address): + """Sets the ocsp_address of this SyncPolicyExtendedExtended. + + The address of the OCSP responder to which to connect. # noqa: E501 + + :param ocsp_address: The ocsp_address of this SyncPolicyExtendedExtended. # noqa: E501 + :type: str + """ + if ocsp_address is not None and len(ocsp_address) > 255: + raise ValueError("Invalid value for `ocsp_address`, length must be less than or equal to `255`") # noqa: E501 + if ocsp_address is not None and len(ocsp_address) < 0: + raise ValueError("Invalid value for `ocsp_address`, length must be greater than or equal to `0`") # noqa: E501 + + self._ocsp_address = ocsp_address + + @property + def ocsp_issuer_certificate_id(self): + """Gets the ocsp_issuer_certificate_id of this SyncPolicyExtendedExtended. # noqa: E501 + + The ID of the certificate authority that issued the certificate whose revocation status is being checked. # noqa: E501 + + :return: The ocsp_issuer_certificate_id of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._ocsp_issuer_certificate_id + + @ocsp_issuer_certificate_id.setter + def ocsp_issuer_certificate_id(self, ocsp_issuer_certificate_id): + """Sets the ocsp_issuer_certificate_id of this SyncPolicyExtendedExtended. + + The ID of the certificate authority that issued the certificate whose revocation status is being checked. # noqa: E501 + + :param ocsp_issuer_certificate_id: The ocsp_issuer_certificate_id of this SyncPolicyExtendedExtended. # noqa: E501 + :type: str + """ + if ocsp_issuer_certificate_id is not None and len(ocsp_issuer_certificate_id) > 255: + raise ValueError("Invalid value for `ocsp_issuer_certificate_id`, length must be less than or equal to `255`") # noqa: E501 + if ocsp_issuer_certificate_id is not None and len(ocsp_issuer_certificate_id) < 0: + raise ValueError("Invalid value for `ocsp_issuer_certificate_id`, length must be greater than or equal to `0`") # noqa: E501 + + self._ocsp_issuer_certificate_id = ocsp_issuer_certificate_id + + @property + def password_set(self): + """Gets the password_set of this SyncPolicyExtendedExtended. # noqa: E501 + + Indicates if a password is set for accessing the target cluster. Password value is not shown with GET. # noqa: E501 + + :return: The password_set of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._password_set + + @password_set.setter + def password_set(self, password_set): + """Sets the password_set of this SyncPolicyExtendedExtended. + + Indicates if a password is set for accessing the target cluster. Password value is not shown with GET. # noqa: E501 + + :param password_set: The password_set of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + + self._password_set = password_set + + @property + def priority(self): + """Gets the priority of this SyncPolicyExtendedExtended. # noqa: E501 + + Determines the priority level of a policy. Policies with higher priority will have precedence to run over lower priority policies. Valid range is [0, 1]. Default is 0. # noqa: E501 + + :return: The priority of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: int + """ + return self._priority + + @priority.setter + def priority(self, priority): + """Sets the priority of this SyncPolicyExtendedExtended. + + Determines the priority level of a policy. Policies with higher priority will have precedence to run over lower priority policies. Valid range is [0, 1]. Default is 0. # noqa: E501 + + :param priority: The priority of this SyncPolicyExtendedExtended. # noqa: E501 + :type: int + """ + if priority is not None and priority > 1: # noqa: E501 + raise ValueError("Invalid value for `priority`, must be a value less than or equal to `1`") # noqa: E501 + if priority is not None and priority < 0: # noqa: E501 + raise ValueError("Invalid value for `priority`, must be a value greater than or equal to `0`") # noqa: E501 + + self._priority = priority + + @property + def report_max_age(self): + """Gets the report_max_age of this SyncPolicyExtendedExtended. # noqa: E501 + + Length of time (in seconds) a policy report will be stored. # noqa: E501 + + :return: The report_max_age of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: int + """ + return self._report_max_age + + @report_max_age.setter + def report_max_age(self, report_max_age): + """Sets the report_max_age of this SyncPolicyExtendedExtended. + + Length of time (in seconds) a policy report will be stored. # noqa: E501 + + :param report_max_age: The report_max_age of this SyncPolicyExtendedExtended. # noqa: E501 + :type: int + """ + if report_max_age is not None and report_max_age > 9223372036854775807: # noqa: E501 + raise ValueError("Invalid value for `report_max_age`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 + if report_max_age is not None and report_max_age < 0: # noqa: E501 + raise ValueError("Invalid value for `report_max_age`, must be a value greater than or equal to `0`") # noqa: E501 + + self._report_max_age = report_max_age + + @property + def report_max_count(self): + """Gets the report_max_count of this SyncPolicyExtendedExtended. # noqa: E501 + + Maximum number of policy reports that will be stored on the system. # noqa: E501 + + :return: The report_max_count of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: int + """ + return self._report_max_count + + @report_max_count.setter + def report_max_count(self, report_max_count): + """Sets the report_max_count of this SyncPolicyExtendedExtended. + + Maximum number of policy reports that will be stored on the system. # noqa: E501 + + :param report_max_count: The report_max_count of this SyncPolicyExtendedExtended. # noqa: E501 + :type: int + """ + if report_max_count is not None and report_max_count > 2000: # noqa: E501 + raise ValueError("Invalid value for `report_max_count`, must be a value less than or equal to `2000`") # noqa: E501 + if report_max_count is not None and report_max_count < 1: # noqa: E501 + raise ValueError("Invalid value for `report_max_count`, must be a value greater than or equal to `1`") # noqa: E501 + + self._report_max_count = report_max_count + + @property + def restrict_target_network(self): + """Gets the restrict_target_network of this SyncPolicyExtendedExtended. # noqa: E501 + + If you specify true, and you specify a SmartConnect zone in the \"target_host\" field, replication policies will connect only to nodes in the specified SmartConnect zone. If you specify false, replication policies are not restricted to specific nodes on the target cluster. # noqa: E501 + + :return: The restrict_target_network of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._restrict_target_network + + @restrict_target_network.setter + def restrict_target_network(self, restrict_target_network): + """Sets the restrict_target_network of this SyncPolicyExtendedExtended. + + If you specify true, and you specify a SmartConnect zone in the \"target_host\" field, replication policies will connect only to nodes in the specified SmartConnect zone. If you specify false, replication policies are not restricted to specific nodes on the target cluster. # noqa: E501 + + :param restrict_target_network: The restrict_target_network of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + + self._restrict_target_network = restrict_target_network + + @property + def rpo_alert(self): + """Gets the rpo_alert of this SyncPolicyExtendedExtended. # noqa: E501 + + If --schedule is set to a time/date, an alert is created if the specified RPO for this policy is exceeded. The default value is 0, which will not generate RPO alerts. # noqa: E501 + + :return: The rpo_alert of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: int + """ + return self._rpo_alert + + @rpo_alert.setter + def rpo_alert(self, rpo_alert): + """Sets the rpo_alert of this SyncPolicyExtendedExtended. + + If --schedule is set to a time/date, an alert is created if the specified RPO for this policy is exceeded. The default value is 0, which will not generate RPO alerts. # noqa: E501 + + :param rpo_alert: The rpo_alert of this SyncPolicyExtendedExtended. # noqa: E501 + :type: int + """ + if rpo_alert is not None and rpo_alert > 9223372036854775807: # noqa: E501 + raise ValueError("Invalid value for `rpo_alert`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 + if rpo_alert is not None and rpo_alert < 0: # noqa: E501 + raise ValueError("Invalid value for `rpo_alert`, must be a value greater than or equal to `0`") # noqa: E501 + + self._rpo_alert = rpo_alert + + @property + def schedule(self): + """Gets the schedule of this SyncPolicyExtendedExtended. # noqa: E501 + + The schedule on which new jobs will be run for this policy. # noqa: E501 + + :return: The schedule of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._schedule + + @schedule.setter + def schedule(self, schedule): + """Sets the schedule of this SyncPolicyExtendedExtended. + + The schedule on which new jobs will be run for this policy. # noqa: E501 + + :param schedule: The schedule of this SyncPolicyExtendedExtended. # noqa: E501 + :type: str + """ + if schedule is None: + raise ValueError("Invalid value for `schedule`, must not be `None`") # noqa: E501 + if schedule is not None and len(schedule) > 255: + raise ValueError("Invalid value for `schedule`, length must be less than or equal to `255`") # noqa: E501 + if schedule is not None and len(schedule) < 0: + raise ValueError("Invalid value for `schedule`, length must be greater than or equal to `0`") # noqa: E501 + + self._schedule = schedule + + @property + def service_policy(self): + """Gets the service_policy of this SyncPolicyExtendedExtended. # noqa: E501 + + If true, this is a service replication policy. # noqa: E501 + + :return: The service_policy of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._service_policy + + @service_policy.setter + def service_policy(self, service_policy): + """Sets the service_policy of this SyncPolicyExtendedExtended. + + If true, this is a service replication policy. # noqa: E501 + + :param service_policy: The service_policy of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + + self._service_policy = service_policy + + @property + def skip_lookup(self): + """Gets the skip_lookup of this SyncPolicyExtendedExtended. # noqa: E501 + + Skip DNS lookup of target IPs. # noqa: E501 + + :return: The skip_lookup of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._skip_lookup + + @skip_lookup.setter + def skip_lookup(self, skip_lookup): + """Sets the skip_lookup of this SyncPolicyExtendedExtended. + + Skip DNS lookup of target IPs. # noqa: E501 + + :param skip_lookup: The skip_lookup of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + + self._skip_lookup = skip_lookup + + @property + def skip_when_source_unmodified(self): + """Gets the skip_when_source_unmodified of this SyncPolicyExtendedExtended. # noqa: E501 + + If true and --schedule is set to a time/date, the policy will not run if no changes have been made to the contents of the source directory since the last job successfully completed. # noqa: E501 + + :return: The skip_when_source_unmodified of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._skip_when_source_unmodified + + @skip_when_source_unmodified.setter + def skip_when_source_unmodified(self, skip_when_source_unmodified): + """Sets the skip_when_source_unmodified of this SyncPolicyExtendedExtended. + + If true and --schedule is set to a time/date, the policy will not run if no changes have been made to the contents of the source directory since the last job successfully completed. # noqa: E501 + + :param skip_when_source_unmodified: The skip_when_source_unmodified of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + + self._skip_when_source_unmodified = skip_when_source_unmodified + + @property + def snapshot_sync_existing(self): + """Gets the snapshot_sync_existing of this SyncPolicyExtendedExtended. # noqa: E501 + + If true, snapshot-triggered syncs will include snapshots taken before policy creation time (requires --schedule when-snapshot-taken). # noqa: E501 + + :return: The snapshot_sync_existing of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._snapshot_sync_existing + + @snapshot_sync_existing.setter + def snapshot_sync_existing(self, snapshot_sync_existing): + """Sets the snapshot_sync_existing of this SyncPolicyExtendedExtended. + + If true, snapshot-triggered syncs will include snapshots taken before policy creation time (requires --schedule when-snapshot-taken). # noqa: E501 + + :param snapshot_sync_existing: The snapshot_sync_existing of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + + self._snapshot_sync_existing = snapshot_sync_existing + + @property + def snapshot_sync_pattern(self): + """Gets the snapshot_sync_pattern of this SyncPolicyExtendedExtended. # noqa: E501 + + The naming pattern that a snapshot must match to trigger a sync when the schedule is when-snapshot-taken (default is \"*\"). # noqa: E501 + + :return: The snapshot_sync_pattern of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._snapshot_sync_pattern + + @snapshot_sync_pattern.setter + def snapshot_sync_pattern(self, snapshot_sync_pattern): + """Sets the snapshot_sync_pattern of this SyncPolicyExtendedExtended. + + The naming pattern that a snapshot must match to trigger a sync when the schedule is when-snapshot-taken (default is \"*\"). # noqa: E501 + + :param snapshot_sync_pattern: The snapshot_sync_pattern of this SyncPolicyExtendedExtended. # noqa: E501 + :type: str + """ + if snapshot_sync_pattern is not None and len(snapshot_sync_pattern) > 255: + raise ValueError("Invalid value for `snapshot_sync_pattern`, length must be less than or equal to `255`") # noqa: E501 + if snapshot_sync_pattern is not None and len(snapshot_sync_pattern) < 1: + raise ValueError("Invalid value for `snapshot_sync_pattern`, length must be greater than or equal to `1`") # noqa: E501 + + self._snapshot_sync_pattern = snapshot_sync_pattern + + @property + def source_certificate_id(self): + """Gets the source_certificate_id of this SyncPolicyExtendedExtended. # noqa: E501 + + The ID of the source cluster certificate being used for encryption. # noqa: E501 + + :return: The source_certificate_id of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._source_certificate_id + + @source_certificate_id.setter + def source_certificate_id(self, source_certificate_id): + """Sets the source_certificate_id of this SyncPolicyExtendedExtended. + + The ID of the source cluster certificate being used for encryption. # noqa: E501 + + :param source_certificate_id: The source_certificate_id of this SyncPolicyExtendedExtended. # noqa: E501 + :type: str + """ + if source_certificate_id is None: + raise ValueError("Invalid value for `source_certificate_id`, must not be `None`") # noqa: E501 + if source_certificate_id is not None and len(source_certificate_id) > 255: + raise ValueError("Invalid value for `source_certificate_id`, length must be less than or equal to `255`") # noqa: E501 + if source_certificate_id is not None and len(source_certificate_id) < 0: + raise ValueError("Invalid value for `source_certificate_id`, length must be greater than or equal to `0`") # noqa: E501 + + self._source_certificate_id = source_certificate_id + + @property + def source_domain_marked(self): + """Gets the source_domain_marked of this SyncPolicyExtendedExtended. # noqa: E501 + + If true, the source root path has been domain marked with a SyncIQ domain. # noqa: E501 + + :return: The source_domain_marked of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._source_domain_marked + + @source_domain_marked.setter + def source_domain_marked(self, source_domain_marked): + """Sets the source_domain_marked of this SyncPolicyExtendedExtended. + + If true, the source root path has been domain marked with a SyncIQ domain. # noqa: E501 + + :param source_domain_marked: The source_domain_marked of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + if source_domain_marked is None: + raise ValueError("Invalid value for `source_domain_marked`, must not be `None`") # noqa: E501 + + self._source_domain_marked = source_domain_marked + + @property + def source_exclude_directories(self): + """Gets the source_exclude_directories of this SyncPolicyExtendedExtended. # noqa: E501 + + Directories that will be excluded from the sync. Modifying this field will result in a full synchronization of all data. # noqa: E501 + + :return: The source_exclude_directories of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: list[str] + """ + return self._source_exclude_directories + + @source_exclude_directories.setter + def source_exclude_directories(self, source_exclude_directories): + """Sets the source_exclude_directories of this SyncPolicyExtendedExtended. + + Directories that will be excluded from the sync. Modifying this field will result in a full synchronization of all data. # noqa: E501 + + :param source_exclude_directories: The source_exclude_directories of this SyncPolicyExtendedExtended. # noqa: E501 + :type: list[str] + """ + + self._source_exclude_directories = source_exclude_directories + + @property + def source_include_directories(self): + """Gets the source_include_directories of this SyncPolicyExtendedExtended. # noqa: E501 + + Directories that will be included in the sync. Modifying this field will result in a full synchronization of all data. # noqa: E501 + + :return: The source_include_directories of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: list[str] + """ + return self._source_include_directories + + @source_include_directories.setter + def source_include_directories(self, source_include_directories): + """Sets the source_include_directories of this SyncPolicyExtendedExtended. + + Directories that will be included in the sync. Modifying this field will result in a full synchronization of all data. # noqa: E501 + + :param source_include_directories: The source_include_directories of this SyncPolicyExtendedExtended. # noqa: E501 + :type: list[str] + """ + + self._source_include_directories = source_include_directories + + @property + def source_network(self): + """Gets the source_network of this SyncPolicyExtendedExtended. # noqa: E501 + + Restricts replication policies on the local cluster to running on the specified subnet and pool. # noqa: E501 + + :return: The source_network of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: SyncPolicySourceNetwork + """ + return self._source_network + + @source_network.setter + def source_network(self, source_network): + """Sets the source_network of this SyncPolicyExtendedExtended. + + Restricts replication policies on the local cluster to running on the specified subnet and pool. # noqa: E501 + + :param source_network: The source_network of this SyncPolicyExtendedExtended. # noqa: E501 + :type: SyncPolicySourceNetwork + """ + + self._source_network = source_network + + @property + def source_root_path(self): + """Gets the source_root_path of this SyncPolicyExtendedExtended. # noqa: E501 + + The root directory on the source cluster the files will be synced from. Modifying this field will result in a full synchronization of all data. # noqa: E501 + + :return: The source_root_path of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._source_root_path + + @source_root_path.setter + def source_root_path(self, source_root_path): + """Sets the source_root_path of this SyncPolicyExtendedExtended. + + The root directory on the source cluster the files will be synced from. Modifying this field will result in a full synchronization of all data. # noqa: E501 + + :param source_root_path: The source_root_path of this SyncPolicyExtendedExtended. # noqa: E501 + :type: str + """ + if source_root_path is None: + raise ValueError("Invalid value for `source_root_path`, must not be `None`") # noqa: E501 + if source_root_path is not None and len(source_root_path) > 4096: + raise ValueError("Invalid value for `source_root_path`, length must be less than or equal to `4096`") # noqa: E501 + if source_root_path is not None and len(source_root_path) < 1: + raise ValueError("Invalid value for `source_root_path`, length must be greater than or equal to `1`") # noqa: E501 + + self._source_root_path = source_root_path + + @property + def source_snapshot_archive(self): + """Gets the source_snapshot_archive of this SyncPolicyExtendedExtended. # noqa: E501 + + If true, archival snapshots of the source data will be taken on the source cluster before a sync. # noqa: E501 + + :return: The source_snapshot_archive of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._source_snapshot_archive + + @source_snapshot_archive.setter + def source_snapshot_archive(self, source_snapshot_archive): + """Sets the source_snapshot_archive of this SyncPolicyExtendedExtended. + + If true, archival snapshots of the source data will be taken on the source cluster before a sync. # noqa: E501 + + :param source_snapshot_archive: The source_snapshot_archive of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + + self._source_snapshot_archive = source_snapshot_archive + + @property + def source_snapshot_expiration(self): + """Gets the source_snapshot_expiration of this SyncPolicyExtendedExtended. # noqa: E501 + + The length of time in seconds to keep snapshots on the source cluster. # noqa: E501 + + :return: The source_snapshot_expiration of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: int + """ + return self._source_snapshot_expiration + + @source_snapshot_expiration.setter + def source_snapshot_expiration(self, source_snapshot_expiration): + """Sets the source_snapshot_expiration of this SyncPolicyExtendedExtended. + + The length of time in seconds to keep snapshots on the source cluster. # noqa: E501 + + :param source_snapshot_expiration: The source_snapshot_expiration of this SyncPolicyExtendedExtended. # noqa: E501 + :type: int + """ + if source_snapshot_expiration is not None and source_snapshot_expiration > 9223372036854775807: # noqa: E501 + raise ValueError("Invalid value for `source_snapshot_expiration`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 + if source_snapshot_expiration is not None and source_snapshot_expiration < 0: # noqa: E501 + raise ValueError("Invalid value for `source_snapshot_expiration`, must be a value greater than or equal to `0`") # noqa: E501 + + self._source_snapshot_expiration = source_snapshot_expiration + + @property + def source_snapshot_pattern(self): + """Gets the source_snapshot_pattern of this SyncPolicyExtendedExtended. # noqa: E501 + + The name pattern for snapshots taken on the source cluster before a sync. # noqa: E501 + + :return: The source_snapshot_pattern of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._source_snapshot_pattern + + @source_snapshot_pattern.setter + def source_snapshot_pattern(self, source_snapshot_pattern): + """Sets the source_snapshot_pattern of this SyncPolicyExtendedExtended. + + The name pattern for snapshots taken on the source cluster before a sync. # noqa: E501 + + :param source_snapshot_pattern: The source_snapshot_pattern of this SyncPolicyExtendedExtended. # noqa: E501 + :type: str + """ + if source_snapshot_pattern is not None and len(source_snapshot_pattern) > 255: + raise ValueError("Invalid value for `source_snapshot_pattern`, length must be less than or equal to `255`") # noqa: E501 + if source_snapshot_pattern is not None and len(source_snapshot_pattern) < 0: + raise ValueError("Invalid value for `source_snapshot_pattern`, length must be greater than or equal to `0`") # noqa: E501 + + self._source_snapshot_pattern = source_snapshot_pattern + + @property + def sync_existing_snapshot_expiration(self): + """Gets the sync_existing_snapshot_expiration of this SyncPolicyExtendedExtended. # noqa: E501 + + If set to true, the expire duration for target archival snapshot is the remaining expire duration of source snapshot, requires --sync-existing-snapshot=true # noqa: E501 + + :return: The sync_existing_snapshot_expiration of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._sync_existing_snapshot_expiration + + @sync_existing_snapshot_expiration.setter + def sync_existing_snapshot_expiration(self, sync_existing_snapshot_expiration): + """Sets the sync_existing_snapshot_expiration of this SyncPolicyExtendedExtended. + + If set to true, the expire duration for target archival snapshot is the remaining expire duration of source snapshot, requires --sync-existing-snapshot=true # noqa: E501 + + :param sync_existing_snapshot_expiration: The sync_existing_snapshot_expiration of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + + self._sync_existing_snapshot_expiration = sync_existing_snapshot_expiration + + @property + def sync_existing_target_snapshot_pattern(self): + """Gets the sync_existing_target_snapshot_pattern of this SyncPolicyExtendedExtended. # noqa: E501 + + The naming pattern for snapshot on the destination cluster when --sync-existing-snapshot is true # noqa: E501 + + :return: The sync_existing_target_snapshot_pattern of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._sync_existing_target_snapshot_pattern + + @sync_existing_target_snapshot_pattern.setter + def sync_existing_target_snapshot_pattern(self, sync_existing_target_snapshot_pattern): + """Sets the sync_existing_target_snapshot_pattern of this SyncPolicyExtendedExtended. + + The naming pattern for snapshot on the destination cluster when --sync-existing-snapshot is true # noqa: E501 + + :param sync_existing_target_snapshot_pattern: The sync_existing_target_snapshot_pattern of this SyncPolicyExtendedExtended. # noqa: E501 + :type: str + """ + if sync_existing_target_snapshot_pattern is not None and len(sync_existing_target_snapshot_pattern) > 255: + raise ValueError("Invalid value for `sync_existing_target_snapshot_pattern`, length must be less than or equal to `255`") # noqa: E501 + if sync_existing_target_snapshot_pattern is not None and len(sync_existing_target_snapshot_pattern) < 0: + raise ValueError("Invalid value for `sync_existing_target_snapshot_pattern`, length must be greater than or equal to `0`") # noqa: E501 + + self._sync_existing_target_snapshot_pattern = sync_existing_target_snapshot_pattern + + @property + def target_certificate_id(self): + """Gets the target_certificate_id of this SyncPolicyExtendedExtended. # noqa: E501 + + The ID of the target cluster certificate being used for encryption. # noqa: E501 + + :return: The target_certificate_id of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._target_certificate_id + + @target_certificate_id.setter + def target_certificate_id(self, target_certificate_id): + """Sets the target_certificate_id of this SyncPolicyExtendedExtended. + + The ID of the target cluster certificate being used for encryption. # noqa: E501 + + :param target_certificate_id: The target_certificate_id of this SyncPolicyExtendedExtended. # noqa: E501 + :type: str + """ + if target_certificate_id is not None and len(target_certificate_id) > 255: + raise ValueError("Invalid value for `target_certificate_id`, length must be less than or equal to `255`") # noqa: E501 + if target_certificate_id is not None and len(target_certificate_id) < 0: + raise ValueError("Invalid value for `target_certificate_id`, length must be greater than or equal to `0`") # noqa: E501 + + self._target_certificate_id = target_certificate_id + + @property + def target_compare_initial_sync(self): + """Gets the target_compare_initial_sync of this SyncPolicyExtendedExtended. # noqa: E501 + + If true, the target creates diffs against the original sync. # noqa: E501 + + :return: The target_compare_initial_sync of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._target_compare_initial_sync + + @target_compare_initial_sync.setter + def target_compare_initial_sync(self, target_compare_initial_sync): + """Sets the target_compare_initial_sync of this SyncPolicyExtendedExtended. + + If true, the target creates diffs against the original sync. # noqa: E501 + + :param target_compare_initial_sync: The target_compare_initial_sync of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + + self._target_compare_initial_sync = target_compare_initial_sync + + @property + def target_detect_modifications(self): + """Gets the target_detect_modifications of this SyncPolicyExtendedExtended. # noqa: E501 + + If true, target cluster will detect if files have been changed on the target by legacy tree walk syncs. # noqa: E501 + + :return: The target_detect_modifications of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._target_detect_modifications + + @target_detect_modifications.setter + def target_detect_modifications(self, target_detect_modifications): + """Sets the target_detect_modifications of this SyncPolicyExtendedExtended. + + If true, target cluster will detect if files have been changed on the target by legacy tree walk syncs. # noqa: E501 + + :param target_detect_modifications: The target_detect_modifications of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + + self._target_detect_modifications = target_detect_modifications + + @property + def target_host(self): + """Gets the target_host of this SyncPolicyExtendedExtended. # noqa: E501 + + Hostname or IP address of sync target cluster. Modifying the target cluster host can result in the policy being unrunnable if the new target does not match the current target association. # noqa: E501 + + :return: The target_host of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._target_host + + @target_host.setter + def target_host(self, target_host): + """Sets the target_host of this SyncPolicyExtendedExtended. + + Hostname or IP address of sync target cluster. Modifying the target cluster host can result in the policy being unrunnable if the new target does not match the current target association. # noqa: E501 + + :param target_host: The target_host of this SyncPolicyExtendedExtended. # noqa: E501 + :type: str + """ + if target_host is None: + raise ValueError("Invalid value for `target_host`, must not be `None`") # noqa: E501 + if target_host is not None and len(target_host) > 255: + raise ValueError("Invalid value for `target_host`, length must be less than or equal to `255`") # noqa: E501 + if target_host is not None and len(target_host) < 1: + raise ValueError("Invalid value for `target_host`, length must be greater than or equal to `1`") # noqa: E501 + + self._target_host = target_host + + @property + def target_path(self): + """Gets the target_path of this SyncPolicyExtendedExtended. # noqa: E501 + + Absolute filesystem path on the target cluster for the sync destination. # noqa: E501 + + :return: The target_path of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._target_path + + @target_path.setter + def target_path(self, target_path): + """Sets the target_path of this SyncPolicyExtendedExtended. + + Absolute filesystem path on the target cluster for the sync destination. # noqa: E501 + + :param target_path: The target_path of this SyncPolicyExtendedExtended. # noqa: E501 + :type: str + """ + if target_path is None: + raise ValueError("Invalid value for `target_path`, must not be `None`") # noqa: E501 + if target_path is not None and len(target_path) > 4096: + raise ValueError("Invalid value for `target_path`, length must be less than or equal to `4096`") # noqa: E501 + if target_path is not None and len(target_path) < 1: + raise ValueError("Invalid value for `target_path`, length must be greater than or equal to `1`") # noqa: E501 + + self._target_path = target_path + + @property + def target_snapshot_alias(self): + """Gets the target_snapshot_alias of this SyncPolicyExtendedExtended. # noqa: E501 + + The alias of the snapshot taken on the target cluster after the sync completes. A value of @DEFAULT will reset this field to the default creation value. # noqa: E501 + + :return: The target_snapshot_alias of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._target_snapshot_alias + + @target_snapshot_alias.setter + def target_snapshot_alias(self, target_snapshot_alias): + """Sets the target_snapshot_alias of this SyncPolicyExtendedExtended. + + The alias of the snapshot taken on the target cluster after the sync completes. A value of @DEFAULT will reset this field to the default creation value. # noqa: E501 + + :param target_snapshot_alias: The target_snapshot_alias of this SyncPolicyExtendedExtended. # noqa: E501 + :type: str + """ + if target_snapshot_alias is not None and len(target_snapshot_alias) > 255: + raise ValueError("Invalid value for `target_snapshot_alias`, length must be less than or equal to `255`") # noqa: E501 + if target_snapshot_alias is not None and len(target_snapshot_alias) < 0: + raise ValueError("Invalid value for `target_snapshot_alias`, length must be greater than or equal to `0`") # noqa: E501 + + self._target_snapshot_alias = target_snapshot_alias + + @property + def target_snapshot_archive(self): + """Gets the target_snapshot_archive of this SyncPolicyExtendedExtended. # noqa: E501 + + If true, archival snapshots of the target data will be taken on the target cluster after successful sync completions. # noqa: E501 + + :return: The target_snapshot_archive of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: bool + """ + return self._target_snapshot_archive + + @target_snapshot_archive.setter + def target_snapshot_archive(self, target_snapshot_archive): + """Sets the target_snapshot_archive of this SyncPolicyExtendedExtended. + + If true, archival snapshots of the target data will be taken on the target cluster after successful sync completions. # noqa: E501 + + :param target_snapshot_archive: The target_snapshot_archive of this SyncPolicyExtendedExtended. # noqa: E501 + :type: bool + """ + + self._target_snapshot_archive = target_snapshot_archive + + @property + def target_snapshot_expiration(self): + """Gets the target_snapshot_expiration of this SyncPolicyExtendedExtended. # noqa: E501 + + The length of time in seconds to keep snapshots on the target cluster. # noqa: E501 + + :return: The target_snapshot_expiration of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: int + """ + return self._target_snapshot_expiration + + @target_snapshot_expiration.setter + def target_snapshot_expiration(self, target_snapshot_expiration): + """Sets the target_snapshot_expiration of this SyncPolicyExtendedExtended. + + The length of time in seconds to keep snapshots on the target cluster. # noqa: E501 + + :param target_snapshot_expiration: The target_snapshot_expiration of this SyncPolicyExtendedExtended. # noqa: E501 + :type: int + """ + if target_snapshot_expiration is not None and target_snapshot_expiration > 9223372036854775807: # noqa: E501 + raise ValueError("Invalid value for `target_snapshot_expiration`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 + if target_snapshot_expiration is not None and target_snapshot_expiration < 0: # noqa: E501 + raise ValueError("Invalid value for `target_snapshot_expiration`, must be a value greater than or equal to `0`") # noqa: E501 + + self._target_snapshot_expiration = target_snapshot_expiration + + @property + def target_snapshot_pattern(self): + """Gets the target_snapshot_pattern of this SyncPolicyExtendedExtended. # noqa: E501 + + The name pattern for snapshots taken on the target cluster after the sync completes. A value of @DEFAULT will reset this field to the default creation value. # noqa: E501 + + :return: The target_snapshot_pattern of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: str + """ + return self._target_snapshot_pattern + + @target_snapshot_pattern.setter + def target_snapshot_pattern(self, target_snapshot_pattern): + """Sets the target_snapshot_pattern of this SyncPolicyExtendedExtended. + + The name pattern for snapshots taken on the target cluster after the sync completes. A value of @DEFAULT will reset this field to the default creation value. # noqa: E501 + + :param target_snapshot_pattern: The target_snapshot_pattern of this SyncPolicyExtendedExtended. # noqa: E501 + :type: str + """ + if target_snapshot_pattern is not None and len(target_snapshot_pattern) > 255: + raise ValueError("Invalid value for `target_snapshot_pattern`, length must be less than or equal to `255`") # noqa: E501 + if target_snapshot_pattern is not None and len(target_snapshot_pattern) < 0: + raise ValueError("Invalid value for `target_snapshot_pattern`, length must be greater than or equal to `0`") # noqa: E501 + + self._target_snapshot_pattern = target_snapshot_pattern + + @property + def workers_per_node(self): + """Gets the workers_per_node of this SyncPolicyExtendedExtended. # noqa: E501 + + The number of worker threads on a node performing a sync. # noqa: E501 + + :return: The workers_per_node of this SyncPolicyExtendedExtended. # noqa: E501 + :rtype: int + """ + return self._workers_per_node + + @workers_per_node.setter + def workers_per_node(self, workers_per_node): + """Sets the workers_per_node of this SyncPolicyExtendedExtended. + + The number of worker threads on a node performing a sync. # noqa: E501 + + :param workers_per_node: The workers_per_node of this SyncPolicyExtendedExtended. # noqa: E501 + :type: int + """ + if workers_per_node is not None and workers_per_node > 20: # noqa: E501 + raise ValueError("Invalid value for `workers_per_node`, must be a value less than or equal to `20`") # noqa: E501 + if workers_per_node is not None and workers_per_node < 1: # noqa: E501 + raise ValueError("Invalid value for `workers_per_node`, must be a value greater than or equal to `1`") # noqa: E501 + + self._workers_per_node = workers_per_node + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(SyncPolicyExtendedExtended, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, SyncPolicyExtendedExtended): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + """Returns true if both objects are not equal""" + return not self == other diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_policy_file_matching_pattern.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_policy_file_matching_pattern.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_policy_file_matching_pattern.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_policy_file_matching_pattern.py index 43bc82c7d..f5ca265bc 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_policy_file_matching_pattern.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_policy_file_matching_pattern.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_policy_file_matching_pattern_or_criteria_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_policy_file_matching_pattern_or_criteria_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_policy_file_matching_pattern_or_criteria_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_policy_file_matching_pattern_or_criteria_item.py index eb627036b..93c120240 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_policy_file_matching_pattern_or_criteria_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_policy_file_matching_pattern_or_criteria_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_policy_file_matching_pattern_or_criteria_item_and_criteria_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_policy_file_matching_pattern_or_criteria_item_and_criteria_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_policy_file_matching_pattern_or_criteria_item_and_criteria_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_policy_file_matching_pattern_or_criteria_item_and_criteria_item.py index f77653331..58b7ed5d5 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_policy_file_matching_pattern_or_criteria_item_and_criteria_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_policy_file_matching_pattern_or_criteria_item_and_criteria_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_policy_source_network.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_policy_source_network.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_policy_source_network.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_policy_source_network.py index a26530467..4c7a7a1c8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_policy_source_network.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_policy_source_network.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_report.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_report.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_report.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_report.py index b2badb1b7..9af3f98ec 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_report.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_report.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -447,7 +447,7 @@ def action(self, action): """ if action is None: raise ValueError("Invalid value for `action`, must not be `None`") # noqa: E501 - allowed_values = ["none", "copy", "move", "remove", "sync", "allow_write", "allow_write_revert", "resync_prep", "resync_prep_domain_mark", "resync_prep_restore", "resync_prep_finalize", "resync_prep_commit", "snap_revert_domain_mark", "synciq_domain_mark", "worm_domain_mark", "test", "run"] # noqa: E501 + allowed_values = ["resync_prep", "allow_write", "allow_write_revert", "test", "run", "none"] # noqa: E501 if action not in allowed_values: raise ValueError( "Invalid value for `action` ({0}), must be one of {1}" # noqa: E501 @@ -2356,7 +2356,7 @@ def state(self, state): """ if state is None: raise ValueError("Invalid value for `state`, must not be `None`") # noqa: E501 - allowed_values = ["scheduled", "running", "paused", "finished", "failed", "canceled", "needs_attention", "skipped", "pending", "unknown", "success w/ prior failures"] # noqa: E501 + allowed_values = ["scheduled", "running", "paused", "finished", "failed", "canceled", "needs_attention", "skipped", "pending", "unknown"] # noqa: E501 if state not in allowed_values: raise ValueError( "Invalid value for `state` ({0}), must be one of {1}" # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_reports.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_reports.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_reports.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_reports.py index 5294a268c..4aa37fed1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_reports.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_reports.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_reports_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_reports_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_reports_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_reports_extended.py index 24b70812f..df99eb299 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_reports_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_reports_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_reports_rotate.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_reports_rotate.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_reports_rotate.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_reports_rotate.py index 237f9c52e..30f94f51f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_reports_rotate.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_reports_rotate.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_rule.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_rule.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_rule.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_rule.py index 0242c4b09..e7ab76b6c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_rule.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_rule.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_rule_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_rule_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_rule_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_rule_create_params.py index 03b4c7ac2..06a2c15da 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_rule_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_rule_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_rule_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_rule_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_rule_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_rule_extended.py index dcf2ba8a0..2e11c37f1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_rule_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_rule_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_rule_extended_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_rule_extended_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_rule_extended_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_rule_extended_extended.py index 7f0325286..74064e0ce 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_rule_extended_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_rule_extended_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_rule_schedule.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_rule_schedule.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_rule_schedule.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_rule_schedule.py index 3d89807ea..53c7090da 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_rule_schedule.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_rule_schedule.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_rules.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_rules.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_rules.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_rules.py index e5797823c..d0795fd27 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_rules.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_rules.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_rules_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_rules_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_rules_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_rules_extended.py index 340c82491..03e120c03 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_rules_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_rules_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_settings.py index 3d0f80fb3..ae9190dbc 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_settings_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_settings_extended.py similarity index 86% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_settings_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_settings_extended.py index 784d5e2e9..21b928e0a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_settings_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -34,15 +34,12 @@ class SyncSettingsExtended(object): 'bandwidth_reservation_reserve_absolute': 'int', 'bandwidth_reservation_reserve_percentage': 'int', 'cluster_certificate_id': 'str', - 'elliptic_curve_list': 'str', 'encryption_cipher_list': 'str', 'encryption_required': 'bool', 'force_interface': 'bool', 'ocsp_address': 'str', 'ocsp_issuer_certificate_id': 'str', - 'password': 'str', 'preferred_rpo_alert': 'int', - 'renegotiation_bytes': 'int', 'renegotiation_period': 'int', 'report_email': 'list[str]', 'report_max_age': 'int', @@ -61,15 +58,12 @@ class SyncSettingsExtended(object): 'bandwidth_reservation_reserve_absolute': 'bandwidth_reservation_reserve_absolute', 'bandwidth_reservation_reserve_percentage': 'bandwidth_reservation_reserve_percentage', 'cluster_certificate_id': 'cluster_certificate_id', - 'elliptic_curve_list': 'elliptic_curve_list', 'encryption_cipher_list': 'encryption_cipher_list', 'encryption_required': 'encryption_required', 'force_interface': 'force_interface', 'ocsp_address': 'ocsp_address', 'ocsp_issuer_certificate_id': 'ocsp_issuer_certificate_id', - 'password': 'password', 'preferred_rpo_alert': 'preferred_rpo_alert', - 'renegotiation_bytes': 'renegotiation_bytes', 'renegotiation_period': 'renegotiation_period', 'report_email': 'report_email', 'report_max_age': 'report_max_age', @@ -84,21 +78,18 @@ class SyncSettingsExtended(object): 'use_workers_per_node': 'use_workers_per_node' } - def __init__(self, bandwidth_reservation_reserve_absolute=None, bandwidth_reservation_reserve_percentage=None, cluster_certificate_id=None, elliptic_curve_list=None, encryption_cipher_list=None, encryption_required=None, force_interface=None, ocsp_address=None, ocsp_issuer_certificate_id=None, password=None, preferred_rpo_alert=None, renegotiation_bytes=None, renegotiation_period=None, report_email=None, report_max_age=None, report_max_count=None, restrict_target_network=None, rpo_alerts=None, service=None, service_history_max_age=None, service_history_max_count=None, source_network=None, tw_chkpt_interval=None, use_workers_per_node=None): # noqa: E501 + def __init__(self, bandwidth_reservation_reserve_absolute=None, bandwidth_reservation_reserve_percentage=None, cluster_certificate_id=None, encryption_cipher_list=None, encryption_required=None, force_interface=None, ocsp_address=None, ocsp_issuer_certificate_id=None, preferred_rpo_alert=None, renegotiation_period=None, report_email=None, report_max_age=None, report_max_count=None, restrict_target_network=None, rpo_alerts=None, service=None, service_history_max_age=None, service_history_max_count=None, source_network=None, tw_chkpt_interval=None, use_workers_per_node=None): # noqa: E501 """SyncSettingsExtended - a model defined in Swagger""" # noqa: E501 self._bandwidth_reservation_reserve_absolute = None self._bandwidth_reservation_reserve_percentage = None self._cluster_certificate_id = None - self._elliptic_curve_list = None self._encryption_cipher_list = None self._encryption_required = None self._force_interface = None self._ocsp_address = None self._ocsp_issuer_certificate_id = None - self._password = None self._preferred_rpo_alert = None - self._renegotiation_bytes = None self._renegotiation_period = None self._report_email = None self._report_max_age = None @@ -119,8 +110,6 @@ def __init__(self, bandwidth_reservation_reserve_absolute=None, bandwidth_reserv self.bandwidth_reservation_reserve_percentage = bandwidth_reservation_reserve_percentage if cluster_certificate_id is not None: self.cluster_certificate_id = cluster_certificate_id - if elliptic_curve_list is not None: - self.elliptic_curve_list = elliptic_curve_list if encryption_cipher_list is not None: self.encryption_cipher_list = encryption_cipher_list if encryption_required is not None: @@ -131,12 +120,8 @@ def __init__(self, bandwidth_reservation_reserve_absolute=None, bandwidth_reserv self.ocsp_address = ocsp_address if ocsp_issuer_certificate_id is not None: self.ocsp_issuer_certificate_id = ocsp_issuer_certificate_id - if password is not None: - self.password = password if preferred_rpo_alert is not None: self.preferred_rpo_alert = preferred_rpo_alert - if renegotiation_bytes is not None: - self.renegotiation_bytes = renegotiation_bytes if renegotiation_period is not None: self.renegotiation_period = renegotiation_period if report_email is not None: @@ -243,33 +228,6 @@ def cluster_certificate_id(self, cluster_certificate_id): self._cluster_certificate_id = cluster_certificate_id - @property - def elliptic_curve_list(self): - """Gets the elliptic_curve_list of this SyncSettingsExtended. # noqa: E501 - - The elliptic curve list being used with encryption. For SyncIQ targets, this list serves as a list of supported elliptic curves. For SyncIQ sources, the list of elliptic curves will be attempted to be used in order. # noqa: E501 - - :return: The elliptic_curve_list of this SyncSettingsExtended. # noqa: E501 - :rtype: str - """ - return self._elliptic_curve_list - - @elliptic_curve_list.setter - def elliptic_curve_list(self, elliptic_curve_list): - """Sets the elliptic_curve_list of this SyncSettingsExtended. - - The elliptic curve list being used with encryption. For SyncIQ targets, this list serves as a list of supported elliptic curves. For SyncIQ sources, the list of elliptic curves will be attempted to be used in order. # noqa: E501 - - :param elliptic_curve_list: The elliptic_curve_list of this SyncSettingsExtended. # noqa: E501 - :type: str - """ - if elliptic_curve_list is not None and len(elliptic_curve_list) > 255: - raise ValueError("Invalid value for `elliptic_curve_list`, length must be less than or equal to `255`") # noqa: E501 - if elliptic_curve_list is not None and len(elliptic_curve_list) < 0: - raise ValueError("Invalid value for `elliptic_curve_list`, length must be greater than or equal to `0`") # noqa: E501 - - self._elliptic_curve_list = elliptic_curve_list - @property def encryption_cipher_list(self): """Gets the encryption_cipher_list of this SyncSettingsExtended. # noqa: E501 @@ -397,33 +355,6 @@ def ocsp_issuer_certificate_id(self, ocsp_issuer_certificate_id): self._ocsp_issuer_certificate_id = ocsp_issuer_certificate_id - @property - def password(self): - """Gets the password of this SyncSettingsExtended. # noqa: E501 - - The password for cluster authentication # noqa: E501 - - :return: The password of this SyncSettingsExtended. # noqa: E501 - :rtype: str - """ - return self._password - - @password.setter - def password(self, password): - """Sets the password of this SyncSettingsExtended. - - The password for cluster authentication # noqa: E501 - - :param password: The password of this SyncSettingsExtended. # noqa: E501 - :type: str - """ - if password is not None and len(password) > 255: - raise ValueError("Invalid value for `password`, length must be less than or equal to `255`") # noqa: E501 - if password is not None and len(password) < 1: - raise ValueError("Invalid value for `password`, length must be greater than or equal to `1`") # noqa: E501 - - self._password = password - @property def preferred_rpo_alert(self): """Gets the preferred_rpo_alert of this SyncSettingsExtended. # noqa: E501 @@ -451,33 +382,6 @@ def preferred_rpo_alert(self, preferred_rpo_alert): self._preferred_rpo_alert = preferred_rpo_alert - @property - def renegotiation_bytes(self): - """Gets the renegotiation_bytes of this SyncSettingsExtended. # noqa: E501 - - Default for the number of bytes that are passed before a new TLS connection is 1TB. Setting to 0 will disable renegotiations based on bytes. # noqa: E501 - - :return: The renegotiation_bytes of this SyncSettingsExtended. # noqa: E501 - :rtype: int - """ - return self._renegotiation_bytes - - @renegotiation_bytes.setter - def renegotiation_bytes(self, renegotiation_bytes): - """Sets the renegotiation_bytes of this SyncSettingsExtended. - - Default for the number of bytes that are passed before a new TLS connection is 1TB. Setting to 0 will disable renegotiations based on bytes. # noqa: E501 - - :param renegotiation_bytes: The renegotiation_bytes of this SyncSettingsExtended. # noqa: E501 - :type: int - """ - if renegotiation_bytes is not None and renegotiation_bytes > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `renegotiation_bytes`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if renegotiation_bytes is not None and renegotiation_bytes < 0: # noqa: E501 - raise ValueError("Invalid value for `renegotiation_bytes`, must be a value greater than or equal to `0`") # noqa: E501 - - self._renegotiation_bytes = renegotiation_bytes - @property def renegotiation_period(self): """Gets the renegotiation_period of this SyncSettingsExtended. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_settings_settings.py similarity index 87% rename from isilon_sdk/isilon_sdk/v9_11_0/models/sync_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/sync_settings_settings.py index 3ecdeae36..b8b2050d7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/sync_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/sync_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -34,16 +34,13 @@ class SyncSettingsSettings(object): 'bandwidth_reservation_reserve_absolute': 'int', 'bandwidth_reservation_reserve_percentage': 'int', 'cluster_certificate_id': 'str', - 'elliptic_curve_list': 'str', 'encryption_cipher_list': 'str', 'encryption_required': 'bool', 'force_interface': 'bool', 'max_concurrent_jobs': 'int', 'ocsp_address': 'str', 'ocsp_issuer_certificate_id': 'str', - 'password_set': 'bool', 'preferred_rpo_alert': 'int', - 'renegotiation_bytes': 'int', 'renegotiation_period': 'int', 'report_email': 'list[str]', 'report_max_age': 'int', @@ -62,16 +59,13 @@ class SyncSettingsSettings(object): 'bandwidth_reservation_reserve_absolute': 'bandwidth_reservation_reserve_absolute', 'bandwidth_reservation_reserve_percentage': 'bandwidth_reservation_reserve_percentage', 'cluster_certificate_id': 'cluster_certificate_id', - 'elliptic_curve_list': 'elliptic_curve_list', 'encryption_cipher_list': 'encryption_cipher_list', 'encryption_required': 'encryption_required', 'force_interface': 'force_interface', 'max_concurrent_jobs': 'max_concurrent_jobs', 'ocsp_address': 'ocsp_address', 'ocsp_issuer_certificate_id': 'ocsp_issuer_certificate_id', - 'password_set': 'password_set', 'preferred_rpo_alert': 'preferred_rpo_alert', - 'renegotiation_bytes': 'renegotiation_bytes', 'renegotiation_period': 'renegotiation_period', 'report_email': 'report_email', 'report_max_age': 'report_max_age', @@ -86,22 +80,19 @@ class SyncSettingsSettings(object): 'use_workers_per_node': 'use_workers_per_node' } - def __init__(self, bandwidth_reservation_reserve_absolute=None, bandwidth_reservation_reserve_percentage=None, cluster_certificate_id=None, elliptic_curve_list=None, encryption_cipher_list=None, encryption_required=None, force_interface=None, max_concurrent_jobs=None, ocsp_address=None, ocsp_issuer_certificate_id=None, password_set=None, preferred_rpo_alert=None, renegotiation_bytes=None, renegotiation_period=None, report_email=None, report_max_age=None, report_max_count=None, restrict_target_network=None, rpo_alerts=None, service=None, service_history_max_age=None, service_history_max_count=None, source_network=None, tw_chkpt_interval=None, use_workers_per_node=None): # noqa: E501 + def __init__(self, bandwidth_reservation_reserve_absolute=None, bandwidth_reservation_reserve_percentage=None, cluster_certificate_id=None, encryption_cipher_list=None, encryption_required=None, force_interface=None, max_concurrent_jobs=None, ocsp_address=None, ocsp_issuer_certificate_id=None, preferred_rpo_alert=None, renegotiation_period=None, report_email=None, report_max_age=None, report_max_count=None, restrict_target_network=None, rpo_alerts=None, service=None, service_history_max_age=None, service_history_max_count=None, source_network=None, tw_chkpt_interval=None, use_workers_per_node=None): # noqa: E501 """SyncSettingsSettings - a model defined in Swagger""" # noqa: E501 self._bandwidth_reservation_reserve_absolute = None self._bandwidth_reservation_reserve_percentage = None self._cluster_certificate_id = None - self._elliptic_curve_list = None self._encryption_cipher_list = None self._encryption_required = None self._force_interface = None self._max_concurrent_jobs = None self._ocsp_address = None self._ocsp_issuer_certificate_id = None - self._password_set = None self._preferred_rpo_alert = None - self._renegotiation_bytes = None self._renegotiation_period = None self._report_email = None self._report_max_age = None @@ -122,8 +113,6 @@ def __init__(self, bandwidth_reservation_reserve_absolute=None, bandwidth_reserv self.bandwidth_reservation_reserve_percentage = bandwidth_reservation_reserve_percentage if cluster_certificate_id is not None: self.cluster_certificate_id = cluster_certificate_id - if elliptic_curve_list is not None: - self.elliptic_curve_list = elliptic_curve_list if encryption_cipher_list is not None: self.encryption_cipher_list = encryption_cipher_list if encryption_required is not None: @@ -136,12 +125,8 @@ def __init__(self, bandwidth_reservation_reserve_absolute=None, bandwidth_reserv self.ocsp_address = ocsp_address if ocsp_issuer_certificate_id is not None: self.ocsp_issuer_certificate_id = ocsp_issuer_certificate_id - if password_set is not None: - self.password_set = password_set if preferred_rpo_alert is not None: self.preferred_rpo_alert = preferred_rpo_alert - if renegotiation_bytes is not None: - self.renegotiation_bytes = renegotiation_bytes if renegotiation_period is not None: self.renegotiation_period = renegotiation_period if report_email is not None: @@ -248,33 +233,6 @@ def cluster_certificate_id(self, cluster_certificate_id): self._cluster_certificate_id = cluster_certificate_id - @property - def elliptic_curve_list(self): - """Gets the elliptic_curve_list of this SyncSettingsSettings. # noqa: E501 - - The elliptic curve list being used with encryption. For SyncIQ targets, this list serves as a list of supported elliptic curves. For SyncIQ sources, the list of elliptic curves will be attempted to be used in order. # noqa: E501 - - :return: The elliptic_curve_list of this SyncSettingsSettings. # noqa: E501 - :rtype: str - """ - return self._elliptic_curve_list - - @elliptic_curve_list.setter - def elliptic_curve_list(self, elliptic_curve_list): - """Sets the elliptic_curve_list of this SyncSettingsSettings. - - The elliptic curve list being used with encryption. For SyncIQ targets, this list serves as a list of supported elliptic curves. For SyncIQ sources, the list of elliptic curves will be attempted to be used in order. # noqa: E501 - - :param elliptic_curve_list: The elliptic_curve_list of this SyncSettingsSettings. # noqa: E501 - :type: str - """ - if elliptic_curve_list is not None and len(elliptic_curve_list) > 255: - raise ValueError("Invalid value for `elliptic_curve_list`, length must be less than or equal to `255`") # noqa: E501 - if elliptic_curve_list is not None and len(elliptic_curve_list) < 0: - raise ValueError("Invalid value for `elliptic_curve_list`, length must be greater than or equal to `0`") # noqa: E501 - - self._elliptic_curve_list = elliptic_curve_list - @property def encryption_cipher_list(self): """Gets the encryption_cipher_list of this SyncSettingsSettings. # noqa: E501 @@ -429,29 +387,6 @@ def ocsp_issuer_certificate_id(self, ocsp_issuer_certificate_id): self._ocsp_issuer_certificate_id = ocsp_issuer_certificate_id - @property - def password_set(self): - """Gets the password_set of this SyncSettingsSettings. # noqa: E501 - - Indicates if a password is set for authentication. Password value is not shown with GET. # noqa: E501 - - :return: The password_set of this SyncSettingsSettings. # noqa: E501 - :rtype: bool - """ - return self._password_set - - @password_set.setter - def password_set(self, password_set): - """Sets the password_set of this SyncSettingsSettings. - - Indicates if a password is set for authentication. Password value is not shown with GET. # noqa: E501 - - :param password_set: The password_set of this SyncSettingsSettings. # noqa: E501 - :type: bool - """ - - self._password_set = password_set - @property def preferred_rpo_alert(self): """Gets the preferred_rpo_alert of this SyncSettingsSettings. # noqa: E501 @@ -479,33 +414,6 @@ def preferred_rpo_alert(self, preferred_rpo_alert): self._preferred_rpo_alert = preferred_rpo_alert - @property - def renegotiation_bytes(self): - """Gets the renegotiation_bytes of this SyncSettingsSettings. # noqa: E501 - - Default for the number of bytes that are passed before a new TLS connection is 1TB. Setting to 0 will disable renegotiations based on bytes. # noqa: E501 - - :return: The renegotiation_bytes of this SyncSettingsSettings. # noqa: E501 - :rtype: int - """ - return self._renegotiation_bytes - - @renegotiation_bytes.setter - def renegotiation_bytes(self, renegotiation_bytes): - """Sets the renegotiation_bytes of this SyncSettingsSettings. - - Default for the number of bytes that are passed before a new TLS connection is 1TB. Setting to 0 will disable renegotiations based on bytes. # noqa: E501 - - :param renegotiation_bytes: The renegotiation_bytes of this SyncSettingsSettings. # noqa: E501 - :type: int - """ - if renegotiation_bytes is not None and renegotiation_bytes > 9223372036854775807: # noqa: E501 - raise ValueError("Invalid value for `renegotiation_bytes`, must be a value less than or equal to `9223372036854775807`") # noqa: E501 - if renegotiation_bytes is not None and renegotiation_bytes < 0: # noqa: E501 - raise ValueError("Invalid value for `renegotiation_bytes`, must be a value greater than or equal to `0`") # noqa: E501 - - self._renegotiation_bytes = renegotiation_bytes - @property def renegotiation_period(self): """Gets the renegotiation_period of this SyncSettingsSettings. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/target_policies.py b/isilon_sdk/isilon_sdk/v9_4_0/models/target_policies.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/target_policies.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/target_policies.py index 384425850..7017b787c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/target_policies.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/target_policies.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/target_policies_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/target_policies_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/target_policies_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/target_policies_extended.py index 698771cf5..2b572cc29 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/target_policies_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/target_policies_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/target_policy.py b/isilon_sdk/isilon_sdk/v9_4_0/models/target_policy.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/target_policy.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/target_policy.py index 1c7503bd1..cd2e6b8a6 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/target_policy.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/target_policy.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -165,7 +165,7 @@ def last_job_state(self, last_job_state): """ if last_job_state is None: raise ValueError("Invalid value for `last_job_state`, must not be `None`") # noqa: E501 - allowed_values = ["scheduled", "running", "paused", "finished", "failed", "canceled", "needs_attention", "skipped", "pending", "unknown", "success w/ prior failures"] # noqa: E501 + allowed_values = ["scheduled", "running", "paused", "finished", "failed", "canceled", "needs_attention", "skipped", "pending", "unknown"] # noqa: E501 if last_job_state not in allowed_values: raise ValueError( "Invalid value for `last_job_state` ({0}), must be one of {1}" # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/target_report.py b/isilon_sdk/isilon_sdk/v9_4_0/models/target_report.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/target_report.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/target_report.py index fd7f4a1e0..bfa5818fe 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/target_report.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/target_report.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -447,7 +447,7 @@ def action(self, action): """ if action is None: raise ValueError("Invalid value for `action`, must not be `None`") # noqa: E501 - allowed_values = ["none", "copy", "move", "remove", "sync", "allow_write", "allow_write_revert", "resync_prep", "resync_prep_domain_mark", "resync_prep_restore", "resync_prep_finalize", "resync_prep_commit", "snap_revert_domain_mark", "synciq_domain_mark", "worm_domain_mark", "test", "run"] # noqa: E501 + allowed_values = ["resync_prep", "allow_write", "allow_write_revert", "test", "run", "none"] # noqa: E501 if action not in allowed_values: raise ValueError( "Invalid value for `action` ({0}), must be one of {1}" # noqa: E501 @@ -2329,7 +2329,7 @@ def state(self, state): """ if state is None: raise ValueError("Invalid value for `state`, must not be `None`") # noqa: E501 - allowed_values = ["scheduled", "running", "paused", "finished", "failed", "canceled", "needs_attention", "skipped", "pending", "unknown", "success w/ prior failures"] # noqa: E501 + allowed_values = ["scheduled", "running", "paused", "finished", "failed", "canceled", "needs_attention", "skipped", "pending", "unknown"] # noqa: E501 if state not in allowed_values: raise ValueError( "Invalid value for `state` ({0}), must be one of {1}" # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/target_reports.py b/isilon_sdk/isilon_sdk/v9_4_0/models/target_reports.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/target_reports.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/target_reports.py index e633e0302..7e6a3063c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/target_reports.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/target_reports.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/target_reports_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/target_reports_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/target_reports_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/target_reports_extended.py index 3aa1c5206..2bc5eb4b0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/target_reports_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/target_reports_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/throttling_bw_rule.py b/isilon_sdk/isilon_sdk/v9_4_0/models/throttling_bw_rule.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/throttling_bw_rule.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/throttling_bw_rule.py index 3ed350f60..c74a3ef23 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/throttling_bw_rule.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/throttling_bw_rule.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/throttling_bw_rule_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/throttling_bw_rule_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/throttling_bw_rule_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/throttling_bw_rule_create_params.py index e68863cb3..0ccad1ee1 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/throttling_bw_rule_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/throttling_bw_rule_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/throttling_bw_rules.py b/isilon_sdk/isilon_sdk/v9_4_0/models/throttling_bw_rules.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/throttling_bw_rules.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/throttling_bw_rules.py index ade085d04..9e48b353e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/throttling_bw_rules.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/throttling_bw_rules.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/throttling_bw_rules_bandwidth_rule.py b/isilon_sdk/isilon_sdk/v9_4_0/models/throttling_bw_rules_bandwidth_rule.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/throttling_bw_rules_bandwidth_rule.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/throttling_bw_rules_bandwidth_rule.py index b7b132c4d..f5ba7813f 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/throttling_bw_rules_bandwidth_rule.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/throttling_bw_rules_bandwidth_rule.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/throttling_bw_rules_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/throttling_bw_rules_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/throttling_bw_rules_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/throttling_bw_rules_extended.py index 92c1f59ac..0c4a237c4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/throttling_bw_rules_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/throttling_bw_rules_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/throttling_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/throttling_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/throttling_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/throttling_settings.py index 4765048ba..b385b5a5b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/throttling_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/throttling_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/throttling_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/throttling_settings_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/throttling_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/throttling_settings_settings.py index 249a5f98a..4ea25398c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/throttling_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/throttling_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/timezone_region.py b/isilon_sdk/isilon_sdk/v9_4_0/models/timezone_region.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/timezone_region.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/timezone_region.py index f9f88fd1b..6d8a4d5b2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/timezone_region.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/timezone_region.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/timezone_region_timezone.py b/isilon_sdk/isilon_sdk/v9_4_0/models/timezone_region_timezone.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/timezone_region_timezone.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/timezone_region_timezone.py index ce003fa05..f66c79665 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/timezone_region_timezone.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/timezone_region_timezone.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/timezone_regions.py b/isilon_sdk/isilon_sdk/v9_4_0/models/timezone_regions.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/timezone_regions.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/timezone_regions.py index af2752be5..090e5632c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/timezone_regions.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/timezone_regions.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/timezone_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/timezone_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/timezone_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/timezone_settings.py index 3fe1154ff..2a1085de2 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/timezone_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/timezone_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/upgrade_cluster.py b/isilon_sdk/isilon_sdk/v9_4_0/models/upgrade_cluster.py similarity index 88% rename from isilon_sdk/isilon_sdk/v9_11_0/models/upgrade_cluster.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/upgrade_cluster.py index 3e06896a3..effb0c843 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/upgrade_cluster.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/upgrade_cluster.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -31,8 +31,6 @@ class UpgradeCluster(object): and the value is json key in definition. """ swagger_types = { - 'assessment_progress': 'int', - 'assessment_status': 'str', 'cluster_overview': 'UpgradeClusterClusterOverview', 'cluster_state': 'str', 'committed_features': 'UpgradeClusterCommittedFeatures', @@ -54,8 +52,6 @@ class UpgradeCluster(object): } attribute_map = { - 'assessment_progress': 'assessment_progress', - 'assessment_status': 'assessment_status', 'cluster_overview': 'cluster_overview', 'cluster_state': 'cluster_state', 'committed_features': 'committed_features', @@ -76,11 +72,9 @@ class UpgradeCluster(object): 'upgrade_triggered_time': 'upgrade_triggered_time' } - def __init__(self, assessment_progress=None, assessment_status=None, cluster_overview=None, cluster_state=None, committed_features=None, current_process=None, finish_time=None, fw_pkg=None, fw_pkg_id=None, install_image_path=None, node_median_time=None, onefs_version_current=None, onefs_version_upgrade=None, patch_action=None, patch_name=None, start_time=None, upgrade_is_committed=None, upgrade_process_state=None, upgrade_settings=None, upgrade_triggered_time=None): # noqa: E501 + def __init__(self, cluster_overview=None, cluster_state=None, committed_features=None, current_process=None, finish_time=None, fw_pkg=None, fw_pkg_id=None, install_image_path=None, node_median_time=None, onefs_version_current=None, onefs_version_upgrade=None, patch_action=None, patch_name=None, start_time=None, upgrade_is_committed=None, upgrade_process_state=None, upgrade_settings=None, upgrade_triggered_time=None): # noqa: E501 """UpgradeCluster - a model defined in Swagger""" # noqa: E501 - self._assessment_progress = None - self._assessment_status = None self._cluster_overview = None self._cluster_state = None self._committed_features = None @@ -101,10 +95,6 @@ def __init__(self, assessment_progress=None, assessment_status=None, cluster_ove self._upgrade_triggered_time = None self.discriminator = None - if assessment_progress is not None: - self.assessment_progress = assessment_progress - if assessment_status is not None: - self.assessment_status = assessment_status if cluster_overview is not None: self.cluster_overview = cluster_overview if cluster_state is not None: @@ -142,60 +132,6 @@ def __init__(self, assessment_progress=None, assessment_status=None, cluster_ove if upgrade_triggered_time is not None: self.upgrade_triggered_time = upgrade_triggered_time - @property - def assessment_progress(self): - """Gets the assessment_progress of this UpgradeCluster. # noqa: E501 - - Progress of active upgrade assessment. # noqa: E501 - - :return: The assessment_progress of this UpgradeCluster. # noqa: E501 - :rtype: int - """ - return self._assessment_progress - - @assessment_progress.setter - def assessment_progress(self, assessment_progress): - """Sets the assessment_progress of this UpgradeCluster. - - Progress of active upgrade assessment. # noqa: E501 - - :param assessment_progress: The assessment_progress of this UpgradeCluster. # noqa: E501 - :type: int - """ - if assessment_progress is not None and assessment_progress > 100: # noqa: E501 - raise ValueError("Invalid value for `assessment_progress`, must be a value less than or equal to `100`") # noqa: E501 - if assessment_progress is not None and assessment_progress < 0: # noqa: E501 - raise ValueError("Invalid value for `assessment_progress`, must be a value greater than or equal to `0`") # noqa: E501 - - self._assessment_progress = assessment_progress - - @property - def assessment_status(self): - """Gets the assessment_status of this UpgradeCluster. # noqa: E501 - - Status of active upgrade assessment. # noqa: E501 - - :return: The assessment_status of this UpgradeCluster. # noqa: E501 - :rtype: str - """ - return self._assessment_status - - @assessment_status.setter - def assessment_status(self, assessment_status): - """Sets the assessment_status of this UpgradeCluster. - - Status of active upgrade assessment. # noqa: E501 - - :param assessment_status: The assessment_status of this UpgradeCluster. # noqa: E501 - :type: str - """ - if assessment_status is not None and len(assessment_status) > 128: - raise ValueError("Invalid value for `assessment_status`, length must be less than or equal to `128`") # noqa: E501 - if assessment_status is not None and len(assessment_status) < 0: - raise ValueError("Invalid value for `assessment_status`, length must be greater than or equal to `0`") # noqa: E501 - - self._assessment_status = assessment_status - @property def cluster_overview(self): """Gets the cluster_overview of this UpgradeCluster. # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/upgrade_cluster_cluster_overview.py b/isilon_sdk/isilon_sdk/v9_4_0/models/upgrade_cluster_cluster_overview.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/upgrade_cluster_cluster_overview.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/upgrade_cluster_cluster_overview.py index a3f535e5e..bd76cee97 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/upgrade_cluster_cluster_overview.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/upgrade_cluster_cluster_overview.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/upgrade_cluster_committed_features.py b/isilon_sdk/isilon_sdk/v9_4_0/models/upgrade_cluster_committed_features.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/upgrade_cluster_committed_features.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/upgrade_cluster_committed_features.py index 79697dc12..4e93c29f4 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/upgrade_cluster_committed_features.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/upgrade_cluster_committed_features.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/upgrade_cluster_committed_features_gen_bit.py b/isilon_sdk/isilon_sdk/v9_4_0/models/upgrade_cluster_committed_features_gen_bit.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/upgrade_cluster_committed_features_gen_bit.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/upgrade_cluster_committed_features_gen_bit.py index 278ca742f..880647a19 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/upgrade_cluster_committed_features_gen_bit.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/upgrade_cluster_committed_features_gen_bit.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/upgrade_cluster_firmware_device.py b/isilon_sdk/isilon_sdk/v9_4_0/models/upgrade_cluster_firmware_device.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/upgrade_cluster_firmware_device.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/upgrade_cluster_firmware_device.py index fb73f3448..b121083df 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/upgrade_cluster_firmware_device.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/upgrade_cluster_firmware_device.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/upgrade_cluster_firmware_device_node.py b/isilon_sdk/isilon_sdk/v9_4_0/models/upgrade_cluster_firmware_device_node.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/upgrade_cluster_firmware_device_node.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/upgrade_cluster_firmware_device_node.py index 284bcf9a5..058bbd6eb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/upgrade_cluster_firmware_device_node.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/upgrade_cluster_firmware_device_node.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/upgrade_cluster_firmware_device_node_device.py b/isilon_sdk/isilon_sdk/v9_4_0/models/upgrade_cluster_firmware_device_node_device.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/upgrade_cluster_firmware_device_node_device.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/upgrade_cluster_firmware_device_node_device.py index 5dccb9c9d..23525ccce 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/upgrade_cluster_firmware_device_node_device.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/upgrade_cluster_firmware_device_node_device.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/upgrade_cluster_firmware_device_node_package_item.py b/isilon_sdk/isilon_sdk/v9_4_0/models/upgrade_cluster_firmware_device_node_package_item.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/upgrade_cluster_firmware_device_node_package_item.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/upgrade_cluster_firmware_device_node_package_item.py index 12e6120bc..6e1dfdb37 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/upgrade_cluster_firmware_device_node_package_item.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/upgrade_cluster_firmware_device_node_package_item.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/upgrade_cluster_upgrade_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/upgrade_cluster_upgrade_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/upgrade_cluster_upgrade_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/upgrade_cluster_upgrade_settings.py index 42916cb53..e822f77f8 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/upgrade_cluster_upgrade_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/upgrade_cluster_upgrade_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/user_change_password.py b/isilon_sdk/isilon_sdk/v9_4_0/models/user_change_password.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/user_change_password.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/user_change_password.py index 55c091dde..620b5c167 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/user_change_password.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/user_change_password.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/user_member_of.py b/isilon_sdk/isilon_sdk/v9_4_0/models/user_member_of.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/user_member_of.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/user_member_of.py index 010541e8b..f18300e95 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/user_member_of.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/user_member_of.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/worm_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/worm_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/worm_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/worm_create_params.py index ab0839f0d..98f00c018 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/worm_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/worm_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/worm_domain.py b/isilon_sdk/isilon_sdk/v9_4_0/models/worm_domain.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/worm_domain.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/worm_domain.py index 88ebf96c9..262cc4f55 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/worm_domain.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/worm_domain.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/worm_domain_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/worm_domain_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/worm_domain_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/worm_domain_create_params.py index 50e9cfcd1..9fa03029e 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/worm_domain_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/worm_domain_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/worm_domain_exclusion.py b/isilon_sdk/isilon_sdk/v9_4_0/models/worm_domain_exclusion.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/worm_domain_exclusion.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/worm_domain_exclusion.py index fb59b7047..faaf53b79 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/worm_domain_exclusion.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/worm_domain_exclusion.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/worm_domain_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/worm_domain_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/worm_domain_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/worm_domain_extended.py index 558c5939e..17f4649e7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/worm_domain_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/worm_domain_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/worm_domains.py b/isilon_sdk/isilon_sdk/v9_4_0/models/worm_domains.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/worm_domains.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/worm_domains.py index deec4d335..c2cb0dece 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/worm_domains.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/worm_domains.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/worm_domains_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/worm_domains_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/worm_domains_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/worm_domains_extended.py index 6487c02b7..d50d299e0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/worm_domains_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/worm_domains_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/worm_properties.py b/isilon_sdk/isilon_sdk/v9_4_0/models/worm_properties.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/worm_properties.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/worm_properties.py index 5fb95ce01..9c8d6abe9 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/worm_properties.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/worm_properties.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/worm_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/worm_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/worm_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/worm_settings.py index acea1a823..d2a5deed7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/worm_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/worm_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/worm_settings_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/worm_settings_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/worm_settings_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/worm_settings_extended.py index f1841f085..72ce0a405 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/worm_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/worm_settings_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/worm_settings_settings.py b/isilon_sdk/isilon_sdk/v9_4_0/models/worm_settings_settings.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/worm_settings_settings.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/worm_settings_settings.py index af97db12e..097c26e8a 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/worm_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/worm_settings_settings.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/zone.py b/isilon_sdk/isilon_sdk/v9_4_0/models/zone.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/zone.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/zone.py index 9d2ae186a..adc77d23b 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/zone.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/zone.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/zone_create_params.py b/isilon_sdk/isilon_sdk/v9_4_0/models/zone_create_params.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/zone_create_params.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/zone_create_params.py index 765b721fb..101118d47 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/zone_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/zone_create_params.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/zone_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/zone_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/zone_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/zone_extended.py index b4af67707..c1812bbf3 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/zone_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/zone_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/zone_extended_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/zone_extended_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/zone_extended_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/zone_extended_extended.py index f0d257090..3f60146a7 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/zone_extended_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/zone_extended_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/zone_group.py b/isilon_sdk/isilon_sdk/v9_4_0/models/zone_group.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/zone_group.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/zone_group.py index 6deee0f5c..8bdbecaac 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/zone_group.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/zone_group.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/zone_groups.py b/isilon_sdk/isilon_sdk/v9_4_0/models/zone_groups.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/zone_groups.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/zone_groups.py index 2e8927d69..54cc75dbb 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/zone_groups.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/zone_groups.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/zone_groups_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/zone_groups_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/zone_groups_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/zone_groups_extended.py index be964f57a..d3b616d12 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/zone_groups_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/zone_groups_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/zone_user.py b/isilon_sdk/isilon_sdk/v9_4_0/models/zone_user.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/zone_user.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/zone_user.py index 6a62406ba..5b11db836 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/zone_user.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/zone_user.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/zone_users.py b/isilon_sdk/isilon_sdk/v9_4_0/models/zone_users.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/zone_users.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/zone_users.py index ffa8b0a01..5d3cabd3c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/zone_users.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/zone_users.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/zone_users_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/zone_users_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/zone_users_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/zone_users_extended.py index 373dda5fe..09662f240 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/zone_users_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/zone_users_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/zones.py b/isilon_sdk/isilon_sdk/v9_4_0/models/zones.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/zones.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/zones.py index 4c35e5c3a..c26d02c25 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/zones.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/zones.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/zones_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/zones_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/zones_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/zones_extended.py index cf91f9062..9829fa91d 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/zones_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/zones_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/zones_summary.py b/isilon_sdk/isilon_sdk/v9_4_0/models/zones_summary.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/zones_summary.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/zones_summary.py index 7fd589d75..fdce54baf 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/zones_summary.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/zones_summary.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/zones_summary_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/zones_summary_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/zones_summary_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/zones_summary_extended.py index 49a113b04..ba530eb7c 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/zones_summary_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/zones_summary_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/zones_summary_summary.py b/isilon_sdk/isilon_sdk/v9_4_0/models/zones_summary_summary.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/zones_summary_summary.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/zones_summary_summary.py index 47d86d642..17c74fbd0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/zones_summary_summary.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/zones_summary_summary.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/models/zones_summary_summary_extended.py b/isilon_sdk/isilon_sdk/v9_4_0/models/zones_summary_summary_extended.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/models/zones_summary_summary_extended.py rename to isilon_sdk/isilon_sdk/v9_4_0/models/zones_summary_summary_extended.py index 10a7c8d28..11f442045 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/models/zones_summary_summary_extended.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/models/zones_summary_summary_extended.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_11_0/rest.py b/isilon_sdk/isilon_sdk/v9_4_0/rest.py similarity index 99% rename from isilon_sdk/isilon_sdk/v9_11_0/rest.py rename to isilon_sdk/isilon_sdk/v9_4_0/rest.py index 5b374fd31..38d38cde0 100644 --- a/isilon_sdk/isilon_sdk/v9_11_0/rest.py +++ b/isilon_sdk/isilon_sdk/v9_4_0/rest.py @@ -5,7 +5,7 @@ Isilon SDK - Language bindings for the OneFS API # noqa: E501 - OpenAPI spec version: 22 + OpenAPI spec version: 15 Contact: sdk@isilon.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/isilon_sdk/isilon_sdk/v9_5_0/README.md b/isilon_sdk/isilon_sdk/v9_5_0/README.md index f403f28ab..d0f39f80c 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/README.md +++ b/isilon_sdk/isilon_sdk/v9_5_0/README.md @@ -18,7 +18,7 @@ Isilon SDK - Language bindings for the OneFS API This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project: - API version: 16 -- Package version: 0.6.0 +- Package version: 0.5.0 - Build package: io.swagger.codegen.languages.PythonClientCodegen For more information, please visit [https://github.com/Isilon/isilon_sdk](https://github.com/Isilon/isilon_sdk) @@ -2623,7 +2623,7 @@ sdk@isilon.com ## License -Copyright (c) 2025 Dell EMC Isilon +Copyright (c) 2018 Dell EMC Isilon Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/isilon_sdk/isilon_sdk/v9_5_0/api/namespace_api.py b/isilon_sdk/isilon_sdk/v9_5_0/api/namespace_api.py index e79c99a41..43d3045ea 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/api/namespace_api.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/api/namespace_api.py @@ -1188,7 +1188,6 @@ def get_acl(self, namespace_path, acl, **kwargs): # noqa: E501 :param str namespace_path: Namespace path relative to /. (required) :param bool acl: Show access control lists. (required) :param bool nsaccess: Indicates that the operation is on the access point instead of the store path. - :param str zone: Specifies the access zone name. :return: NamespaceAcl If the method is called asynchronously, returns the request thread. @@ -1213,13 +1212,12 @@ def get_acl_with_http_info(self, namespace_path, acl, **kwargs): # noqa: E501 :param str namespace_path: Namespace path relative to /. (required) :param bool acl: Show access control lists. (required) :param bool nsaccess: Indicates that the operation is on the access point instead of the store path. - :param str zone: Specifies the access zone name. :return: NamespaceAcl If the method is called asynchronously, returns the request thread. """ - all_params = ['namespace_path', 'acl', 'nsaccess', 'zone'] # noqa: E501 + all_params = ['namespace_path', 'acl', 'nsaccess'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -1254,8 +1252,6 @@ def get_acl_with_http_info(self, namespace_path, acl, **kwargs): # noqa: E501 query_params.append(('acl', params['acl'])) # noqa: E501 if 'nsaccess' in params: query_params.append(('nsaccess', params['nsaccess'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -1536,7 +1532,6 @@ def get_directory_metadata(self, directory_metadata_path, metadata, **kwargs): :param async_req bool :param str directory_metadata_path: Directory path relative to /. (required) :param bool metadata: Show directory metadata. (required) - :param str zone: Specifies the access zone name. :return: NamespaceMetadataList If the method is called asynchronously, returns the request thread. @@ -1560,13 +1555,12 @@ def get_directory_metadata_with_http_info(self, directory_metadata_path, metadat :param async_req bool :param str directory_metadata_path: Directory path relative to /. (required) :param bool metadata: Show directory metadata. (required) - :param str zone: Specifies the access zone name. :return: NamespaceMetadataList If the method is called asynchronously, returns the request thread. """ - all_params = ['directory_metadata_path', 'metadata', 'zone'] # noqa: E501 + all_params = ['directory_metadata_path', 'metadata'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -1599,8 +1593,6 @@ def get_directory_metadata_with_http_info(self, directory_metadata_path, metadat query_params = [] if 'metadata' in params: query_params.append(('metadata', params['metadata'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -2000,7 +1992,6 @@ def get_file_metadata(self, file_metadata_path, metadata, **kwargs): # noqa: E5 :param async_req bool :param str file_metadata_path: File path relative to /. (required) :param bool metadata: Show file metadata. (required) - :param str zone: Specifies the access zone name. :return: NamespaceMetadataList If the method is called asynchronously, returns the request thread. @@ -2024,13 +2015,12 @@ def get_file_metadata_with_http_info(self, file_metadata_path, metadata, **kwarg :param async_req bool :param str file_metadata_path: File path relative to /. (required) :param bool metadata: Show file metadata. (required) - :param str zone: Specifies the access zone name. :return: NamespaceMetadataList If the method is called asynchronously, returns the request thread. """ - all_params = ['file_metadata_path', 'metadata', 'zone'] # noqa: E501 + all_params = ['file_metadata_path', 'metadata'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2063,8 +2053,6 @@ def get_file_metadata_with_http_info(self, file_metadata_path, metadata, **kwarg query_params = [] if 'metadata' in params: query_params.append(('metadata', params['metadata'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -2791,7 +2779,6 @@ def set_acl(self, namespace_path, acl, namespace_acl, **kwargs): # noqa: E501 :param bool acl: Update access control lists. (required) :param NamespaceAcl namespace_acl: Namespace ACL parameters model. (required) :param bool nsaccess: Indicates that the operation is on the access point instead of the store path. - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. @@ -2817,13 +2804,12 @@ def set_acl_with_http_info(self, namespace_path, acl, namespace_acl, **kwargs): :param bool acl: Update access control lists. (required) :param NamespaceAcl namespace_acl: Namespace ACL parameters model. (required) :param bool nsaccess: Indicates that the operation is on the access point instead of the store path. - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. """ - all_params = ['namespace_path', 'acl', 'namespace_acl', 'nsaccess', 'zone'] # noqa: E501 + all_params = ['namespace_path', 'acl', 'namespace_acl', 'nsaccess'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2862,8 +2848,6 @@ def set_acl_with_http_info(self, namespace_path, acl, namespace_acl, **kwargs): query_params.append(('acl', params['acl'])) # noqa: E501 if 'nsaccess' in params: query_params.append(('nsaccess', params['nsaccess'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -2913,7 +2897,6 @@ def set_directory_metadata(self, directory_metadata_path, metadata, directory_me :param str directory_metadata_path: Directory path relative to /. (required) :param bool metadata: Set directory metadata. (required) :param NamespaceMetadata directory_metadata: Directory metadata parameters model. (required) - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. @@ -2938,13 +2921,12 @@ def set_directory_metadata_with_http_info(self, directory_metadata_path, metadat :param str directory_metadata_path: Directory path relative to /. (required) :param bool metadata: Set directory metadata. (required) :param NamespaceMetadata directory_metadata: Directory metadata parameters model. (required) - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. """ - all_params = ['directory_metadata_path', 'metadata', 'directory_metadata', 'zone'] # noqa: E501 + all_params = ['directory_metadata_path', 'metadata', 'directory_metadata'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2981,8 +2963,6 @@ def set_directory_metadata_with_http_info(self, directory_metadata_path, metadat query_params = [] if 'metadata' in params: query_params.append(('metadata', params['metadata'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -3032,7 +3012,6 @@ def set_file_metadata(self, file_metadata_path, metadata, file_metadata, **kwarg :param str file_metadata_path: File path relative to /. (required) :param bool metadata: Set file metadata. (required) :param NamespaceMetadata file_metadata: File metadata parameters model. (required) - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. @@ -3057,13 +3036,12 @@ def set_file_metadata_with_http_info(self, file_metadata_path, metadata, file_me :param str file_metadata_path: File path relative to /. (required) :param bool metadata: Set file metadata. (required) :param NamespaceMetadata file_metadata: File metadata parameters model. (required) - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. """ - all_params = ['file_metadata_path', 'metadata', 'file_metadata', 'zone'] # noqa: E501 + all_params = ['file_metadata_path', 'metadata', 'file_metadata'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -3100,8 +3078,6 @@ def set_file_metadata_with_http_info(self, file_metadata_path, metadata, file_me query_params = [] if 'metadata' in params: query_params.append(('metadata', params['metadata'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} diff --git a/isilon_sdk/isilon_sdk/v9_5_0/api_client.py b/isilon_sdk/isilon_sdk/v9_5_0/api_client.py index 4f3afec41..cdbc59e44 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/api_client.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/api_client.py @@ -74,7 +74,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None, self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'Swagger-Codegen/0.6.0/python' + self.user_agent = 'Swagger-Codegen/0.5.0/python' # This is used for detecting for the special case of a path parameter # that is tagged with x-isi-url-encode-path-param (more details in the # __call_api function). diff --git a/isilon_sdk/isilon_sdk/v9_5_0/configuration.py b/isilon_sdk/isilon_sdk/v9_5_0/configuration.py index f6114d456..c648c29e4 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/configuration.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/configuration.py @@ -260,5 +260,5 @@ def to_debug_report(self): "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: 16\n"\ - "SDK Package Version: 0.6.0".\ + "SDK Package Version: 0.5.0".\ format(env=sys.platform, pyversion=sys.version) diff --git a/isilon_sdk/isilon_sdk/v9_5_0/docs/NamespaceApi.md b/isilon_sdk/isilon_sdk/v9_5_0/docs/NamespaceApi.md index 77fab57f1..5998b2d35 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/docs/NamespaceApi.md +++ b/isilon_sdk/isilon_sdk/v9_5_0/docs/NamespaceApi.md @@ -613,7 +613,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_acl** -> NamespaceAcl get_acl(namespace_path, acl, nsaccess=nsaccess, zone=zone) +> NamespaceAcl get_acl(namespace_path, acl, nsaccess=nsaccess) @@ -637,10 +637,9 @@ api_instance = isilon_sdk.v9_5_0.NamespaceApi(isilon_sdk.v9_5_0.ApiClient(config namespace_path = 'namespace_path_example' # str | Namespace path relative to /. acl = true # bool | Show access control lists. nsaccess = true # bool | Indicates that the operation is on the access point instead of the store path. (optional) -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.get_acl(namespace_path, acl, nsaccess=nsaccess, zone=zone) + api_response = api_instance.get_acl(namespace_path, acl, nsaccess=nsaccess) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->get_acl: %s\n" % e) @@ -653,7 +652,6 @@ Name | Type | Description | Notes **namespace_path** | **str**| Namespace path relative to /. | **acl** | **bool**| Show access control lists. | **nsaccess** | **bool**| Indicates that the operation is on the access point instead of the store path. | [optional] - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -793,7 +791,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_directory_metadata** -> NamespaceMetadataList get_directory_metadata(directory_metadata_path, metadata, zone=zone) +> NamespaceMetadataList get_directory_metadata(directory_metadata_path, metadata) @@ -816,10 +814,9 @@ configuration.password = 'YOUR_PASSWORD' api_instance = isilon_sdk.v9_5_0.NamespaceApi(isilon_sdk.v9_5_0.ApiClient(configuration)) directory_metadata_path = 'directory_metadata_path_example' # str | Directory path relative to /. metadata = true # bool | Show directory metadata. -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.get_directory_metadata(directory_metadata_path, metadata, zone=zone) + api_response = api_instance.get_directory_metadata(directory_metadata_path, metadata) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->get_directory_metadata: %s\n" % e) @@ -831,7 +828,6 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **directory_metadata_path** | **str**| Directory path relative to /. | **metadata** | **bool**| Show directory metadata. | - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -1031,7 +1027,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_file_metadata** -> NamespaceMetadataList get_file_metadata(file_metadata_path, metadata, zone=zone) +> NamespaceMetadataList get_file_metadata(file_metadata_path, metadata) @@ -1054,10 +1050,9 @@ configuration.password = 'YOUR_PASSWORD' api_instance = isilon_sdk.v9_5_0.NamespaceApi(isilon_sdk.v9_5_0.ApiClient(configuration)) file_metadata_path = 'file_metadata_path_example' # str | File path relative to /. metadata = true # bool | Show file metadata. -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.get_file_metadata(file_metadata_path, metadata, zone=zone) + api_response = api_instance.get_file_metadata(file_metadata_path, metadata) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->get_file_metadata: %s\n" % e) @@ -1069,7 +1064,6 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **file_metadata_path** | **str**| File path relative to /. | **metadata** | **bool**| Show file metadata. | - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -1429,7 +1423,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **set_acl** -> Empty set_acl(namespace_path, acl, namespace_acl, nsaccess=nsaccess, zone=zone) +> Empty set_acl(namespace_path, acl, namespace_acl, nsaccess=nsaccess) @@ -1454,10 +1448,9 @@ namespace_path = 'namespace_path_example' # str | Namespace path relative to /. acl = true # bool | Update access control lists. namespace_acl = isilon_sdk.v9_5_0.NamespaceAcl() # NamespaceAcl | Namespace ACL parameters model. nsaccess = true # bool | Indicates that the operation is on the access point instead of the store path. (optional) -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.set_acl(namespace_path, acl, namespace_acl, nsaccess=nsaccess, zone=zone) + api_response = api_instance.set_acl(namespace_path, acl, namespace_acl, nsaccess=nsaccess) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->set_acl: %s\n" % e) @@ -1471,7 +1464,6 @@ Name | Type | Description | Notes **acl** | **bool**| Update access control lists. | **namespace_acl** | [**NamespaceAcl**](NamespaceAcl.md)| Namespace ACL parameters model. | **nsaccess** | **bool**| Indicates that the operation is on the access point instead of the store path. | [optional] - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -1489,7 +1481,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **set_directory_metadata** -> Empty set_directory_metadata(directory_metadata_path, metadata, directory_metadata, zone=zone) +> Empty set_directory_metadata(directory_metadata_path, metadata, directory_metadata) @@ -1513,10 +1505,9 @@ api_instance = isilon_sdk.v9_5_0.NamespaceApi(isilon_sdk.v9_5_0.ApiClient(config directory_metadata_path = 'directory_metadata_path_example' # str | Directory path relative to /. metadata = true # bool | Set directory metadata. directory_metadata = isilon_sdk.v9_5_0.NamespaceMetadata() # NamespaceMetadata | Directory metadata parameters model. -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.set_directory_metadata(directory_metadata_path, metadata, directory_metadata, zone=zone) + api_response = api_instance.set_directory_metadata(directory_metadata_path, metadata, directory_metadata) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->set_directory_metadata: %s\n" % e) @@ -1529,7 +1520,6 @@ Name | Type | Description | Notes **directory_metadata_path** | **str**| Directory path relative to /. | **metadata** | **bool**| Set directory metadata. | **directory_metadata** | [**NamespaceMetadata**](NamespaceMetadata.md)| Directory metadata parameters model. | - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -1547,7 +1537,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **set_file_metadata** -> Empty set_file_metadata(file_metadata_path, metadata, file_metadata, zone=zone) +> Empty set_file_metadata(file_metadata_path, metadata, file_metadata) @@ -1571,10 +1561,9 @@ api_instance = isilon_sdk.v9_5_0.NamespaceApi(isilon_sdk.v9_5_0.ApiClient(config file_metadata_path = 'file_metadata_path_example' # str | File path relative to /. metadata = true # bool | Set file metadata. file_metadata = isilon_sdk.v9_5_0.NamespaceMetadata() # NamespaceMetadata | File metadata parameters model. -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.set_file_metadata(file_metadata_path, metadata, file_metadata, zone=zone) + api_response = api_instance.set_file_metadata(file_metadata_path, metadata, file_metadata) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->set_file_metadata: %s\n" % e) @@ -1587,7 +1576,6 @@ Name | Type | Description | Notes **file_metadata_path** | **str**| File path relative to /. | **metadata** | **bool**| Set file metadata. | **file_metadata** | [**NamespaceMetadata**](NamespaceMetadata.md)| File metadata parameters model. | - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type diff --git a/isilon_sdk/isilon_sdk/v9_5_0/docs/SupportassistSettingsContactPrimary.md b/isilon_sdk/isilon_sdk/v9_5_0/docs/SupportassistSettingsContactPrimary.md index 4c4991d5d..91e4979e1 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/docs/SupportassistSettingsContactPrimary.md +++ b/isilon_sdk/isilon_sdk/v9_5_0/docs/SupportassistSettingsContactPrimary.md @@ -6,7 +6,7 @@ Name | Type | Description | Notes **email** | **str** | Contact's email address. | [optional] [default to ''] **first_name** | **str** | Contact's first name. | [optional] [default to ''] **last_name** | **str** | Contact's last name. | [optional] [default to ''] -**phone** | **str** | Contact's phone number. | [optional] +**phone** | **str** | Contact's phone number. | [optional] [default to ''] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/changelist_entry.py b/isilon_sdk/isilon_sdk/v9_5_0/models/changelist_entry.py index 1250b648b..2e78aaa6d 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/changelist_entry.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/changelist_entry.py @@ -554,6 +554,8 @@ def physical_size(self, physical_size): """ if physical_size is None: raise ValueError("Invalid value for `physical_size`, must not be `None`") # noqa: E501 + if physical_size is not None and physical_size > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `physical_size`, must be a value less than or equal to `4294967295`") # noqa: E501 if physical_size is not None and physical_size < 0: # noqa: E501 raise ValueError("Invalid value for `physical_size`, must be a value greater than or equal to `0`") # noqa: E501 @@ -581,6 +583,8 @@ def size(self, size): """ if size is None: raise ValueError("Invalid value for `size`, must not be `None`") # noqa: E501 + if size is not None and size > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `size`, must be a value less than or equal to `4294967295`") # noqa: E501 if size is not None and size < 0: # noqa: E501 raise ValueError("Invalid value for `size`, must be a value greater than or equal to `0`") # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_email_extended.py b/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_email_extended.py index 9cdb8afb8..09fb1e5fc 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_email_extended.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_email_extended.py @@ -141,8 +141,8 @@ def mail_relay(self, mail_relay): :param mail_relay: The mail_relay of this ClusterEmailExtended. # noqa: E501 :type: str """ - if mail_relay is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', mail_relay): # noqa: E501 - raise ValueError(r"Invalid value for `mail_relay`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if mail_relay is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', mail_relay): # noqa: E501 + raise ValueError(r"Invalid value for `mail_relay`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._mail_relay = mail_relay @@ -170,8 +170,8 @@ def mail_sender(self, mail_sender): raise ValueError("Invalid value for `mail_sender`, length must be less than or equal to `254`") # noqa: E501 if mail_sender is not None and len(mail_sender) < 3: raise ValueError("Invalid value for `mail_sender`, length must be greater than or equal to `3`") # noqa: E501 - if mail_sender is not None and not re.search(r'[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', mail_sender): # noqa: E501 - raise ValueError(r"Invalid value for `mail_sender`, must be a follow pattern or equal to `/[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if mail_sender is not None and not re.search(r'[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', mail_sender): # noqa: E501 + raise ValueError(r"Invalid value for `mail_sender`, must be a follow pattern or equal to `/[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._mail_sender = mail_sender @@ -278,8 +278,8 @@ def smtp_auth_username(self, smtp_auth_username): raise ValueError("Invalid value for `smtp_auth_username`, length must be less than or equal to `256`") # noqa: E501 if smtp_auth_username is not None and len(smtp_auth_username) < 1: raise ValueError("Invalid value for `smtp_auth_username`, length must be greater than or equal to `1`") # noqa: E501 - if smtp_auth_username is not None and not re.search(r'^[a-zA-Z0-9!@#%^&(){}~`_ .-]+$', smtp_auth_username): # noqa: E501 - raise ValueError(r"Invalid value for `smtp_auth_username`, must be a follow pattern or equal to `/^[a-zA-Z0-9!@#%^&(){}~`_ .-]+$/`") # noqa: E501 + if smtp_auth_username is not None and not re.search(r'^[^]\"\/\\[\\:;|=,+*?<>$]+', smtp_auth_username): # noqa: E501 + raise ValueError(r"Invalid value for `smtp_auth_username`, must be a follow pattern or equal to `/^[^]\"\/\\[\\:;|=,+*?<>$]+/`") # noqa: E501 self._smtp_auth_username = smtp_auth_username diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_email_settings.py b/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_email_settings.py index 249a8f2ce..925c2a26a 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_email_settings.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_email_settings.py @@ -136,8 +136,8 @@ def mail_relay(self, mail_relay): """ if mail_relay is None: raise ValueError("Invalid value for `mail_relay`, must not be `None`") # noqa: E501 - if mail_relay is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', mail_relay): # noqa: E501 - raise ValueError(r"Invalid value for `mail_relay`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if mail_relay is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', mail_relay): # noqa: E501 + raise ValueError(r"Invalid value for `mail_relay`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._mail_relay = mail_relay diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_internal_networks_failover_ip_addresse.py b/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_internal_networks_failover_ip_addresse.py index 73f9955b4..aa593bc5c 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_internal_networks_failover_ip_addresse.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_internal_networks_failover_ip_addresse.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_internal_networks_failover_ip_addresse_extended.py b/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_internal_networks_failover_ip_addresse_extended.py index c3ee31fb1..6f0e203e9 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_internal_networks_failover_ip_addresse_extended.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_internal_networks_failover_ip_addresse_extended.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_internal_networks_int_a_ip_addresse.py b/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_internal_networks_int_a_ip_addresse.py index d3a1c083e..43b172852 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_internal_networks_int_a_ip_addresse.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_internal_networks_int_a_ip_addresse.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py b/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py index 631cfc03e..92253c076 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_internal_networks_int_b_ip_addresse.py b/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_internal_networks_int_b_ip_addresse.py index 6c9f6cfbe..4e2de58de 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_internal_networks_int_b_ip_addresse.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_internal_networks_int_b_ip_addresse.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py b/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py index 4cbce87b8..c4f1bf69d 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_mode_settings.py b/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_mode_settings.py index 84be7576d..2528520e2 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_mode_settings.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_mode_settings.py @@ -84,8 +84,8 @@ def cloud_storage_console(self, cloud_storage_console): raise ValueError("Invalid value for `cloud_storage_console`, length must be less than or equal to `2048`") # noqa: E501 if cloud_storage_console is not None and len(cloud_storage_console) < 11: raise ValueError("Invalid value for `cloud_storage_console`, length must be greater than or equal to `11`") # noqa: E501 - if cloud_storage_console is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', cloud_storage_console): # noqa: E501 - raise ValueError(r"Invalid value for `cloud_storage_console`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if cloud_storage_console is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', cloud_storage_console): # noqa: E501 + raise ValueError(r"Invalid value for `cloud_storage_console`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._cloud_storage_console = cloud_storage_console @@ -111,8 +111,8 @@ def monitoring(self, monitoring): raise ValueError("Invalid value for `monitoring`, length must be less than or equal to `2048`") # noqa: E501 if monitoring is not None and len(monitoring) < 11: raise ValueError("Invalid value for `monitoring`, length must be greater than or equal to `11`") # noqa: E501 - if monitoring is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', monitoring): # noqa: E501 - raise ValueError(r"Invalid value for `monitoring`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if monitoring is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', monitoring): # noqa: E501 + raise ValueError(r"Invalid value for `monitoring`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._monitoring = monitoring @@ -161,8 +161,8 @@ def support(self, support): raise ValueError("Invalid value for `support`, length must be less than or equal to `2048`") # noqa: E501 if support is not None and len(support) < 11: raise ValueError("Invalid value for `support`, length must be greater than or equal to `11`") # noqa: E501 - if support is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', support): # noqa: E501 - raise ValueError(r"Invalid value for `support`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if support is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', support): # noqa: E501 + raise ValueError(r"Invalid value for `support`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._support = support diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_mode_settings_extended.py b/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_mode_settings_extended.py index fe234ffed..eadb88604 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_mode_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_mode_settings_extended.py @@ -79,8 +79,8 @@ def cloud_storage_console(self, cloud_storage_console): raise ValueError("Invalid value for `cloud_storage_console`, length must be less than or equal to `2048`") # noqa: E501 if cloud_storage_console is not None and len(cloud_storage_console) < 11: raise ValueError("Invalid value for `cloud_storage_console`, length must be greater than or equal to `11`") # noqa: E501 - if cloud_storage_console is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', cloud_storage_console): # noqa: E501 - raise ValueError(r"Invalid value for `cloud_storage_console`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if cloud_storage_console is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', cloud_storage_console): # noqa: E501 + raise ValueError(r"Invalid value for `cloud_storage_console`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._cloud_storage_console = cloud_storage_console @@ -106,8 +106,8 @@ def monitoring(self, monitoring): raise ValueError("Invalid value for `monitoring`, length must be less than or equal to `2048`") # noqa: E501 if monitoring is not None and len(monitoring) < 11: raise ValueError("Invalid value for `monitoring`, length must be greater than or equal to `11`") # noqa: E501 - if monitoring is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', monitoring): # noqa: E501 - raise ValueError(r"Invalid value for `monitoring`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if monitoring is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', monitoring): # noqa: E501 + raise ValueError(r"Invalid value for `monitoring`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._monitoring = monitoring @@ -133,8 +133,8 @@ def support(self, support): raise ValueError("Invalid value for `support`, length must be less than or equal to `2048`") # noqa: E501 if support is not None and len(support) < 11: raise ValueError("Invalid value for `support`, length must be greater than or equal to `11`") # noqa: E501 - if support is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', support): # noqa: E501 - raise ValueError(r"Invalid value for `support`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if support is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', support): # noqa: E501 + raise ValueError(r"Invalid value for `support`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._support = support diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_node.py b/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_node.py index 6b32ceace..32f9c7547 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_node.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_node.py @@ -218,8 +218,8 @@ def internal_ip_address(self, internal_ip_address): raise ValueError("Invalid value for `internal_ip_address`, length must be less than or equal to `45`") # noqa: E501 if internal_ip_address is not None and len(internal_ip_address) < 2: raise ValueError("Invalid value for `internal_ip_address`, length must be greater than or equal to `2`") # noqa: E501 - if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 - raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 + raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._internal_ip_address = internal_ip_address diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_node_extended.py b/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_node_extended.py index fae615344..c2a33f82d 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_node_extended.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/cluster_node_extended.py @@ -218,8 +218,8 @@ def internal_ip_address(self, internal_ip_address): raise ValueError("Invalid value for `internal_ip_address`, length must be less than or equal to `45`") # noqa: E501 if internal_ip_address is not None and len(internal_ip_address) < 2: raise ValueError("Invalid value for `internal_ip_address`, length must be greater than or equal to `2`") # noqa: E501 - if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 - raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 + raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._internal_ip_address = internal_ip_address diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/config_network_network.py b/isilon_sdk/isilon_sdk/v9_5_0/models/config_network_network.py index 30a7cf46e..efb3c7c31 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/config_network_network.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/config_network_network.py @@ -81,8 +81,8 @@ def gateway(self, gateway): raise ValueError("Invalid value for `gateway`, length must be less than or equal to `45`") # noqa: E501 if gateway is not None and len(gateway) < 2: raise ValueError("Invalid value for `gateway`, length must be greater than or equal to `2`") # noqa: E501 - if gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', gateway): # noqa: E501 - raise ValueError(r"Invalid value for `gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', gateway): # noqa: E501 + raise ValueError(r"Invalid value for `gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._gateway = gateway diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/config_network_network_range.py b/isilon_sdk/isilon_sdk/v9_5_0/models/config_network_network_range.py index 955e6d83c..39fb7cf40 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/config_network_network_range.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/config_network_network_range.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -105,8 +105,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/config_node.py b/isilon_sdk/isilon_sdk/v9_5_0/models/config_node.py index f8de0b09b..8a7a45401 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/config_node.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/config_node.py @@ -118,8 +118,8 @@ def ip_addr(self, ip_addr): raise ValueError("Invalid value for `ip_addr`, length must be less than or equal to `45`") # noqa: E501 if ip_addr is not None and len(ip_addr) < 2: raise ValueError("Invalid value for `ip_addr`, length must be greater than or equal to `2`") # noqa: E501 - if ip_addr is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ip_addr): # noqa: E501 - raise ValueError(r"Invalid value for `ip_addr`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if ip_addr is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ip_addr): # noqa: E501 + raise ValueError(r"Invalid value for `ip_addr`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._ip_addr = ip_addr diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/diagnostics_gather_settings_extended.py b/isilon_sdk/isilon_sdk/v9_5_0/models/diagnostics_gather_settings_extended.py index a332bcd52..6827cda58 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/diagnostics_gather_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/diagnostics_gather_settings_extended.py @@ -213,8 +213,8 @@ def ftp_upload_host(self, ftp_upload_host): :param ftp_upload_host: The ftp_upload_host of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_host = ftp_upload_host @@ -332,8 +332,8 @@ def ftp_upload_proxy(self, ftp_upload_proxy): :param ftp_upload_proxy: The ftp_upload_proxy of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_proxy = ftp_upload_proxy @@ -532,8 +532,8 @@ def http_upload_host(self, http_upload_host): :param http_upload_host: The http_upload_host of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_host = http_upload_host @@ -582,8 +582,8 @@ def http_upload_proxy(self, http_upload_proxy): :param http_upload_proxy: The http_upload_proxy of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_proxy = http_upload_proxy diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/diagnostics_gather_settings_settings.py b/isilon_sdk/isilon_sdk/v9_5_0/models/diagnostics_gather_settings_settings.py index 374a128a6..2e87f46e9 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/diagnostics_gather_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/diagnostics_gather_settings_settings.py @@ -208,8 +208,8 @@ def ftp_upload_host(self, ftp_upload_host): :param ftp_upload_host: The ftp_upload_host of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_host = ftp_upload_host @@ -304,8 +304,8 @@ def ftp_upload_proxy(self, ftp_upload_proxy): :param ftp_upload_proxy: The ftp_upload_proxy of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_proxy = ftp_upload_proxy @@ -504,8 +504,8 @@ def http_upload_host(self, http_upload_host): :param http_upload_host: The http_upload_host of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_host = http_upload_host @@ -554,8 +554,8 @@ def http_upload_proxy(self, http_upload_proxy): :param http_upload_proxy: The http_upload_proxy of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_proxy = http_upload_proxy diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/diagnostics_netlogger_settings_settings.py b/isilon_sdk/isilon_sdk/v9_5_0/models/diagnostics_netlogger_settings_settings.py index 10944d35d..bbd578666 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/diagnostics_netlogger_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/diagnostics_netlogger_settings_settings.py @@ -102,8 +102,8 @@ def clients(self, clients): :param clients: The clients of this DiagnosticsNetloggerSettingsSettings. # noqa: E501 :type: str """ - if clients is not None and not re.search(r'^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$', clients): # noqa: E501 - raise ValueError(r"Invalid value for `clients`, must be a follow pattern or equal to `/^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$/`") # noqa: E501 + if clients is not None and not re.search(r'^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$', clients): # noqa: E501 + raise ValueError(r"Invalid value for `clients`, must be a follow pattern or equal to `/^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$/`") # noqa: E501 self._clients = clients diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/event_channel_parameters.py b/isilon_sdk/isilon_sdk/v9_5_0/models/event_channel_parameters.py index 9f497a4f4..5a8d2f8e7 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/event_channel_parameters.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/event_channel_parameters.py @@ -205,8 +205,8 @@ def custom_template(self, custom_template): raise ValueError("Invalid value for `custom_template`, length must be less than or equal to `4096`") # noqa: E501 if custom_template is not None and len(custom_template) < 0: raise ValueError("Invalid value for `custom_template`, length must be greater than or equal to `0`") # noqa: E501 - if custom_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', custom_template): # noqa: E501 - raise ValueError(r"Invalid value for `custom_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if custom_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', custom_template): # noqa: E501 + raise ValueError(r"Invalid value for `custom_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._custom_template = custom_template diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/groupnet_subnet.py b/isilon_sdk/isilon_sdk/v9_5_0/models/groupnet_subnet.py index f3dbc6811..dab73a03c 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/groupnet_subnet.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/groupnet_subnet.py @@ -331,8 +331,8 @@ def sc_service_name(self, sc_service_name): raise ValueError("Invalid value for `sc_service_name`, length must be less than or equal to `2048`") # noqa: E501 if sc_service_name is not None and len(sc_service_name) < 0: raise ValueError("Invalid value for `sc_service_name`, length must be greater than or equal to `0`") # noqa: E501 - if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 - raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 + raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_service_name = sc_service_name diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/groupnet_subnet_create_params.py b/isilon_sdk/isilon_sdk/v9_5_0/models/groupnet_subnet_create_params.py index c63244d79..00378e8dc 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/groupnet_subnet_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/groupnet_subnet_create_params.py @@ -337,8 +337,8 @@ def sc_service_name(self, sc_service_name): raise ValueError("Invalid value for `sc_service_name`, length must be less than or equal to `2048`") # noqa: E501 if sc_service_name is not None and len(sc_service_name) < 0: raise ValueError("Invalid value for `sc_service_name`, length must be greater than or equal to `0`") # noqa: E501 - if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 - raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 + raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_service_name = sc_service_name diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/groupnet_subnet_extended.py b/isilon_sdk/isilon_sdk/v9_5_0/models/groupnet_subnet_extended.py index 15ad39ee5..a62a0170f 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/groupnet_subnet_extended.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/groupnet_subnet_extended.py @@ -361,8 +361,8 @@ def sc_service_name(self, sc_service_name): raise ValueError("Invalid value for `sc_service_name`, length must be less than or equal to `2048`") # noqa: E501 if sc_service_name is not None and len(sc_service_name) < 0: raise ValueError("Invalid value for `sc_service_name`, length must be greater than or equal to `0`") # noqa: E501 - if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 - raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 + raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_service_name = sc_service_name diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/network_interface.py b/isilon_sdk/isilon_sdk/v9_5_0/models/network_interface.py index 577274ddd..d3bfa3fc8 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/network_interface.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/network_interface.py @@ -203,8 +203,8 @@ def ipv4_gateway(self, ipv4_gateway): raise ValueError("Invalid value for `ipv4_gateway`, length must be less than or equal to `16`") # noqa: E501 if ipv4_gateway is not None and len(ipv4_gateway) < 1: raise ValueError("Invalid value for `ipv4_gateway`, length must be greater than or equal to `1`") # noqa: E501 - if ipv4_gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ipv4_gateway): # noqa: E501 - raise ValueError(r"Invalid value for `ipv4_gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if ipv4_gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ipv4_gateway): # noqa: E501 + raise ValueError(r"Invalid value for `ipv4_gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._ipv4_gateway = ipv4_gateway diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/network_interface_vlan.py b/isilon_sdk/isilon_sdk/v9_5_0/models/network_interface_vlan.py index cf97534af..8aef2ecd8 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/network_interface_vlan.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/network_interface_vlan.py @@ -197,8 +197,8 @@ def ipv4_gateway(self, ipv4_gateway): raise ValueError("Invalid value for `ipv4_gateway`, length must be less than or equal to `16`") # noqa: E501 if ipv4_gateway is not None and len(ipv4_gateway) < 1: raise ValueError("Invalid value for `ipv4_gateway`, length must be greater than or equal to `1`") # noqa: E501 - if ipv4_gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ipv4_gateway): # noqa: E501 - raise ValueError(r"Invalid value for `ipv4_gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if ipv4_gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ipv4_gateway): # noqa: E501 + raise ValueError(r"Invalid value for `ipv4_gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._ipv4_gateway = ipv4_gateway diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/network_pool.py b/isilon_sdk/isilon_sdk/v9_5_0/models/network_pool.py index 810fcd4a9..7033f79c1 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/network_pool.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/network_pool.py @@ -642,8 +642,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/node_internal_ip_address_node.py b/isilon_sdk/isilon_sdk/v9_5_0/models/node_internal_ip_address_node.py index 6c83dd1da..7b3d29b62 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/node_internal_ip_address_node.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/node_internal_ip_address_node.py @@ -146,8 +146,8 @@ def internal_ip_address(self, internal_ip_address): raise ValueError("Invalid value for `internal_ip_address`, length must be less than or equal to `45`") # noqa: E501 if internal_ip_address is not None and len(internal_ip_address) < 2: raise ValueError("Invalid value for `internal_ip_address`, length must be greater than or equal to `2`") # noqa: E501 - if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 - raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 + raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._internal_ip_address = internal_ip_address diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/nodes_node_internal_ip_address.py b/isilon_sdk/isilon_sdk/v9_5_0/models/nodes_node_internal_ip_address.py index 5a76083c9..10a8298dc 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/nodes_node_internal_ip_address.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/nodes_node_internal_ip_address.py @@ -72,8 +72,8 @@ def internal_ip_address(self, internal_ip_address): raise ValueError("Invalid value for `internal_ip_address`, length must be less than or equal to `45`") # noqa: E501 if internal_ip_address is not None and len(internal_ip_address) < 2: raise ValueError("Invalid value for `internal_ip_address`, length must be greater than or equal to `2`") # noqa: E501 - if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 - raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 + raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._internal_ip_address = internal_ip_address diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_ads_ads_item.py b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_ads_ads_item.py index 5ea574ce3..8012bbd3d 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_ads_ads_item.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_ads_ads_item.py @@ -652,8 +652,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_ads_ads_item_extended.py b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_ads_ads_item_extended.py index b3eac6e02..641d9161f 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_ads_ads_item_extended.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_ads_ads_item_extended.py @@ -642,8 +642,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_ads_id_params.py b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_ads_id_params.py index 461fc4444..7a04239a0 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_ads_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_ads_id_params.py @@ -554,8 +554,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_ads_item.py b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_ads_item.py index 956f56c78..6a4efc4fe 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_ads_item.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_ads_item.py @@ -598,8 +598,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_file_file_item.py b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_file_file_item.py index 65fc0ec8d..eb7f9dc6a 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_file_file_item.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_file_file_item.py @@ -466,8 +466,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_file_id_params.py b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_file_id_params.py index ebe98e406..135513ddc 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_file_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_file_id_params.py @@ -474,8 +474,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_file_item.py b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_file_item.py index 4f11837e6..6bab4bc64 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_file_item.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_file_item.py @@ -445,8 +445,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_ldap_id_params.py b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_ldap_id_params.py index be4dce7c5..dee7d3013 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_ldap_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_ldap_id_params.py @@ -1108,8 +1108,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template @@ -2076,8 +2076,8 @@ def tls_protocol_min(self, tls_protocol_min): raise ValueError("Invalid value for `tls_protocol_min`, length must be less than or equal to `255`") # noqa: E501 if tls_protocol_min is not None and len(tls_protocol_min) < 0: raise ValueError("Invalid value for `tls_protocol_min`, length must be greater than or equal to `0`") # noqa: E501 - if tls_protocol_min is not None and not re.search(r'^[0-9]+[.][0-9]+$', tls_protocol_min): # noqa: E501 - raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+[.][0-9]+$/`") # noqa: E501 + if tls_protocol_min is not None and not re.search(r'^[0-9]+\\.[0-9]+$', tls_protocol_min): # noqa: E501 + raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+\\.[0-9]+$/`") # noqa: E501 self._tls_protocol_min = tls_protocol_min diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_ldap_item.py b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_ldap_item.py index 6e7b5eb11..8772d9c07 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_ldap_item.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_ldap_item.py @@ -1151,8 +1151,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template @@ -2153,8 +2153,8 @@ def tls_protocol_min(self, tls_protocol_min): raise ValueError("Invalid value for `tls_protocol_min`, length must be less than or equal to `255`") # noqa: E501 if tls_protocol_min is not None and len(tls_protocol_min) < 0: raise ValueError("Invalid value for `tls_protocol_min`, length must be greater than or equal to `0`") # noqa: E501 - if tls_protocol_min is not None and not re.search(r'^[0-9]+[.][0-9]+$', tls_protocol_min): # noqa: E501 - raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+[.][0-9]+$/`") # noqa: E501 + if tls_protocol_min is not None and not re.search(r'^[0-9]+\\.[0-9]+$', tls_protocol_min): # noqa: E501 + raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+\\.[0-9]+$/`") # noqa: E501 self._tls_protocol_min = tls_protocol_min diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_ldap_ldap_item.py b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_ldap_ldap_item.py index 70195c559..a679d1944 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_ldap_ldap_item.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_ldap_ldap_item.py @@ -1135,8 +1135,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template @@ -2181,8 +2181,8 @@ def tls_protocol_min(self, tls_protocol_min): raise ValueError("Invalid value for `tls_protocol_min`, length must be less than or equal to `255`") # noqa: E501 if tls_protocol_min is not None and len(tls_protocol_min) < 0: raise ValueError("Invalid value for `tls_protocol_min`, length must be greater than or equal to `0`") # noqa: E501 - if tls_protocol_min is not None and not re.search(r'^[0-9]+[.][0-9]+$', tls_protocol_min): # noqa: E501 - raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+[.][0-9]+$/`") # noqa: E501 + if tls_protocol_min is not None and not re.search(r'^[0-9]+\\.[0-9]+$', tls_protocol_min): # noqa: E501 + raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+\\.[0-9]+$/`") # noqa: E501 self._tls_protocol_min = tls_protocol_min diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_local_id_params.py b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_local_id_params.py index ab9d4edc6..ee6706bfa 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_local_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_local_id_params.py @@ -263,8 +263,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_local_local_item.py b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_local_local_item.py index 4b328d4ac..539b55de5 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_local_local_item.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_local_local_item.py @@ -227,8 +227,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_nis_id_params.py b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_nis_id_params.py index 454597bbb..1fd30d3bc 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_nis_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_nis_id_params.py @@ -464,8 +464,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_nis_item.py b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_nis_item.py index c1d7d4156..1ea3e2189 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_nis_item.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_nis_item.py @@ -493,8 +493,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_nis_nis_item.py b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_nis_nis_item.py index 264ca5e0d..d0c607b96 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_nis_nis_item.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_nis_nis_item.py @@ -516,8 +516,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_saml_services_sp_extended.py b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_saml_services_sp_extended.py index 317f63af7..cf7219e53 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_saml_services_sp_extended.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_saml_services_sp_extended.py @@ -101,8 +101,8 @@ def email(self, email): raise ValueError("Invalid value for `email`, length must be less than or equal to `254`") # noqa: E501 if email is not None and len(email) < 3: raise ValueError("Invalid value for `email`, length must be greater than or equal to `3`") # noqa: E501 - if email is not None and not re.search(r'[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', email): # noqa: E501 - raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if email is not None and not re.search(r'[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', email): # noqa: E501 + raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._email = email diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_saml_services_sp_sp.py b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_saml_services_sp_sp.py index 970ca0b64..980993035 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/providers_saml_services_sp_sp.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/providers_saml_services_sp_sp.py @@ -153,8 +153,8 @@ def email(self, email): raise ValueError("Invalid value for `email`, length must be less than or equal to `254`") # noqa: E501 if email is not None and len(email) < 3: raise ValueError("Invalid value for `email`, length must be greater than or equal to `3`") # noqa: E501 - if email is not None and not re.search(r'[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', email): # noqa: E501 - raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if email is not None and not re.search(r'[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', email): # noqa: E501 + raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._email = email diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/s3_settings_zone_settings.py b/isilon_sdk/isilon_sdk/v9_5_0/models/s3_settings_zone_settings.py index 707819a62..84fe3a82f 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/s3_settings_zone_settings.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/s3_settings_zone_settings.py @@ -96,8 +96,8 @@ def base_domain(self, base_domain): raise ValueError("Invalid value for `base_domain`, length must be less than or equal to `255`") # noqa: E501 if base_domain is not None and len(base_domain) < 0: raise ValueError("Invalid value for `base_domain`, length must be greater than or equal to `0`") # noqa: E501 - if base_domain is not None and not re.search(r'^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$', base_domain): # noqa: E501 - raise ValueError(r"Invalid value for `base_domain`, must be a follow pattern or equal to `/^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$/`") # noqa: E501 + if base_domain is not None and not re.search(r'^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$', base_domain): # noqa: E501 + raise ValueError(r"Invalid value for `base_domain`, must be a follow pattern or equal to `/^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$/`") # noqa: E501 self._base_domain = base_domain diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/snmp_settings_extended.py b/isilon_sdk/isilon_sdk/v9_5_0/models/snmp_settings_extended.py index 8de0b5939..cf214a9ec 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/snmp_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/snmp_settings_extended.py @@ -386,8 +386,8 @@ def system_contact(self, system_contact): raise ValueError("Invalid value for `system_contact`, length must be less than or equal to `254`") # noqa: E501 if system_contact is not None and len(system_contact) < 3: raise ValueError("Invalid value for `system_contact`, length must be greater than or equal to `3`") # noqa: E501 - if system_contact is not None and not re.search(r'[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', system_contact): # noqa: E501 - raise ValueError(r"Invalid value for `system_contact`, must be a follow pattern or equal to `/[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if system_contact is not None and not re.search(r'[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', system_contact): # noqa: E501 + raise ValueError(r"Invalid value for `system_contact`, must be a follow pattern or equal to `/[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._system_contact = system_contact diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/snmp_settings_settings.py b/isilon_sdk/isilon_sdk/v9_5_0/models/snmp_settings_settings.py index 222e405f0..71b346b9b 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/snmp_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/snmp_settings_settings.py @@ -322,8 +322,8 @@ def system_contact(self, system_contact): raise ValueError("Invalid value for `system_contact`, length must be less than or equal to `254`") # noqa: E501 if system_contact is not None and len(system_contact) < 3: raise ValueError("Invalid value for `system_contact`, length must be greater than or equal to `3`") # noqa: E501 - if system_contact is not None and not re.search(r'[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', system_contact): # noqa: E501 - raise ValueError(r"Invalid value for `system_contact`, must be a follow pattern or equal to `/[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if system_contact is not None and not re.search(r'[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', system_contact): # noqa: E501 + raise ValueError(r"Invalid value for `system_contact`, must be a follow pattern or equal to `/[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._system_contact = system_contact diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/ssh_settings_extended.py b/isilon_sdk/isilon_sdk/v9_5_0/models/ssh_settings_extended.py index 1169423ac..42274f427 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/ssh_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/ssh_settings_extended.py @@ -303,8 +303,8 @@ def ca_signature_algorithms(self, ca_signature_algorithms): raise ValueError("Invalid value for `ca_signature_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if ca_signature_algorithms is not None and len(ca_signature_algorithms) < 0: raise ValueError("Invalid value for `ca_signature_algorithms`, length must be greater than or equal to `0`") # noqa: E501 - if ca_signature_algorithms is not None and not re.search(r'^([+]?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$', ca_signature_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `ca_signature_algorithms`, must be a follow pattern or equal to `/^([+]?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$/`") # noqa: E501 + if ca_signature_algorithms is not None and not re.search(r'^(\\+?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$', ca_signature_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `ca_signature_algorithms`, must be a follow pattern or equal to `/^(\\+?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$/`") # noqa: E501 self._ca_signature_algorithms = ca_signature_algorithms @@ -355,8 +355,8 @@ def ciphers(self, ciphers): raise ValueError("Invalid value for `ciphers`, length must be less than or equal to `4096`") # noqa: E501 if ciphers is not None and len(ciphers) < 7: raise ValueError("Invalid value for `ciphers`, length must be greater than or equal to `7`") # noqa: E501 - if ciphers is not None and not re.search(r'^([+]?)(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com)(,(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com))*$', ciphers): # noqa: E501 - raise ValueError(r"Invalid value for `ciphers`, must be a follow pattern or equal to `/^([+]?)(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com)(,(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com))*$/`") # noqa: E501 + if ciphers is not None and not re.search(r'^(\\+?)(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com)(,(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com))*$', ciphers): # noqa: E501 + raise ValueError(r"Invalid value for `ciphers`, must be a follow pattern or equal to `/^(\\+?)(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com)(,(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com))*$/`") # noqa: E501 self._ciphers = ciphers @@ -384,8 +384,8 @@ def host_key_algorithms(self, host_key_algorithms): raise ValueError("Invalid value for `host_key_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if host_key_algorithms is not None and len(host_key_algorithms) < 7: raise ValueError("Invalid value for `host_key_algorithms`, length must be greater than or equal to `7`") # noqa: E501 - if host_key_algorithms is not None and not re.search(r'^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com))*$', host_key_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `host_key_algorithms`, must be a follow pattern or equal to `/^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com))*$/`") # noqa: E501 + if host_key_algorithms is not None and not re.search(r'^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com))*$', host_key_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `host_key_algorithms`, must be a follow pattern or equal to `/^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com))*$/`") # noqa: E501 self._host_key_algorithms = host_key_algorithms @@ -436,8 +436,8 @@ def kex_algorithms(self, kex_algorithms): raise ValueError("Invalid value for `kex_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if kex_algorithms is not None and len(kex_algorithms) < 18: raise ValueError("Invalid value for `kex_algorithms`, length must be greater than or equal to `18`") # noqa: E501 - if kex_algorithms is not None and not re.search(r'^([+]?)(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$', kex_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `kex_algorithms`, must be a follow pattern or equal to `/^([+]?)(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$/`") # noqa: E501 + if kex_algorithms is not None and not re.search(r'^(\\+?)(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$', kex_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `kex_algorithms`, must be a follow pattern or equal to `/^(\\+?)(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$/`") # noqa: E501 self._kex_algorithms = kex_algorithms @@ -544,8 +544,8 @@ def macs(self, macs): raise ValueError("Invalid value for `macs`, length must be less than or equal to `4096`") # noqa: E501 if macs is not None and len(macs) < 8: raise ValueError("Invalid value for `macs`, length must be greater than or equal to `8`") # noqa: E501 - if macs is not None and not re.search(r'^([+]?)(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$', macs): # noqa: E501 - raise ValueError(r"Invalid value for `macs`, must be a follow pattern or equal to `/^([+]?)(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$/`") # noqa: E501 + if macs is not None and not re.search(r'^(\\+?)(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$', macs): # noqa: E501 + raise ValueError(r"Invalid value for `macs`, must be a follow pattern or equal to `/^(\\+?)(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$/`") # noqa: E501 self._macs = macs @@ -802,8 +802,8 @@ def pubkey_accepted_key_types(self, pubkey_accepted_key_types): raise ValueError("Invalid value for `pubkey_accepted_key_types`, length must be less than or equal to `4096`") # noqa: E501 if pubkey_accepted_key_types is not None and len(pubkey_accepted_key_types) < 7: raise ValueError("Invalid value for `pubkey_accepted_key_types`, length must be greater than or equal to `7`") # noqa: E501 - if pubkey_accepted_key_types is not None and not re.search(r'^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com))*$', pubkey_accepted_key_types): # noqa: E501 - raise ValueError(r"Invalid value for `pubkey_accepted_key_types`, must be a follow pattern or equal to `/^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com))*$/`") # noqa: E501 + if pubkey_accepted_key_types is not None and not re.search(r'^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com))*$', pubkey_accepted_key_types): # noqa: E501 + raise ValueError(r"Invalid value for `pubkey_accepted_key_types`, must be a follow pattern or equal to `/^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com))*$/`") # noqa: E501 self._pubkey_accepted_key_types = pubkey_accepted_key_types @@ -877,6 +877,8 @@ def subsystem(self, subsystem): raise ValueError("Invalid value for `subsystem`, length must be less than or equal to `1024`") # noqa: E501 if subsystem is not None and len(subsystem) < 0: raise ValueError("Invalid value for `subsystem`, length must be greater than or equal to `0`") # noqa: E501 + if subsystem is not None and not re.search(r'b\'^[^\\\\n]*$\'', subsystem): # noqa: E501 + raise ValueError(r"Invalid value for `subsystem`, must be a follow pattern or equal to `/b'^[^\\\\n]*$'/`") # noqa: E501 self._subsystem = subsystem diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/ssh_settings_settings.py b/isilon_sdk/isilon_sdk/v9_5_0/models/ssh_settings_settings.py index f917ce8d8..4f9c5871d 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/ssh_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/ssh_settings_settings.py @@ -303,8 +303,8 @@ def ca_signature_algorithms(self, ca_signature_algorithms): raise ValueError("Invalid value for `ca_signature_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if ca_signature_algorithms is not None and len(ca_signature_algorithms) < 0: raise ValueError("Invalid value for `ca_signature_algorithms`, length must be greater than or equal to `0`") # noqa: E501 - if ca_signature_algorithms is not None and not re.search(r'^([+]?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$', ca_signature_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `ca_signature_algorithms`, must be a follow pattern or equal to `/^([+]?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$/`") # noqa: E501 + if ca_signature_algorithms is not None and not re.search(r'^(\\+?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$', ca_signature_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `ca_signature_algorithms`, must be a follow pattern or equal to `/^(\\+?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$/`") # noqa: E501 self._ca_signature_algorithms = ca_signature_algorithms @@ -355,8 +355,8 @@ def ciphers(self, ciphers): raise ValueError("Invalid value for `ciphers`, length must be less than or equal to `4096`") # noqa: E501 if ciphers is not None and len(ciphers) < 7: raise ValueError("Invalid value for `ciphers`, length must be greater than or equal to `7`") # noqa: E501 - if ciphers is not None and not re.search(r'^([+]?)(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com)(,(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com))*$', ciphers): # noqa: E501 - raise ValueError(r"Invalid value for `ciphers`, must be a follow pattern or equal to `/^([+]?)(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com)(,(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com))*$/`") # noqa: E501 + if ciphers is not None and not re.search(r'^(\\+?)(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com)(,(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com))*$', ciphers): # noqa: E501 + raise ValueError(r"Invalid value for `ciphers`, must be a follow pattern or equal to `/^(\\+?)(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com)(,(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com))*$/`") # noqa: E501 self._ciphers = ciphers @@ -384,8 +384,8 @@ def host_key_algorithms(self, host_key_algorithms): raise ValueError("Invalid value for `host_key_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if host_key_algorithms is not None and len(host_key_algorithms) < 7: raise ValueError("Invalid value for `host_key_algorithms`, length must be greater than or equal to `7`") # noqa: E501 - if host_key_algorithms is not None and not re.search(r'^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com))*$', host_key_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `host_key_algorithms`, must be a follow pattern or equal to `/^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com))*$/`") # noqa: E501 + if host_key_algorithms is not None and not re.search(r'^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com))*$', host_key_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `host_key_algorithms`, must be a follow pattern or equal to `/^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com))*$/`") # noqa: E501 self._host_key_algorithms = host_key_algorithms @@ -436,8 +436,8 @@ def kex_algorithms(self, kex_algorithms): raise ValueError("Invalid value for `kex_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if kex_algorithms is not None and len(kex_algorithms) < 18: raise ValueError("Invalid value for `kex_algorithms`, length must be greater than or equal to `18`") # noqa: E501 - if kex_algorithms is not None and not re.search(r'^([+]?)(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$', kex_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `kex_algorithms`, must be a follow pattern or equal to `/^([+]?)(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$/`") # noqa: E501 + if kex_algorithms is not None and not re.search(r'^(\\+?)(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$', kex_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `kex_algorithms`, must be a follow pattern or equal to `/^(\\+?)(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$/`") # noqa: E501 self._kex_algorithms = kex_algorithms @@ -544,8 +544,8 @@ def macs(self, macs): raise ValueError("Invalid value for `macs`, length must be less than or equal to `4096`") # noqa: E501 if macs is not None and len(macs) < 8: raise ValueError("Invalid value for `macs`, length must be greater than or equal to `8`") # noqa: E501 - if macs is not None and not re.search(r'^([+]?)(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$', macs): # noqa: E501 - raise ValueError(r"Invalid value for `macs`, must be a follow pattern or equal to `/^([+]?)(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$/`") # noqa: E501 + if macs is not None and not re.search(r'^(\\+?)(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$', macs): # noqa: E501 + raise ValueError(r"Invalid value for `macs`, must be a follow pattern or equal to `/^(\\+?)(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$/`") # noqa: E501 self._macs = macs @@ -802,8 +802,8 @@ def pubkey_accepted_key_types(self, pubkey_accepted_key_types): raise ValueError("Invalid value for `pubkey_accepted_key_types`, length must be less than or equal to `4096`") # noqa: E501 if pubkey_accepted_key_types is not None and len(pubkey_accepted_key_types) < 7: raise ValueError("Invalid value for `pubkey_accepted_key_types`, length must be greater than or equal to `7`") # noqa: E501 - if pubkey_accepted_key_types is not None and not re.search(r'^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com))*$', pubkey_accepted_key_types): # noqa: E501 - raise ValueError(r"Invalid value for `pubkey_accepted_key_types`, must be a follow pattern or equal to `/^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com))*$/`") # noqa: E501 + if pubkey_accepted_key_types is not None and not re.search(r'^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com))*$', pubkey_accepted_key_types): # noqa: E501 + raise ValueError(r"Invalid value for `pubkey_accepted_key_types`, must be a follow pattern or equal to `/^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com))*$/`") # noqa: E501 self._pubkey_accepted_key_types = pubkey_accepted_key_types @@ -877,6 +877,8 @@ def subsystem(self, subsystem): raise ValueError("Invalid value for `subsystem`, length must be less than or equal to `1024`") # noqa: E501 if subsystem is not None and len(subsystem) < 0: raise ValueError("Invalid value for `subsystem`, length must be greater than or equal to `0`") # noqa: E501 + if subsystem is not None and not re.search(r'b\'^[^\\\\n]*$\'', subsystem): # noqa: E501 + raise ValueError(r"Invalid value for `subsystem`, must be a follow pattern or equal to `/b'^[^\\\\n]*$'/`") # noqa: E501 self._subsystem = subsystem diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/subnets_subnet_pool.py b/isilon_sdk/isilon_sdk/v9_5_0/models/subnets_subnet_pool.py index e3fb74248..081f161da 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/subnets_subnet_pool.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/subnets_subnet_pool.py @@ -450,8 +450,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/subnets_subnet_pool_create_params.py b/isilon_sdk/isilon_sdk/v9_5_0/models/subnets_subnet_pool_create_params.py index d4c26672a..8d351ae3a 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/subnets_subnet_pool_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/subnets_subnet_pool_create_params.py @@ -475,8 +475,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/subnets_subnet_pool_range.py b/isilon_sdk/isilon_sdk/v9_5_0/models/subnets_subnet_pool_range.py index d4013b2a1..d69608d49 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/subnets_subnet_pool_range.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/subnets_subnet_pool_range.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `40`") # noqa: E501 if high is not None and len(high) < 1: raise ValueError("Invalid value for `high`, length must be greater than or equal to `1`") # noqa: E501 - if high is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if high is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `40`") # noqa: E501 if low is not None and len(low) < 1: raise ValueError("Invalid value for `low`, length must be greater than or equal to `1`") # noqa: E501 - if low is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if low is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/subnets_subnet_pool_static_route.py b/isilon_sdk/isilon_sdk/v9_5_0/models/subnets_subnet_pool_static_route.py index c8a8e138e..1e9620980 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/subnets_subnet_pool_static_route.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/subnets_subnet_pool_static_route.py @@ -80,8 +80,8 @@ def gateway(self, gateway): raise ValueError("Invalid value for `gateway`, length must be less than or equal to `40`") # noqa: E501 if gateway is not None and len(gateway) < 1: raise ValueError("Invalid value for `gateway`, length must be greater than or equal to `1`") # noqa: E501 - if gateway is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', gateway): # noqa: E501 - raise ValueError(r"Invalid value for `gateway`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if gateway is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', gateway): # noqa: E501 + raise ValueError(r"Invalid value for `gateway`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._gateway = gateway @@ -140,8 +140,8 @@ def subnet(self, subnet): raise ValueError("Invalid value for `subnet`, length must be less than or equal to `40`") # noqa: E501 if subnet is not None and len(subnet) < 1: raise ValueError("Invalid value for `subnet`, length must be greater than or equal to `1`") # noqa: E501 - if subnet is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', subnet): # noqa: E501 - raise ValueError(r"Invalid value for `subnet`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if subnet is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', subnet): # noqa: E501 + raise ValueError(r"Invalid value for `subnet`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._subnet = subnet diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/subnets_subnet_pools_pool.py b/isilon_sdk/isilon_sdk/v9_5_0/models/subnets_subnet_pools_pool.py index 53d495f5a..1db12aa2d 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/subnets_subnet_pools_pool.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/subnets_subnet_pools_pool.py @@ -653,8 +653,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/supportassist_settings_connection_gateway_endpoint.py b/isilon_sdk/isilon_sdk/v9_5_0/models/supportassist_settings_connection_gateway_endpoint.py index 5b1109234..9be17a8e1 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/supportassist_settings_connection_gateway_endpoint.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/supportassist_settings_connection_gateway_endpoint.py @@ -120,8 +120,8 @@ def host(self, host): raise ValueError("Invalid value for `host`, length must be less than or equal to `255`") # noqa: E501 if host is not None and len(host) < 0: raise ValueError("Invalid value for `host`, length must be greater than or equal to `0`") # noqa: E501 - if host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$)', host): # noqa: E501 - raise ValueError(r"Invalid value for `host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$)/`") # noqa: E501 + if host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$)', host): # noqa: E501 + raise ValueError(r"Invalid value for `host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$)/`") # noqa: E501 self._host = host diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/supportassist_settings_contact_primary.py b/isilon_sdk/isilon_sdk/v9_5_0/models/supportassist_settings_contact_primary.py index f8d5d9482..f109d65ce 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/supportassist_settings_contact_primary.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/supportassist_settings_contact_primary.py @@ -44,7 +44,7 @@ class SupportassistSettingsContactPrimary(object): 'phone': 'phone' } - def __init__(self, email='', first_name='', last_name='', phone=None): # noqa: E501 + def __init__(self, email='', first_name='', last_name='', phone=''): # noqa: E501 """SupportassistSettingsContactPrimary - a model defined in Swagger""" # noqa: E501 self._email = None @@ -86,8 +86,8 @@ def email(self, email): raise ValueError("Invalid value for `email`, length must be less than or equal to `320`") # noqa: E501 if email is not None and len(email) < 0: raise ValueError("Invalid value for `email`, length must be greater than or equal to `0`") # noqa: E501 - if email is not None and not re.search(r'(^$|^([a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+[.])+[a-zA-Z0-9]+$))', email): # noqa: E501 - raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/(^$|^([a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+[.])+[a-zA-Z0-9]+$))/`") # noqa: E501 + if email is not None and not re.search(r'(^$|^([a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]+$))', email): # noqa: E501 + raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/(^$|^([a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]+$))/`") # noqa: E501 self._email = email @@ -115,8 +115,8 @@ def first_name(self, first_name): raise ValueError("Invalid value for `first_name`, length must be less than or equal to `50`") # noqa: E501 if first_name is not None and len(first_name) < 0: raise ValueError("Invalid value for `first_name`, length must be greater than or equal to `0`") # noqa: E501 - if first_name is not None and not re.search(r'[a-zA-Z]*[-.\']*', first_name): # noqa: E501 - raise ValueError(r"Invalid value for `first_name`, must be a follow pattern or equal to `/[a-zA-Z]*[-.']*/`") # noqa: E501 + if first_name is not None and not re.search(r'[a-zA-Z]*[\\-\\.\\\']*', first_name): # noqa: E501 + raise ValueError(r"Invalid value for `first_name`, must be a follow pattern or equal to `/[a-zA-Z]*[\\-\\.\\']*/`") # noqa: E501 self._first_name = first_name @@ -144,8 +144,8 @@ def last_name(self, last_name): raise ValueError("Invalid value for `last_name`, length must be less than or equal to `50`") # noqa: E501 if last_name is not None and len(last_name) < 0: raise ValueError("Invalid value for `last_name`, length must be greater than or equal to `0`") # noqa: E501 - if last_name is not None and not re.search(r'[a-zA-Z]*[-.\']*', last_name): # noqa: E501 - raise ValueError(r"Invalid value for `last_name`, must be a follow pattern or equal to `/[a-zA-Z]*[-.']*/`") # noqa: E501 + if last_name is not None and not re.search(r'[a-zA-Z]*[\\-\\.\\\']*', last_name): # noqa: E501 + raise ValueError(r"Invalid value for `last_name`, must be a follow pattern or equal to `/[a-zA-Z]*[\\-\\.\\']*/`") # noqa: E501 self._last_name = last_name @@ -173,6 +173,8 @@ def phone(self, phone): raise ValueError("Invalid value for `phone`, length must be less than or equal to `40`") # noqa: E501 if phone is not None and len(phone) < 0: raise ValueError("Invalid value for `phone`, length must be greater than or equal to `0`") # noqa: E501 + if phone is not None and not re.search(r'(^$|([\\.\\-\\+\/\\sxX]*([0-9]+|[\\(\\d+\\)])+)+)', phone): # noqa: E501 + raise ValueError(r"Invalid value for `phone`, must be a follow pattern or equal to `/(^$|([\\.\\-\\+\/\\sxX]*([0-9]+|[\\(\\d+\\)])+)+)/`") # noqa: E501 self._phone = phone diff --git a/isilon_sdk/isilon_sdk/v9_5_0/models/supportassist_settings_contact_primary_extended.py b/isilon_sdk/isilon_sdk/v9_5_0/models/supportassist_settings_contact_primary_extended.py index e9635d23b..fae66e927 100644 --- a/isilon_sdk/isilon_sdk/v9_5_0/models/supportassist_settings_contact_primary_extended.py +++ b/isilon_sdk/isilon_sdk/v9_5_0/models/supportassist_settings_contact_primary_extended.py @@ -86,8 +86,8 @@ def email(self, email): raise ValueError("Invalid value for `email`, length must be less than or equal to `320`") # noqa: E501 if email is not None and len(email) < 0: raise ValueError("Invalid value for `email`, length must be greater than or equal to `0`") # noqa: E501 - if email is not None and not re.search(r'^[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+[.])+[a-zA-Z0-9]+$', email): # noqa: E501 - raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/^[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+[.])+[a-zA-Z0-9]+$/`") # noqa: E501 + if email is not None and not re.search(r'^[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]+$', email): # noqa: E501 + raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/^[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]+$/`") # noqa: E501 self._email = email @@ -115,8 +115,8 @@ def first_name(self, first_name): raise ValueError("Invalid value for `first_name`, length must be less than or equal to `50`") # noqa: E501 if first_name is not None and len(first_name) < 0: raise ValueError("Invalid value for `first_name`, length must be greater than or equal to `0`") # noqa: E501 - if first_name is not None and not re.search(r'[a-zA-Z]*[-.\']*', first_name): # noqa: E501 - raise ValueError(r"Invalid value for `first_name`, must be a follow pattern or equal to `/[a-zA-Z]*[-.']*/`") # noqa: E501 + if first_name is not None and not re.search(r'[a-zA-Z]*[\\-\\.\\\']*', first_name): # noqa: E501 + raise ValueError(r"Invalid value for `first_name`, must be a follow pattern or equal to `/[a-zA-Z]*[\\-\\.\\']*/`") # noqa: E501 self._first_name = first_name @@ -144,8 +144,8 @@ def last_name(self, last_name): raise ValueError("Invalid value for `last_name`, length must be less than or equal to `50`") # noqa: E501 if last_name is not None and len(last_name) < 0: raise ValueError("Invalid value for `last_name`, length must be greater than or equal to `0`") # noqa: E501 - if last_name is not None and not re.search(r'[a-zA-Z]*[-.\']*', last_name): # noqa: E501 - raise ValueError(r"Invalid value for `last_name`, must be a follow pattern or equal to `/[a-zA-Z]*[-.']*/`") # noqa: E501 + if last_name is not None and not re.search(r'[a-zA-Z]*[\\-\\.\\\']*', last_name): # noqa: E501 + raise ValueError(r"Invalid value for `last_name`, must be a follow pattern or equal to `/[a-zA-Z]*[\\-\\.\\']*/`") # noqa: E501 self._last_name = last_name @@ -173,6 +173,8 @@ def phone(self, phone): raise ValueError("Invalid value for `phone`, length must be less than or equal to `40`") # noqa: E501 if phone is not None and len(phone) < 0: raise ValueError("Invalid value for `phone`, length must be greater than or equal to `0`") # noqa: E501 + if phone is not None and not re.search(r'([\\.\\-\\+\/\\sxX]*([0-9]+|[\\(\\d+\\)])+)+', phone): # noqa: E501 + raise ValueError(r"Invalid value for `phone`, must be a follow pattern or equal to `/([\\.\\-\\+\/\\sxX]*([0-9]+|[\\(\\d+\\)])+)+/`") # noqa: E501 self._phone = phone diff --git a/isilon_sdk/isilon_sdk/v9_6_0/README.md b/isilon_sdk/isilon_sdk/v9_6_0/README.md index 5d7f4f6fb..8a0e25dd4 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/README.md +++ b/isilon_sdk/isilon_sdk/v9_6_0/README.md @@ -18,7 +18,7 @@ Isilon SDK - Language bindings for the OneFS API This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project: - API version: 17 -- Package version: 0.6.0 +- Package version: 0.5.0 - Build package: io.swagger.codegen.languages.PythonClientCodegen For more information, please visit [https://github.com/Isilon/isilon_sdk](https://github.com/Isilon/isilon_sdk) @@ -2631,7 +2631,7 @@ sdk@isilon.com ## License -Copyright (c) 2025 Dell EMC Isilon +Copyright (c) 2018 Dell EMC Isilon Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/isilon_sdk/isilon_sdk/v9_6_0/api/namespace_api.py b/isilon_sdk/isilon_sdk/v9_6_0/api/namespace_api.py index bcd146a67..ed08b1439 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/api/namespace_api.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/api/namespace_api.py @@ -1188,7 +1188,6 @@ def get_acl(self, namespace_path, acl, **kwargs): # noqa: E501 :param str namespace_path: Namespace path relative to /. (required) :param bool acl: Show access control lists. (required) :param bool nsaccess: Indicates that the operation is on the access point instead of the store path. - :param str zone: Specifies the access zone name. :return: NamespaceAcl If the method is called asynchronously, returns the request thread. @@ -1213,13 +1212,12 @@ def get_acl_with_http_info(self, namespace_path, acl, **kwargs): # noqa: E501 :param str namespace_path: Namespace path relative to /. (required) :param bool acl: Show access control lists. (required) :param bool nsaccess: Indicates that the operation is on the access point instead of the store path. - :param str zone: Specifies the access zone name. :return: NamespaceAcl If the method is called asynchronously, returns the request thread. """ - all_params = ['namespace_path', 'acl', 'nsaccess', 'zone'] # noqa: E501 + all_params = ['namespace_path', 'acl', 'nsaccess'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -1254,8 +1252,6 @@ def get_acl_with_http_info(self, namespace_path, acl, **kwargs): # noqa: E501 query_params.append(('acl', params['acl'])) # noqa: E501 if 'nsaccess' in params: query_params.append(('nsaccess', params['nsaccess'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -1536,7 +1532,6 @@ def get_directory_metadata(self, directory_metadata_path, metadata, **kwargs): :param async_req bool :param str directory_metadata_path: Directory path relative to /. (required) :param bool metadata: Show directory metadata. (required) - :param str zone: Specifies the access zone name. :return: NamespaceMetadataList If the method is called asynchronously, returns the request thread. @@ -1560,13 +1555,12 @@ def get_directory_metadata_with_http_info(self, directory_metadata_path, metadat :param async_req bool :param str directory_metadata_path: Directory path relative to /. (required) :param bool metadata: Show directory metadata. (required) - :param str zone: Specifies the access zone name. :return: NamespaceMetadataList If the method is called asynchronously, returns the request thread. """ - all_params = ['directory_metadata_path', 'metadata', 'zone'] # noqa: E501 + all_params = ['directory_metadata_path', 'metadata'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -1599,8 +1593,6 @@ def get_directory_metadata_with_http_info(self, directory_metadata_path, metadat query_params = [] if 'metadata' in params: query_params.append(('metadata', params['metadata'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -2000,7 +1992,6 @@ def get_file_metadata(self, file_metadata_path, metadata, **kwargs): # noqa: E5 :param async_req bool :param str file_metadata_path: File path relative to /. (required) :param bool metadata: Show file metadata. (required) - :param str zone: Specifies the access zone name. :return: NamespaceMetadataList If the method is called asynchronously, returns the request thread. @@ -2024,13 +2015,12 @@ def get_file_metadata_with_http_info(self, file_metadata_path, metadata, **kwarg :param async_req bool :param str file_metadata_path: File path relative to /. (required) :param bool metadata: Show file metadata. (required) - :param str zone: Specifies the access zone name. :return: NamespaceMetadataList If the method is called asynchronously, returns the request thread. """ - all_params = ['file_metadata_path', 'metadata', 'zone'] # noqa: E501 + all_params = ['file_metadata_path', 'metadata'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2063,8 +2053,6 @@ def get_file_metadata_with_http_info(self, file_metadata_path, metadata, **kwarg query_params = [] if 'metadata' in params: query_params.append(('metadata', params['metadata'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -2791,7 +2779,6 @@ def set_acl(self, namespace_path, acl, namespace_acl, **kwargs): # noqa: E501 :param bool acl: Update access control lists. (required) :param NamespaceAcl namespace_acl: Namespace ACL parameters model. (required) :param bool nsaccess: Indicates that the operation is on the access point instead of the store path. - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. @@ -2817,13 +2804,12 @@ def set_acl_with_http_info(self, namespace_path, acl, namespace_acl, **kwargs): :param bool acl: Update access control lists. (required) :param NamespaceAcl namespace_acl: Namespace ACL parameters model. (required) :param bool nsaccess: Indicates that the operation is on the access point instead of the store path. - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. """ - all_params = ['namespace_path', 'acl', 'namespace_acl', 'nsaccess', 'zone'] # noqa: E501 + all_params = ['namespace_path', 'acl', 'namespace_acl', 'nsaccess'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2862,8 +2848,6 @@ def set_acl_with_http_info(self, namespace_path, acl, namespace_acl, **kwargs): query_params.append(('acl', params['acl'])) # noqa: E501 if 'nsaccess' in params: query_params.append(('nsaccess', params['nsaccess'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -2913,7 +2897,6 @@ def set_directory_metadata(self, directory_metadata_path, metadata, directory_me :param str directory_metadata_path: Directory path relative to /. (required) :param bool metadata: Set directory metadata. (required) :param NamespaceMetadata directory_metadata: Directory metadata parameters model. (required) - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. @@ -2938,13 +2921,12 @@ def set_directory_metadata_with_http_info(self, directory_metadata_path, metadat :param str directory_metadata_path: Directory path relative to /. (required) :param bool metadata: Set directory metadata. (required) :param NamespaceMetadata directory_metadata: Directory metadata parameters model. (required) - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. """ - all_params = ['directory_metadata_path', 'metadata', 'directory_metadata', 'zone'] # noqa: E501 + all_params = ['directory_metadata_path', 'metadata', 'directory_metadata'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2981,8 +2963,6 @@ def set_directory_metadata_with_http_info(self, directory_metadata_path, metadat query_params = [] if 'metadata' in params: query_params.append(('metadata', params['metadata'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -3032,7 +3012,6 @@ def set_file_metadata(self, file_metadata_path, metadata, file_metadata, **kwarg :param str file_metadata_path: File path relative to /. (required) :param bool metadata: Set file metadata. (required) :param NamespaceMetadata file_metadata: File metadata parameters model. (required) - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. @@ -3057,13 +3036,12 @@ def set_file_metadata_with_http_info(self, file_metadata_path, metadata, file_me :param str file_metadata_path: File path relative to /. (required) :param bool metadata: Set file metadata. (required) :param NamespaceMetadata file_metadata: File metadata parameters model. (required) - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. """ - all_params = ['file_metadata_path', 'metadata', 'file_metadata', 'zone'] # noqa: E501 + all_params = ['file_metadata_path', 'metadata', 'file_metadata'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -3100,8 +3078,6 @@ def set_file_metadata_with_http_info(self, file_metadata_path, metadata, file_me query_params = [] if 'metadata' in params: query_params.append(('metadata', params['metadata'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} diff --git a/isilon_sdk/isilon_sdk/v9_6_0/api_client.py b/isilon_sdk/isilon_sdk/v9_6_0/api_client.py index ae009603a..fdf0bec60 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/api_client.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/api_client.py @@ -74,7 +74,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None, self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'Swagger-Codegen/0.6.0/python' + self.user_agent = 'Swagger-Codegen/0.5.0/python' # This is used for detecting for the special case of a path parameter # that is tagged with x-isi-url-encode-path-param (more details in the # __call_api function). diff --git a/isilon_sdk/isilon_sdk/v9_6_0/configuration.py b/isilon_sdk/isilon_sdk/v9_6_0/configuration.py index c6591050e..b4535608e 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/configuration.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/configuration.py @@ -260,5 +260,5 @@ def to_debug_report(self): "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: 17\n"\ - "SDK Package Version: 0.6.0".\ + "SDK Package Version: 0.5.0".\ format(env=sys.platform, pyversion=sys.version) diff --git a/isilon_sdk/isilon_sdk/v9_6_0/docs/NamespaceApi.md b/isilon_sdk/isilon_sdk/v9_6_0/docs/NamespaceApi.md index 8dab91687..1d535df34 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/docs/NamespaceApi.md +++ b/isilon_sdk/isilon_sdk/v9_6_0/docs/NamespaceApi.md @@ -613,7 +613,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_acl** -> NamespaceAcl get_acl(namespace_path, acl, nsaccess=nsaccess, zone=zone) +> NamespaceAcl get_acl(namespace_path, acl, nsaccess=nsaccess) @@ -637,10 +637,9 @@ api_instance = isilon_sdk.v9_6_0.NamespaceApi(isilon_sdk.v9_6_0.ApiClient(config namespace_path = 'namespace_path_example' # str | Namespace path relative to /. acl = true # bool | Show access control lists. nsaccess = true # bool | Indicates that the operation is on the access point instead of the store path. (optional) -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.get_acl(namespace_path, acl, nsaccess=nsaccess, zone=zone) + api_response = api_instance.get_acl(namespace_path, acl, nsaccess=nsaccess) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->get_acl: %s\n" % e) @@ -653,7 +652,6 @@ Name | Type | Description | Notes **namespace_path** | **str**| Namespace path relative to /. | **acl** | **bool**| Show access control lists. | **nsaccess** | **bool**| Indicates that the operation is on the access point instead of the store path. | [optional] - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -793,7 +791,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_directory_metadata** -> NamespaceMetadataList get_directory_metadata(directory_metadata_path, metadata, zone=zone) +> NamespaceMetadataList get_directory_metadata(directory_metadata_path, metadata) @@ -816,10 +814,9 @@ configuration.password = 'YOUR_PASSWORD' api_instance = isilon_sdk.v9_6_0.NamespaceApi(isilon_sdk.v9_6_0.ApiClient(configuration)) directory_metadata_path = 'directory_metadata_path_example' # str | Directory path relative to /. metadata = true # bool | Show directory metadata. -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.get_directory_metadata(directory_metadata_path, metadata, zone=zone) + api_response = api_instance.get_directory_metadata(directory_metadata_path, metadata) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->get_directory_metadata: %s\n" % e) @@ -831,7 +828,6 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **directory_metadata_path** | **str**| Directory path relative to /. | **metadata** | **bool**| Show directory metadata. | - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -1031,7 +1027,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_file_metadata** -> NamespaceMetadataList get_file_metadata(file_metadata_path, metadata, zone=zone) +> NamespaceMetadataList get_file_metadata(file_metadata_path, metadata) @@ -1054,10 +1050,9 @@ configuration.password = 'YOUR_PASSWORD' api_instance = isilon_sdk.v9_6_0.NamespaceApi(isilon_sdk.v9_6_0.ApiClient(configuration)) file_metadata_path = 'file_metadata_path_example' # str | File path relative to /. metadata = true # bool | Show file metadata. -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.get_file_metadata(file_metadata_path, metadata, zone=zone) + api_response = api_instance.get_file_metadata(file_metadata_path, metadata) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->get_file_metadata: %s\n" % e) @@ -1069,7 +1064,6 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **file_metadata_path** | **str**| File path relative to /. | **metadata** | **bool**| Show file metadata. | - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -1429,7 +1423,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **set_acl** -> Empty set_acl(namespace_path, acl, namespace_acl, nsaccess=nsaccess, zone=zone) +> Empty set_acl(namespace_path, acl, namespace_acl, nsaccess=nsaccess) @@ -1454,10 +1448,9 @@ namespace_path = 'namespace_path_example' # str | Namespace path relative to /. acl = true # bool | Update access control lists. namespace_acl = isilon_sdk.v9_6_0.NamespaceAcl() # NamespaceAcl | Namespace ACL parameters model. nsaccess = true # bool | Indicates that the operation is on the access point instead of the store path. (optional) -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.set_acl(namespace_path, acl, namespace_acl, nsaccess=nsaccess, zone=zone) + api_response = api_instance.set_acl(namespace_path, acl, namespace_acl, nsaccess=nsaccess) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->set_acl: %s\n" % e) @@ -1471,7 +1464,6 @@ Name | Type | Description | Notes **acl** | **bool**| Update access control lists. | **namespace_acl** | [**NamespaceAcl**](NamespaceAcl.md)| Namespace ACL parameters model. | **nsaccess** | **bool**| Indicates that the operation is on the access point instead of the store path. | [optional] - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -1489,7 +1481,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **set_directory_metadata** -> Empty set_directory_metadata(directory_metadata_path, metadata, directory_metadata, zone=zone) +> Empty set_directory_metadata(directory_metadata_path, metadata, directory_metadata) @@ -1513,10 +1505,9 @@ api_instance = isilon_sdk.v9_6_0.NamespaceApi(isilon_sdk.v9_6_0.ApiClient(config directory_metadata_path = 'directory_metadata_path_example' # str | Directory path relative to /. metadata = true # bool | Set directory metadata. directory_metadata = isilon_sdk.v9_6_0.NamespaceMetadata() # NamespaceMetadata | Directory metadata parameters model. -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.set_directory_metadata(directory_metadata_path, metadata, directory_metadata, zone=zone) + api_response = api_instance.set_directory_metadata(directory_metadata_path, metadata, directory_metadata) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->set_directory_metadata: %s\n" % e) @@ -1529,7 +1520,6 @@ Name | Type | Description | Notes **directory_metadata_path** | **str**| Directory path relative to /. | **metadata** | **bool**| Set directory metadata. | **directory_metadata** | [**NamespaceMetadata**](NamespaceMetadata.md)| Directory metadata parameters model. | - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -1547,7 +1537,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **set_file_metadata** -> Empty set_file_metadata(file_metadata_path, metadata, file_metadata, zone=zone) +> Empty set_file_metadata(file_metadata_path, metadata, file_metadata) @@ -1571,10 +1561,9 @@ api_instance = isilon_sdk.v9_6_0.NamespaceApi(isilon_sdk.v9_6_0.ApiClient(config file_metadata_path = 'file_metadata_path_example' # str | File path relative to /. metadata = true # bool | Set file metadata. file_metadata = isilon_sdk.v9_6_0.NamespaceMetadata() # NamespaceMetadata | File metadata parameters model. -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.set_file_metadata(file_metadata_path, metadata, file_metadata, zone=zone) + api_response = api_instance.set_file_metadata(file_metadata_path, metadata, file_metadata) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->set_file_metadata: %s\n" % e) @@ -1587,7 +1576,6 @@ Name | Type | Description | Notes **file_metadata_path** | **str**| File path relative to /. | **metadata** | **bool**| Set file metadata. | **file_metadata** | [**NamespaceMetadata**](NamespaceMetadata.md)| File metadata parameters model. | - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type diff --git a/isilon_sdk/isilon_sdk/v9_6_0/docs/SupportassistSettingsContactPrimary.md b/isilon_sdk/isilon_sdk/v9_6_0/docs/SupportassistSettingsContactPrimary.md index 4c4991d5d..91e4979e1 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/docs/SupportassistSettingsContactPrimary.md +++ b/isilon_sdk/isilon_sdk/v9_6_0/docs/SupportassistSettingsContactPrimary.md @@ -6,7 +6,7 @@ Name | Type | Description | Notes **email** | **str** | Contact's email address. | [optional] [default to ''] **first_name** | **str** | Contact's first name. | [optional] [default to ''] **last_name** | **str** | Contact's last name. | [optional] [default to ''] -**phone** | **str** | Contact's phone number. | [optional] +**phone** | **str** | Contact's phone number. | [optional] [default to ''] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/changelist_entry.py b/isilon_sdk/isilon_sdk/v9_6_0/models/changelist_entry.py index 708456012..1a728ca36 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/changelist_entry.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/changelist_entry.py @@ -554,6 +554,8 @@ def physical_size(self, physical_size): """ if physical_size is None: raise ValueError("Invalid value for `physical_size`, must not be `None`") # noqa: E501 + if physical_size is not None and physical_size > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `physical_size`, must be a value less than or equal to `4294967295`") # noqa: E501 if physical_size is not None and physical_size < 0: # noqa: E501 raise ValueError("Invalid value for `physical_size`, must be a value greater than or equal to `0`") # noqa: E501 @@ -581,6 +583,8 @@ def size(self, size): """ if size is None: raise ValueError("Invalid value for `size`, must not be `None`") # noqa: E501 + if size is not None and size > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `size`, must be a value less than or equal to `4294967295`") # noqa: E501 if size is not None and size < 0: # noqa: E501 raise ValueError("Invalid value for `size`, must be a value greater than or equal to `0`") # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_email_extended.py b/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_email_extended.py index 95b0efe9f..3616a3a1a 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_email_extended.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_email_extended.py @@ -141,8 +141,8 @@ def mail_relay(self, mail_relay): :param mail_relay: The mail_relay of this ClusterEmailExtended. # noqa: E501 :type: str """ - if mail_relay is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', mail_relay): # noqa: E501 - raise ValueError(r"Invalid value for `mail_relay`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if mail_relay is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', mail_relay): # noqa: E501 + raise ValueError(r"Invalid value for `mail_relay`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._mail_relay = mail_relay @@ -170,8 +170,8 @@ def mail_sender(self, mail_sender): raise ValueError("Invalid value for `mail_sender`, length must be less than or equal to `254`") # noqa: E501 if mail_sender is not None and len(mail_sender) < 3: raise ValueError("Invalid value for `mail_sender`, length must be greater than or equal to `3`") # noqa: E501 - if mail_sender is not None and not re.search(r'[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', mail_sender): # noqa: E501 - raise ValueError(r"Invalid value for `mail_sender`, must be a follow pattern or equal to `/[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if mail_sender is not None and not re.search(r'[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', mail_sender): # noqa: E501 + raise ValueError(r"Invalid value for `mail_sender`, must be a follow pattern or equal to `/[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._mail_sender = mail_sender @@ -278,8 +278,8 @@ def smtp_auth_username(self, smtp_auth_username): raise ValueError("Invalid value for `smtp_auth_username`, length must be less than or equal to `256`") # noqa: E501 if smtp_auth_username is not None and len(smtp_auth_username) < 1: raise ValueError("Invalid value for `smtp_auth_username`, length must be greater than or equal to `1`") # noqa: E501 - if smtp_auth_username is not None and not re.search(r'^[a-zA-Z0-9!@#%^&(){}~`_ .-]+$', smtp_auth_username): # noqa: E501 - raise ValueError(r"Invalid value for `smtp_auth_username`, must be a follow pattern or equal to `/^[a-zA-Z0-9!@#%^&(){}~`_ .-]+$/`") # noqa: E501 + if smtp_auth_username is not None and not re.search(r'^[^]\"\/\\[\\:;|=,+*?<>$]+', smtp_auth_username): # noqa: E501 + raise ValueError(r"Invalid value for `smtp_auth_username`, must be a follow pattern or equal to `/^[^]\"\/\\[\\:;|=,+*?<>$]+/`") # noqa: E501 self._smtp_auth_username = smtp_auth_username diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_email_settings.py b/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_email_settings.py index b38200465..3995df095 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_email_settings.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_email_settings.py @@ -136,8 +136,8 @@ def mail_relay(self, mail_relay): """ if mail_relay is None: raise ValueError("Invalid value for `mail_relay`, must not be `None`") # noqa: E501 - if mail_relay is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', mail_relay): # noqa: E501 - raise ValueError(r"Invalid value for `mail_relay`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if mail_relay is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', mail_relay): # noqa: E501 + raise ValueError(r"Invalid value for `mail_relay`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._mail_relay = mail_relay diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_internal_networks_failover_ip_addresse.py b/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_internal_networks_failover_ip_addresse.py index 7aad0a47c..f53de6c00 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_internal_networks_failover_ip_addresse.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_internal_networks_failover_ip_addresse.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_internal_networks_failover_ip_addresse_extended.py b/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_internal_networks_failover_ip_addresse_extended.py index ab848a995..717aa23e5 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_internal_networks_failover_ip_addresse_extended.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_internal_networks_failover_ip_addresse_extended.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_internal_networks_int_a_ip_addresse.py b/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_internal_networks_int_a_ip_addresse.py index fbd1b7ce6..3349a3f65 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_internal_networks_int_a_ip_addresse.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_internal_networks_int_a_ip_addresse.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py b/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py index c4525990f..1e59cee16 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_internal_networks_int_b_ip_addresse.py b/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_internal_networks_int_b_ip_addresse.py index 4281165da..9a51d339b 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_internal_networks_int_b_ip_addresse.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_internal_networks_int_b_ip_addresse.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py b/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py index 849cba01e..1be60525a 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_mode_settings.py b/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_mode_settings.py index 212aa4fc0..4e8839553 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_mode_settings.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_mode_settings.py @@ -84,8 +84,8 @@ def cloud_storage_console(self, cloud_storage_console): raise ValueError("Invalid value for `cloud_storage_console`, length must be less than or equal to `2048`") # noqa: E501 if cloud_storage_console is not None and len(cloud_storage_console) < 11: raise ValueError("Invalid value for `cloud_storage_console`, length must be greater than or equal to `11`") # noqa: E501 - if cloud_storage_console is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', cloud_storage_console): # noqa: E501 - raise ValueError(r"Invalid value for `cloud_storage_console`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if cloud_storage_console is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', cloud_storage_console): # noqa: E501 + raise ValueError(r"Invalid value for `cloud_storage_console`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._cloud_storage_console = cloud_storage_console @@ -111,8 +111,8 @@ def monitoring(self, monitoring): raise ValueError("Invalid value for `monitoring`, length must be less than or equal to `2048`") # noqa: E501 if monitoring is not None and len(monitoring) < 11: raise ValueError("Invalid value for `monitoring`, length must be greater than or equal to `11`") # noqa: E501 - if monitoring is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', monitoring): # noqa: E501 - raise ValueError(r"Invalid value for `monitoring`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if monitoring is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', monitoring): # noqa: E501 + raise ValueError(r"Invalid value for `monitoring`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._monitoring = monitoring @@ -161,8 +161,8 @@ def support(self, support): raise ValueError("Invalid value for `support`, length must be less than or equal to `2048`") # noqa: E501 if support is not None and len(support) < 11: raise ValueError("Invalid value for `support`, length must be greater than or equal to `11`") # noqa: E501 - if support is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', support): # noqa: E501 - raise ValueError(r"Invalid value for `support`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if support is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', support): # noqa: E501 + raise ValueError(r"Invalid value for `support`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._support = support diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_mode_settings_extended.py b/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_mode_settings_extended.py index 9e59e40f4..5810e20a2 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_mode_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_mode_settings_extended.py @@ -79,8 +79,8 @@ def cloud_storage_console(self, cloud_storage_console): raise ValueError("Invalid value for `cloud_storage_console`, length must be less than or equal to `2048`") # noqa: E501 if cloud_storage_console is not None and len(cloud_storage_console) < 11: raise ValueError("Invalid value for `cloud_storage_console`, length must be greater than or equal to `11`") # noqa: E501 - if cloud_storage_console is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', cloud_storage_console): # noqa: E501 - raise ValueError(r"Invalid value for `cloud_storage_console`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if cloud_storage_console is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', cloud_storage_console): # noqa: E501 + raise ValueError(r"Invalid value for `cloud_storage_console`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._cloud_storage_console = cloud_storage_console @@ -106,8 +106,8 @@ def monitoring(self, monitoring): raise ValueError("Invalid value for `monitoring`, length must be less than or equal to `2048`") # noqa: E501 if monitoring is not None and len(monitoring) < 11: raise ValueError("Invalid value for `monitoring`, length must be greater than or equal to `11`") # noqa: E501 - if monitoring is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', monitoring): # noqa: E501 - raise ValueError(r"Invalid value for `monitoring`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if monitoring is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', monitoring): # noqa: E501 + raise ValueError(r"Invalid value for `monitoring`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._monitoring = monitoring @@ -133,8 +133,8 @@ def support(self, support): raise ValueError("Invalid value for `support`, length must be less than or equal to `2048`") # noqa: E501 if support is not None and len(support) < 11: raise ValueError("Invalid value for `support`, length must be greater than or equal to `11`") # noqa: E501 - if support is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', support): # noqa: E501 - raise ValueError(r"Invalid value for `support`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if support is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', support): # noqa: E501 + raise ValueError(r"Invalid value for `support`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._support = support diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_node.py b/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_node.py index 3df607b9e..10dd29094 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_node.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_node.py @@ -218,8 +218,8 @@ def internal_ip_address(self, internal_ip_address): raise ValueError("Invalid value for `internal_ip_address`, length must be less than or equal to `45`") # noqa: E501 if internal_ip_address is not None and len(internal_ip_address) < 2: raise ValueError("Invalid value for `internal_ip_address`, length must be greater than or equal to `2`") # noqa: E501 - if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 - raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 + raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._internal_ip_address = internal_ip_address diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_node_extended.py b/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_node_extended.py index 380d3b97e..bd2731eae 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_node_extended.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/cluster_node_extended.py @@ -218,8 +218,8 @@ def internal_ip_address(self, internal_ip_address): raise ValueError("Invalid value for `internal_ip_address`, length must be less than or equal to `45`") # noqa: E501 if internal_ip_address is not None and len(internal_ip_address) < 2: raise ValueError("Invalid value for `internal_ip_address`, length must be greater than or equal to `2`") # noqa: E501 - if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 - raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 + raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._internal_ip_address = internal_ip_address diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/config_network_network.py b/isilon_sdk/isilon_sdk/v9_6_0/models/config_network_network.py index 27bff5a54..10c738022 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/config_network_network.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/config_network_network.py @@ -81,8 +81,8 @@ def gateway(self, gateway): raise ValueError("Invalid value for `gateway`, length must be less than or equal to `45`") # noqa: E501 if gateway is not None and len(gateway) < 2: raise ValueError("Invalid value for `gateway`, length must be greater than or equal to `2`") # noqa: E501 - if gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', gateway): # noqa: E501 - raise ValueError(r"Invalid value for `gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', gateway): # noqa: E501 + raise ValueError(r"Invalid value for `gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._gateway = gateway diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/config_network_network_range.py b/isilon_sdk/isilon_sdk/v9_6_0/models/config_network_network_range.py index c6dd98640..ca8ec154d 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/config_network_network_range.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/config_network_network_range.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -105,8 +105,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/config_node.py b/isilon_sdk/isilon_sdk/v9_6_0/models/config_node.py index d5dc20bd8..64b4ef160 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/config_node.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/config_node.py @@ -118,8 +118,8 @@ def ip_addr(self, ip_addr): raise ValueError("Invalid value for `ip_addr`, length must be less than or equal to `45`") # noqa: E501 if ip_addr is not None and len(ip_addr) < 2: raise ValueError("Invalid value for `ip_addr`, length must be greater than or equal to `2`") # noqa: E501 - if ip_addr is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ip_addr): # noqa: E501 - raise ValueError(r"Invalid value for `ip_addr`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if ip_addr is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ip_addr): # noqa: E501 + raise ValueError(r"Invalid value for `ip_addr`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._ip_addr = ip_addr diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/diagnostics_gather_settings_extended.py b/isilon_sdk/isilon_sdk/v9_6_0/models/diagnostics_gather_settings_extended.py index baba0c68b..3f9e3cd27 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/diagnostics_gather_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/diagnostics_gather_settings_extended.py @@ -213,8 +213,8 @@ def ftp_upload_host(self, ftp_upload_host): :param ftp_upload_host: The ftp_upload_host of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_host = ftp_upload_host @@ -332,8 +332,8 @@ def ftp_upload_proxy(self, ftp_upload_proxy): :param ftp_upload_proxy: The ftp_upload_proxy of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_proxy = ftp_upload_proxy @@ -532,8 +532,8 @@ def http_upload_host(self, http_upload_host): :param http_upload_host: The http_upload_host of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_host = http_upload_host @@ -582,8 +582,8 @@ def http_upload_proxy(self, http_upload_proxy): :param http_upload_proxy: The http_upload_proxy of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_proxy = http_upload_proxy diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/diagnostics_gather_settings_settings.py b/isilon_sdk/isilon_sdk/v9_6_0/models/diagnostics_gather_settings_settings.py index ec6b423f7..8b11e3ec4 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/diagnostics_gather_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/diagnostics_gather_settings_settings.py @@ -208,8 +208,8 @@ def ftp_upload_host(self, ftp_upload_host): :param ftp_upload_host: The ftp_upload_host of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_host = ftp_upload_host @@ -304,8 +304,8 @@ def ftp_upload_proxy(self, ftp_upload_proxy): :param ftp_upload_proxy: The ftp_upload_proxy of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_proxy = ftp_upload_proxy @@ -504,8 +504,8 @@ def http_upload_host(self, http_upload_host): :param http_upload_host: The http_upload_host of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_host = http_upload_host @@ -554,8 +554,8 @@ def http_upload_proxy(self, http_upload_proxy): :param http_upload_proxy: The http_upload_proxy of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_proxy = http_upload_proxy diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/diagnostics_netlogger_settings_settings.py b/isilon_sdk/isilon_sdk/v9_6_0/models/diagnostics_netlogger_settings_settings.py index 38ecf9848..3208d6d71 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/diagnostics_netlogger_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/diagnostics_netlogger_settings_settings.py @@ -102,8 +102,8 @@ def clients(self, clients): :param clients: The clients of this DiagnosticsNetloggerSettingsSettings. # noqa: E501 :type: str """ - if clients is not None and not re.search(r'^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$', clients): # noqa: E501 - raise ValueError(r"Invalid value for `clients`, must be a follow pattern or equal to `/^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$/`") # noqa: E501 + if clients is not None and not re.search(r'^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$', clients): # noqa: E501 + raise ValueError(r"Invalid value for `clients`, must be a follow pattern or equal to `/^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$/`") # noqa: E501 self._clients = clients diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/event_channel_parameters.py b/isilon_sdk/isilon_sdk/v9_6_0/models/event_channel_parameters.py index 704deb78c..07c2a91ab 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/event_channel_parameters.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/event_channel_parameters.py @@ -205,8 +205,8 @@ def custom_template(self, custom_template): raise ValueError("Invalid value for `custom_template`, length must be less than or equal to `4096`") # noqa: E501 if custom_template is not None and len(custom_template) < 0: raise ValueError("Invalid value for `custom_template`, length must be greater than or equal to `0`") # noqa: E501 - if custom_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', custom_template): # noqa: E501 - raise ValueError(r"Invalid value for `custom_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if custom_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', custom_template): # noqa: E501 + raise ValueError(r"Invalid value for `custom_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._custom_template = custom_template diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/groupnet_subnet.py b/isilon_sdk/isilon_sdk/v9_6_0/models/groupnet_subnet.py index b506bd2bb..f2a4f8159 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/groupnet_subnet.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/groupnet_subnet.py @@ -331,8 +331,8 @@ def sc_service_name(self, sc_service_name): raise ValueError("Invalid value for `sc_service_name`, length must be less than or equal to `2048`") # noqa: E501 if sc_service_name is not None and len(sc_service_name) < 0: raise ValueError("Invalid value for `sc_service_name`, length must be greater than or equal to `0`") # noqa: E501 - if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 - raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 + raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_service_name = sc_service_name diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/groupnet_subnet_create_params.py b/isilon_sdk/isilon_sdk/v9_6_0/models/groupnet_subnet_create_params.py index b4125410e..42ca11899 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/groupnet_subnet_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/groupnet_subnet_create_params.py @@ -337,8 +337,8 @@ def sc_service_name(self, sc_service_name): raise ValueError("Invalid value for `sc_service_name`, length must be less than or equal to `2048`") # noqa: E501 if sc_service_name is not None and len(sc_service_name) < 0: raise ValueError("Invalid value for `sc_service_name`, length must be greater than or equal to `0`") # noqa: E501 - if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 - raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 + raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_service_name = sc_service_name diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/groupnet_subnet_extended.py b/isilon_sdk/isilon_sdk/v9_6_0/models/groupnet_subnet_extended.py index 10f4f6ffe..a3d395dce 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/groupnet_subnet_extended.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/groupnet_subnet_extended.py @@ -361,8 +361,8 @@ def sc_service_name(self, sc_service_name): raise ValueError("Invalid value for `sc_service_name`, length must be less than or equal to `2048`") # noqa: E501 if sc_service_name is not None and len(sc_service_name) < 0: raise ValueError("Invalid value for `sc_service_name`, length must be greater than or equal to `0`") # noqa: E501 - if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 - raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 + raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_service_name = sc_service_name diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/network_interface.py b/isilon_sdk/isilon_sdk/v9_6_0/models/network_interface.py index 527a39f76..4f5a4d231 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/network_interface.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/network_interface.py @@ -203,8 +203,8 @@ def ipv4_gateway(self, ipv4_gateway): raise ValueError("Invalid value for `ipv4_gateway`, length must be less than or equal to `16`") # noqa: E501 if ipv4_gateway is not None and len(ipv4_gateway) < 1: raise ValueError("Invalid value for `ipv4_gateway`, length must be greater than or equal to `1`") # noqa: E501 - if ipv4_gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ipv4_gateway): # noqa: E501 - raise ValueError(r"Invalid value for `ipv4_gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if ipv4_gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ipv4_gateway): # noqa: E501 + raise ValueError(r"Invalid value for `ipv4_gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._ipv4_gateway = ipv4_gateway diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/network_interface_vlan.py b/isilon_sdk/isilon_sdk/v9_6_0/models/network_interface_vlan.py index ec6da352d..9ec9ac0ba 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/network_interface_vlan.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/network_interface_vlan.py @@ -197,8 +197,8 @@ def ipv4_gateway(self, ipv4_gateway): raise ValueError("Invalid value for `ipv4_gateway`, length must be less than or equal to `16`") # noqa: E501 if ipv4_gateway is not None and len(ipv4_gateway) < 1: raise ValueError("Invalid value for `ipv4_gateway`, length must be greater than or equal to `1`") # noqa: E501 - if ipv4_gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ipv4_gateway): # noqa: E501 - raise ValueError(r"Invalid value for `ipv4_gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if ipv4_gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ipv4_gateway): # noqa: E501 + raise ValueError(r"Invalid value for `ipv4_gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._ipv4_gateway = ipv4_gateway diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/network_pool.py b/isilon_sdk/isilon_sdk/v9_6_0/models/network_pool.py index 03bbd1de4..d085c8f35 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/network_pool.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/network_pool.py @@ -642,8 +642,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/node_internal_ip_address_node.py b/isilon_sdk/isilon_sdk/v9_6_0/models/node_internal_ip_address_node.py index d661bb897..ffd9dea25 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/node_internal_ip_address_node.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/node_internal_ip_address_node.py @@ -146,8 +146,8 @@ def internal_ip_address(self, internal_ip_address): raise ValueError("Invalid value for `internal_ip_address`, length must be less than or equal to `45`") # noqa: E501 if internal_ip_address is not None and len(internal_ip_address) < 2: raise ValueError("Invalid value for `internal_ip_address`, length must be greater than or equal to `2`") # noqa: E501 - if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 - raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 + raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._internal_ip_address = internal_ip_address diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/nodes_node_internal_ip_address.py b/isilon_sdk/isilon_sdk/v9_6_0/models/nodes_node_internal_ip_address.py index c48479728..7953cfab7 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/nodes_node_internal_ip_address.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/nodes_node_internal_ip_address.py @@ -72,8 +72,8 @@ def internal_ip_address(self, internal_ip_address): raise ValueError("Invalid value for `internal_ip_address`, length must be less than or equal to `45`") # noqa: E501 if internal_ip_address is not None and len(internal_ip_address) < 2: raise ValueError("Invalid value for `internal_ip_address`, length must be greater than or equal to `2`") # noqa: E501 - if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 - raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 + raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._internal_ip_address = internal_ip_address diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_ads_ads_item.py b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_ads_ads_item.py index 1024f8e0a..bac809f8e 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_ads_ads_item.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_ads_ads_item.py @@ -652,8 +652,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_ads_ads_item_extended.py b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_ads_ads_item_extended.py index 260b9d2e0..373503bba 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_ads_ads_item_extended.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_ads_ads_item_extended.py @@ -642,8 +642,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_ads_id_params.py b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_ads_id_params.py index 6b65fed7f..06ab519f5 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_ads_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_ads_id_params.py @@ -554,8 +554,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_ads_item.py b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_ads_item.py index f4d2d42d3..83a089a48 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_ads_item.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_ads_item.py @@ -598,8 +598,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_file_file_item.py b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_file_file_item.py index 6181027d5..d35575024 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_file_file_item.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_file_file_item.py @@ -466,8 +466,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_file_id_params.py b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_file_id_params.py index 849b313cc..1e064e31d 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_file_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_file_id_params.py @@ -474,8 +474,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_file_item.py b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_file_item.py index d81aad446..fff0191c5 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_file_item.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_file_item.py @@ -445,8 +445,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_ldap_id_params.py b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_ldap_id_params.py index c6a9e1727..5b9c3d8d2 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_ldap_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_ldap_id_params.py @@ -1108,8 +1108,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template @@ -2076,8 +2076,8 @@ def tls_protocol_min(self, tls_protocol_min): raise ValueError("Invalid value for `tls_protocol_min`, length must be less than or equal to `255`") # noqa: E501 if tls_protocol_min is not None and len(tls_protocol_min) < 0: raise ValueError("Invalid value for `tls_protocol_min`, length must be greater than or equal to `0`") # noqa: E501 - if tls_protocol_min is not None and not re.search(r'^[0-9]+[.][0-9]+$', tls_protocol_min): # noqa: E501 - raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+[.][0-9]+$/`") # noqa: E501 + if tls_protocol_min is not None and not re.search(r'^[0-9]+\\.[0-9]+$', tls_protocol_min): # noqa: E501 + raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+\\.[0-9]+$/`") # noqa: E501 self._tls_protocol_min = tls_protocol_min diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_ldap_item.py b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_ldap_item.py index 470b942db..627874b47 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_ldap_item.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_ldap_item.py @@ -1151,8 +1151,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template @@ -2153,8 +2153,8 @@ def tls_protocol_min(self, tls_protocol_min): raise ValueError("Invalid value for `tls_protocol_min`, length must be less than or equal to `255`") # noqa: E501 if tls_protocol_min is not None and len(tls_protocol_min) < 0: raise ValueError("Invalid value for `tls_protocol_min`, length must be greater than or equal to `0`") # noqa: E501 - if tls_protocol_min is not None and not re.search(r'^[0-9]+[.][0-9]+$', tls_protocol_min): # noqa: E501 - raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+[.][0-9]+$/`") # noqa: E501 + if tls_protocol_min is not None and not re.search(r'^[0-9]+\\.[0-9]+$', tls_protocol_min): # noqa: E501 + raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+\\.[0-9]+$/`") # noqa: E501 self._tls_protocol_min = tls_protocol_min diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_ldap_ldap_item.py b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_ldap_ldap_item.py index 679dc0a7c..a60da74df 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_ldap_ldap_item.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_ldap_ldap_item.py @@ -1135,8 +1135,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template @@ -2181,8 +2181,8 @@ def tls_protocol_min(self, tls_protocol_min): raise ValueError("Invalid value for `tls_protocol_min`, length must be less than or equal to `255`") # noqa: E501 if tls_protocol_min is not None and len(tls_protocol_min) < 0: raise ValueError("Invalid value for `tls_protocol_min`, length must be greater than or equal to `0`") # noqa: E501 - if tls_protocol_min is not None and not re.search(r'^[0-9]+[.][0-9]+$', tls_protocol_min): # noqa: E501 - raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+[.][0-9]+$/`") # noqa: E501 + if tls_protocol_min is not None and not re.search(r'^[0-9]+\\.[0-9]+$', tls_protocol_min): # noqa: E501 + raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+\\.[0-9]+$/`") # noqa: E501 self._tls_protocol_min = tls_protocol_min diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_local_id_params.py b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_local_id_params.py index bbe890b74..7a6c1f6e3 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_local_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_local_id_params.py @@ -263,8 +263,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_local_local_item.py b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_local_local_item.py index 2aafab204..2796288ab 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_local_local_item.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_local_local_item.py @@ -227,8 +227,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_nis_id_params.py b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_nis_id_params.py index d670e80cf..31d15312b 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_nis_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_nis_id_params.py @@ -464,8 +464,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_nis_item.py b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_nis_item.py index 05711196f..053661cd6 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_nis_item.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_nis_item.py @@ -493,8 +493,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_nis_nis_item.py b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_nis_nis_item.py index 2014b97e9..1dab334ee 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_nis_nis_item.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_nis_nis_item.py @@ -516,8 +516,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_saml_services_sp_extended.py b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_saml_services_sp_extended.py index 9dadedccf..a5ae203ee 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_saml_services_sp_extended.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_saml_services_sp_extended.py @@ -101,8 +101,8 @@ def email(self, email): raise ValueError("Invalid value for `email`, length must be less than or equal to `254`") # noqa: E501 if email is not None and len(email) < 3: raise ValueError("Invalid value for `email`, length must be greater than or equal to `3`") # noqa: E501 - if email is not None and not re.search(r'[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', email): # noqa: E501 - raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if email is not None and not re.search(r'[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', email): # noqa: E501 + raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._email = email diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_saml_services_sp_sp.py b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_saml_services_sp_sp.py index 4a7333484..1718b3ab6 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/providers_saml_services_sp_sp.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/providers_saml_services_sp_sp.py @@ -153,8 +153,8 @@ def email(self, email): raise ValueError("Invalid value for `email`, length must be less than or equal to `254`") # noqa: E501 if email is not None and len(email) < 3: raise ValueError("Invalid value for `email`, length must be greater than or equal to `3`") # noqa: E501 - if email is not None and not re.search(r'[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', email): # noqa: E501 - raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if email is not None and not re.search(r'[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', email): # noqa: E501 + raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._email = email diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/s3_settings_zone_settings.py b/isilon_sdk/isilon_sdk/v9_6_0/models/s3_settings_zone_settings.py index db86323b3..d8cfe6c26 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/s3_settings_zone_settings.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/s3_settings_zone_settings.py @@ -96,8 +96,8 @@ def base_domain(self, base_domain): raise ValueError("Invalid value for `base_domain`, length must be less than or equal to `255`") # noqa: E501 if base_domain is not None and len(base_domain) < 0: raise ValueError("Invalid value for `base_domain`, length must be greater than or equal to `0`") # noqa: E501 - if base_domain is not None and not re.search(r'^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$', base_domain): # noqa: E501 - raise ValueError(r"Invalid value for `base_domain`, must be a follow pattern or equal to `/^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$/`") # noqa: E501 + if base_domain is not None and not re.search(r'^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$', base_domain): # noqa: E501 + raise ValueError(r"Invalid value for `base_domain`, must be a follow pattern or equal to `/^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$/`") # noqa: E501 self._base_domain = base_domain diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/snmp_settings_extended.py b/isilon_sdk/isilon_sdk/v9_6_0/models/snmp_settings_extended.py index 120e4b6a3..803feb03c 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/snmp_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/snmp_settings_extended.py @@ -386,8 +386,8 @@ def system_contact(self, system_contact): raise ValueError("Invalid value for `system_contact`, length must be less than or equal to `254`") # noqa: E501 if system_contact is not None and len(system_contact) < 3: raise ValueError("Invalid value for `system_contact`, length must be greater than or equal to `3`") # noqa: E501 - if system_contact is not None and not re.search(r'[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', system_contact): # noqa: E501 - raise ValueError(r"Invalid value for `system_contact`, must be a follow pattern or equal to `/[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if system_contact is not None and not re.search(r'[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', system_contact): # noqa: E501 + raise ValueError(r"Invalid value for `system_contact`, must be a follow pattern or equal to `/[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._system_contact = system_contact diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/snmp_settings_settings.py b/isilon_sdk/isilon_sdk/v9_6_0/models/snmp_settings_settings.py index 1f78db0fa..e5db4e897 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/snmp_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/snmp_settings_settings.py @@ -322,8 +322,8 @@ def system_contact(self, system_contact): raise ValueError("Invalid value for `system_contact`, length must be less than or equal to `254`") # noqa: E501 if system_contact is not None and len(system_contact) < 3: raise ValueError("Invalid value for `system_contact`, length must be greater than or equal to `3`") # noqa: E501 - if system_contact is not None and not re.search(r'[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', system_contact): # noqa: E501 - raise ValueError(r"Invalid value for `system_contact`, must be a follow pattern or equal to `/[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if system_contact is not None and not re.search(r'[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', system_contact): # noqa: E501 + raise ValueError(r"Invalid value for `system_contact`, must be a follow pattern or equal to `/[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._system_contact = system_contact diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/ssh_settings_extended.py b/isilon_sdk/isilon_sdk/v9_6_0/models/ssh_settings_extended.py index 6df0cda78..d319af7e9 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/ssh_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/ssh_settings_extended.py @@ -303,8 +303,8 @@ def ca_signature_algorithms(self, ca_signature_algorithms): raise ValueError("Invalid value for `ca_signature_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if ca_signature_algorithms is not None and len(ca_signature_algorithms) < 0: raise ValueError("Invalid value for `ca_signature_algorithms`, length must be greater than or equal to `0`") # noqa: E501 - if ca_signature_algorithms is not None and not re.search(r'^([+]?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$', ca_signature_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `ca_signature_algorithms`, must be a follow pattern or equal to `/^([+]?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$/`") # noqa: E501 + if ca_signature_algorithms is not None and not re.search(r'^(\\+?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$', ca_signature_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `ca_signature_algorithms`, must be a follow pattern or equal to `/^(\\+?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$/`") # noqa: E501 self._ca_signature_algorithms = ca_signature_algorithms @@ -355,8 +355,8 @@ def ciphers(self, ciphers): raise ValueError("Invalid value for `ciphers`, length must be less than or equal to `4096`") # noqa: E501 if ciphers is not None and len(ciphers) < 7: raise ValueError("Invalid value for `ciphers`, length must be greater than or equal to `7`") # noqa: E501 - if ciphers is not None and not re.search(r'^([+]?)(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com)(,(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com))*$', ciphers): # noqa: E501 - raise ValueError(r"Invalid value for `ciphers`, must be a follow pattern or equal to `/^([+]?)(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com)(,(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com))*$/`") # noqa: E501 + if ciphers is not None and not re.search(r'^(\\+?)(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com)(,(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com))*$', ciphers): # noqa: E501 + raise ValueError(r"Invalid value for `ciphers`, must be a follow pattern or equal to `/^(\\+?)(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com)(,(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com))*$/`") # noqa: E501 self._ciphers = ciphers @@ -384,8 +384,8 @@ def host_key_algorithms(self, host_key_algorithms): raise ValueError("Invalid value for `host_key_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if host_key_algorithms is not None and len(host_key_algorithms) < 7: raise ValueError("Invalid value for `host_key_algorithms`, length must be greater than or equal to `7`") # noqa: E501 - if host_key_algorithms is not None and not re.search(r'^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com))*$', host_key_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `host_key_algorithms`, must be a follow pattern or equal to `/^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com))*$/`") # noqa: E501 + if host_key_algorithms is not None and not re.search(r'^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com))*$', host_key_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `host_key_algorithms`, must be a follow pattern or equal to `/^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com))*$/`") # noqa: E501 self._host_key_algorithms = host_key_algorithms @@ -436,8 +436,8 @@ def kex_algorithms(self, kex_algorithms): raise ValueError("Invalid value for `kex_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if kex_algorithms is not None and len(kex_algorithms) < 18: raise ValueError("Invalid value for `kex_algorithms`, length must be greater than or equal to `18`") # noqa: E501 - if kex_algorithms is not None and not re.search(r'^([+]?)(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$', kex_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `kex_algorithms`, must be a follow pattern or equal to `/^([+]?)(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$/`") # noqa: E501 + if kex_algorithms is not None and not re.search(r'^(\\+?)(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$', kex_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `kex_algorithms`, must be a follow pattern or equal to `/^(\\+?)(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$/`") # noqa: E501 self._kex_algorithms = kex_algorithms @@ -544,8 +544,8 @@ def macs(self, macs): raise ValueError("Invalid value for `macs`, length must be less than or equal to `4096`") # noqa: E501 if macs is not None and len(macs) < 8: raise ValueError("Invalid value for `macs`, length must be greater than or equal to `8`") # noqa: E501 - if macs is not None and not re.search(r'^([+]?)(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$', macs): # noqa: E501 - raise ValueError(r"Invalid value for `macs`, must be a follow pattern or equal to `/^([+]?)(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$/`") # noqa: E501 + if macs is not None and not re.search(r'^(\\+?)(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$', macs): # noqa: E501 + raise ValueError(r"Invalid value for `macs`, must be a follow pattern or equal to `/^(\\+?)(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$/`") # noqa: E501 self._macs = macs @@ -802,8 +802,8 @@ def pubkey_accepted_key_types(self, pubkey_accepted_key_types): raise ValueError("Invalid value for `pubkey_accepted_key_types`, length must be less than or equal to `4096`") # noqa: E501 if pubkey_accepted_key_types is not None and len(pubkey_accepted_key_types) < 7: raise ValueError("Invalid value for `pubkey_accepted_key_types`, length must be greater than or equal to `7`") # noqa: E501 - if pubkey_accepted_key_types is not None and not re.search(r'^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com))*$', pubkey_accepted_key_types): # noqa: E501 - raise ValueError(r"Invalid value for `pubkey_accepted_key_types`, must be a follow pattern or equal to `/^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com))*$/`") # noqa: E501 + if pubkey_accepted_key_types is not None and not re.search(r'^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com))*$', pubkey_accepted_key_types): # noqa: E501 + raise ValueError(r"Invalid value for `pubkey_accepted_key_types`, must be a follow pattern or equal to `/^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com))*$/`") # noqa: E501 self._pubkey_accepted_key_types = pubkey_accepted_key_types @@ -877,6 +877,8 @@ def subsystem(self, subsystem): raise ValueError("Invalid value for `subsystem`, length must be less than or equal to `1024`") # noqa: E501 if subsystem is not None and len(subsystem) < 0: raise ValueError("Invalid value for `subsystem`, length must be greater than or equal to `0`") # noqa: E501 + if subsystem is not None and not re.search(r'b\'^[^\\\\n]*$\'', subsystem): # noqa: E501 + raise ValueError(r"Invalid value for `subsystem`, must be a follow pattern or equal to `/b'^[^\\\\n]*$'/`") # noqa: E501 self._subsystem = subsystem diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/ssh_settings_settings.py b/isilon_sdk/isilon_sdk/v9_6_0/models/ssh_settings_settings.py index 36fd4c0cc..27c9515a9 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/ssh_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/ssh_settings_settings.py @@ -303,8 +303,8 @@ def ca_signature_algorithms(self, ca_signature_algorithms): raise ValueError("Invalid value for `ca_signature_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if ca_signature_algorithms is not None and len(ca_signature_algorithms) < 0: raise ValueError("Invalid value for `ca_signature_algorithms`, length must be greater than or equal to `0`") # noqa: E501 - if ca_signature_algorithms is not None and not re.search(r'^([+]?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$', ca_signature_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `ca_signature_algorithms`, must be a follow pattern or equal to `/^([+]?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$/`") # noqa: E501 + if ca_signature_algorithms is not None and not re.search(r'^(\\+?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$', ca_signature_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `ca_signature_algorithms`, must be a follow pattern or equal to `/^(\\+?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$/`") # noqa: E501 self._ca_signature_algorithms = ca_signature_algorithms @@ -355,8 +355,8 @@ def ciphers(self, ciphers): raise ValueError("Invalid value for `ciphers`, length must be less than or equal to `4096`") # noqa: E501 if ciphers is not None and len(ciphers) < 7: raise ValueError("Invalid value for `ciphers`, length must be greater than or equal to `7`") # noqa: E501 - if ciphers is not None and not re.search(r'^([+]?)(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com)(,(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com))*$', ciphers): # noqa: E501 - raise ValueError(r"Invalid value for `ciphers`, must be a follow pattern or equal to `/^([+]?)(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com)(,(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com))*$/`") # noqa: E501 + if ciphers is not None and not re.search(r'^(\\+?)(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com)(,(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com))*$', ciphers): # noqa: E501 + raise ValueError(r"Invalid value for `ciphers`, must be a follow pattern or equal to `/^(\\+?)(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com)(,(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com))*$/`") # noqa: E501 self._ciphers = ciphers @@ -384,8 +384,8 @@ def host_key_algorithms(self, host_key_algorithms): raise ValueError("Invalid value for `host_key_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if host_key_algorithms is not None and len(host_key_algorithms) < 7: raise ValueError("Invalid value for `host_key_algorithms`, length must be greater than or equal to `7`") # noqa: E501 - if host_key_algorithms is not None and not re.search(r'^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com))*$', host_key_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `host_key_algorithms`, must be a follow pattern or equal to `/^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com))*$/`") # noqa: E501 + if host_key_algorithms is not None and not re.search(r'^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com))*$', host_key_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `host_key_algorithms`, must be a follow pattern or equal to `/^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com))*$/`") # noqa: E501 self._host_key_algorithms = host_key_algorithms @@ -436,8 +436,8 @@ def kex_algorithms(self, kex_algorithms): raise ValueError("Invalid value for `kex_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if kex_algorithms is not None and len(kex_algorithms) < 18: raise ValueError("Invalid value for `kex_algorithms`, length must be greater than or equal to `18`") # noqa: E501 - if kex_algorithms is not None and not re.search(r'^([+]?)(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$', kex_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `kex_algorithms`, must be a follow pattern or equal to `/^([+]?)(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$/`") # noqa: E501 + if kex_algorithms is not None and not re.search(r'^(\\+?)(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$', kex_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `kex_algorithms`, must be a follow pattern or equal to `/^(\\+?)(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$/`") # noqa: E501 self._kex_algorithms = kex_algorithms @@ -544,8 +544,8 @@ def macs(self, macs): raise ValueError("Invalid value for `macs`, length must be less than or equal to `4096`") # noqa: E501 if macs is not None and len(macs) < 8: raise ValueError("Invalid value for `macs`, length must be greater than or equal to `8`") # noqa: E501 - if macs is not None and not re.search(r'^([+]?)(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$', macs): # noqa: E501 - raise ValueError(r"Invalid value for `macs`, must be a follow pattern or equal to `/^([+]?)(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$/`") # noqa: E501 + if macs is not None and not re.search(r'^(\\+?)(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$', macs): # noqa: E501 + raise ValueError(r"Invalid value for `macs`, must be a follow pattern or equal to `/^(\\+?)(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$/`") # noqa: E501 self._macs = macs @@ -802,8 +802,8 @@ def pubkey_accepted_key_types(self, pubkey_accepted_key_types): raise ValueError("Invalid value for `pubkey_accepted_key_types`, length must be less than or equal to `4096`") # noqa: E501 if pubkey_accepted_key_types is not None and len(pubkey_accepted_key_types) < 7: raise ValueError("Invalid value for `pubkey_accepted_key_types`, length must be greater than or equal to `7`") # noqa: E501 - if pubkey_accepted_key_types is not None and not re.search(r'^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com))*$', pubkey_accepted_key_types): # noqa: E501 - raise ValueError(r"Invalid value for `pubkey_accepted_key_types`, must be a follow pattern or equal to `/^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com))*$/`") # noqa: E501 + if pubkey_accepted_key_types is not None and not re.search(r'^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com))*$', pubkey_accepted_key_types): # noqa: E501 + raise ValueError(r"Invalid value for `pubkey_accepted_key_types`, must be a follow pattern or equal to `/^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com))*$/`") # noqa: E501 self._pubkey_accepted_key_types = pubkey_accepted_key_types @@ -877,6 +877,8 @@ def subsystem(self, subsystem): raise ValueError("Invalid value for `subsystem`, length must be less than or equal to `1024`") # noqa: E501 if subsystem is not None and len(subsystem) < 0: raise ValueError("Invalid value for `subsystem`, length must be greater than or equal to `0`") # noqa: E501 + if subsystem is not None and not re.search(r'b\'^[^\\\\n]*$\'', subsystem): # noqa: E501 + raise ValueError(r"Invalid value for `subsystem`, must be a follow pattern or equal to `/b'^[^\\\\n]*$'/`") # noqa: E501 self._subsystem = subsystem diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/subnets_subnet_pool.py b/isilon_sdk/isilon_sdk/v9_6_0/models/subnets_subnet_pool.py index 849da6087..1d2b45851 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/subnets_subnet_pool.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/subnets_subnet_pool.py @@ -450,8 +450,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/subnets_subnet_pool_create_params.py b/isilon_sdk/isilon_sdk/v9_6_0/models/subnets_subnet_pool_create_params.py index f9da8d5d4..26df5058e 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/subnets_subnet_pool_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/subnets_subnet_pool_create_params.py @@ -475,8 +475,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/subnets_subnet_pool_range.py b/isilon_sdk/isilon_sdk/v9_6_0/models/subnets_subnet_pool_range.py index 6ae306e73..e437e3ad4 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/subnets_subnet_pool_range.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/subnets_subnet_pool_range.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `40`") # noqa: E501 if high is not None and len(high) < 1: raise ValueError("Invalid value for `high`, length must be greater than or equal to `1`") # noqa: E501 - if high is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if high is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `40`") # noqa: E501 if low is not None and len(low) < 1: raise ValueError("Invalid value for `low`, length must be greater than or equal to `1`") # noqa: E501 - if low is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if low is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/subnets_subnet_pool_static_route.py b/isilon_sdk/isilon_sdk/v9_6_0/models/subnets_subnet_pool_static_route.py index b772df5f1..2a02fd6e4 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/subnets_subnet_pool_static_route.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/subnets_subnet_pool_static_route.py @@ -80,8 +80,8 @@ def gateway(self, gateway): raise ValueError("Invalid value for `gateway`, length must be less than or equal to `40`") # noqa: E501 if gateway is not None and len(gateway) < 1: raise ValueError("Invalid value for `gateway`, length must be greater than or equal to `1`") # noqa: E501 - if gateway is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', gateway): # noqa: E501 - raise ValueError(r"Invalid value for `gateway`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if gateway is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', gateway): # noqa: E501 + raise ValueError(r"Invalid value for `gateway`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._gateway = gateway @@ -140,8 +140,8 @@ def subnet(self, subnet): raise ValueError("Invalid value for `subnet`, length must be less than or equal to `40`") # noqa: E501 if subnet is not None and len(subnet) < 1: raise ValueError("Invalid value for `subnet`, length must be greater than or equal to `1`") # noqa: E501 - if subnet is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', subnet): # noqa: E501 - raise ValueError(r"Invalid value for `subnet`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if subnet is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', subnet): # noqa: E501 + raise ValueError(r"Invalid value for `subnet`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._subnet = subnet diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/subnets_subnet_pools_pool.py b/isilon_sdk/isilon_sdk/v9_6_0/models/subnets_subnet_pools_pool.py index e0e53371f..ef303493d 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/subnets_subnet_pools_pool.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/subnets_subnet_pools_pool.py @@ -653,8 +653,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/supportassist_settings_connection_gateway_endpoint.py b/isilon_sdk/isilon_sdk/v9_6_0/models/supportassist_settings_connection_gateway_endpoint.py index 61dd2c620..afcd562f8 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/supportassist_settings_connection_gateway_endpoint.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/supportassist_settings_connection_gateway_endpoint.py @@ -120,8 +120,8 @@ def host(self, host): raise ValueError("Invalid value for `host`, length must be less than or equal to `255`") # noqa: E501 if host is not None and len(host) < 0: raise ValueError("Invalid value for `host`, length must be greater than or equal to `0`") # noqa: E501 - if host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$)', host): # noqa: E501 - raise ValueError(r"Invalid value for `host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$)/`") # noqa: E501 + if host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$)', host): # noqa: E501 + raise ValueError(r"Invalid value for `host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$)/`") # noqa: E501 self._host = host diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/supportassist_settings_contact_primary.py b/isilon_sdk/isilon_sdk/v9_6_0/models/supportassist_settings_contact_primary.py index f0ef91f37..677681646 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/supportassist_settings_contact_primary.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/supportassist_settings_contact_primary.py @@ -44,7 +44,7 @@ class SupportassistSettingsContactPrimary(object): 'phone': 'phone' } - def __init__(self, email='', first_name='', last_name='', phone=None): # noqa: E501 + def __init__(self, email='', first_name='', last_name='', phone=''): # noqa: E501 """SupportassistSettingsContactPrimary - a model defined in Swagger""" # noqa: E501 self._email = None @@ -86,8 +86,8 @@ def email(self, email): raise ValueError("Invalid value for `email`, length must be less than or equal to `320`") # noqa: E501 if email is not None and len(email) < 0: raise ValueError("Invalid value for `email`, length must be greater than or equal to `0`") # noqa: E501 - if email is not None and not re.search(r'(^$|^([a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+[.])+[a-zA-Z0-9]+$))', email): # noqa: E501 - raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/(^$|^([a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+[.])+[a-zA-Z0-9]+$))/`") # noqa: E501 + if email is not None and not re.search(r'(^$|^([a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]+$))', email): # noqa: E501 + raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/(^$|^([a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]+$))/`") # noqa: E501 self._email = email @@ -115,8 +115,8 @@ def first_name(self, first_name): raise ValueError("Invalid value for `first_name`, length must be less than or equal to `50`") # noqa: E501 if first_name is not None and len(first_name) < 0: raise ValueError("Invalid value for `first_name`, length must be greater than or equal to `0`") # noqa: E501 - if first_name is not None and not re.search(r'[a-zA-Z]*[-.\']*', first_name): # noqa: E501 - raise ValueError(r"Invalid value for `first_name`, must be a follow pattern or equal to `/[a-zA-Z]*[-.']*/`") # noqa: E501 + if first_name is not None and not re.search(r'[a-zA-Z]*[\\-\\.\\\']*', first_name): # noqa: E501 + raise ValueError(r"Invalid value for `first_name`, must be a follow pattern or equal to `/[a-zA-Z]*[\\-\\.\\']*/`") # noqa: E501 self._first_name = first_name @@ -144,8 +144,8 @@ def last_name(self, last_name): raise ValueError("Invalid value for `last_name`, length must be less than or equal to `50`") # noqa: E501 if last_name is not None and len(last_name) < 0: raise ValueError("Invalid value for `last_name`, length must be greater than or equal to `0`") # noqa: E501 - if last_name is not None and not re.search(r'[a-zA-Z]*[-.\']*', last_name): # noqa: E501 - raise ValueError(r"Invalid value for `last_name`, must be a follow pattern or equal to `/[a-zA-Z]*[-.']*/`") # noqa: E501 + if last_name is not None and not re.search(r'[a-zA-Z]*[\\-\\.\\\']*', last_name): # noqa: E501 + raise ValueError(r"Invalid value for `last_name`, must be a follow pattern or equal to `/[a-zA-Z]*[\\-\\.\\']*/`") # noqa: E501 self._last_name = last_name @@ -173,6 +173,8 @@ def phone(self, phone): raise ValueError("Invalid value for `phone`, length must be less than or equal to `40`") # noqa: E501 if phone is not None and len(phone) < 0: raise ValueError("Invalid value for `phone`, length must be greater than or equal to `0`") # noqa: E501 + if phone is not None and not re.search(r'(^$|([\\.\\-\\+\/\\sxX]*([0-9]+|[\\(\\d+\\)])+)+)', phone): # noqa: E501 + raise ValueError(r"Invalid value for `phone`, must be a follow pattern or equal to `/(^$|([\\.\\-\\+\/\\sxX]*([0-9]+|[\\(\\d+\\)])+)+)/`") # noqa: E501 self._phone = phone diff --git a/isilon_sdk/isilon_sdk/v9_6_0/models/supportassist_settings_contact_primary_extended.py b/isilon_sdk/isilon_sdk/v9_6_0/models/supportassist_settings_contact_primary_extended.py index 2faa8c1f2..0c8877035 100644 --- a/isilon_sdk/isilon_sdk/v9_6_0/models/supportassist_settings_contact_primary_extended.py +++ b/isilon_sdk/isilon_sdk/v9_6_0/models/supportassist_settings_contact_primary_extended.py @@ -86,8 +86,8 @@ def email(self, email): raise ValueError("Invalid value for `email`, length must be less than or equal to `320`") # noqa: E501 if email is not None and len(email) < 0: raise ValueError("Invalid value for `email`, length must be greater than or equal to `0`") # noqa: E501 - if email is not None and not re.search(r'^[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+[.])+[a-zA-Z0-9]+$', email): # noqa: E501 - raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/^[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+[.])+[a-zA-Z0-9]+$/`") # noqa: E501 + if email is not None and not re.search(r'^[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]+$', email): # noqa: E501 + raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/^[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]+$/`") # noqa: E501 self._email = email @@ -115,8 +115,8 @@ def first_name(self, first_name): raise ValueError("Invalid value for `first_name`, length must be less than or equal to `50`") # noqa: E501 if first_name is not None and len(first_name) < 0: raise ValueError("Invalid value for `first_name`, length must be greater than or equal to `0`") # noqa: E501 - if first_name is not None and not re.search(r'[a-zA-Z]*[-.\']*', first_name): # noqa: E501 - raise ValueError(r"Invalid value for `first_name`, must be a follow pattern or equal to `/[a-zA-Z]*[-.']*/`") # noqa: E501 + if first_name is not None and not re.search(r'[a-zA-Z]*[\\-\\.\\\']*', first_name): # noqa: E501 + raise ValueError(r"Invalid value for `first_name`, must be a follow pattern or equal to `/[a-zA-Z]*[\\-\\.\\']*/`") # noqa: E501 self._first_name = first_name @@ -144,8 +144,8 @@ def last_name(self, last_name): raise ValueError("Invalid value for `last_name`, length must be less than or equal to `50`") # noqa: E501 if last_name is not None and len(last_name) < 0: raise ValueError("Invalid value for `last_name`, length must be greater than or equal to `0`") # noqa: E501 - if last_name is not None and not re.search(r'[a-zA-Z]*[-.\']*', last_name): # noqa: E501 - raise ValueError(r"Invalid value for `last_name`, must be a follow pattern or equal to `/[a-zA-Z]*[-.']*/`") # noqa: E501 + if last_name is not None and not re.search(r'[a-zA-Z]*[\\-\\.\\\']*', last_name): # noqa: E501 + raise ValueError(r"Invalid value for `last_name`, must be a follow pattern or equal to `/[a-zA-Z]*[\\-\\.\\']*/`") # noqa: E501 self._last_name = last_name @@ -173,6 +173,8 @@ def phone(self, phone): raise ValueError("Invalid value for `phone`, length must be less than or equal to `40`") # noqa: E501 if phone is not None and len(phone) < 0: raise ValueError("Invalid value for `phone`, length must be greater than or equal to `0`") # noqa: E501 + if phone is not None and not re.search(r'([\\.\\-\\+\/\\sxX]*([0-9]+|[\\(\\d+\\)])+)+', phone): # noqa: E501 + raise ValueError(r"Invalid value for `phone`, must be a follow pattern or equal to `/([\\.\\-\\+\/\\sxX]*([0-9]+|[\\(\\d+\\)])+)+/`") # noqa: E501 self._phone = phone diff --git a/isilon_sdk/isilon_sdk/v9_7_0/README.md b/isilon_sdk/isilon_sdk/v9_7_0/README.md index 1e8a6f6bc..bf30f586e 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/README.md +++ b/isilon_sdk/isilon_sdk/v9_7_0/README.md @@ -18,7 +18,7 @@ Isilon SDK - Language bindings for the OneFS API This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project: - API version: 18 -- Package version: 0.6.0 +- Package version: 0.5.0 - Build package: io.swagger.codegen.languages.PythonClientCodegen For more information, please visit [https://github.com/Isilon/isilon_sdk](https://github.com/Isilon/isilon_sdk) @@ -2641,7 +2641,7 @@ sdk@isilon.com ## License -Copyright (c) 2025 Dell EMC Isilon +Copyright (c) 2018 Dell EMC Isilon Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/isilon_sdk/isilon_sdk/v9_7_0/api/namespace_api.py b/isilon_sdk/isilon_sdk/v9_7_0/api/namespace_api.py index d1d70a493..45b3660ec 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/api/namespace_api.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/api/namespace_api.py @@ -1188,7 +1188,6 @@ def get_acl(self, namespace_path, acl, **kwargs): # noqa: E501 :param str namespace_path: Namespace path relative to /. (required) :param bool acl: Show access control lists. (required) :param bool nsaccess: Indicates that the operation is on the access point instead of the store path. - :param str zone: Specifies the access zone name. :return: NamespaceAcl If the method is called asynchronously, returns the request thread. @@ -1213,13 +1212,12 @@ def get_acl_with_http_info(self, namespace_path, acl, **kwargs): # noqa: E501 :param str namespace_path: Namespace path relative to /. (required) :param bool acl: Show access control lists. (required) :param bool nsaccess: Indicates that the operation is on the access point instead of the store path. - :param str zone: Specifies the access zone name. :return: NamespaceAcl If the method is called asynchronously, returns the request thread. """ - all_params = ['namespace_path', 'acl', 'nsaccess', 'zone'] # noqa: E501 + all_params = ['namespace_path', 'acl', 'nsaccess'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -1254,8 +1252,6 @@ def get_acl_with_http_info(self, namespace_path, acl, **kwargs): # noqa: E501 query_params.append(('acl', params['acl'])) # noqa: E501 if 'nsaccess' in params: query_params.append(('nsaccess', params['nsaccess'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -1536,7 +1532,6 @@ def get_directory_metadata(self, directory_metadata_path, metadata, **kwargs): :param async_req bool :param str directory_metadata_path: Directory path relative to /. (required) :param bool metadata: Show directory metadata. (required) - :param str zone: Specifies the access zone name. :return: NamespaceMetadataList If the method is called asynchronously, returns the request thread. @@ -1560,13 +1555,12 @@ def get_directory_metadata_with_http_info(self, directory_metadata_path, metadat :param async_req bool :param str directory_metadata_path: Directory path relative to /. (required) :param bool metadata: Show directory metadata. (required) - :param str zone: Specifies the access zone name. :return: NamespaceMetadataList If the method is called asynchronously, returns the request thread. """ - all_params = ['directory_metadata_path', 'metadata', 'zone'] # noqa: E501 + all_params = ['directory_metadata_path', 'metadata'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -1599,8 +1593,6 @@ def get_directory_metadata_with_http_info(self, directory_metadata_path, metadat query_params = [] if 'metadata' in params: query_params.append(('metadata', params['metadata'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -2000,7 +1992,6 @@ def get_file_metadata(self, file_metadata_path, metadata, **kwargs): # noqa: E5 :param async_req bool :param str file_metadata_path: File path relative to /. (required) :param bool metadata: Show file metadata. (required) - :param str zone: Specifies the access zone name. :return: NamespaceMetadataList If the method is called asynchronously, returns the request thread. @@ -2024,13 +2015,12 @@ def get_file_metadata_with_http_info(self, file_metadata_path, metadata, **kwarg :param async_req bool :param str file_metadata_path: File path relative to /. (required) :param bool metadata: Show file metadata. (required) - :param str zone: Specifies the access zone name. :return: NamespaceMetadataList If the method is called asynchronously, returns the request thread. """ - all_params = ['file_metadata_path', 'metadata', 'zone'] # noqa: E501 + all_params = ['file_metadata_path', 'metadata'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2063,8 +2053,6 @@ def get_file_metadata_with_http_info(self, file_metadata_path, metadata, **kwarg query_params = [] if 'metadata' in params: query_params.append(('metadata', params['metadata'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -2791,7 +2779,6 @@ def set_acl(self, namespace_path, acl, namespace_acl, **kwargs): # noqa: E501 :param bool acl: Update access control lists. (required) :param NamespaceAcl namespace_acl: Namespace ACL parameters model. (required) :param bool nsaccess: Indicates that the operation is on the access point instead of the store path. - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. @@ -2817,13 +2804,12 @@ def set_acl_with_http_info(self, namespace_path, acl, namespace_acl, **kwargs): :param bool acl: Update access control lists. (required) :param NamespaceAcl namespace_acl: Namespace ACL parameters model. (required) :param bool nsaccess: Indicates that the operation is on the access point instead of the store path. - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. """ - all_params = ['namespace_path', 'acl', 'namespace_acl', 'nsaccess', 'zone'] # noqa: E501 + all_params = ['namespace_path', 'acl', 'namespace_acl', 'nsaccess'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2862,8 +2848,6 @@ def set_acl_with_http_info(self, namespace_path, acl, namespace_acl, **kwargs): query_params.append(('acl', params['acl'])) # noqa: E501 if 'nsaccess' in params: query_params.append(('nsaccess', params['nsaccess'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -2913,7 +2897,6 @@ def set_directory_metadata(self, directory_metadata_path, metadata, directory_me :param str directory_metadata_path: Directory path relative to /. (required) :param bool metadata: Set directory metadata. (required) :param NamespaceMetadata directory_metadata: Directory metadata parameters model. (required) - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. @@ -2938,13 +2921,12 @@ def set_directory_metadata_with_http_info(self, directory_metadata_path, metadat :param str directory_metadata_path: Directory path relative to /. (required) :param bool metadata: Set directory metadata. (required) :param NamespaceMetadata directory_metadata: Directory metadata parameters model. (required) - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. """ - all_params = ['directory_metadata_path', 'metadata', 'directory_metadata', 'zone'] # noqa: E501 + all_params = ['directory_metadata_path', 'metadata', 'directory_metadata'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2981,8 +2963,6 @@ def set_directory_metadata_with_http_info(self, directory_metadata_path, metadat query_params = [] if 'metadata' in params: query_params.append(('metadata', params['metadata'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -3032,7 +3012,6 @@ def set_file_metadata(self, file_metadata_path, metadata, file_metadata, **kwarg :param str file_metadata_path: File path relative to /. (required) :param bool metadata: Set file metadata. (required) :param NamespaceMetadata file_metadata: File metadata parameters model. (required) - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. @@ -3057,13 +3036,12 @@ def set_file_metadata_with_http_info(self, file_metadata_path, metadata, file_me :param str file_metadata_path: File path relative to /. (required) :param bool metadata: Set file metadata. (required) :param NamespaceMetadata file_metadata: File metadata parameters model. (required) - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. """ - all_params = ['file_metadata_path', 'metadata', 'file_metadata', 'zone'] # noqa: E501 + all_params = ['file_metadata_path', 'metadata', 'file_metadata'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -3100,8 +3078,6 @@ def set_file_metadata_with_http_info(self, file_metadata_path, metadata, file_me query_params = [] if 'metadata' in params: query_params.append(('metadata', params['metadata'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} diff --git a/isilon_sdk/isilon_sdk/v9_7_0/api_client.py b/isilon_sdk/isilon_sdk/v9_7_0/api_client.py index 427c61538..0c329a56e 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/api_client.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/api_client.py @@ -74,7 +74,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None, self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'Swagger-Codegen/0.6.0/python' + self.user_agent = 'Swagger-Codegen/0.5.0/python' # This is used for detecting for the special case of a path parameter # that is tagged with x-isi-url-encode-path-param (more details in the # __call_api function). diff --git a/isilon_sdk/isilon_sdk/v9_7_0/configuration.py b/isilon_sdk/isilon_sdk/v9_7_0/configuration.py index 94855d323..fc57f8ecc 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/configuration.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/configuration.py @@ -260,5 +260,5 @@ def to_debug_report(self): "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: 18\n"\ - "SDK Package Version: 0.6.0".\ + "SDK Package Version: 0.5.0".\ format(env=sys.platform, pyversion=sys.version) diff --git a/isilon_sdk/isilon_sdk/v9_7_0/docs/NamespaceApi.md b/isilon_sdk/isilon_sdk/v9_7_0/docs/NamespaceApi.md index ab5098fd4..c1390c5e0 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/docs/NamespaceApi.md +++ b/isilon_sdk/isilon_sdk/v9_7_0/docs/NamespaceApi.md @@ -613,7 +613,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_acl** -> NamespaceAcl get_acl(namespace_path, acl, nsaccess=nsaccess, zone=zone) +> NamespaceAcl get_acl(namespace_path, acl, nsaccess=nsaccess) @@ -637,10 +637,9 @@ api_instance = isilon_sdk.v9_7_0.NamespaceApi(isilon_sdk.v9_7_0.ApiClient(config namespace_path = 'namespace_path_example' # str | Namespace path relative to /. acl = true # bool | Show access control lists. nsaccess = true # bool | Indicates that the operation is on the access point instead of the store path. (optional) -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.get_acl(namespace_path, acl, nsaccess=nsaccess, zone=zone) + api_response = api_instance.get_acl(namespace_path, acl, nsaccess=nsaccess) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->get_acl: %s\n" % e) @@ -653,7 +652,6 @@ Name | Type | Description | Notes **namespace_path** | **str**| Namespace path relative to /. | **acl** | **bool**| Show access control lists. | **nsaccess** | **bool**| Indicates that the operation is on the access point instead of the store path. | [optional] - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -793,7 +791,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_directory_metadata** -> NamespaceMetadataList get_directory_metadata(directory_metadata_path, metadata, zone=zone) +> NamespaceMetadataList get_directory_metadata(directory_metadata_path, metadata) @@ -816,10 +814,9 @@ configuration.password = 'YOUR_PASSWORD' api_instance = isilon_sdk.v9_7_0.NamespaceApi(isilon_sdk.v9_7_0.ApiClient(configuration)) directory_metadata_path = 'directory_metadata_path_example' # str | Directory path relative to /. metadata = true # bool | Show directory metadata. -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.get_directory_metadata(directory_metadata_path, metadata, zone=zone) + api_response = api_instance.get_directory_metadata(directory_metadata_path, metadata) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->get_directory_metadata: %s\n" % e) @@ -831,7 +828,6 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **directory_metadata_path** | **str**| Directory path relative to /. | **metadata** | **bool**| Show directory metadata. | - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -1031,7 +1027,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_file_metadata** -> NamespaceMetadataList get_file_metadata(file_metadata_path, metadata, zone=zone) +> NamespaceMetadataList get_file_metadata(file_metadata_path, metadata) @@ -1054,10 +1050,9 @@ configuration.password = 'YOUR_PASSWORD' api_instance = isilon_sdk.v9_7_0.NamespaceApi(isilon_sdk.v9_7_0.ApiClient(configuration)) file_metadata_path = 'file_metadata_path_example' # str | File path relative to /. metadata = true # bool | Show file metadata. -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.get_file_metadata(file_metadata_path, metadata, zone=zone) + api_response = api_instance.get_file_metadata(file_metadata_path, metadata) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->get_file_metadata: %s\n" % e) @@ -1069,7 +1064,6 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **file_metadata_path** | **str**| File path relative to /. | **metadata** | **bool**| Show file metadata. | - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -1429,7 +1423,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **set_acl** -> Empty set_acl(namespace_path, acl, namespace_acl, nsaccess=nsaccess, zone=zone) +> Empty set_acl(namespace_path, acl, namespace_acl, nsaccess=nsaccess) @@ -1454,10 +1448,9 @@ namespace_path = 'namespace_path_example' # str | Namespace path relative to /. acl = true # bool | Update access control lists. namespace_acl = isilon_sdk.v9_7_0.NamespaceAcl() # NamespaceAcl | Namespace ACL parameters model. nsaccess = true # bool | Indicates that the operation is on the access point instead of the store path. (optional) -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.set_acl(namespace_path, acl, namespace_acl, nsaccess=nsaccess, zone=zone) + api_response = api_instance.set_acl(namespace_path, acl, namespace_acl, nsaccess=nsaccess) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->set_acl: %s\n" % e) @@ -1471,7 +1464,6 @@ Name | Type | Description | Notes **acl** | **bool**| Update access control lists. | **namespace_acl** | [**NamespaceAcl**](NamespaceAcl.md)| Namespace ACL parameters model. | **nsaccess** | **bool**| Indicates that the operation is on the access point instead of the store path. | [optional] - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -1489,7 +1481,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **set_directory_metadata** -> Empty set_directory_metadata(directory_metadata_path, metadata, directory_metadata, zone=zone) +> Empty set_directory_metadata(directory_metadata_path, metadata, directory_metadata) @@ -1513,10 +1505,9 @@ api_instance = isilon_sdk.v9_7_0.NamespaceApi(isilon_sdk.v9_7_0.ApiClient(config directory_metadata_path = 'directory_metadata_path_example' # str | Directory path relative to /. metadata = true # bool | Set directory metadata. directory_metadata = isilon_sdk.v9_7_0.NamespaceMetadata() # NamespaceMetadata | Directory metadata parameters model. -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.set_directory_metadata(directory_metadata_path, metadata, directory_metadata, zone=zone) + api_response = api_instance.set_directory_metadata(directory_metadata_path, metadata, directory_metadata) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->set_directory_metadata: %s\n" % e) @@ -1529,7 +1520,6 @@ Name | Type | Description | Notes **directory_metadata_path** | **str**| Directory path relative to /. | **metadata** | **bool**| Set directory metadata. | **directory_metadata** | [**NamespaceMetadata**](NamespaceMetadata.md)| Directory metadata parameters model. | - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -1547,7 +1537,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **set_file_metadata** -> Empty set_file_metadata(file_metadata_path, metadata, file_metadata, zone=zone) +> Empty set_file_metadata(file_metadata_path, metadata, file_metadata) @@ -1571,10 +1561,9 @@ api_instance = isilon_sdk.v9_7_0.NamespaceApi(isilon_sdk.v9_7_0.ApiClient(config file_metadata_path = 'file_metadata_path_example' # str | File path relative to /. metadata = true # bool | Set file metadata. file_metadata = isilon_sdk.v9_7_0.NamespaceMetadata() # NamespaceMetadata | File metadata parameters model. -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.set_file_metadata(file_metadata_path, metadata, file_metadata, zone=zone) + api_response = api_instance.set_file_metadata(file_metadata_path, metadata, file_metadata) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->set_file_metadata: %s\n" % e) @@ -1587,7 +1576,6 @@ Name | Type | Description | Notes **file_metadata_path** | **str**| File path relative to /. | **metadata** | **bool**| Set file metadata. | **file_metadata** | [**NamespaceMetadata**](NamespaceMetadata.md)| File metadata parameters model. | - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type diff --git a/isilon_sdk/isilon_sdk/v9_7_0/docs/SupportassistSettingsContactPrimary.md b/isilon_sdk/isilon_sdk/v9_7_0/docs/SupportassistSettingsContactPrimary.md index 4c4991d5d..91e4979e1 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/docs/SupportassistSettingsContactPrimary.md +++ b/isilon_sdk/isilon_sdk/v9_7_0/docs/SupportassistSettingsContactPrimary.md @@ -6,7 +6,7 @@ Name | Type | Description | Notes **email** | **str** | Contact's email address. | [optional] [default to ''] **first_name** | **str** | Contact's first name. | [optional] [default to ''] **last_name** | **str** | Contact's last name. | [optional] [default to ''] -**phone** | **str** | Contact's phone number. | [optional] +**phone** | **str** | Contact's phone number. | [optional] [default to ''] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/changelist_entry.py b/isilon_sdk/isilon_sdk/v9_7_0/models/changelist_entry.py index 297c95531..0fc0aa1c3 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/changelist_entry.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/changelist_entry.py @@ -554,6 +554,8 @@ def physical_size(self, physical_size): """ if physical_size is None: raise ValueError("Invalid value for `physical_size`, must not be `None`") # noqa: E501 + if physical_size is not None and physical_size > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `physical_size`, must be a value less than or equal to `4294967295`") # noqa: E501 if physical_size is not None and physical_size < 0: # noqa: E501 raise ValueError("Invalid value for `physical_size`, must be a value greater than or equal to `0`") # noqa: E501 @@ -581,6 +583,8 @@ def size(self, size): """ if size is None: raise ValueError("Invalid value for `size`, must not be `None`") # noqa: E501 + if size is not None and size > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `size`, must be a value less than or equal to `4294967295`") # noqa: E501 if size is not None and size < 0: # noqa: E501 raise ValueError("Invalid value for `size`, must be a value greater than or equal to `0`") # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_email_extended.py b/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_email_extended.py index 7ac57ebef..6453f5689 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_email_extended.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_email_extended.py @@ -141,8 +141,8 @@ def mail_relay(self, mail_relay): :param mail_relay: The mail_relay of this ClusterEmailExtended. # noqa: E501 :type: str """ - if mail_relay is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', mail_relay): # noqa: E501 - raise ValueError(r"Invalid value for `mail_relay`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if mail_relay is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', mail_relay): # noqa: E501 + raise ValueError(r"Invalid value for `mail_relay`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._mail_relay = mail_relay @@ -170,8 +170,8 @@ def mail_sender(self, mail_sender): raise ValueError("Invalid value for `mail_sender`, length must be less than or equal to `254`") # noqa: E501 if mail_sender is not None and len(mail_sender) < 3: raise ValueError("Invalid value for `mail_sender`, length must be greater than or equal to `3`") # noqa: E501 - if mail_sender is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', mail_sender): # noqa: E501 - raise ValueError(r"Invalid value for `mail_sender`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if mail_sender is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', mail_sender): # noqa: E501 + raise ValueError(r"Invalid value for `mail_sender`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._mail_sender = mail_sender @@ -278,8 +278,8 @@ def smtp_auth_username(self, smtp_auth_username): raise ValueError("Invalid value for `smtp_auth_username`, length must be less than or equal to `256`") # noqa: E501 if smtp_auth_username is not None and len(smtp_auth_username) < 1: raise ValueError("Invalid value for `smtp_auth_username`, length must be greater than or equal to `1`") # noqa: E501 - if smtp_auth_username is not None and not re.search(r'^[a-zA-Z0-9!@#%^&(){}~`_ .-]+$', smtp_auth_username): # noqa: E501 - raise ValueError(r"Invalid value for `smtp_auth_username`, must be a follow pattern or equal to `/^[a-zA-Z0-9!@#%^&(){}~`_ .-]+$/`") # noqa: E501 + if smtp_auth_username is not None and not re.search(r'^[^]\"\/\\[\\:;|=,+*?<>$]+', smtp_auth_username): # noqa: E501 + raise ValueError(r"Invalid value for `smtp_auth_username`, must be a follow pattern or equal to `/^[^]\"\/\\[\\:;|=,+*?<>$]+/`") # noqa: E501 self._smtp_auth_username = smtp_auth_username diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_email_settings.py b/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_email_settings.py index fb511d11e..2ddb22db9 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_email_settings.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_email_settings.py @@ -136,8 +136,8 @@ def mail_relay(self, mail_relay): """ if mail_relay is None: raise ValueError("Invalid value for `mail_relay`, must not be `None`") # noqa: E501 - if mail_relay is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', mail_relay): # noqa: E501 - raise ValueError(r"Invalid value for `mail_relay`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if mail_relay is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', mail_relay): # noqa: E501 + raise ValueError(r"Invalid value for `mail_relay`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._mail_relay = mail_relay diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_internal_networks_failover_ip_addresse.py b/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_internal_networks_failover_ip_addresse.py index 4be5c8c40..d663c3f51 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_internal_networks_failover_ip_addresse.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_internal_networks_failover_ip_addresse.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_internal_networks_failover_ip_addresse_extended.py b/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_internal_networks_failover_ip_addresse_extended.py index 7de8becc4..d047bf836 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_internal_networks_failover_ip_addresse_extended.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_internal_networks_failover_ip_addresse_extended.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_internal_networks_int_a_ip_addresse.py b/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_internal_networks_int_a_ip_addresse.py index 1e6d43f0e..467143fea 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_internal_networks_int_a_ip_addresse.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_internal_networks_int_a_ip_addresse.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py b/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py index c62363d7a..1773b65c2 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_internal_networks_int_b_ip_addresse.py b/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_internal_networks_int_b_ip_addresse.py index cd16f6880..a6c32e51b 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_internal_networks_int_b_ip_addresse.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_internal_networks_int_b_ip_addresse.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py b/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py index 5f9aa8d27..62e56c0eb 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_mode_settings.py b/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_mode_settings.py index 164305963..507378c28 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_mode_settings.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_mode_settings.py @@ -84,8 +84,8 @@ def cloud_storage_console(self, cloud_storage_console): raise ValueError("Invalid value for `cloud_storage_console`, length must be less than or equal to `2048`") # noqa: E501 if cloud_storage_console is not None and len(cloud_storage_console) < 11: raise ValueError("Invalid value for `cloud_storage_console`, length must be greater than or equal to `11`") # noqa: E501 - if cloud_storage_console is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', cloud_storage_console): # noqa: E501 - raise ValueError(r"Invalid value for `cloud_storage_console`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if cloud_storage_console is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', cloud_storage_console): # noqa: E501 + raise ValueError(r"Invalid value for `cloud_storage_console`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._cloud_storage_console = cloud_storage_console @@ -111,8 +111,8 @@ def monitoring(self, monitoring): raise ValueError("Invalid value for `monitoring`, length must be less than or equal to `2048`") # noqa: E501 if monitoring is not None and len(monitoring) < 11: raise ValueError("Invalid value for `monitoring`, length must be greater than or equal to `11`") # noqa: E501 - if monitoring is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', monitoring): # noqa: E501 - raise ValueError(r"Invalid value for `monitoring`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if monitoring is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', monitoring): # noqa: E501 + raise ValueError(r"Invalid value for `monitoring`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._monitoring = monitoring @@ -161,8 +161,8 @@ def support(self, support): raise ValueError("Invalid value for `support`, length must be less than or equal to `2048`") # noqa: E501 if support is not None and len(support) < 11: raise ValueError("Invalid value for `support`, length must be greater than or equal to `11`") # noqa: E501 - if support is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', support): # noqa: E501 - raise ValueError(r"Invalid value for `support`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if support is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', support): # noqa: E501 + raise ValueError(r"Invalid value for `support`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._support = support diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_mode_settings_extended.py b/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_mode_settings_extended.py index fd41e17a9..f8cf23ea8 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_mode_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_mode_settings_extended.py @@ -79,8 +79,8 @@ def cloud_storage_console(self, cloud_storage_console): raise ValueError("Invalid value for `cloud_storage_console`, length must be less than or equal to `2048`") # noqa: E501 if cloud_storage_console is not None and len(cloud_storage_console) < 11: raise ValueError("Invalid value for `cloud_storage_console`, length must be greater than or equal to `11`") # noqa: E501 - if cloud_storage_console is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', cloud_storage_console): # noqa: E501 - raise ValueError(r"Invalid value for `cloud_storage_console`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if cloud_storage_console is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', cloud_storage_console): # noqa: E501 + raise ValueError(r"Invalid value for `cloud_storage_console`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._cloud_storage_console = cloud_storage_console @@ -106,8 +106,8 @@ def monitoring(self, monitoring): raise ValueError("Invalid value for `monitoring`, length must be less than or equal to `2048`") # noqa: E501 if monitoring is not None and len(monitoring) < 11: raise ValueError("Invalid value for `monitoring`, length must be greater than or equal to `11`") # noqa: E501 - if monitoring is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', monitoring): # noqa: E501 - raise ValueError(r"Invalid value for `monitoring`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if monitoring is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', monitoring): # noqa: E501 + raise ValueError(r"Invalid value for `monitoring`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._monitoring = monitoring @@ -133,8 +133,8 @@ def support(self, support): raise ValueError("Invalid value for `support`, length must be less than or equal to `2048`") # noqa: E501 if support is not None and len(support) < 11: raise ValueError("Invalid value for `support`, length must be greater than or equal to `11`") # noqa: E501 - if support is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', support): # noqa: E501 - raise ValueError(r"Invalid value for `support`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if support is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', support): # noqa: E501 + raise ValueError(r"Invalid value for `support`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._support = support diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_node.py b/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_node.py index 8f756e7ac..9f553d776 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_node.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_node.py @@ -218,8 +218,8 @@ def internal_ip_address(self, internal_ip_address): raise ValueError("Invalid value for `internal_ip_address`, length must be less than or equal to `45`") # noqa: E501 if internal_ip_address is not None and len(internal_ip_address) < 2: raise ValueError("Invalid value for `internal_ip_address`, length must be greater than or equal to `2`") # noqa: E501 - if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 - raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 + raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._internal_ip_address = internal_ip_address diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_node_extended.py b/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_node_extended.py index 2d7610646..92d600281 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_node_extended.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/cluster_node_extended.py @@ -218,8 +218,8 @@ def internal_ip_address(self, internal_ip_address): raise ValueError("Invalid value for `internal_ip_address`, length must be less than or equal to `45`") # noqa: E501 if internal_ip_address is not None and len(internal_ip_address) < 2: raise ValueError("Invalid value for `internal_ip_address`, length must be greater than or equal to `2`") # noqa: E501 - if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 - raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 + raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._internal_ip_address = internal_ip_address diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/config_network_network.py b/isilon_sdk/isilon_sdk/v9_7_0/models/config_network_network.py index ce10d3712..209e9dfe6 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/config_network_network.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/config_network_network.py @@ -81,8 +81,8 @@ def gateway(self, gateway): raise ValueError("Invalid value for `gateway`, length must be less than or equal to `45`") # noqa: E501 if gateway is not None and len(gateway) < 2: raise ValueError("Invalid value for `gateway`, length must be greater than or equal to `2`") # noqa: E501 - if gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', gateway): # noqa: E501 - raise ValueError(r"Invalid value for `gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', gateway): # noqa: E501 + raise ValueError(r"Invalid value for `gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._gateway = gateway diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/config_network_network_range.py b/isilon_sdk/isilon_sdk/v9_7_0/models/config_network_network_range.py index eea0b6356..ec7c92e73 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/config_network_network_range.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/config_network_network_range.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -105,8 +105,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/config_node.py b/isilon_sdk/isilon_sdk/v9_7_0/models/config_node.py index 05e7e65b9..775c5ace2 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/config_node.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/config_node.py @@ -118,8 +118,8 @@ def ip_addr(self, ip_addr): raise ValueError("Invalid value for `ip_addr`, length must be less than or equal to `45`") # noqa: E501 if ip_addr is not None and len(ip_addr) < 2: raise ValueError("Invalid value for `ip_addr`, length must be greater than or equal to `2`") # noqa: E501 - if ip_addr is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ip_addr): # noqa: E501 - raise ValueError(r"Invalid value for `ip_addr`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if ip_addr is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ip_addr): # noqa: E501 + raise ValueError(r"Invalid value for `ip_addr`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._ip_addr = ip_addr diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/diagnostics_gather_settings_extended.py b/isilon_sdk/isilon_sdk/v9_7_0/models/diagnostics_gather_settings_extended.py index fceb121c8..df281193c 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/diagnostics_gather_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/diagnostics_gather_settings_extended.py @@ -213,8 +213,8 @@ def ftp_upload_host(self, ftp_upload_host): :param ftp_upload_host: The ftp_upload_host of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_host = ftp_upload_host @@ -332,8 +332,8 @@ def ftp_upload_proxy(self, ftp_upload_proxy): :param ftp_upload_proxy: The ftp_upload_proxy of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_proxy = ftp_upload_proxy @@ -532,8 +532,8 @@ def http_upload_host(self, http_upload_host): :param http_upload_host: The http_upload_host of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_host = http_upload_host @@ -582,8 +582,8 @@ def http_upload_proxy(self, http_upload_proxy): :param http_upload_proxy: The http_upload_proxy of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_proxy = http_upload_proxy diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/diagnostics_gather_settings_settings.py b/isilon_sdk/isilon_sdk/v9_7_0/models/diagnostics_gather_settings_settings.py index e0b5fd304..90e08c861 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/diagnostics_gather_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/diagnostics_gather_settings_settings.py @@ -208,8 +208,8 @@ def ftp_upload_host(self, ftp_upload_host): :param ftp_upload_host: The ftp_upload_host of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_host = ftp_upload_host @@ -304,8 +304,8 @@ def ftp_upload_proxy(self, ftp_upload_proxy): :param ftp_upload_proxy: The ftp_upload_proxy of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_proxy = ftp_upload_proxy @@ -504,8 +504,8 @@ def http_upload_host(self, http_upload_host): :param http_upload_host: The http_upload_host of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_host = http_upload_host @@ -554,8 +554,8 @@ def http_upload_proxy(self, http_upload_proxy): :param http_upload_proxy: The http_upload_proxy of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_proxy = http_upload_proxy diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/diagnostics_netlogger_settings_settings.py b/isilon_sdk/isilon_sdk/v9_7_0/models/diagnostics_netlogger_settings_settings.py index dca2b7672..8b149de09 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/diagnostics_netlogger_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/diagnostics_netlogger_settings_settings.py @@ -102,8 +102,8 @@ def clients(self, clients): :param clients: The clients of this DiagnosticsNetloggerSettingsSettings. # noqa: E501 :type: str """ - if clients is not None and not re.search(r'^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$', clients): # noqa: E501 - raise ValueError(r"Invalid value for `clients`, must be a follow pattern or equal to `/^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$/`") # noqa: E501 + if clients is not None and not re.search(r'^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$', clients): # noqa: E501 + raise ValueError(r"Invalid value for `clients`, must be a follow pattern or equal to `/^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$/`") # noqa: E501 self._clients = clients diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/event_channel_parameters.py b/isilon_sdk/isilon_sdk/v9_7_0/models/event_channel_parameters.py index 579fe22da..188acbc11 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/event_channel_parameters.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/event_channel_parameters.py @@ -205,8 +205,8 @@ def custom_template(self, custom_template): raise ValueError("Invalid value for `custom_template`, length must be less than or equal to `4096`") # noqa: E501 if custom_template is not None and len(custom_template) < 0: raise ValueError("Invalid value for `custom_template`, length must be greater than or equal to `0`") # noqa: E501 - if custom_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', custom_template): # noqa: E501 - raise ValueError(r"Invalid value for `custom_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if custom_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', custom_template): # noqa: E501 + raise ValueError(r"Invalid value for `custom_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._custom_template = custom_template diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/groupnet_subnet.py b/isilon_sdk/isilon_sdk/v9_7_0/models/groupnet_subnet.py index 274825acb..2f4a662f1 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/groupnet_subnet.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/groupnet_subnet.py @@ -331,8 +331,8 @@ def sc_service_name(self, sc_service_name): raise ValueError("Invalid value for `sc_service_name`, length must be less than or equal to `2048`") # noqa: E501 if sc_service_name is not None and len(sc_service_name) < 0: raise ValueError("Invalid value for `sc_service_name`, length must be greater than or equal to `0`") # noqa: E501 - if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 - raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 + raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_service_name = sc_service_name diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/groupnet_subnet_create_params.py b/isilon_sdk/isilon_sdk/v9_7_0/models/groupnet_subnet_create_params.py index 7e0f0295c..9b75d8c0f 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/groupnet_subnet_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/groupnet_subnet_create_params.py @@ -337,8 +337,8 @@ def sc_service_name(self, sc_service_name): raise ValueError("Invalid value for `sc_service_name`, length must be less than or equal to `2048`") # noqa: E501 if sc_service_name is not None and len(sc_service_name) < 0: raise ValueError("Invalid value for `sc_service_name`, length must be greater than or equal to `0`") # noqa: E501 - if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 - raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 + raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_service_name = sc_service_name diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/groupnet_subnet_extended.py b/isilon_sdk/isilon_sdk/v9_7_0/models/groupnet_subnet_extended.py index 4660e411f..4fb5faff0 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/groupnet_subnet_extended.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/groupnet_subnet_extended.py @@ -361,8 +361,8 @@ def sc_service_name(self, sc_service_name): raise ValueError("Invalid value for `sc_service_name`, length must be less than or equal to `2048`") # noqa: E501 if sc_service_name is not None and len(sc_service_name) < 0: raise ValueError("Invalid value for `sc_service_name`, length must be greater than or equal to `0`") # noqa: E501 - if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 - raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 + raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_service_name = sc_service_name diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/groupnet_subnet_sc_service_addr.py b/isilon_sdk/isilon_sdk/v9_7_0/models/groupnet_subnet_sc_service_addr.py index 57d669cdc..c56ef93a5 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/groupnet_subnet_sc_service_addr.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/groupnet_subnet_sc_service_addr.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `40`") # noqa: E501 if high is not None and len(high) < 1: raise ValueError("Invalid value for `high`, length must be greater than or equal to `1`") # noqa: E501 - if high is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if high is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `40`") # noqa: E501 if low is not None and len(low) < 1: raise ValueError("Invalid value for `low`, length must be greater than or equal to `1`") # noqa: E501 - if low is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if low is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/network_interface.py b/isilon_sdk/isilon_sdk/v9_7_0/models/network_interface.py index 67e6c1fe5..934411cbc 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/network_interface.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/network_interface.py @@ -203,8 +203,8 @@ def ipv4_gateway(self, ipv4_gateway): raise ValueError("Invalid value for `ipv4_gateway`, length must be less than or equal to `16`") # noqa: E501 if ipv4_gateway is not None and len(ipv4_gateway) < 1: raise ValueError("Invalid value for `ipv4_gateway`, length must be greater than or equal to `1`") # noqa: E501 - if ipv4_gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ipv4_gateway): # noqa: E501 - raise ValueError(r"Invalid value for `ipv4_gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if ipv4_gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ipv4_gateway): # noqa: E501 + raise ValueError(r"Invalid value for `ipv4_gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._ipv4_gateway = ipv4_gateway diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/network_interface_vlan.py b/isilon_sdk/isilon_sdk/v9_7_0/models/network_interface_vlan.py index fd2801536..85ab701a2 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/network_interface_vlan.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/network_interface_vlan.py @@ -197,8 +197,8 @@ def ipv4_gateway(self, ipv4_gateway): raise ValueError("Invalid value for `ipv4_gateway`, length must be less than or equal to `16`") # noqa: E501 if ipv4_gateway is not None and len(ipv4_gateway) < 1: raise ValueError("Invalid value for `ipv4_gateway`, length must be greater than or equal to `1`") # noqa: E501 - if ipv4_gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ipv4_gateway): # noqa: E501 - raise ValueError(r"Invalid value for `ipv4_gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if ipv4_gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ipv4_gateway): # noqa: E501 + raise ValueError(r"Invalid value for `ipv4_gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._ipv4_gateway = ipv4_gateway diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/network_pool.py b/isilon_sdk/isilon_sdk/v9_7_0/models/network_pool.py index 0568ecd7f..ba06f7d98 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/network_pool.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/network_pool.py @@ -642,8 +642,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/node_internal_ip_address_node.py b/isilon_sdk/isilon_sdk/v9_7_0/models/node_internal_ip_address_node.py index a8b2f03de..6ae8e8e5c 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/node_internal_ip_address_node.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/node_internal_ip_address_node.py @@ -146,8 +146,8 @@ def internal_ip_address(self, internal_ip_address): raise ValueError("Invalid value for `internal_ip_address`, length must be less than or equal to `45`") # noqa: E501 if internal_ip_address is not None and len(internal_ip_address) < 2: raise ValueError("Invalid value for `internal_ip_address`, length must be greater than or equal to `2`") # noqa: E501 - if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 - raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 + raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._internal_ip_address = internal_ip_address diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/nodes_node_internal_ip_address.py b/isilon_sdk/isilon_sdk/v9_7_0/models/nodes_node_internal_ip_address.py index 7cfdf19d4..fc1a4c9a9 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/nodes_node_internal_ip_address.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/nodes_node_internal_ip_address.py @@ -72,8 +72,8 @@ def internal_ip_address(self, internal_ip_address): raise ValueError("Invalid value for `internal_ip_address`, length must be less than or equal to `45`") # noqa: E501 if internal_ip_address is not None and len(internal_ip_address) < 2: raise ValueError("Invalid value for `internal_ip_address`, length must be greater than or equal to `2`") # noqa: E501 - if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 - raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 + raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._internal_ip_address = internal_ip_address diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_ads_ads_item.py b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_ads_ads_item.py index 865bd7168..95f3b03aa 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_ads_ads_item.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_ads_ads_item.py @@ -652,8 +652,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_ads_ads_item_extended.py b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_ads_ads_item_extended.py index 009c47c75..dbafa3fb9 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_ads_ads_item_extended.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_ads_ads_item_extended.py @@ -642,8 +642,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_ads_id_params.py b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_ads_id_params.py index 908c91589..228ca1d11 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_ads_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_ads_id_params.py @@ -554,8 +554,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_ads_item.py b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_ads_item.py index ce18d3200..6fc171364 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_ads_item.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_ads_item.py @@ -598,8 +598,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_file_file_item.py b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_file_file_item.py index 447de3ee5..2a57fecc4 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_file_file_item.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_file_file_item.py @@ -466,8 +466,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_file_id_params.py b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_file_id_params.py index 1c2607cfc..9d69243a5 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_file_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_file_id_params.py @@ -474,8 +474,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_file_item.py b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_file_item.py index 0f426041f..aa76e70f1 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_file_item.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_file_item.py @@ -445,8 +445,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_ldap_id_params.py b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_ldap_id_params.py index 4209f86ce..557a57ce8 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_ldap_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_ldap_id_params.py @@ -1108,8 +1108,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template @@ -2076,8 +2076,8 @@ def tls_protocol_min(self, tls_protocol_min): raise ValueError("Invalid value for `tls_protocol_min`, length must be less than or equal to `255`") # noqa: E501 if tls_protocol_min is not None and len(tls_protocol_min) < 0: raise ValueError("Invalid value for `tls_protocol_min`, length must be greater than or equal to `0`") # noqa: E501 - if tls_protocol_min is not None and not re.search(r'^[0-9]+[.][0-9]+$', tls_protocol_min): # noqa: E501 - raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+[.][0-9]+$/`") # noqa: E501 + if tls_protocol_min is not None and not re.search(r'^[0-9]+\\.[0-9]+$', tls_protocol_min): # noqa: E501 + raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+\\.[0-9]+$/`") # noqa: E501 self._tls_protocol_min = tls_protocol_min diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_ldap_item.py b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_ldap_item.py index e15017285..5d2b1479b 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_ldap_item.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_ldap_item.py @@ -1151,8 +1151,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template @@ -2153,8 +2153,8 @@ def tls_protocol_min(self, tls_protocol_min): raise ValueError("Invalid value for `tls_protocol_min`, length must be less than or equal to `255`") # noqa: E501 if tls_protocol_min is not None and len(tls_protocol_min) < 0: raise ValueError("Invalid value for `tls_protocol_min`, length must be greater than or equal to `0`") # noqa: E501 - if tls_protocol_min is not None and not re.search(r'^[0-9]+[.][0-9]+$', tls_protocol_min): # noqa: E501 - raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+[.][0-9]+$/`") # noqa: E501 + if tls_protocol_min is not None and not re.search(r'^[0-9]+\\.[0-9]+$', tls_protocol_min): # noqa: E501 + raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+\\.[0-9]+$/`") # noqa: E501 self._tls_protocol_min = tls_protocol_min diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_ldap_ldap_item.py b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_ldap_ldap_item.py index dbba2aa7d..ac834a7bb 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_ldap_ldap_item.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_ldap_ldap_item.py @@ -1135,8 +1135,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template @@ -2181,8 +2181,8 @@ def tls_protocol_min(self, tls_protocol_min): raise ValueError("Invalid value for `tls_protocol_min`, length must be less than or equal to `255`") # noqa: E501 if tls_protocol_min is not None and len(tls_protocol_min) < 0: raise ValueError("Invalid value for `tls_protocol_min`, length must be greater than or equal to `0`") # noqa: E501 - if tls_protocol_min is not None and not re.search(r'^[0-9]+[.][0-9]+$', tls_protocol_min): # noqa: E501 - raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+[.][0-9]+$/`") # noqa: E501 + if tls_protocol_min is not None and not re.search(r'^[0-9]+\\.[0-9]+$', tls_protocol_min): # noqa: E501 + raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+\\.[0-9]+$/`") # noqa: E501 self._tls_protocol_min = tls_protocol_min diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_local_id_params.py b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_local_id_params.py index c8a267af1..3356ba69b 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_local_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_local_id_params.py @@ -263,8 +263,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_local_local_item.py b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_local_local_item.py index c71ee9ddc..aa21d8374 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_local_local_item.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_local_local_item.py @@ -227,8 +227,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_nis_id_params.py b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_nis_id_params.py index 377c92089..5dd683f16 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_nis_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_nis_id_params.py @@ -464,8 +464,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_nis_item.py b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_nis_item.py index 75515963f..338eeb3d7 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_nis_item.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_nis_item.py @@ -493,8 +493,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_nis_nis_item.py b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_nis_nis_item.py index e26b3f7d8..720f02168 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_nis_nis_item.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_nis_nis_item.py @@ -516,8 +516,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_saml_services_sp_extended.py b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_saml_services_sp_extended.py index 38d9b48b2..c7ca7d70f 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_saml_services_sp_extended.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_saml_services_sp_extended.py @@ -106,8 +106,8 @@ def email(self, email): raise ValueError("Invalid value for `email`, length must be less than or equal to `254`") # noqa: E501 if email is not None and len(email) < 3: raise ValueError("Invalid value for `email`, length must be greater than or equal to `3`") # noqa: E501 - if email is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', email): # noqa: E501 - raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if email is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', email): # noqa: E501 + raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._email = email diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_saml_services_sp_sp.py b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_saml_services_sp_sp.py index f246d8d7d..fa7b2a400 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/providers_saml_services_sp_sp.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/providers_saml_services_sp_sp.py @@ -158,8 +158,8 @@ def email(self, email): raise ValueError("Invalid value for `email`, length must be less than or equal to `254`") # noqa: E501 if email is not None and len(email) < 3: raise ValueError("Invalid value for `email`, length must be greater than or equal to `3`") # noqa: E501 - if email is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', email): # noqa: E501 - raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if email is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', email): # noqa: E501 + raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._email = email diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/s3_settings_zone_settings.py b/isilon_sdk/isilon_sdk/v9_7_0/models/s3_settings_zone_settings.py index a06820efc..3d868bd9f 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/s3_settings_zone_settings.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/s3_settings_zone_settings.py @@ -96,8 +96,8 @@ def base_domain(self, base_domain): raise ValueError("Invalid value for `base_domain`, length must be less than or equal to `255`") # noqa: E501 if base_domain is not None and len(base_domain) < 0: raise ValueError("Invalid value for `base_domain`, length must be greater than or equal to `0`") # noqa: E501 - if base_domain is not None and not re.search(r'^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$', base_domain): # noqa: E501 - raise ValueError(r"Invalid value for `base_domain`, must be a follow pattern or equal to `/^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$/`") # noqa: E501 + if base_domain is not None and not re.search(r'^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$', base_domain): # noqa: E501 + raise ValueError(r"Invalid value for `base_domain`, must be a follow pattern or equal to `/^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$/`") # noqa: E501 self._base_domain = base_domain diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/snmp_settings_extended.py b/isilon_sdk/isilon_sdk/v9_7_0/models/snmp_settings_extended.py index 4fb3bf666..fe7ef0e77 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/snmp_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/snmp_settings_extended.py @@ -386,8 +386,8 @@ def system_contact(self, system_contact): raise ValueError("Invalid value for `system_contact`, length must be less than or equal to `254`") # noqa: E501 if system_contact is not None and len(system_contact) < 3: raise ValueError("Invalid value for `system_contact`, length must be greater than or equal to `3`") # noqa: E501 - if system_contact is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', system_contact): # noqa: E501 - raise ValueError(r"Invalid value for `system_contact`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if system_contact is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', system_contact): # noqa: E501 + raise ValueError(r"Invalid value for `system_contact`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._system_contact = system_contact diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/snmp_settings_settings.py b/isilon_sdk/isilon_sdk/v9_7_0/models/snmp_settings_settings.py index cd721cd3a..aff7c53ed 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/snmp_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/snmp_settings_settings.py @@ -322,8 +322,8 @@ def system_contact(self, system_contact): raise ValueError("Invalid value for `system_contact`, length must be less than or equal to `254`") # noqa: E501 if system_contact is not None and len(system_contact) < 3: raise ValueError("Invalid value for `system_contact`, length must be greater than or equal to `3`") # noqa: E501 - if system_contact is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', system_contact): # noqa: E501 - raise ValueError(r"Invalid value for `system_contact`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if system_contact is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', system_contact): # noqa: E501 + raise ValueError(r"Invalid value for `system_contact`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._system_contact = system_contact diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/ssh_settings_extended.py b/isilon_sdk/isilon_sdk/v9_7_0/models/ssh_settings_extended.py index aea19d4e9..cd40ac886 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/ssh_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/ssh_settings_extended.py @@ -303,8 +303,8 @@ def ca_signature_algorithms(self, ca_signature_algorithms): raise ValueError("Invalid value for `ca_signature_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if ca_signature_algorithms is not None and len(ca_signature_algorithms) < 0: raise ValueError("Invalid value for `ca_signature_algorithms`, length must be greater than or equal to `0`") # noqa: E501 - if ca_signature_algorithms is not None and not re.search(r'^([+]?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$', ca_signature_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `ca_signature_algorithms`, must be a follow pattern or equal to `/^([+]?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$/`") # noqa: E501 + if ca_signature_algorithms is not None and not re.search(r'^(\\+?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$', ca_signature_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `ca_signature_algorithms`, must be a follow pattern or equal to `/^(\\+?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$/`") # noqa: E501 self._ca_signature_algorithms = ca_signature_algorithms @@ -355,8 +355,8 @@ def ciphers(self, ciphers): raise ValueError("Invalid value for `ciphers`, length must be less than or equal to `4096`") # noqa: E501 if ciphers is not None and len(ciphers) < 7: raise ValueError("Invalid value for `ciphers`, length must be greater than or equal to `7`") # noqa: E501 - if ciphers is not None and not re.search(r'^([+]?)(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com)(,(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com))*$', ciphers): # noqa: E501 - raise ValueError(r"Invalid value for `ciphers`, must be a follow pattern or equal to `/^([+]?)(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com)(,(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com))*$/`") # noqa: E501 + if ciphers is not None and not re.search(r'^(\\+?)(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com)(,(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com))*$', ciphers): # noqa: E501 + raise ValueError(r"Invalid value for `ciphers`, must be a follow pattern or equal to `/^(\\+?)(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com)(,(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com))*$/`") # noqa: E501 self._ciphers = ciphers @@ -384,8 +384,8 @@ def host_key_algorithms(self, host_key_algorithms): raise ValueError("Invalid value for `host_key_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if host_key_algorithms is not None and len(host_key_algorithms) < 7: raise ValueError("Invalid value for `host_key_algorithms`, length must be greater than or equal to `7`") # noqa: E501 - if host_key_algorithms is not None and not re.search(r'^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$', host_key_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `host_key_algorithms`, must be a follow pattern or equal to `/^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$/`") # noqa: E501 + if host_key_algorithms is not None and not re.search(r'^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$', host_key_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `host_key_algorithms`, must be a follow pattern or equal to `/^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$/`") # noqa: E501 self._host_key_algorithms = host_key_algorithms @@ -436,8 +436,8 @@ def kex_algorithms(self, kex_algorithms): raise ValueError("Invalid value for `kex_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if kex_algorithms is not None and len(kex_algorithms) < 18: raise ValueError("Invalid value for `kex_algorithms`, length must be greater than or equal to `18`") # noqa: E501 - if kex_algorithms is not None and not re.search(r'^([+]?)(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$', kex_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `kex_algorithms`, must be a follow pattern or equal to `/^([+]?)(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$/`") # noqa: E501 + if kex_algorithms is not None and not re.search(r'^(\\+?)(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$', kex_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `kex_algorithms`, must be a follow pattern or equal to `/^(\\+?)(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$/`") # noqa: E501 self._kex_algorithms = kex_algorithms @@ -544,8 +544,8 @@ def macs(self, macs): raise ValueError("Invalid value for `macs`, length must be less than or equal to `4096`") # noqa: E501 if macs is not None and len(macs) < 8: raise ValueError("Invalid value for `macs`, length must be greater than or equal to `8`") # noqa: E501 - if macs is not None and not re.search(r'^([+]?)(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$', macs): # noqa: E501 - raise ValueError(r"Invalid value for `macs`, must be a follow pattern or equal to `/^([+]?)(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$/`") # noqa: E501 + if macs is not None and not re.search(r'^(\\+?)(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$', macs): # noqa: E501 + raise ValueError(r"Invalid value for `macs`, must be a follow pattern or equal to `/^(\\+?)(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$/`") # noqa: E501 self._macs = macs @@ -802,8 +802,8 @@ def pubkey_accepted_key_types(self, pubkey_accepted_key_types): raise ValueError("Invalid value for `pubkey_accepted_key_types`, length must be less than or equal to `4096`") # noqa: E501 if pubkey_accepted_key_types is not None and len(pubkey_accepted_key_types) < 7: raise ValueError("Invalid value for `pubkey_accepted_key_types`, length must be greater than or equal to `7`") # noqa: E501 - if pubkey_accepted_key_types is not None and not re.search(r'^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$', pubkey_accepted_key_types): # noqa: E501 - raise ValueError(r"Invalid value for `pubkey_accepted_key_types`, must be a follow pattern or equal to `/^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$/`") # noqa: E501 + if pubkey_accepted_key_types is not None and not re.search(r'^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$', pubkey_accepted_key_types): # noqa: E501 + raise ValueError(r"Invalid value for `pubkey_accepted_key_types`, must be a follow pattern or equal to `/^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$/`") # noqa: E501 self._pubkey_accepted_key_types = pubkey_accepted_key_types @@ -877,6 +877,8 @@ def subsystem(self, subsystem): raise ValueError("Invalid value for `subsystem`, length must be less than or equal to `1024`") # noqa: E501 if subsystem is not None and len(subsystem) < 0: raise ValueError("Invalid value for `subsystem`, length must be greater than or equal to `0`") # noqa: E501 + if subsystem is not None and not re.search(r'b\'^[^\\\\n]*$\'', subsystem): # noqa: E501 + raise ValueError(r"Invalid value for `subsystem`, must be a follow pattern or equal to `/b'^[^\\\\n]*$'/`") # noqa: E501 self._subsystem = subsystem diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/ssh_settings_settings.py b/isilon_sdk/isilon_sdk/v9_7_0/models/ssh_settings_settings.py index bfba55723..45088fe01 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/ssh_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/ssh_settings_settings.py @@ -303,8 +303,8 @@ def ca_signature_algorithms(self, ca_signature_algorithms): raise ValueError("Invalid value for `ca_signature_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if ca_signature_algorithms is not None and len(ca_signature_algorithms) < 0: raise ValueError("Invalid value for `ca_signature_algorithms`, length must be greater than or equal to `0`") # noqa: E501 - if ca_signature_algorithms is not None and not re.search(r'^([+]?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$', ca_signature_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `ca_signature_algorithms`, must be a follow pattern or equal to `/^([+]?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$/`") # noqa: E501 + if ca_signature_algorithms is not None and not re.search(r'^(\\+?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$', ca_signature_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `ca_signature_algorithms`, must be a follow pattern or equal to `/^(\\+?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$/`") # noqa: E501 self._ca_signature_algorithms = ca_signature_algorithms @@ -355,8 +355,8 @@ def ciphers(self, ciphers): raise ValueError("Invalid value for `ciphers`, length must be less than or equal to `4096`") # noqa: E501 if ciphers is not None and len(ciphers) < 7: raise ValueError("Invalid value for `ciphers`, length must be greater than or equal to `7`") # noqa: E501 - if ciphers is not None and not re.search(r'^([+]?)(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com)(,(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com))*$', ciphers): # noqa: E501 - raise ValueError(r"Invalid value for `ciphers`, must be a follow pattern or equal to `/^([+]?)(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com)(,(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com))*$/`") # noqa: E501 + if ciphers is not None and not re.search(r'^(\\+?)(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com)(,(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com))*$', ciphers): # noqa: E501 + raise ValueError(r"Invalid value for `ciphers`, must be a follow pattern or equal to `/^(\\+?)(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com)(,(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com))*$/`") # noqa: E501 self._ciphers = ciphers @@ -384,8 +384,8 @@ def host_key_algorithms(self, host_key_algorithms): raise ValueError("Invalid value for `host_key_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if host_key_algorithms is not None and len(host_key_algorithms) < 7: raise ValueError("Invalid value for `host_key_algorithms`, length must be greater than or equal to `7`") # noqa: E501 - if host_key_algorithms is not None and not re.search(r'^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$', host_key_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `host_key_algorithms`, must be a follow pattern or equal to `/^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$/`") # noqa: E501 + if host_key_algorithms is not None and not re.search(r'^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$', host_key_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `host_key_algorithms`, must be a follow pattern or equal to `/^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$/`") # noqa: E501 self._host_key_algorithms = host_key_algorithms @@ -436,8 +436,8 @@ def kex_algorithms(self, kex_algorithms): raise ValueError("Invalid value for `kex_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if kex_algorithms is not None and len(kex_algorithms) < 18: raise ValueError("Invalid value for `kex_algorithms`, length must be greater than or equal to `18`") # noqa: E501 - if kex_algorithms is not None and not re.search(r'^([+]?)(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$', kex_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `kex_algorithms`, must be a follow pattern or equal to `/^([+]?)(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$/`") # noqa: E501 + if kex_algorithms is not None and not re.search(r'^(\\+?)(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$', kex_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `kex_algorithms`, must be a follow pattern or equal to `/^(\\+?)(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$/`") # noqa: E501 self._kex_algorithms = kex_algorithms @@ -544,8 +544,8 @@ def macs(self, macs): raise ValueError("Invalid value for `macs`, length must be less than or equal to `4096`") # noqa: E501 if macs is not None and len(macs) < 8: raise ValueError("Invalid value for `macs`, length must be greater than or equal to `8`") # noqa: E501 - if macs is not None and not re.search(r'^([+]?)(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$', macs): # noqa: E501 - raise ValueError(r"Invalid value for `macs`, must be a follow pattern or equal to `/^([+]?)(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$/`") # noqa: E501 + if macs is not None and not re.search(r'^(\\+?)(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$', macs): # noqa: E501 + raise ValueError(r"Invalid value for `macs`, must be a follow pattern or equal to `/^(\\+?)(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$/`") # noqa: E501 self._macs = macs @@ -802,8 +802,8 @@ def pubkey_accepted_key_types(self, pubkey_accepted_key_types): raise ValueError("Invalid value for `pubkey_accepted_key_types`, length must be less than or equal to `4096`") # noqa: E501 if pubkey_accepted_key_types is not None and len(pubkey_accepted_key_types) < 7: raise ValueError("Invalid value for `pubkey_accepted_key_types`, length must be greater than or equal to `7`") # noqa: E501 - if pubkey_accepted_key_types is not None and not re.search(r'^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$', pubkey_accepted_key_types): # noqa: E501 - raise ValueError(r"Invalid value for `pubkey_accepted_key_types`, must be a follow pattern or equal to `/^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$/`") # noqa: E501 + if pubkey_accepted_key_types is not None and not re.search(r'^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$', pubkey_accepted_key_types): # noqa: E501 + raise ValueError(r"Invalid value for `pubkey_accepted_key_types`, must be a follow pattern or equal to `/^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$/`") # noqa: E501 self._pubkey_accepted_key_types = pubkey_accepted_key_types @@ -877,6 +877,8 @@ def subsystem(self, subsystem): raise ValueError("Invalid value for `subsystem`, length must be less than or equal to `1024`") # noqa: E501 if subsystem is not None and len(subsystem) < 0: raise ValueError("Invalid value for `subsystem`, length must be greater than or equal to `0`") # noqa: E501 + if subsystem is not None and not re.search(r'b\'^[^\\\\n]*$\'', subsystem): # noqa: E501 + raise ValueError(r"Invalid value for `subsystem`, must be a follow pattern or equal to `/b'^[^\\\\n]*$'/`") # noqa: E501 self._subsystem = subsystem diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/subnets_subnet_pool.py b/isilon_sdk/isilon_sdk/v9_7_0/models/subnets_subnet_pool.py index 2d8787ffa..8ca5bf988 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/subnets_subnet_pool.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/subnets_subnet_pool.py @@ -418,8 +418,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/subnets_subnet_pool_create_params.py b/isilon_sdk/isilon_sdk/v9_7_0/models/subnets_subnet_pool_create_params.py index ec6fb5b74..fd544e827 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/subnets_subnet_pool_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/subnets_subnet_pool_create_params.py @@ -443,8 +443,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/subnets_subnet_pool_static_route.py b/isilon_sdk/isilon_sdk/v9_7_0/models/subnets_subnet_pool_static_route.py index 5595e98e4..42004a635 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/subnets_subnet_pool_static_route.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/subnets_subnet_pool_static_route.py @@ -80,8 +80,8 @@ def gateway(self, gateway): raise ValueError("Invalid value for `gateway`, length must be less than or equal to `40`") # noqa: E501 if gateway is not None and len(gateway) < 1: raise ValueError("Invalid value for `gateway`, length must be greater than or equal to `1`") # noqa: E501 - if gateway is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', gateway): # noqa: E501 - raise ValueError(r"Invalid value for `gateway`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if gateway is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', gateway): # noqa: E501 + raise ValueError(r"Invalid value for `gateway`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._gateway = gateway @@ -140,8 +140,8 @@ def subnet(self, subnet): raise ValueError("Invalid value for `subnet`, length must be less than or equal to `40`") # noqa: E501 if subnet is not None and len(subnet) < 1: raise ValueError("Invalid value for `subnet`, length must be greater than or equal to `1`") # noqa: E501 - if subnet is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', subnet): # noqa: E501 - raise ValueError(r"Invalid value for `subnet`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if subnet is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', subnet): # noqa: E501 + raise ValueError(r"Invalid value for `subnet`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._subnet = subnet diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/subnets_subnet_pools_pool.py b/isilon_sdk/isilon_sdk/v9_7_0/models/subnets_subnet_pools_pool.py index 1b699ff00..60f1b6785 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/subnets_subnet_pools_pool.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/subnets_subnet_pools_pool.py @@ -652,8 +652,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/supportassist_settings_connection_gateway_endpoint.py b/isilon_sdk/isilon_sdk/v9_7_0/models/supportassist_settings_connection_gateway_endpoint.py index ed3f84699..4e6c5dfe3 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/supportassist_settings_connection_gateway_endpoint.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/supportassist_settings_connection_gateway_endpoint.py @@ -120,8 +120,8 @@ def host(self, host): raise ValueError("Invalid value for `host`, length must be less than or equal to `255`") # noqa: E501 if host is not None and len(host) < 0: raise ValueError("Invalid value for `host`, length must be greater than or equal to `0`") # noqa: E501 - if host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$)', host): # noqa: E501 - raise ValueError(r"Invalid value for `host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$)/`") # noqa: E501 + if host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$)', host): # noqa: E501 + raise ValueError(r"Invalid value for `host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$)/`") # noqa: E501 self._host = host diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/supportassist_settings_contact_primary.py b/isilon_sdk/isilon_sdk/v9_7_0/models/supportassist_settings_contact_primary.py index ddca65dfe..2f2378887 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/supportassist_settings_contact_primary.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/supportassist_settings_contact_primary.py @@ -44,7 +44,7 @@ class SupportassistSettingsContactPrimary(object): 'phone': 'phone' } - def __init__(self, email='', first_name='', last_name='', phone=None): # noqa: E501 + def __init__(self, email='', first_name='', last_name='', phone=''): # noqa: E501 """SupportassistSettingsContactPrimary - a model defined in Swagger""" # noqa: E501 self._email = None @@ -86,8 +86,8 @@ def email(self, email): raise ValueError("Invalid value for `email`, length must be less than or equal to `320`") # noqa: E501 if email is not None and len(email) < 0: raise ValueError("Invalid value for `email`, length must be greater than or equal to `0`") # noqa: E501 - if email is not None and not re.search(r'(^$|^([a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+[.])+[a-zA-Z0-9]+$))', email): # noqa: E501 - raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/(^$|^([a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+[.])+[a-zA-Z0-9]+$))/`") # noqa: E501 + if email is not None and not re.search(r'(^$|^([a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]+$))', email): # noqa: E501 + raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/(^$|^([a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]+$))/`") # noqa: E501 self._email = email @@ -115,8 +115,8 @@ def first_name(self, first_name): raise ValueError("Invalid value for `first_name`, length must be less than or equal to `50`") # noqa: E501 if first_name is not None and len(first_name) < 0: raise ValueError("Invalid value for `first_name`, length must be greater than or equal to `0`") # noqa: E501 - if first_name is not None and not re.search(r'[a-zA-Z]*[-.\']*', first_name): # noqa: E501 - raise ValueError(r"Invalid value for `first_name`, must be a follow pattern or equal to `/[a-zA-Z]*[-.']*/`") # noqa: E501 + if first_name is not None and not re.search(r'[a-zA-Z]*[\\-\\.\\\']*', first_name): # noqa: E501 + raise ValueError(r"Invalid value for `first_name`, must be a follow pattern or equal to `/[a-zA-Z]*[\\-\\.\\']*/`") # noqa: E501 self._first_name = first_name @@ -144,8 +144,8 @@ def last_name(self, last_name): raise ValueError("Invalid value for `last_name`, length must be less than or equal to `50`") # noqa: E501 if last_name is not None and len(last_name) < 0: raise ValueError("Invalid value for `last_name`, length must be greater than or equal to `0`") # noqa: E501 - if last_name is not None and not re.search(r'[a-zA-Z]*[-.\']*', last_name): # noqa: E501 - raise ValueError(r"Invalid value for `last_name`, must be a follow pattern or equal to `/[a-zA-Z]*[-.']*/`") # noqa: E501 + if last_name is not None and not re.search(r'[a-zA-Z]*[\\-\\.\\\']*', last_name): # noqa: E501 + raise ValueError(r"Invalid value for `last_name`, must be a follow pattern or equal to `/[a-zA-Z]*[\\-\\.\\']*/`") # noqa: E501 self._last_name = last_name @@ -173,6 +173,8 @@ def phone(self, phone): raise ValueError("Invalid value for `phone`, length must be less than or equal to `40`") # noqa: E501 if phone is not None and len(phone) < 0: raise ValueError("Invalid value for `phone`, length must be greater than or equal to `0`") # noqa: E501 + if phone is not None and not re.search(r'(^$|([\\.\\-\\+\/\\sxX]*([0-9]+|[\\(\\d+\\)])+)+)', phone): # noqa: E501 + raise ValueError(r"Invalid value for `phone`, must be a follow pattern or equal to `/(^$|([\\.\\-\\+\/\\sxX]*([0-9]+|[\\(\\d+\\)])+)+)/`") # noqa: E501 self._phone = phone diff --git a/isilon_sdk/isilon_sdk/v9_7_0/models/supportassist_settings_contact_primary_extended.py b/isilon_sdk/isilon_sdk/v9_7_0/models/supportassist_settings_contact_primary_extended.py index 52bfbc962..59a27d532 100644 --- a/isilon_sdk/isilon_sdk/v9_7_0/models/supportassist_settings_contact_primary_extended.py +++ b/isilon_sdk/isilon_sdk/v9_7_0/models/supportassist_settings_contact_primary_extended.py @@ -86,8 +86,8 @@ def email(self, email): raise ValueError("Invalid value for `email`, length must be less than or equal to `320`") # noqa: E501 if email is not None and len(email) < 0: raise ValueError("Invalid value for `email`, length must be greater than or equal to `0`") # noqa: E501 - if email is not None and not re.search(r'^[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+[.])+[a-zA-Z0-9]+$', email): # noqa: E501 - raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/^[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+[.])+[a-zA-Z0-9]+$/`") # noqa: E501 + if email is not None and not re.search(r'^[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]+$', email): # noqa: E501 + raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/^[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]+$/`") # noqa: E501 self._email = email @@ -115,8 +115,8 @@ def first_name(self, first_name): raise ValueError("Invalid value for `first_name`, length must be less than or equal to `50`") # noqa: E501 if first_name is not None and len(first_name) < 0: raise ValueError("Invalid value for `first_name`, length must be greater than or equal to `0`") # noqa: E501 - if first_name is not None and not re.search(r'[a-zA-Z]*[-.\']*', first_name): # noqa: E501 - raise ValueError(r"Invalid value for `first_name`, must be a follow pattern or equal to `/[a-zA-Z]*[-.']*/`") # noqa: E501 + if first_name is not None and not re.search(r'[a-zA-Z]*[\\-\\.\\\']*', first_name): # noqa: E501 + raise ValueError(r"Invalid value for `first_name`, must be a follow pattern or equal to `/[a-zA-Z]*[\\-\\.\\']*/`") # noqa: E501 self._first_name = first_name @@ -144,8 +144,8 @@ def last_name(self, last_name): raise ValueError("Invalid value for `last_name`, length must be less than or equal to `50`") # noqa: E501 if last_name is not None and len(last_name) < 0: raise ValueError("Invalid value for `last_name`, length must be greater than or equal to `0`") # noqa: E501 - if last_name is not None and not re.search(r'[a-zA-Z]*[-.\']*', last_name): # noqa: E501 - raise ValueError(r"Invalid value for `last_name`, must be a follow pattern or equal to `/[a-zA-Z]*[-.']*/`") # noqa: E501 + if last_name is not None and not re.search(r'[a-zA-Z]*[\\-\\.\\\']*', last_name): # noqa: E501 + raise ValueError(r"Invalid value for `last_name`, must be a follow pattern or equal to `/[a-zA-Z]*[\\-\\.\\']*/`") # noqa: E501 self._last_name = last_name @@ -173,6 +173,8 @@ def phone(self, phone): raise ValueError("Invalid value for `phone`, length must be less than or equal to `40`") # noqa: E501 if phone is not None and len(phone) < 0: raise ValueError("Invalid value for `phone`, length must be greater than or equal to `0`") # noqa: E501 + if phone is not None and not re.search(r'([\\.\\-\\+\/\\sxX]*([0-9]+|[\\(\\d+\\)])+)+', phone): # noqa: E501 + raise ValueError(r"Invalid value for `phone`, must be a follow pattern or equal to `/([\\.\\-\\+\/\\sxX]*([0-9]+|[\\(\\d+\\)])+)+/`") # noqa: E501 self._phone = phone diff --git a/isilon_sdk/isilon_sdk/v9_8_0/README.md b/isilon_sdk/isilon_sdk/v9_8_0/README.md index eb561372d..a2b40f0e1 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/README.md +++ b/isilon_sdk/isilon_sdk/v9_8_0/README.md @@ -18,7 +18,7 @@ Isilon SDK - Language bindings for the OneFS API This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project: - API version: 19 -- Package version: 0.6.0 +- Package version: 0.5.0 - Build package: io.swagger.codegen.languages.PythonClientCodegen For more information, please visit [https://github.com/Isilon/isilon_sdk](https://github.com/Isilon/isilon_sdk) @@ -2692,7 +2692,7 @@ sdk@isilon.com ## License -Copyright (c) 2025 Dell EMC Isilon +Copyright (c) 2018 Dell EMC Isilon Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/isilon_sdk/isilon_sdk/v9_8_0/api/namespace_api.py b/isilon_sdk/isilon_sdk/v9_8_0/api/namespace_api.py index b5bba6d12..ede850beb 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/api/namespace_api.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/api/namespace_api.py @@ -1188,7 +1188,6 @@ def get_acl(self, namespace_path, acl, **kwargs): # noqa: E501 :param str namespace_path: Namespace path relative to /. (required) :param bool acl: Show access control lists. (required) :param bool nsaccess: Indicates that the operation is on the access point instead of the store path. - :param str zone: Specifies the access zone name. :return: NamespaceAcl If the method is called asynchronously, returns the request thread. @@ -1213,13 +1212,12 @@ def get_acl_with_http_info(self, namespace_path, acl, **kwargs): # noqa: E501 :param str namespace_path: Namespace path relative to /. (required) :param bool acl: Show access control lists. (required) :param bool nsaccess: Indicates that the operation is on the access point instead of the store path. - :param str zone: Specifies the access zone name. :return: NamespaceAcl If the method is called asynchronously, returns the request thread. """ - all_params = ['namespace_path', 'acl', 'nsaccess', 'zone'] # noqa: E501 + all_params = ['namespace_path', 'acl', 'nsaccess'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -1254,8 +1252,6 @@ def get_acl_with_http_info(self, namespace_path, acl, **kwargs): # noqa: E501 query_params.append(('acl', params['acl'])) # noqa: E501 if 'nsaccess' in params: query_params.append(('nsaccess', params['nsaccess'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -1536,7 +1532,6 @@ def get_directory_metadata(self, directory_metadata_path, metadata, **kwargs): :param async_req bool :param str directory_metadata_path: Directory path relative to /. (required) :param bool metadata: Show directory metadata. (required) - :param str zone: Specifies the access zone name. :return: NamespaceMetadataList If the method is called asynchronously, returns the request thread. @@ -1560,13 +1555,12 @@ def get_directory_metadata_with_http_info(self, directory_metadata_path, metadat :param async_req bool :param str directory_metadata_path: Directory path relative to /. (required) :param bool metadata: Show directory metadata. (required) - :param str zone: Specifies the access zone name. :return: NamespaceMetadataList If the method is called asynchronously, returns the request thread. """ - all_params = ['directory_metadata_path', 'metadata', 'zone'] # noqa: E501 + all_params = ['directory_metadata_path', 'metadata'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -1599,8 +1593,6 @@ def get_directory_metadata_with_http_info(self, directory_metadata_path, metadat query_params = [] if 'metadata' in params: query_params.append(('metadata', params['metadata'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -2000,7 +1992,6 @@ def get_file_metadata(self, file_metadata_path, metadata, **kwargs): # noqa: E5 :param async_req bool :param str file_metadata_path: File path relative to /. (required) :param bool metadata: Show file metadata. (required) - :param str zone: Specifies the access zone name. :return: NamespaceMetadataList If the method is called asynchronously, returns the request thread. @@ -2024,13 +2015,12 @@ def get_file_metadata_with_http_info(self, file_metadata_path, metadata, **kwarg :param async_req bool :param str file_metadata_path: File path relative to /. (required) :param bool metadata: Show file metadata. (required) - :param str zone: Specifies the access zone name. :return: NamespaceMetadataList If the method is called asynchronously, returns the request thread. """ - all_params = ['file_metadata_path', 'metadata', 'zone'] # noqa: E501 + all_params = ['file_metadata_path', 'metadata'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2063,8 +2053,6 @@ def get_file_metadata_with_http_info(self, file_metadata_path, metadata, **kwarg query_params = [] if 'metadata' in params: query_params.append(('metadata', params['metadata'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -2791,7 +2779,6 @@ def set_acl(self, namespace_path, acl, namespace_acl, **kwargs): # noqa: E501 :param bool acl: Update access control lists. (required) :param NamespaceAcl namespace_acl: Namespace ACL parameters model. (required) :param bool nsaccess: Indicates that the operation is on the access point instead of the store path. - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. @@ -2817,13 +2804,12 @@ def set_acl_with_http_info(self, namespace_path, acl, namespace_acl, **kwargs): :param bool acl: Update access control lists. (required) :param NamespaceAcl namespace_acl: Namespace ACL parameters model. (required) :param bool nsaccess: Indicates that the operation is on the access point instead of the store path. - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. """ - all_params = ['namespace_path', 'acl', 'namespace_acl', 'nsaccess', 'zone'] # noqa: E501 + all_params = ['namespace_path', 'acl', 'namespace_acl', 'nsaccess'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2862,8 +2848,6 @@ def set_acl_with_http_info(self, namespace_path, acl, namespace_acl, **kwargs): query_params.append(('acl', params['acl'])) # noqa: E501 if 'nsaccess' in params: query_params.append(('nsaccess', params['nsaccess'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -2913,7 +2897,6 @@ def set_directory_metadata(self, directory_metadata_path, metadata, directory_me :param str directory_metadata_path: Directory path relative to /. (required) :param bool metadata: Set directory metadata. (required) :param NamespaceMetadata directory_metadata: Directory metadata parameters model. (required) - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. @@ -2938,13 +2921,12 @@ def set_directory_metadata_with_http_info(self, directory_metadata_path, metadat :param str directory_metadata_path: Directory path relative to /. (required) :param bool metadata: Set directory metadata. (required) :param NamespaceMetadata directory_metadata: Directory metadata parameters model. (required) - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. """ - all_params = ['directory_metadata_path', 'metadata', 'directory_metadata', 'zone'] # noqa: E501 + all_params = ['directory_metadata_path', 'metadata', 'directory_metadata'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2981,8 +2963,6 @@ def set_directory_metadata_with_http_info(self, directory_metadata_path, metadat query_params = [] if 'metadata' in params: query_params.append(('metadata', params['metadata'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -3032,7 +3012,6 @@ def set_file_metadata(self, file_metadata_path, metadata, file_metadata, **kwarg :param str file_metadata_path: File path relative to /. (required) :param bool metadata: Set file metadata. (required) :param NamespaceMetadata file_metadata: File metadata parameters model. (required) - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. @@ -3057,13 +3036,12 @@ def set_file_metadata_with_http_info(self, file_metadata_path, metadata, file_me :param str file_metadata_path: File path relative to /. (required) :param bool metadata: Set file metadata. (required) :param NamespaceMetadata file_metadata: File metadata parameters model. (required) - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. """ - all_params = ['file_metadata_path', 'metadata', 'file_metadata', 'zone'] # noqa: E501 + all_params = ['file_metadata_path', 'metadata', 'file_metadata'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -3100,8 +3078,6 @@ def set_file_metadata_with_http_info(self, file_metadata_path, metadata, file_me query_params = [] if 'metadata' in params: query_params.append(('metadata', params['metadata'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} diff --git a/isilon_sdk/isilon_sdk/v9_8_0/api_client.py b/isilon_sdk/isilon_sdk/v9_8_0/api_client.py index 61a0bf8eb..26a879601 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/api_client.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/api_client.py @@ -74,7 +74,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None, self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'Swagger-Codegen/0.6.0/python' + self.user_agent = 'Swagger-Codegen/0.5.0/python' # This is used for detecting for the special case of a path parameter # that is tagged with x-isi-url-encode-path-param (more details in the # __call_api function). diff --git a/isilon_sdk/isilon_sdk/v9_8_0/configuration.py b/isilon_sdk/isilon_sdk/v9_8_0/configuration.py index 0e83ae4b0..5c5e9f86c 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/configuration.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/configuration.py @@ -260,5 +260,5 @@ def to_debug_report(self): "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: 19\n"\ - "SDK Package Version: 0.6.0".\ + "SDK Package Version: 0.5.0".\ format(env=sys.platform, pyversion=sys.version) diff --git a/isilon_sdk/isilon_sdk/v9_8_0/docs/NamespaceApi.md b/isilon_sdk/isilon_sdk/v9_8_0/docs/NamespaceApi.md index 647afe575..f4adea2e2 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/docs/NamespaceApi.md +++ b/isilon_sdk/isilon_sdk/v9_8_0/docs/NamespaceApi.md @@ -613,7 +613,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_acl** -> NamespaceAcl get_acl(namespace_path, acl, nsaccess=nsaccess, zone=zone) +> NamespaceAcl get_acl(namespace_path, acl, nsaccess=nsaccess) @@ -637,10 +637,9 @@ api_instance = isilon_sdk.v9_8_0.NamespaceApi(isilon_sdk.v9_8_0.ApiClient(config namespace_path = 'namespace_path_example' # str | Namespace path relative to /. acl = true # bool | Show access control lists. nsaccess = true # bool | Indicates that the operation is on the access point instead of the store path. (optional) -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.get_acl(namespace_path, acl, nsaccess=nsaccess, zone=zone) + api_response = api_instance.get_acl(namespace_path, acl, nsaccess=nsaccess) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->get_acl: %s\n" % e) @@ -653,7 +652,6 @@ Name | Type | Description | Notes **namespace_path** | **str**| Namespace path relative to /. | **acl** | **bool**| Show access control lists. | **nsaccess** | **bool**| Indicates that the operation is on the access point instead of the store path. | [optional] - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -793,7 +791,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_directory_metadata** -> NamespaceMetadataList get_directory_metadata(directory_metadata_path, metadata, zone=zone) +> NamespaceMetadataList get_directory_metadata(directory_metadata_path, metadata) @@ -816,10 +814,9 @@ configuration.password = 'YOUR_PASSWORD' api_instance = isilon_sdk.v9_8_0.NamespaceApi(isilon_sdk.v9_8_0.ApiClient(configuration)) directory_metadata_path = 'directory_metadata_path_example' # str | Directory path relative to /. metadata = true # bool | Show directory metadata. -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.get_directory_metadata(directory_metadata_path, metadata, zone=zone) + api_response = api_instance.get_directory_metadata(directory_metadata_path, metadata) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->get_directory_metadata: %s\n" % e) @@ -831,7 +828,6 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **directory_metadata_path** | **str**| Directory path relative to /. | **metadata** | **bool**| Show directory metadata. | - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -1031,7 +1027,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_file_metadata** -> NamespaceMetadataList get_file_metadata(file_metadata_path, metadata, zone=zone) +> NamespaceMetadataList get_file_metadata(file_metadata_path, metadata) @@ -1054,10 +1050,9 @@ configuration.password = 'YOUR_PASSWORD' api_instance = isilon_sdk.v9_8_0.NamespaceApi(isilon_sdk.v9_8_0.ApiClient(configuration)) file_metadata_path = 'file_metadata_path_example' # str | File path relative to /. metadata = true # bool | Show file metadata. -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.get_file_metadata(file_metadata_path, metadata, zone=zone) + api_response = api_instance.get_file_metadata(file_metadata_path, metadata) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->get_file_metadata: %s\n" % e) @@ -1069,7 +1064,6 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **file_metadata_path** | **str**| File path relative to /. | **metadata** | **bool**| Show file metadata. | - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -1429,7 +1423,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **set_acl** -> Empty set_acl(namespace_path, acl, namespace_acl, nsaccess=nsaccess, zone=zone) +> Empty set_acl(namespace_path, acl, namespace_acl, nsaccess=nsaccess) @@ -1454,10 +1448,9 @@ namespace_path = 'namespace_path_example' # str | Namespace path relative to /. acl = true # bool | Update access control lists. namespace_acl = isilon_sdk.v9_8_0.NamespaceAcl() # NamespaceAcl | Namespace ACL parameters model. nsaccess = true # bool | Indicates that the operation is on the access point instead of the store path. (optional) -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.set_acl(namespace_path, acl, namespace_acl, nsaccess=nsaccess, zone=zone) + api_response = api_instance.set_acl(namespace_path, acl, namespace_acl, nsaccess=nsaccess) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->set_acl: %s\n" % e) @@ -1471,7 +1464,6 @@ Name | Type | Description | Notes **acl** | **bool**| Update access control lists. | **namespace_acl** | [**NamespaceAcl**](NamespaceAcl.md)| Namespace ACL parameters model. | **nsaccess** | **bool**| Indicates that the operation is on the access point instead of the store path. | [optional] - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -1489,7 +1481,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **set_directory_metadata** -> Empty set_directory_metadata(directory_metadata_path, metadata, directory_metadata, zone=zone) +> Empty set_directory_metadata(directory_metadata_path, metadata, directory_metadata) @@ -1513,10 +1505,9 @@ api_instance = isilon_sdk.v9_8_0.NamespaceApi(isilon_sdk.v9_8_0.ApiClient(config directory_metadata_path = 'directory_metadata_path_example' # str | Directory path relative to /. metadata = true # bool | Set directory metadata. directory_metadata = isilon_sdk.v9_8_0.NamespaceMetadata() # NamespaceMetadata | Directory metadata parameters model. -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.set_directory_metadata(directory_metadata_path, metadata, directory_metadata, zone=zone) + api_response = api_instance.set_directory_metadata(directory_metadata_path, metadata, directory_metadata) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->set_directory_metadata: %s\n" % e) @@ -1529,7 +1520,6 @@ Name | Type | Description | Notes **directory_metadata_path** | **str**| Directory path relative to /. | **metadata** | **bool**| Set directory metadata. | **directory_metadata** | [**NamespaceMetadata**](NamespaceMetadata.md)| Directory metadata parameters model. | - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -1547,7 +1537,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **set_file_metadata** -> Empty set_file_metadata(file_metadata_path, metadata, file_metadata, zone=zone) +> Empty set_file_metadata(file_metadata_path, metadata, file_metadata) @@ -1571,10 +1561,9 @@ api_instance = isilon_sdk.v9_8_0.NamespaceApi(isilon_sdk.v9_8_0.ApiClient(config file_metadata_path = 'file_metadata_path_example' # str | File path relative to /. metadata = true # bool | Set file metadata. file_metadata = isilon_sdk.v9_8_0.NamespaceMetadata() # NamespaceMetadata | File metadata parameters model. -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.set_file_metadata(file_metadata_path, metadata, file_metadata, zone=zone) + api_response = api_instance.set_file_metadata(file_metadata_path, metadata, file_metadata) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->set_file_metadata: %s\n" % e) @@ -1587,7 +1576,6 @@ Name | Type | Description | Notes **file_metadata_path** | **str**| File path relative to /. | **metadata** | **bool**| Set file metadata. | **file_metadata** | [**NamespaceMetadata**](NamespaceMetadata.md)| File metadata parameters model. | - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type diff --git a/isilon_sdk/isilon_sdk/v9_8_0/docs/SupportassistSettingsContactPrimary.md b/isilon_sdk/isilon_sdk/v9_8_0/docs/SupportassistSettingsContactPrimary.md index 4c4991d5d..91e4979e1 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/docs/SupportassistSettingsContactPrimary.md +++ b/isilon_sdk/isilon_sdk/v9_8_0/docs/SupportassistSettingsContactPrimary.md @@ -6,7 +6,7 @@ Name | Type | Description | Notes **email** | **str** | Contact's email address. | [optional] [default to ''] **first_name** | **str** | Contact's first name. | [optional] [default to ''] **last_name** | **str** | Contact's last name. | [optional] [default to ''] -**phone** | **str** | Contact's phone number. | [optional] +**phone** | **str** | Contact's phone number. | [optional] [default to ''] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/changelist_entry.py b/isilon_sdk/isilon_sdk/v9_8_0/models/changelist_entry.py index 9fc2640c3..60e76f550 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/changelist_entry.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/changelist_entry.py @@ -554,6 +554,8 @@ def physical_size(self, physical_size): """ if physical_size is None: raise ValueError("Invalid value for `physical_size`, must not be `None`") # noqa: E501 + if physical_size is not None and physical_size > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `physical_size`, must be a value less than or equal to `4294967295`") # noqa: E501 if physical_size is not None and physical_size < 0: # noqa: E501 raise ValueError("Invalid value for `physical_size`, must be a value greater than or equal to `0`") # noqa: E501 @@ -581,6 +583,8 @@ def size(self, size): """ if size is None: raise ValueError("Invalid value for `size`, must not be `None`") # noqa: E501 + if size is not None and size > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `size`, must be a value less than or equal to `4294967295`") # noqa: E501 if size is not None and size < 0: # noqa: E501 raise ValueError("Invalid value for `size`, must be a value greater than or equal to `0`") # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_email_extended.py b/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_email_extended.py index 22b33d19c..9a4acb9bb 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_email_extended.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_email_extended.py @@ -141,8 +141,8 @@ def mail_relay(self, mail_relay): :param mail_relay: The mail_relay of this ClusterEmailExtended. # noqa: E501 :type: str """ - if mail_relay is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', mail_relay): # noqa: E501 - raise ValueError(r"Invalid value for `mail_relay`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if mail_relay is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', mail_relay): # noqa: E501 + raise ValueError(r"Invalid value for `mail_relay`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._mail_relay = mail_relay @@ -170,8 +170,8 @@ def mail_sender(self, mail_sender): raise ValueError("Invalid value for `mail_sender`, length must be less than or equal to `254`") # noqa: E501 if mail_sender is not None and len(mail_sender) < 3: raise ValueError("Invalid value for `mail_sender`, length must be greater than or equal to `3`") # noqa: E501 - if mail_sender is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', mail_sender): # noqa: E501 - raise ValueError(r"Invalid value for `mail_sender`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if mail_sender is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', mail_sender): # noqa: E501 + raise ValueError(r"Invalid value for `mail_sender`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._mail_sender = mail_sender @@ -278,8 +278,8 @@ def smtp_auth_username(self, smtp_auth_username): raise ValueError("Invalid value for `smtp_auth_username`, length must be less than or equal to `256`") # noqa: E501 if smtp_auth_username is not None and len(smtp_auth_username) < 1: raise ValueError("Invalid value for `smtp_auth_username`, length must be greater than or equal to `1`") # noqa: E501 - if smtp_auth_username is not None and not re.search(r'^[a-zA-Z0-9!@#%^&(){}~`_ .-]+$', smtp_auth_username): # noqa: E501 - raise ValueError(r"Invalid value for `smtp_auth_username`, must be a follow pattern or equal to `/^[a-zA-Z0-9!@#%^&(){}~`_ .-]+$/`") # noqa: E501 + if smtp_auth_username is not None and not re.search(r'^[^]\"\/\\[\\:;|=,+*?<>$]+', smtp_auth_username): # noqa: E501 + raise ValueError(r"Invalid value for `smtp_auth_username`, must be a follow pattern or equal to `/^[^]\"\/\\[\\:;|=,+*?<>$]+/`") # noqa: E501 self._smtp_auth_username = smtp_auth_username diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_email_settings.py b/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_email_settings.py index fa9b2ca2c..059f429ec 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_email_settings.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_email_settings.py @@ -136,8 +136,8 @@ def mail_relay(self, mail_relay): """ if mail_relay is None: raise ValueError("Invalid value for `mail_relay`, must not be `None`") # noqa: E501 - if mail_relay is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', mail_relay): # noqa: E501 - raise ValueError(r"Invalid value for `mail_relay`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if mail_relay is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', mail_relay): # noqa: E501 + raise ValueError(r"Invalid value for `mail_relay`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._mail_relay = mail_relay diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_internal_networks_failover_ip_addresse.py b/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_internal_networks_failover_ip_addresse.py index ab5a2e5a2..b32d1479e 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_internal_networks_failover_ip_addresse.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_internal_networks_failover_ip_addresse.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_internal_networks_failover_ip_addresse_extended.py b/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_internal_networks_failover_ip_addresse_extended.py index d56272484..edae463f3 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_internal_networks_failover_ip_addresse_extended.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_internal_networks_failover_ip_addresse_extended.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_internal_networks_int_a_ip_addresse.py b/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_internal_networks_int_a_ip_addresse.py index 3ef4fd848..3c70a09bd 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_internal_networks_int_a_ip_addresse.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_internal_networks_int_a_ip_addresse.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py b/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py index 2b95b75e6..d2c5c28a7 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_internal_networks_int_b_ip_addresse.py b/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_internal_networks_int_b_ip_addresse.py index 84d479693..12323718c 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_internal_networks_int_b_ip_addresse.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_internal_networks_int_b_ip_addresse.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py b/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py index 5f711a777..73741450a 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_mode_settings.py b/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_mode_settings.py index 1892ce557..ecf802d47 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_mode_settings.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_mode_settings.py @@ -84,8 +84,8 @@ def cloud_storage_console(self, cloud_storage_console): raise ValueError("Invalid value for `cloud_storage_console`, length must be less than or equal to `2048`") # noqa: E501 if cloud_storage_console is not None and len(cloud_storage_console) < 11: raise ValueError("Invalid value for `cloud_storage_console`, length must be greater than or equal to `11`") # noqa: E501 - if cloud_storage_console is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', cloud_storage_console): # noqa: E501 - raise ValueError(r"Invalid value for `cloud_storage_console`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if cloud_storage_console is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', cloud_storage_console): # noqa: E501 + raise ValueError(r"Invalid value for `cloud_storage_console`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._cloud_storage_console = cloud_storage_console @@ -111,8 +111,8 @@ def monitoring(self, monitoring): raise ValueError("Invalid value for `monitoring`, length must be less than or equal to `2048`") # noqa: E501 if monitoring is not None and len(monitoring) < 11: raise ValueError("Invalid value for `monitoring`, length must be greater than or equal to `11`") # noqa: E501 - if monitoring is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', monitoring): # noqa: E501 - raise ValueError(r"Invalid value for `monitoring`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if monitoring is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', monitoring): # noqa: E501 + raise ValueError(r"Invalid value for `monitoring`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._monitoring = monitoring @@ -161,8 +161,8 @@ def support(self, support): raise ValueError("Invalid value for `support`, length must be less than or equal to `2048`") # noqa: E501 if support is not None and len(support) < 11: raise ValueError("Invalid value for `support`, length must be greater than or equal to `11`") # noqa: E501 - if support is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', support): # noqa: E501 - raise ValueError(r"Invalid value for `support`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if support is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', support): # noqa: E501 + raise ValueError(r"Invalid value for `support`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._support = support diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_mode_settings_extended.py b/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_mode_settings_extended.py index a1a8e2cf8..c82bee117 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_mode_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_mode_settings_extended.py @@ -79,8 +79,8 @@ def cloud_storage_console(self, cloud_storage_console): raise ValueError("Invalid value for `cloud_storage_console`, length must be less than or equal to `2048`") # noqa: E501 if cloud_storage_console is not None and len(cloud_storage_console) < 11: raise ValueError("Invalid value for `cloud_storage_console`, length must be greater than or equal to `11`") # noqa: E501 - if cloud_storage_console is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', cloud_storage_console): # noqa: E501 - raise ValueError(r"Invalid value for `cloud_storage_console`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if cloud_storage_console is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', cloud_storage_console): # noqa: E501 + raise ValueError(r"Invalid value for `cloud_storage_console`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._cloud_storage_console = cloud_storage_console @@ -106,8 +106,8 @@ def monitoring(self, monitoring): raise ValueError("Invalid value for `monitoring`, length must be less than or equal to `2048`") # noqa: E501 if monitoring is not None and len(monitoring) < 11: raise ValueError("Invalid value for `monitoring`, length must be greater than or equal to `11`") # noqa: E501 - if monitoring is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', monitoring): # noqa: E501 - raise ValueError(r"Invalid value for `monitoring`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if monitoring is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', monitoring): # noqa: E501 + raise ValueError(r"Invalid value for `monitoring`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._monitoring = monitoring @@ -133,8 +133,8 @@ def support(self, support): raise ValueError("Invalid value for `support`, length must be less than or equal to `2048`") # noqa: E501 if support is not None and len(support) < 11: raise ValueError("Invalid value for `support`, length must be greater than or equal to `11`") # noqa: E501 - if support is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', support): # noqa: E501 - raise ValueError(r"Invalid value for `support`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if support is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', support): # noqa: E501 + raise ValueError(r"Invalid value for `support`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._support = support diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_node.py b/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_node.py index 7ab44aa3b..51fe8e96c 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_node.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_node.py @@ -218,8 +218,8 @@ def internal_ip_address(self, internal_ip_address): raise ValueError("Invalid value for `internal_ip_address`, length must be less than or equal to `45`") # noqa: E501 if internal_ip_address is not None and len(internal_ip_address) < 2: raise ValueError("Invalid value for `internal_ip_address`, length must be greater than or equal to `2`") # noqa: E501 - if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 - raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 + raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._internal_ip_address = internal_ip_address diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_node_extended.py b/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_node_extended.py index 596c1b12a..486972150 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_node_extended.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/cluster_node_extended.py @@ -218,8 +218,8 @@ def internal_ip_address(self, internal_ip_address): raise ValueError("Invalid value for `internal_ip_address`, length must be less than or equal to `45`") # noqa: E501 if internal_ip_address is not None and len(internal_ip_address) < 2: raise ValueError("Invalid value for `internal_ip_address`, length must be greater than or equal to `2`") # noqa: E501 - if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 - raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 + raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._internal_ip_address = internal_ip_address diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/config_network_network.py b/isilon_sdk/isilon_sdk/v9_8_0/models/config_network_network.py index b1dcd4562..30209ad15 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/config_network_network.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/config_network_network.py @@ -81,8 +81,8 @@ def gateway(self, gateway): raise ValueError("Invalid value for `gateway`, length must be less than or equal to `45`") # noqa: E501 if gateway is not None and len(gateway) < 2: raise ValueError("Invalid value for `gateway`, length must be greater than or equal to `2`") # noqa: E501 - if gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', gateway): # noqa: E501 - raise ValueError(r"Invalid value for `gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', gateway): # noqa: E501 + raise ValueError(r"Invalid value for `gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._gateway = gateway diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/config_network_network_range.py b/isilon_sdk/isilon_sdk/v9_8_0/models/config_network_network_range.py index cc26be235..34265041a 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/config_network_network_range.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/config_network_network_range.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -105,8 +105,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/config_node.py b/isilon_sdk/isilon_sdk/v9_8_0/models/config_node.py index 925b6f61a..330f12225 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/config_node.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/config_node.py @@ -118,8 +118,8 @@ def ip_addr(self, ip_addr): raise ValueError("Invalid value for `ip_addr`, length must be less than or equal to `45`") # noqa: E501 if ip_addr is not None and len(ip_addr) < 2: raise ValueError("Invalid value for `ip_addr`, length must be greater than or equal to `2`") # noqa: E501 - if ip_addr is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ip_addr): # noqa: E501 - raise ValueError(r"Invalid value for `ip_addr`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if ip_addr is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ip_addr): # noqa: E501 + raise ValueError(r"Invalid value for `ip_addr`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._ip_addr = ip_addr diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/diagnostics_gather_settings_extended.py b/isilon_sdk/isilon_sdk/v9_8_0/models/diagnostics_gather_settings_extended.py index 5a362806e..36994625e 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/diagnostics_gather_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/diagnostics_gather_settings_extended.py @@ -228,8 +228,8 @@ def ftp_upload_host(self, ftp_upload_host): :param ftp_upload_host: The ftp_upload_host of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_host = ftp_upload_host @@ -347,8 +347,8 @@ def ftp_upload_proxy(self, ftp_upload_proxy): :param ftp_upload_proxy: The ftp_upload_proxy of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_proxy = ftp_upload_proxy @@ -622,8 +622,8 @@ def http_upload_host(self, http_upload_host): :param http_upload_host: The http_upload_host of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_host = http_upload_host @@ -672,8 +672,8 @@ def http_upload_proxy(self, http_upload_proxy): :param http_upload_proxy: The http_upload_proxy of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_proxy = http_upload_proxy diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/diagnostics_gather_settings_settings.py b/isilon_sdk/isilon_sdk/v9_8_0/models/diagnostics_gather_settings_settings.py index 3234f8616..21cb0dc5b 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/diagnostics_gather_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/diagnostics_gather_settings_settings.py @@ -223,8 +223,8 @@ def ftp_upload_host(self, ftp_upload_host): :param ftp_upload_host: The ftp_upload_host of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_host = ftp_upload_host @@ -319,8 +319,8 @@ def ftp_upload_proxy(self, ftp_upload_proxy): :param ftp_upload_proxy: The ftp_upload_proxy of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_proxy = ftp_upload_proxy @@ -594,8 +594,8 @@ def http_upload_host(self, http_upload_host): :param http_upload_host: The http_upload_host of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_host = http_upload_host @@ -644,8 +644,8 @@ def http_upload_proxy(self, http_upload_proxy): :param http_upload_proxy: The http_upload_proxy of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_proxy = http_upload_proxy diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/diagnostics_gather_start_item.py b/isilon_sdk/isilon_sdk/v9_8_0/models/diagnostics_gather_start_item.py index 0b7d42ad4..f2bba2af7 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/diagnostics_gather_start_item.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/diagnostics_gather_start_item.py @@ -233,8 +233,8 @@ def ftp_upload_host(self, ftp_upload_host): :param ftp_upload_host: The ftp_upload_host of this DiagnosticsGatherStartItem. # noqa: E501 :type: str """ - if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_host = ftp_upload_host @@ -352,8 +352,8 @@ def ftp_upload_proxy(self, ftp_upload_proxy): :param ftp_upload_proxy: The ftp_upload_proxy of this DiagnosticsGatherStartItem. # noqa: E501 :type: str """ - if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_proxy = ftp_upload_proxy @@ -627,8 +627,8 @@ def http_upload_host(self, http_upload_host): :param http_upload_host: The http_upload_host of this DiagnosticsGatherStartItem. # noqa: E501 :type: str """ - if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_host = http_upload_host @@ -677,8 +677,8 @@ def http_upload_proxy(self, http_upload_proxy): :param http_upload_proxy: The http_upload_proxy of this DiagnosticsGatherStartItem. # noqa: E501 :type: str """ - if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_proxy = http_upload_proxy diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/diagnostics_netlogger_settings_settings.py b/isilon_sdk/isilon_sdk/v9_8_0/models/diagnostics_netlogger_settings_settings.py index 9c91369c2..583c666e0 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/diagnostics_netlogger_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/diagnostics_netlogger_settings_settings.py @@ -102,8 +102,8 @@ def clients(self, clients): :param clients: The clients of this DiagnosticsNetloggerSettingsSettings. # noqa: E501 :type: str """ - if clients is not None and not re.search(r'^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$', clients): # noqa: E501 - raise ValueError(r"Invalid value for `clients`, must be a follow pattern or equal to `/^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$/`") # noqa: E501 + if clients is not None and not re.search(r'^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$', clients): # noqa: E501 + raise ValueError(r"Invalid value for `clients`, must be a follow pattern or equal to `/^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$/`") # noqa: E501 self._clients = clients diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/event_channel_parameters.py b/isilon_sdk/isilon_sdk/v9_8_0/models/event_channel_parameters.py index 4e670c41f..e5b946699 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/event_channel_parameters.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/event_channel_parameters.py @@ -205,8 +205,8 @@ def custom_template(self, custom_template): raise ValueError("Invalid value for `custom_template`, length must be less than or equal to `4096`") # noqa: E501 if custom_template is not None and len(custom_template) < 0: raise ValueError("Invalid value for `custom_template`, length must be greater than or equal to `0`") # noqa: E501 - if custom_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', custom_template): # noqa: E501 - raise ValueError(r"Invalid value for `custom_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if custom_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', custom_template): # noqa: E501 + raise ValueError(r"Invalid value for `custom_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._custom_template = custom_template diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/groupnet_subnet.py b/isilon_sdk/isilon_sdk/v9_8_0/models/groupnet_subnet.py index 76e3ea5b5..5b6066087 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/groupnet_subnet.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/groupnet_subnet.py @@ -331,8 +331,8 @@ def sc_service_name(self, sc_service_name): raise ValueError("Invalid value for `sc_service_name`, length must be less than or equal to `2048`") # noqa: E501 if sc_service_name is not None and len(sc_service_name) < 0: raise ValueError("Invalid value for `sc_service_name`, length must be greater than or equal to `0`") # noqa: E501 - if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 - raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 + raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_service_name = sc_service_name diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/groupnet_subnet_create_params.py b/isilon_sdk/isilon_sdk/v9_8_0/models/groupnet_subnet_create_params.py index 4cba5cdf3..c8465dcf7 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/groupnet_subnet_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/groupnet_subnet_create_params.py @@ -337,8 +337,8 @@ def sc_service_name(self, sc_service_name): raise ValueError("Invalid value for `sc_service_name`, length must be less than or equal to `2048`") # noqa: E501 if sc_service_name is not None and len(sc_service_name) < 0: raise ValueError("Invalid value for `sc_service_name`, length must be greater than or equal to `0`") # noqa: E501 - if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 - raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 + raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_service_name = sc_service_name diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/groupnet_subnet_extended.py b/isilon_sdk/isilon_sdk/v9_8_0/models/groupnet_subnet_extended.py index 8242c56ca..fa662337b 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/groupnet_subnet_extended.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/groupnet_subnet_extended.py @@ -361,8 +361,8 @@ def sc_service_name(self, sc_service_name): raise ValueError("Invalid value for `sc_service_name`, length must be less than or equal to `2048`") # noqa: E501 if sc_service_name is not None and len(sc_service_name) < 0: raise ValueError("Invalid value for `sc_service_name`, length must be greater than or equal to `0`") # noqa: E501 - if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 - raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 + raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_service_name = sc_service_name diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/groupnet_subnet_sc_service_addr.py b/isilon_sdk/isilon_sdk/v9_8_0/models/groupnet_subnet_sc_service_addr.py index c3a537845..631b9789a 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/groupnet_subnet_sc_service_addr.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/groupnet_subnet_sc_service_addr.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `40`") # noqa: E501 if high is not None and len(high) < 1: raise ValueError("Invalid value for `high`, length must be greater than or equal to `1`") # noqa: E501 - if high is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if high is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `40`") # noqa: E501 if low is not None and len(low) < 1: raise ValueError("Invalid value for `low`, length must be greater than or equal to `1`") # noqa: E501 - if low is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if low is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/network_interface.py b/isilon_sdk/isilon_sdk/v9_8_0/models/network_interface.py index 806cf6650..d03b8265c 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/network_interface.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/network_interface.py @@ -203,8 +203,8 @@ def ipv4_gateway(self, ipv4_gateway): raise ValueError("Invalid value for `ipv4_gateway`, length must be less than or equal to `16`") # noqa: E501 if ipv4_gateway is not None and len(ipv4_gateway) < 1: raise ValueError("Invalid value for `ipv4_gateway`, length must be greater than or equal to `1`") # noqa: E501 - if ipv4_gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ipv4_gateway): # noqa: E501 - raise ValueError(r"Invalid value for `ipv4_gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if ipv4_gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ipv4_gateway): # noqa: E501 + raise ValueError(r"Invalid value for `ipv4_gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._ipv4_gateway = ipv4_gateway diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/network_interface_vlan.py b/isilon_sdk/isilon_sdk/v9_8_0/models/network_interface_vlan.py index c419d9792..4f691607d 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/network_interface_vlan.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/network_interface_vlan.py @@ -197,8 +197,8 @@ def ipv4_gateway(self, ipv4_gateway): raise ValueError("Invalid value for `ipv4_gateway`, length must be less than or equal to `16`") # noqa: E501 if ipv4_gateway is not None and len(ipv4_gateway) < 1: raise ValueError("Invalid value for `ipv4_gateway`, length must be greater than or equal to `1`") # noqa: E501 - if ipv4_gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ipv4_gateway): # noqa: E501 - raise ValueError(r"Invalid value for `ipv4_gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if ipv4_gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ipv4_gateway): # noqa: E501 + raise ValueError(r"Invalid value for `ipv4_gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._ipv4_gateway = ipv4_gateway diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/network_pool.py b/isilon_sdk/isilon_sdk/v9_8_0/models/network_pool.py index b2db1ec20..3730a4518 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/network_pool.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/network_pool.py @@ -642,8 +642,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/node_internal_ip_address_node.py b/isilon_sdk/isilon_sdk/v9_8_0/models/node_internal_ip_address_node.py index 634c447d1..a30f5549f 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/node_internal_ip_address_node.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/node_internal_ip_address_node.py @@ -146,8 +146,8 @@ def internal_ip_address(self, internal_ip_address): raise ValueError("Invalid value for `internal_ip_address`, length must be less than or equal to `45`") # noqa: E501 if internal_ip_address is not None and len(internal_ip_address) < 2: raise ValueError("Invalid value for `internal_ip_address`, length must be greater than or equal to `2`") # noqa: E501 - if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 - raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 + raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._internal_ip_address = internal_ip_address diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/nodes_node_internal_ip_address.py b/isilon_sdk/isilon_sdk/v9_8_0/models/nodes_node_internal_ip_address.py index e305266dc..e3452e32a 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/nodes_node_internal_ip_address.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/nodes_node_internal_ip_address.py @@ -72,8 +72,8 @@ def internal_ip_address(self, internal_ip_address): raise ValueError("Invalid value for `internal_ip_address`, length must be less than or equal to `45`") # noqa: E501 if internal_ip_address is not None and len(internal_ip_address) < 2: raise ValueError("Invalid value for `internal_ip_address`, length must be greater than or equal to `2`") # noqa: E501 - if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 - raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 + raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._internal_ip_address = internal_ip_address diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_ads_ads_item.py b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_ads_ads_item.py index 65d201610..2219a8345 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_ads_ads_item.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_ads_ads_item.py @@ -652,8 +652,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_ads_ads_item_extended.py b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_ads_ads_item_extended.py index b1f5af35b..c1f84a199 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_ads_ads_item_extended.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_ads_ads_item_extended.py @@ -642,8 +642,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_ads_id_params.py b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_ads_id_params.py index a506347d6..b0c326417 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_ads_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_ads_id_params.py @@ -554,8 +554,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_ads_item.py b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_ads_item.py index a2a5f0d8b..9aef3cc7c 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_ads_item.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_ads_item.py @@ -598,8 +598,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_file_file_item.py b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_file_file_item.py index 4fdb3b294..bac3f1432 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_file_file_item.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_file_file_item.py @@ -466,8 +466,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_file_id_params.py b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_file_id_params.py index 4fc09f60d..d6723c63a 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_file_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_file_id_params.py @@ -474,8 +474,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_file_item.py b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_file_item.py index c9021da64..07b05b235 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_file_item.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_file_item.py @@ -445,8 +445,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_ldap_id_params.py b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_ldap_id_params.py index 0c1f00e26..8d5e79752 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_ldap_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_ldap_id_params.py @@ -1108,8 +1108,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template @@ -2076,8 +2076,8 @@ def tls_protocol_min(self, tls_protocol_min): raise ValueError("Invalid value for `tls_protocol_min`, length must be less than or equal to `255`") # noqa: E501 if tls_protocol_min is not None and len(tls_protocol_min) < 0: raise ValueError("Invalid value for `tls_protocol_min`, length must be greater than or equal to `0`") # noqa: E501 - if tls_protocol_min is not None and not re.search(r'^[0-9]+[.][0-9]+$', tls_protocol_min): # noqa: E501 - raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+[.][0-9]+$/`") # noqa: E501 + if tls_protocol_min is not None and not re.search(r'^[0-9]+\\.[0-9]+$', tls_protocol_min): # noqa: E501 + raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+\\.[0-9]+$/`") # noqa: E501 self._tls_protocol_min = tls_protocol_min diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_ldap_item.py b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_ldap_item.py index 02950aaae..c02bf4fd8 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_ldap_item.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_ldap_item.py @@ -1151,8 +1151,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template @@ -2153,8 +2153,8 @@ def tls_protocol_min(self, tls_protocol_min): raise ValueError("Invalid value for `tls_protocol_min`, length must be less than or equal to `255`") # noqa: E501 if tls_protocol_min is not None and len(tls_protocol_min) < 0: raise ValueError("Invalid value for `tls_protocol_min`, length must be greater than or equal to `0`") # noqa: E501 - if tls_protocol_min is not None and not re.search(r'^[0-9]+[.][0-9]+$', tls_protocol_min): # noqa: E501 - raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+[.][0-9]+$/`") # noqa: E501 + if tls_protocol_min is not None and not re.search(r'^[0-9]+\\.[0-9]+$', tls_protocol_min): # noqa: E501 + raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+\\.[0-9]+$/`") # noqa: E501 self._tls_protocol_min = tls_protocol_min diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_ldap_ldap_item.py b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_ldap_ldap_item.py index ea2317a44..b57fd365a 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_ldap_ldap_item.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_ldap_ldap_item.py @@ -1135,8 +1135,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template @@ -2181,8 +2181,8 @@ def tls_protocol_min(self, tls_protocol_min): raise ValueError("Invalid value for `tls_protocol_min`, length must be less than or equal to `255`") # noqa: E501 if tls_protocol_min is not None and len(tls_protocol_min) < 0: raise ValueError("Invalid value for `tls_protocol_min`, length must be greater than or equal to `0`") # noqa: E501 - if tls_protocol_min is not None and not re.search(r'^[0-9]+[.][0-9]+$', tls_protocol_min): # noqa: E501 - raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+[.][0-9]+$/`") # noqa: E501 + if tls_protocol_min is not None and not re.search(r'^[0-9]+\\.[0-9]+$', tls_protocol_min): # noqa: E501 + raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+\\.[0-9]+$/`") # noqa: E501 self._tls_protocol_min = tls_protocol_min diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_local_id_params.py b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_local_id_params.py index 8400cbb5e..b146b42f4 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_local_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_local_id_params.py @@ -263,8 +263,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_local_local_item.py b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_local_local_item.py index b76f1694e..5ee247012 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_local_local_item.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_local_local_item.py @@ -227,8 +227,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_nis_id_params.py b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_nis_id_params.py index d9f1e5a41..625753986 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_nis_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_nis_id_params.py @@ -464,8 +464,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_nis_item.py b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_nis_item.py index c37283588..7bac24852 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_nis_item.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_nis_item.py @@ -493,8 +493,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_nis_nis_item.py b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_nis_nis_item.py index 20da45378..dd77cece0 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_nis_nis_item.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_nis_nis_item.py @@ -516,8 +516,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_saml_services_sp_extended.py b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_saml_services_sp_extended.py index 8dd39ea61..ebd76603d 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_saml_services_sp_extended.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_saml_services_sp_extended.py @@ -106,8 +106,8 @@ def email(self, email): raise ValueError("Invalid value for `email`, length must be less than or equal to `254`") # noqa: E501 if email is not None and len(email) < 3: raise ValueError("Invalid value for `email`, length must be greater than or equal to `3`") # noqa: E501 - if email is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', email): # noqa: E501 - raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if email is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', email): # noqa: E501 + raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._email = email diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_saml_services_sp_sp.py b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_saml_services_sp_sp.py index f1e4b9ee8..93cf21f87 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/providers_saml_services_sp_sp.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/providers_saml_services_sp_sp.py @@ -158,8 +158,8 @@ def email(self, email): raise ValueError("Invalid value for `email`, length must be less than or equal to `254`") # noqa: E501 if email is not None and len(email) < 3: raise ValueError("Invalid value for `email`, length must be greater than or equal to `3`") # noqa: E501 - if email is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', email): # noqa: E501 - raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if email is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', email): # noqa: E501 + raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._email = email diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/s3_settings_zone_settings.py b/isilon_sdk/isilon_sdk/v9_8_0/models/s3_settings_zone_settings.py index a7ffb4182..97806acd8 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/s3_settings_zone_settings.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/s3_settings_zone_settings.py @@ -96,8 +96,8 @@ def base_domain(self, base_domain): raise ValueError("Invalid value for `base_domain`, length must be less than or equal to `255`") # noqa: E501 if base_domain is not None and len(base_domain) < 0: raise ValueError("Invalid value for `base_domain`, length must be greater than or equal to `0`") # noqa: E501 - if base_domain is not None and not re.search(r'^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$', base_domain): # noqa: E501 - raise ValueError(r"Invalid value for `base_domain`, must be a follow pattern or equal to `/^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$/`") # noqa: E501 + if base_domain is not None and not re.search(r'^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$', base_domain): # noqa: E501 + raise ValueError(r"Invalid value for `base_domain`, must be a follow pattern or equal to `/^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$/`") # noqa: E501 self._base_domain = base_domain diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/snmp_settings_extended.py b/isilon_sdk/isilon_sdk/v9_8_0/models/snmp_settings_extended.py index 1f4538123..ec2cbe802 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/snmp_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/snmp_settings_extended.py @@ -386,8 +386,8 @@ def system_contact(self, system_contact): raise ValueError("Invalid value for `system_contact`, length must be less than or equal to `254`") # noqa: E501 if system_contact is not None and len(system_contact) < 3: raise ValueError("Invalid value for `system_contact`, length must be greater than or equal to `3`") # noqa: E501 - if system_contact is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', system_contact): # noqa: E501 - raise ValueError(r"Invalid value for `system_contact`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if system_contact is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', system_contact): # noqa: E501 + raise ValueError(r"Invalid value for `system_contact`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._system_contact = system_contact diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/snmp_settings_settings.py b/isilon_sdk/isilon_sdk/v9_8_0/models/snmp_settings_settings.py index 51764c877..ca8691681 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/snmp_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/snmp_settings_settings.py @@ -322,8 +322,8 @@ def system_contact(self, system_contact): raise ValueError("Invalid value for `system_contact`, length must be less than or equal to `254`") # noqa: E501 if system_contact is not None and len(system_contact) < 3: raise ValueError("Invalid value for `system_contact`, length must be greater than or equal to `3`") # noqa: E501 - if system_contact is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', system_contact): # noqa: E501 - raise ValueError(r"Invalid value for `system_contact`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if system_contact is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', system_contact): # noqa: E501 + raise ValueError(r"Invalid value for `system_contact`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._system_contact = system_contact diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/ssh_settings_extended.py b/isilon_sdk/isilon_sdk/v9_8_0/models/ssh_settings_extended.py index 55a87a1a2..b57e1de4a 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/ssh_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/ssh_settings_extended.py @@ -303,8 +303,8 @@ def ca_signature_algorithms(self, ca_signature_algorithms): raise ValueError("Invalid value for `ca_signature_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if ca_signature_algorithms is not None and len(ca_signature_algorithms) < 0: raise ValueError("Invalid value for `ca_signature_algorithms`, length must be greater than or equal to `0`") # noqa: E501 - if ca_signature_algorithms is not None and not re.search(r'^([+]?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$', ca_signature_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `ca_signature_algorithms`, must be a follow pattern or equal to `/^([+]?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$/`") # noqa: E501 + if ca_signature_algorithms is not None and not re.search(r'^(\\+?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$', ca_signature_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `ca_signature_algorithms`, must be a follow pattern or equal to `/^(\\+?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$/`") # noqa: E501 self._ca_signature_algorithms = ca_signature_algorithms @@ -355,8 +355,8 @@ def ciphers(self, ciphers): raise ValueError("Invalid value for `ciphers`, length must be less than or equal to `4096`") # noqa: E501 if ciphers is not None and len(ciphers) < 7: raise ValueError("Invalid value for `ciphers`, length must be greater than or equal to `7`") # noqa: E501 - if ciphers is not None and not re.search(r'^([+]?)(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com)(,(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com))*$', ciphers): # noqa: E501 - raise ValueError(r"Invalid value for `ciphers`, must be a follow pattern or equal to `/^([+]?)(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com)(,(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com))*$/`") # noqa: E501 + if ciphers is not None and not re.search(r'^(\\+?)(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com)(,(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com))*$', ciphers): # noqa: E501 + raise ValueError(r"Invalid value for `ciphers`, must be a follow pattern or equal to `/^(\\+?)(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com)(,(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com))*$/`") # noqa: E501 self._ciphers = ciphers @@ -384,8 +384,8 @@ def host_key_algorithms(self, host_key_algorithms): raise ValueError("Invalid value for `host_key_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if host_key_algorithms is not None and len(host_key_algorithms) < 7: raise ValueError("Invalid value for `host_key_algorithms`, length must be greater than or equal to `7`") # noqa: E501 - if host_key_algorithms is not None and not re.search(r'^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$', host_key_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `host_key_algorithms`, must be a follow pattern or equal to `/^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$/`") # noqa: E501 + if host_key_algorithms is not None and not re.search(r'^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$', host_key_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `host_key_algorithms`, must be a follow pattern or equal to `/^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$/`") # noqa: E501 self._host_key_algorithms = host_key_algorithms @@ -436,8 +436,8 @@ def kex_algorithms(self, kex_algorithms): raise ValueError("Invalid value for `kex_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if kex_algorithms is not None and len(kex_algorithms) < 18: raise ValueError("Invalid value for `kex_algorithms`, length must be greater than or equal to `18`") # noqa: E501 - if kex_algorithms is not None and not re.search(r'^([+]?)(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$', kex_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `kex_algorithms`, must be a follow pattern or equal to `/^([+]?)(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$/`") # noqa: E501 + if kex_algorithms is not None and not re.search(r'^(\\+?)(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$', kex_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `kex_algorithms`, must be a follow pattern or equal to `/^(\\+?)(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$/`") # noqa: E501 self._kex_algorithms = kex_algorithms @@ -544,8 +544,8 @@ def macs(self, macs): raise ValueError("Invalid value for `macs`, length must be less than or equal to `4096`") # noqa: E501 if macs is not None and len(macs) < 8: raise ValueError("Invalid value for `macs`, length must be greater than or equal to `8`") # noqa: E501 - if macs is not None and not re.search(r'^([+]?)(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$', macs): # noqa: E501 - raise ValueError(r"Invalid value for `macs`, must be a follow pattern or equal to `/^([+]?)(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$/`") # noqa: E501 + if macs is not None and not re.search(r'^(\\+?)(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$', macs): # noqa: E501 + raise ValueError(r"Invalid value for `macs`, must be a follow pattern or equal to `/^(\\+?)(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$/`") # noqa: E501 self._macs = macs @@ -802,8 +802,8 @@ def pubkey_accepted_key_types(self, pubkey_accepted_key_types): raise ValueError("Invalid value for `pubkey_accepted_key_types`, length must be less than or equal to `4096`") # noqa: E501 if pubkey_accepted_key_types is not None and len(pubkey_accepted_key_types) < 7: raise ValueError("Invalid value for `pubkey_accepted_key_types`, length must be greater than or equal to `7`") # noqa: E501 - if pubkey_accepted_key_types is not None and not re.search(r'^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$', pubkey_accepted_key_types): # noqa: E501 - raise ValueError(r"Invalid value for `pubkey_accepted_key_types`, must be a follow pattern or equal to `/^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$/`") # noqa: E501 + if pubkey_accepted_key_types is not None and not re.search(r'^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$', pubkey_accepted_key_types): # noqa: E501 + raise ValueError(r"Invalid value for `pubkey_accepted_key_types`, must be a follow pattern or equal to `/^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$/`") # noqa: E501 self._pubkey_accepted_key_types = pubkey_accepted_key_types @@ -877,6 +877,8 @@ def subsystem(self, subsystem): raise ValueError("Invalid value for `subsystem`, length must be less than or equal to `1024`") # noqa: E501 if subsystem is not None and len(subsystem) < 0: raise ValueError("Invalid value for `subsystem`, length must be greater than or equal to `0`") # noqa: E501 + if subsystem is not None and not re.search(r'b\'^[^\\\\n]*$\'', subsystem): # noqa: E501 + raise ValueError(r"Invalid value for `subsystem`, must be a follow pattern or equal to `/b'^[^\\\\n]*$'/`") # noqa: E501 self._subsystem = subsystem diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/ssh_settings_settings.py b/isilon_sdk/isilon_sdk/v9_8_0/models/ssh_settings_settings.py index 76f6d7aa5..c5aa962af 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/ssh_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/ssh_settings_settings.py @@ -303,8 +303,8 @@ def ca_signature_algorithms(self, ca_signature_algorithms): raise ValueError("Invalid value for `ca_signature_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if ca_signature_algorithms is not None and len(ca_signature_algorithms) < 0: raise ValueError("Invalid value for `ca_signature_algorithms`, length must be greater than or equal to `0`") # noqa: E501 - if ca_signature_algorithms is not None and not re.search(r'^([+]?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$', ca_signature_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `ca_signature_algorithms`, must be a follow pattern or equal to `/^([+]?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$/`") # noqa: E501 + if ca_signature_algorithms is not None and not re.search(r'^(\\+?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$', ca_signature_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `ca_signature_algorithms`, must be a follow pattern or equal to `/^(\\+?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$/`") # noqa: E501 self._ca_signature_algorithms = ca_signature_algorithms @@ -355,8 +355,8 @@ def ciphers(self, ciphers): raise ValueError("Invalid value for `ciphers`, length must be less than or equal to `4096`") # noqa: E501 if ciphers is not None and len(ciphers) < 7: raise ValueError("Invalid value for `ciphers`, length must be greater than or equal to `7`") # noqa: E501 - if ciphers is not None and not re.search(r'^([+]?)(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com)(,(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com))*$', ciphers): # noqa: E501 - raise ValueError(r"Invalid value for `ciphers`, must be a follow pattern or equal to `/^([+]?)(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com)(,(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com))*$/`") # noqa: E501 + if ciphers is not None and not re.search(r'^(\\+?)(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com)(,(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com))*$', ciphers): # noqa: E501 + raise ValueError(r"Invalid value for `ciphers`, must be a follow pattern or equal to `/^(\\+?)(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com)(,(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com))*$/`") # noqa: E501 self._ciphers = ciphers @@ -384,8 +384,8 @@ def host_key_algorithms(self, host_key_algorithms): raise ValueError("Invalid value for `host_key_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if host_key_algorithms is not None and len(host_key_algorithms) < 7: raise ValueError("Invalid value for `host_key_algorithms`, length must be greater than or equal to `7`") # noqa: E501 - if host_key_algorithms is not None and not re.search(r'^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$', host_key_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `host_key_algorithms`, must be a follow pattern or equal to `/^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$/`") # noqa: E501 + if host_key_algorithms is not None and not re.search(r'^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$', host_key_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `host_key_algorithms`, must be a follow pattern or equal to `/^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$/`") # noqa: E501 self._host_key_algorithms = host_key_algorithms @@ -436,8 +436,8 @@ def kex_algorithms(self, kex_algorithms): raise ValueError("Invalid value for `kex_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if kex_algorithms is not None and len(kex_algorithms) < 18: raise ValueError("Invalid value for `kex_algorithms`, length must be greater than or equal to `18`") # noqa: E501 - if kex_algorithms is not None and not re.search(r'^([+]?)(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$', kex_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `kex_algorithms`, must be a follow pattern or equal to `/^([+]?)(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$/`") # noqa: E501 + if kex_algorithms is not None and not re.search(r'^(\\+?)(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$', kex_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `kex_algorithms`, must be a follow pattern or equal to `/^(\\+?)(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$/`") # noqa: E501 self._kex_algorithms = kex_algorithms @@ -544,8 +544,8 @@ def macs(self, macs): raise ValueError("Invalid value for `macs`, length must be less than or equal to `4096`") # noqa: E501 if macs is not None and len(macs) < 8: raise ValueError("Invalid value for `macs`, length must be greater than or equal to `8`") # noqa: E501 - if macs is not None and not re.search(r'^([+]?)(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$', macs): # noqa: E501 - raise ValueError(r"Invalid value for `macs`, must be a follow pattern or equal to `/^([+]?)(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$/`") # noqa: E501 + if macs is not None and not re.search(r'^(\\+?)(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$', macs): # noqa: E501 + raise ValueError(r"Invalid value for `macs`, must be a follow pattern or equal to `/^(\\+?)(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$/`") # noqa: E501 self._macs = macs @@ -802,8 +802,8 @@ def pubkey_accepted_key_types(self, pubkey_accepted_key_types): raise ValueError("Invalid value for `pubkey_accepted_key_types`, length must be less than or equal to `4096`") # noqa: E501 if pubkey_accepted_key_types is not None and len(pubkey_accepted_key_types) < 7: raise ValueError("Invalid value for `pubkey_accepted_key_types`, length must be greater than or equal to `7`") # noqa: E501 - if pubkey_accepted_key_types is not None and not re.search(r'^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$', pubkey_accepted_key_types): # noqa: E501 - raise ValueError(r"Invalid value for `pubkey_accepted_key_types`, must be a follow pattern or equal to `/^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$/`") # noqa: E501 + if pubkey_accepted_key_types is not None and not re.search(r'^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$', pubkey_accepted_key_types): # noqa: E501 + raise ValueError(r"Invalid value for `pubkey_accepted_key_types`, must be a follow pattern or equal to `/^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$/`") # noqa: E501 self._pubkey_accepted_key_types = pubkey_accepted_key_types @@ -877,6 +877,8 @@ def subsystem(self, subsystem): raise ValueError("Invalid value for `subsystem`, length must be less than or equal to `1024`") # noqa: E501 if subsystem is not None and len(subsystem) < 0: raise ValueError("Invalid value for `subsystem`, length must be greater than or equal to `0`") # noqa: E501 + if subsystem is not None and not re.search(r'b\'^[^\\\\n]*$\'', subsystem): # noqa: E501 + raise ValueError(r"Invalid value for `subsystem`, must be a follow pattern or equal to `/b'^[^\\\\n]*$'/`") # noqa: E501 self._subsystem = subsystem diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/subnets_subnet_pool.py b/isilon_sdk/isilon_sdk/v9_8_0/models/subnets_subnet_pool.py index 42863a369..6ace3daa7 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/subnets_subnet_pool.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/subnets_subnet_pool.py @@ -418,8 +418,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/subnets_subnet_pool_create_params.py b/isilon_sdk/isilon_sdk/v9_8_0/models/subnets_subnet_pool_create_params.py index 424dbc960..b2eca1f00 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/subnets_subnet_pool_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/subnets_subnet_pool_create_params.py @@ -443,8 +443,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/subnets_subnet_pool_static_route.py b/isilon_sdk/isilon_sdk/v9_8_0/models/subnets_subnet_pool_static_route.py index de3c79d6f..929c69224 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/subnets_subnet_pool_static_route.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/subnets_subnet_pool_static_route.py @@ -80,8 +80,8 @@ def gateway(self, gateway): raise ValueError("Invalid value for `gateway`, length must be less than or equal to `40`") # noqa: E501 if gateway is not None and len(gateway) < 1: raise ValueError("Invalid value for `gateway`, length must be greater than or equal to `1`") # noqa: E501 - if gateway is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', gateway): # noqa: E501 - raise ValueError(r"Invalid value for `gateway`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if gateway is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', gateway): # noqa: E501 + raise ValueError(r"Invalid value for `gateway`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._gateway = gateway @@ -140,8 +140,8 @@ def subnet(self, subnet): raise ValueError("Invalid value for `subnet`, length must be less than or equal to `40`") # noqa: E501 if subnet is not None and len(subnet) < 1: raise ValueError("Invalid value for `subnet`, length must be greater than or equal to `1`") # noqa: E501 - if subnet is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', subnet): # noqa: E501 - raise ValueError(r"Invalid value for `subnet`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if subnet is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', subnet): # noqa: E501 + raise ValueError(r"Invalid value for `subnet`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._subnet = subnet diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/subnets_subnet_pools_pool.py b/isilon_sdk/isilon_sdk/v9_8_0/models/subnets_subnet_pools_pool.py index 2d79bab17..4b3920d36 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/subnets_subnet_pools_pool.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/subnets_subnet_pools_pool.py @@ -652,8 +652,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/subnets_subnet_pools_pool_extended.py b/isilon_sdk/isilon_sdk/v9_8_0/models/subnets_subnet_pools_pool_extended.py index 4fd371846..29c39786e 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/subnets_subnet_pools_pool_extended.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/subnets_subnet_pools_pool_extended.py @@ -642,8 +642,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/supportassist_settings_connection_gateway_endpoint.py b/isilon_sdk/isilon_sdk/v9_8_0/models/supportassist_settings_connection_gateway_endpoint.py index 2191082d2..a6242b59c 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/supportassist_settings_connection_gateway_endpoint.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/supportassist_settings_connection_gateway_endpoint.py @@ -120,8 +120,8 @@ def host(self, host): raise ValueError("Invalid value for `host`, length must be less than or equal to `255`") # noqa: E501 if host is not None and len(host) < 0: raise ValueError("Invalid value for `host`, length must be greater than or equal to `0`") # noqa: E501 - if host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$)', host): # noqa: E501 - raise ValueError(r"Invalid value for `host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$)/`") # noqa: E501 + if host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$)', host): # noqa: E501 + raise ValueError(r"Invalid value for `host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$)/`") # noqa: E501 self._host = host diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/supportassist_settings_contact_primary.py b/isilon_sdk/isilon_sdk/v9_8_0/models/supportassist_settings_contact_primary.py index 8f2e9661d..1911b1959 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/supportassist_settings_contact_primary.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/supportassist_settings_contact_primary.py @@ -44,7 +44,7 @@ class SupportassistSettingsContactPrimary(object): 'phone': 'phone' } - def __init__(self, email='', first_name='', last_name='', phone=None): # noqa: E501 + def __init__(self, email='', first_name='', last_name='', phone=''): # noqa: E501 """SupportassistSettingsContactPrimary - a model defined in Swagger""" # noqa: E501 self._email = None @@ -86,8 +86,8 @@ def email(self, email): raise ValueError("Invalid value for `email`, length must be less than or equal to `320`") # noqa: E501 if email is not None and len(email) < 0: raise ValueError("Invalid value for `email`, length must be greater than or equal to `0`") # noqa: E501 - if email is not None and not re.search(r'(^$|^([a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+[.])+[a-zA-Z0-9]+$))', email): # noqa: E501 - raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/(^$|^([a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+[.])+[a-zA-Z0-9]+$))/`") # noqa: E501 + if email is not None and not re.search(r'(^$|^([a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]+$))', email): # noqa: E501 + raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/(^$|^([a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]+$))/`") # noqa: E501 self._email = email @@ -115,8 +115,8 @@ def first_name(self, first_name): raise ValueError("Invalid value for `first_name`, length must be less than or equal to `50`") # noqa: E501 if first_name is not None and len(first_name) < 0: raise ValueError("Invalid value for `first_name`, length must be greater than or equal to `0`") # noqa: E501 - if first_name is not None and not re.search(r'[a-zA-Z]*[-.\']*', first_name): # noqa: E501 - raise ValueError(r"Invalid value for `first_name`, must be a follow pattern or equal to `/[a-zA-Z]*[-.']*/`") # noqa: E501 + if first_name is not None and not re.search(r'[a-zA-Z]*[\\-\\.\\\']*', first_name): # noqa: E501 + raise ValueError(r"Invalid value for `first_name`, must be a follow pattern or equal to `/[a-zA-Z]*[\\-\\.\\']*/`") # noqa: E501 self._first_name = first_name @@ -144,8 +144,8 @@ def last_name(self, last_name): raise ValueError("Invalid value for `last_name`, length must be less than or equal to `50`") # noqa: E501 if last_name is not None and len(last_name) < 0: raise ValueError("Invalid value for `last_name`, length must be greater than or equal to `0`") # noqa: E501 - if last_name is not None and not re.search(r'[a-zA-Z]*[-.\']*', last_name): # noqa: E501 - raise ValueError(r"Invalid value for `last_name`, must be a follow pattern or equal to `/[a-zA-Z]*[-.']*/`") # noqa: E501 + if last_name is not None and not re.search(r'[a-zA-Z]*[\\-\\.\\\']*', last_name): # noqa: E501 + raise ValueError(r"Invalid value for `last_name`, must be a follow pattern or equal to `/[a-zA-Z]*[\\-\\.\\']*/`") # noqa: E501 self._last_name = last_name @@ -173,6 +173,8 @@ def phone(self, phone): raise ValueError("Invalid value for `phone`, length must be less than or equal to `40`") # noqa: E501 if phone is not None and len(phone) < 0: raise ValueError("Invalid value for `phone`, length must be greater than or equal to `0`") # noqa: E501 + if phone is not None and not re.search(r'(^$|([\\.\\-\\+\/\\sxX]*([0-9]+|[\\(\\d+\\)])+)+)', phone): # noqa: E501 + raise ValueError(r"Invalid value for `phone`, must be a follow pattern or equal to `/(^$|([\\.\\-\\+\/\\sxX]*([0-9]+|[\\(\\d+\\)])+)+)/`") # noqa: E501 self._phone = phone diff --git a/isilon_sdk/isilon_sdk/v9_8_0/models/supportassist_settings_contact_primary_extended.py b/isilon_sdk/isilon_sdk/v9_8_0/models/supportassist_settings_contact_primary_extended.py index 091e9f23e..da6fbaa89 100644 --- a/isilon_sdk/isilon_sdk/v9_8_0/models/supportassist_settings_contact_primary_extended.py +++ b/isilon_sdk/isilon_sdk/v9_8_0/models/supportassist_settings_contact_primary_extended.py @@ -86,8 +86,8 @@ def email(self, email): raise ValueError("Invalid value for `email`, length must be less than or equal to `320`") # noqa: E501 if email is not None and len(email) < 0: raise ValueError("Invalid value for `email`, length must be greater than or equal to `0`") # noqa: E501 - if email is not None and not re.search(r'^[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+[.])+[a-zA-Z0-9]+$', email): # noqa: E501 - raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/^[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+[.])+[a-zA-Z0-9]+$/`") # noqa: E501 + if email is not None and not re.search(r'^[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]+$', email): # noqa: E501 + raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/^[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]+$/`") # noqa: E501 self._email = email @@ -115,8 +115,8 @@ def first_name(self, first_name): raise ValueError("Invalid value for `first_name`, length must be less than or equal to `50`") # noqa: E501 if first_name is not None and len(first_name) < 0: raise ValueError("Invalid value for `first_name`, length must be greater than or equal to `0`") # noqa: E501 - if first_name is not None and not re.search(r'[a-zA-Z]*[-.\']*', first_name): # noqa: E501 - raise ValueError(r"Invalid value for `first_name`, must be a follow pattern or equal to `/[a-zA-Z]*[-.']*/`") # noqa: E501 + if first_name is not None and not re.search(r'[a-zA-Z]*[\\-\\.\\\']*', first_name): # noqa: E501 + raise ValueError(r"Invalid value for `first_name`, must be a follow pattern or equal to `/[a-zA-Z]*[\\-\\.\\']*/`") # noqa: E501 self._first_name = first_name @@ -144,8 +144,8 @@ def last_name(self, last_name): raise ValueError("Invalid value for `last_name`, length must be less than or equal to `50`") # noqa: E501 if last_name is not None and len(last_name) < 0: raise ValueError("Invalid value for `last_name`, length must be greater than or equal to `0`") # noqa: E501 - if last_name is not None and not re.search(r'[a-zA-Z]*[-.\']*', last_name): # noqa: E501 - raise ValueError(r"Invalid value for `last_name`, must be a follow pattern or equal to `/[a-zA-Z]*[-.']*/`") # noqa: E501 + if last_name is not None and not re.search(r'[a-zA-Z]*[\\-\\.\\\']*', last_name): # noqa: E501 + raise ValueError(r"Invalid value for `last_name`, must be a follow pattern or equal to `/[a-zA-Z]*[\\-\\.\\']*/`") # noqa: E501 self._last_name = last_name @@ -173,6 +173,8 @@ def phone(self, phone): raise ValueError("Invalid value for `phone`, length must be less than or equal to `40`") # noqa: E501 if phone is not None and len(phone) < 0: raise ValueError("Invalid value for `phone`, length must be greater than or equal to `0`") # noqa: E501 + if phone is not None and not re.search(r'([\\.\\-\\+\/\\sxX]*([0-9]+|[\\(\\d+\\)])+)+', phone): # noqa: E501 + raise ValueError(r"Invalid value for `phone`, must be a follow pattern or equal to `/([\\.\\-\\+\/\\sxX]*([0-9]+|[\\(\\d+\\)])+)+/`") # noqa: E501 self._phone = phone diff --git a/isilon_sdk/isilon_sdk/v9_9_0/README.md b/isilon_sdk/isilon_sdk/v9_9_0/README.md index 73d587c77..e099e5ad7 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/README.md +++ b/isilon_sdk/isilon_sdk/v9_9_0/README.md @@ -18,7 +18,7 @@ Isilon SDK - Language bindings for the OneFS API This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project: - API version: 20 -- Package version: 0.6.0 +- Package version: 0.5.0 - Build package: io.swagger.codegen.languages.PythonClientCodegen For more information, please visit [https://github.com/Isilon/isilon_sdk](https://github.com/Isilon/isilon_sdk) @@ -2707,7 +2707,7 @@ sdk@isilon.com ## License -Copyright (c) 2025 Dell EMC Isilon +Copyright (c) 2018 Dell EMC Isilon Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/isilon_sdk/isilon_sdk/v9_9_0/api/namespace_api.py b/isilon_sdk/isilon_sdk/v9_9_0/api/namespace_api.py index ba104fd3a..4e324e61b 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/api/namespace_api.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/api/namespace_api.py @@ -1188,7 +1188,6 @@ def get_acl(self, namespace_path, acl, **kwargs): # noqa: E501 :param str namespace_path: Namespace path relative to /. (required) :param bool acl: Show access control lists. (required) :param bool nsaccess: Indicates that the operation is on the access point instead of the store path. - :param str zone: Specifies the access zone name. :return: NamespaceAcl If the method is called asynchronously, returns the request thread. @@ -1213,13 +1212,12 @@ def get_acl_with_http_info(self, namespace_path, acl, **kwargs): # noqa: E501 :param str namespace_path: Namespace path relative to /. (required) :param bool acl: Show access control lists. (required) :param bool nsaccess: Indicates that the operation is on the access point instead of the store path. - :param str zone: Specifies the access zone name. :return: NamespaceAcl If the method is called asynchronously, returns the request thread. """ - all_params = ['namespace_path', 'acl', 'nsaccess', 'zone'] # noqa: E501 + all_params = ['namespace_path', 'acl', 'nsaccess'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -1254,8 +1252,6 @@ def get_acl_with_http_info(self, namespace_path, acl, **kwargs): # noqa: E501 query_params.append(('acl', params['acl'])) # noqa: E501 if 'nsaccess' in params: query_params.append(('nsaccess', params['nsaccess'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -1536,7 +1532,6 @@ def get_directory_metadata(self, directory_metadata_path, metadata, **kwargs): :param async_req bool :param str directory_metadata_path: Directory path relative to /. (required) :param bool metadata: Show directory metadata. (required) - :param str zone: Specifies the access zone name. :return: NamespaceMetadataList If the method is called asynchronously, returns the request thread. @@ -1560,13 +1555,12 @@ def get_directory_metadata_with_http_info(self, directory_metadata_path, metadat :param async_req bool :param str directory_metadata_path: Directory path relative to /. (required) :param bool metadata: Show directory metadata. (required) - :param str zone: Specifies the access zone name. :return: NamespaceMetadataList If the method is called asynchronously, returns the request thread. """ - all_params = ['directory_metadata_path', 'metadata', 'zone'] # noqa: E501 + all_params = ['directory_metadata_path', 'metadata'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -1599,8 +1593,6 @@ def get_directory_metadata_with_http_info(self, directory_metadata_path, metadat query_params = [] if 'metadata' in params: query_params.append(('metadata', params['metadata'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -2000,7 +1992,6 @@ def get_file_metadata(self, file_metadata_path, metadata, **kwargs): # noqa: E5 :param async_req bool :param str file_metadata_path: File path relative to /. (required) :param bool metadata: Show file metadata. (required) - :param str zone: Specifies the access zone name. :return: NamespaceMetadataList If the method is called asynchronously, returns the request thread. @@ -2024,13 +2015,12 @@ def get_file_metadata_with_http_info(self, file_metadata_path, metadata, **kwarg :param async_req bool :param str file_metadata_path: File path relative to /. (required) :param bool metadata: Show file metadata. (required) - :param str zone: Specifies the access zone name. :return: NamespaceMetadataList If the method is called asynchronously, returns the request thread. """ - all_params = ['file_metadata_path', 'metadata', 'zone'] # noqa: E501 + all_params = ['file_metadata_path', 'metadata'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2063,8 +2053,6 @@ def get_file_metadata_with_http_info(self, file_metadata_path, metadata, **kwarg query_params = [] if 'metadata' in params: query_params.append(('metadata', params['metadata'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -2791,7 +2779,6 @@ def set_acl(self, namespace_path, acl, namespace_acl, **kwargs): # noqa: E501 :param bool acl: Update access control lists. (required) :param NamespaceAcl namespace_acl: Namespace ACL parameters model. (required) :param bool nsaccess: Indicates that the operation is on the access point instead of the store path. - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. @@ -2817,13 +2804,12 @@ def set_acl_with_http_info(self, namespace_path, acl, namespace_acl, **kwargs): :param bool acl: Update access control lists. (required) :param NamespaceAcl namespace_acl: Namespace ACL parameters model. (required) :param bool nsaccess: Indicates that the operation is on the access point instead of the store path. - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. """ - all_params = ['namespace_path', 'acl', 'namespace_acl', 'nsaccess', 'zone'] # noqa: E501 + all_params = ['namespace_path', 'acl', 'namespace_acl', 'nsaccess'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2862,8 +2848,6 @@ def set_acl_with_http_info(self, namespace_path, acl, namespace_acl, **kwargs): query_params.append(('acl', params['acl'])) # noqa: E501 if 'nsaccess' in params: query_params.append(('nsaccess', params['nsaccess'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -2913,7 +2897,6 @@ def set_directory_metadata(self, directory_metadata_path, metadata, directory_me :param str directory_metadata_path: Directory path relative to /. (required) :param bool metadata: Set directory metadata. (required) :param NamespaceMetadata directory_metadata: Directory metadata parameters model. (required) - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. @@ -2938,13 +2921,12 @@ def set_directory_metadata_with_http_info(self, directory_metadata_path, metadat :param str directory_metadata_path: Directory path relative to /. (required) :param bool metadata: Set directory metadata. (required) :param NamespaceMetadata directory_metadata: Directory metadata parameters model. (required) - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. """ - all_params = ['directory_metadata_path', 'metadata', 'directory_metadata', 'zone'] # noqa: E501 + all_params = ['directory_metadata_path', 'metadata', 'directory_metadata'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -2981,8 +2963,6 @@ def set_directory_metadata_with_http_info(self, directory_metadata_path, metadat query_params = [] if 'metadata' in params: query_params.append(('metadata', params['metadata'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} @@ -3032,7 +3012,6 @@ def set_file_metadata(self, file_metadata_path, metadata, file_metadata, **kwarg :param str file_metadata_path: File path relative to /. (required) :param bool metadata: Set file metadata. (required) :param NamespaceMetadata file_metadata: File metadata parameters model. (required) - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. @@ -3057,13 +3036,12 @@ def set_file_metadata_with_http_info(self, file_metadata_path, metadata, file_me :param str file_metadata_path: File path relative to /. (required) :param bool metadata: Set file metadata. (required) :param NamespaceMetadata file_metadata: File metadata parameters model. (required) - :param str zone: Specifies the access zone name. :return: Empty If the method is called asynchronously, returns the request thread. """ - all_params = ['file_metadata_path', 'metadata', 'file_metadata', 'zone'] # noqa: E501 + all_params = ['file_metadata_path', 'metadata', 'file_metadata'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -3100,8 +3078,6 @@ def set_file_metadata_with_http_info(self, file_metadata_path, metadata, file_me query_params = [] if 'metadata' in params: query_params.append(('metadata', params['metadata'])) # noqa: E501 - if 'zone' in params: - query_params.append(('zone', params['zone'])) # noqa: E501 header_params = {} diff --git a/isilon_sdk/isilon_sdk/v9_9_0/api_client.py b/isilon_sdk/isilon_sdk/v9_9_0/api_client.py index c3476dc40..7e3cbe1db 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/api_client.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/api_client.py @@ -74,7 +74,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None, self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'Swagger-Codegen/0.6.0/python' + self.user_agent = 'Swagger-Codegen/0.5.0/python' # This is used for detecting for the special case of a path parameter # that is tagged with x-isi-url-encode-path-param (more details in the # __call_api function). diff --git a/isilon_sdk/isilon_sdk/v9_9_0/configuration.py b/isilon_sdk/isilon_sdk/v9_9_0/configuration.py index 5c0d7d31e..caf720871 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/configuration.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/configuration.py @@ -260,5 +260,5 @@ def to_debug_report(self): "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: 20\n"\ - "SDK Package Version: 0.6.0".\ + "SDK Package Version: 0.5.0".\ format(env=sys.platform, pyversion=sys.version) diff --git a/isilon_sdk/isilon_sdk/v9_9_0/docs/NamespaceApi.md b/isilon_sdk/isilon_sdk/v9_9_0/docs/NamespaceApi.md index e71547458..69306245c 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/docs/NamespaceApi.md +++ b/isilon_sdk/isilon_sdk/v9_9_0/docs/NamespaceApi.md @@ -613,7 +613,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_acl** -> NamespaceAcl get_acl(namespace_path, acl, nsaccess=nsaccess, zone=zone) +> NamespaceAcl get_acl(namespace_path, acl, nsaccess=nsaccess) @@ -637,10 +637,9 @@ api_instance = isilon_sdk.v9_9_0.NamespaceApi(isilon_sdk.v9_9_0.ApiClient(config namespace_path = 'namespace_path_example' # str | Namespace path relative to /. acl = true # bool | Show access control lists. nsaccess = true # bool | Indicates that the operation is on the access point instead of the store path. (optional) -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.get_acl(namespace_path, acl, nsaccess=nsaccess, zone=zone) + api_response = api_instance.get_acl(namespace_path, acl, nsaccess=nsaccess) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->get_acl: %s\n" % e) @@ -653,7 +652,6 @@ Name | Type | Description | Notes **namespace_path** | **str**| Namespace path relative to /. | **acl** | **bool**| Show access control lists. | **nsaccess** | **bool**| Indicates that the operation is on the access point instead of the store path. | [optional] - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -793,7 +791,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_directory_metadata** -> NamespaceMetadataList get_directory_metadata(directory_metadata_path, metadata, zone=zone) +> NamespaceMetadataList get_directory_metadata(directory_metadata_path, metadata) @@ -816,10 +814,9 @@ configuration.password = 'YOUR_PASSWORD' api_instance = isilon_sdk.v9_9_0.NamespaceApi(isilon_sdk.v9_9_0.ApiClient(configuration)) directory_metadata_path = 'directory_metadata_path_example' # str | Directory path relative to /. metadata = true # bool | Show directory metadata. -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.get_directory_metadata(directory_metadata_path, metadata, zone=zone) + api_response = api_instance.get_directory_metadata(directory_metadata_path, metadata) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->get_directory_metadata: %s\n" % e) @@ -831,7 +828,6 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **directory_metadata_path** | **str**| Directory path relative to /. | **metadata** | **bool**| Show directory metadata. | - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -1031,7 +1027,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **get_file_metadata** -> NamespaceMetadataList get_file_metadata(file_metadata_path, metadata, zone=zone) +> NamespaceMetadataList get_file_metadata(file_metadata_path, metadata) @@ -1054,10 +1050,9 @@ configuration.password = 'YOUR_PASSWORD' api_instance = isilon_sdk.v9_9_0.NamespaceApi(isilon_sdk.v9_9_0.ApiClient(configuration)) file_metadata_path = 'file_metadata_path_example' # str | File path relative to /. metadata = true # bool | Show file metadata. -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.get_file_metadata(file_metadata_path, metadata, zone=zone) + api_response = api_instance.get_file_metadata(file_metadata_path, metadata) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->get_file_metadata: %s\n" % e) @@ -1069,7 +1064,6 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **file_metadata_path** | **str**| File path relative to /. | **metadata** | **bool**| Show file metadata. | - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -1429,7 +1423,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **set_acl** -> Empty set_acl(namespace_path, acl, namespace_acl, nsaccess=nsaccess, zone=zone) +> Empty set_acl(namespace_path, acl, namespace_acl, nsaccess=nsaccess) @@ -1454,10 +1448,9 @@ namespace_path = 'namespace_path_example' # str | Namespace path relative to /. acl = true # bool | Update access control lists. namespace_acl = isilon_sdk.v9_9_0.NamespaceAcl() # NamespaceAcl | Namespace ACL parameters model. nsaccess = true # bool | Indicates that the operation is on the access point instead of the store path. (optional) -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.set_acl(namespace_path, acl, namespace_acl, nsaccess=nsaccess, zone=zone) + api_response = api_instance.set_acl(namespace_path, acl, namespace_acl, nsaccess=nsaccess) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->set_acl: %s\n" % e) @@ -1471,7 +1464,6 @@ Name | Type | Description | Notes **acl** | **bool**| Update access control lists. | **namespace_acl** | [**NamespaceAcl**](NamespaceAcl.md)| Namespace ACL parameters model. | **nsaccess** | **bool**| Indicates that the operation is on the access point instead of the store path. | [optional] - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -1489,7 +1481,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **set_directory_metadata** -> Empty set_directory_metadata(directory_metadata_path, metadata, directory_metadata, zone=zone) +> Empty set_directory_metadata(directory_metadata_path, metadata, directory_metadata) @@ -1513,10 +1505,9 @@ api_instance = isilon_sdk.v9_9_0.NamespaceApi(isilon_sdk.v9_9_0.ApiClient(config directory_metadata_path = 'directory_metadata_path_example' # str | Directory path relative to /. metadata = true # bool | Set directory metadata. directory_metadata = isilon_sdk.v9_9_0.NamespaceMetadata() # NamespaceMetadata | Directory metadata parameters model. -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.set_directory_metadata(directory_metadata_path, metadata, directory_metadata, zone=zone) + api_response = api_instance.set_directory_metadata(directory_metadata_path, metadata, directory_metadata) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->set_directory_metadata: %s\n" % e) @@ -1529,7 +1520,6 @@ Name | Type | Description | Notes **directory_metadata_path** | **str**| Directory path relative to /. | **metadata** | **bool**| Set directory metadata. | **directory_metadata** | [**NamespaceMetadata**](NamespaceMetadata.md)| Directory metadata parameters model. | - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type @@ -1547,7 +1537,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **set_file_metadata** -> Empty set_file_metadata(file_metadata_path, metadata, file_metadata, zone=zone) +> Empty set_file_metadata(file_metadata_path, metadata, file_metadata) @@ -1571,10 +1561,9 @@ api_instance = isilon_sdk.v9_9_0.NamespaceApi(isilon_sdk.v9_9_0.ApiClient(config file_metadata_path = 'file_metadata_path_example' # str | File path relative to /. metadata = true # bool | Set file metadata. file_metadata = isilon_sdk.v9_9_0.NamespaceMetadata() # NamespaceMetadata | File metadata parameters model. -zone = 'zone_example' # str | Specifies the access zone name. (optional) try: - api_response = api_instance.set_file_metadata(file_metadata_path, metadata, file_metadata, zone=zone) + api_response = api_instance.set_file_metadata(file_metadata_path, metadata, file_metadata) pprint(api_response) except ApiException as e: print("Exception when calling NamespaceApi->set_file_metadata: %s\n" % e) @@ -1587,7 +1576,6 @@ Name | Type | Description | Notes **file_metadata_path** | **str**| File path relative to /. | **metadata** | **bool**| Set file metadata. | **file_metadata** | [**NamespaceMetadata**](NamespaceMetadata.md)| File metadata parameters model. | - **zone** | **str**| Specifies the access zone name. | [optional] ### Return type diff --git a/isilon_sdk/isilon_sdk/v9_9_0/docs/SupportassistSettingsContactPrimary.md b/isilon_sdk/isilon_sdk/v9_9_0/docs/SupportassistSettingsContactPrimary.md index 4c4991d5d..91e4979e1 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/docs/SupportassistSettingsContactPrimary.md +++ b/isilon_sdk/isilon_sdk/v9_9_0/docs/SupportassistSettingsContactPrimary.md @@ -6,7 +6,7 @@ Name | Type | Description | Notes **email** | **str** | Contact's email address. | [optional] [default to ''] **first_name** | **str** | Contact's first name. | [optional] [default to ''] **last_name** | **str** | Contact's last name. | [optional] [default to ''] -**phone** | **str** | Contact's phone number. | [optional] +**phone** | **str** | Contact's phone number. | [optional] [default to ''] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/changelist_entry.py b/isilon_sdk/isilon_sdk/v9_9_0/models/changelist_entry.py index c74847b4f..519e735f6 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/changelist_entry.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/changelist_entry.py @@ -554,6 +554,8 @@ def physical_size(self, physical_size): """ if physical_size is None: raise ValueError("Invalid value for `physical_size`, must not be `None`") # noqa: E501 + if physical_size is not None and physical_size > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `physical_size`, must be a value less than or equal to `4294967295`") # noqa: E501 if physical_size is not None and physical_size < 0: # noqa: E501 raise ValueError("Invalid value for `physical_size`, must be a value greater than or equal to `0`") # noqa: E501 @@ -581,6 +583,8 @@ def size(self, size): """ if size is None: raise ValueError("Invalid value for `size`, must not be `None`") # noqa: E501 + if size is not None and size > 4294967295: # noqa: E501 + raise ValueError("Invalid value for `size`, must be a value less than or equal to `4294967295`") # noqa: E501 if size is not None and size < 0: # noqa: E501 raise ValueError("Invalid value for `size`, must be a value greater than or equal to `0`") # noqa: E501 diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_email_extended.py b/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_email_extended.py index dc054cddc..bb96dfa1c 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_email_extended.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_email_extended.py @@ -141,8 +141,8 @@ def mail_relay(self, mail_relay): :param mail_relay: The mail_relay of this ClusterEmailExtended. # noqa: E501 :type: str """ - if mail_relay is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', mail_relay): # noqa: E501 - raise ValueError(r"Invalid value for `mail_relay`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if mail_relay is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', mail_relay): # noqa: E501 + raise ValueError(r"Invalid value for `mail_relay`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._mail_relay = mail_relay @@ -170,8 +170,8 @@ def mail_sender(self, mail_sender): raise ValueError("Invalid value for `mail_sender`, length must be less than or equal to `254`") # noqa: E501 if mail_sender is not None and len(mail_sender) < 3: raise ValueError("Invalid value for `mail_sender`, length must be greater than or equal to `3`") # noqa: E501 - if mail_sender is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', mail_sender): # noqa: E501 - raise ValueError(r"Invalid value for `mail_sender`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if mail_sender is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', mail_sender): # noqa: E501 + raise ValueError(r"Invalid value for `mail_sender`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._mail_sender = mail_sender @@ -278,8 +278,8 @@ def smtp_auth_username(self, smtp_auth_username): raise ValueError("Invalid value for `smtp_auth_username`, length must be less than or equal to `256`") # noqa: E501 if smtp_auth_username is not None and len(smtp_auth_username) < 1: raise ValueError("Invalid value for `smtp_auth_username`, length must be greater than or equal to `1`") # noqa: E501 - if smtp_auth_username is not None and not re.search(r'^[a-zA-Z0-9!@#%^&(){}~`_ .-]+$', smtp_auth_username): # noqa: E501 - raise ValueError(r"Invalid value for `smtp_auth_username`, must be a follow pattern or equal to `/^[a-zA-Z0-9!@#%^&(){}~`_ .-]+$/`") # noqa: E501 + if smtp_auth_username is not None and not re.search(r'^[^]\"\/\\[\\:;|=,+*?<>$]+', smtp_auth_username): # noqa: E501 + raise ValueError(r"Invalid value for `smtp_auth_username`, must be a follow pattern or equal to `/^[^]\"\/\\[\\:;|=,+*?<>$]+/`") # noqa: E501 self._smtp_auth_username = smtp_auth_username diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_email_settings.py b/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_email_settings.py index e2baee8a3..71facff22 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_email_settings.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_email_settings.py @@ -136,8 +136,8 @@ def mail_relay(self, mail_relay): """ if mail_relay is None: raise ValueError("Invalid value for `mail_relay`, must not be `None`") # noqa: E501 - if mail_relay is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', mail_relay): # noqa: E501 - raise ValueError(r"Invalid value for `mail_relay`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if mail_relay is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', mail_relay): # noqa: E501 + raise ValueError(r"Invalid value for `mail_relay`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._mail_relay = mail_relay diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_internal_networks_failover_ip_addresse.py b/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_internal_networks_failover_ip_addresse.py index b2abb352b..8af84ff2d 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_internal_networks_failover_ip_addresse.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_internal_networks_failover_ip_addresse.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_internal_networks_failover_ip_addresse_extended.py b/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_internal_networks_failover_ip_addresse_extended.py index f0844e438..726cb5c67 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_internal_networks_failover_ip_addresse_extended.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_internal_networks_failover_ip_addresse_extended.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_internal_networks_int_a_ip_addresse.py b/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_internal_networks_int_a_ip_addresse.py index b7caa93d9..973955d57 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_internal_networks_int_a_ip_addresse.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_internal_networks_int_a_ip_addresse.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py b/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py index d7f500eea..5b6f9b89b 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_internal_networks_int_a_ip_addresse_extended.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_internal_networks_int_b_ip_addresse.py b/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_internal_networks_int_b_ip_addresse.py index cd8599ee6..4ada1ccc8 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_internal_networks_int_b_ip_addresse.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_internal_networks_int_b_ip_addresse.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py b/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py index ad203aa38..202488c25 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_internal_networks_int_b_ip_addresse_extended.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_mode_settings.py b/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_mode_settings.py index e8d508f73..ae9c5419a 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_mode_settings.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_mode_settings.py @@ -84,8 +84,8 @@ def cloud_storage_console(self, cloud_storage_console): raise ValueError("Invalid value for `cloud_storage_console`, length must be less than or equal to `2048`") # noqa: E501 if cloud_storage_console is not None and len(cloud_storage_console) < 11: raise ValueError("Invalid value for `cloud_storage_console`, length must be greater than or equal to `11`") # noqa: E501 - if cloud_storage_console is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', cloud_storage_console): # noqa: E501 - raise ValueError(r"Invalid value for `cloud_storage_console`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if cloud_storage_console is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', cloud_storage_console): # noqa: E501 + raise ValueError(r"Invalid value for `cloud_storage_console`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._cloud_storage_console = cloud_storage_console @@ -111,8 +111,8 @@ def monitoring(self, monitoring): raise ValueError("Invalid value for `monitoring`, length must be less than or equal to `2048`") # noqa: E501 if monitoring is not None and len(monitoring) < 11: raise ValueError("Invalid value for `monitoring`, length must be greater than or equal to `11`") # noqa: E501 - if monitoring is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', monitoring): # noqa: E501 - raise ValueError(r"Invalid value for `monitoring`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if monitoring is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', monitoring): # noqa: E501 + raise ValueError(r"Invalid value for `monitoring`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._monitoring = monitoring @@ -161,8 +161,8 @@ def support(self, support): raise ValueError("Invalid value for `support`, length must be less than or equal to `2048`") # noqa: E501 if support is not None and len(support) < 11: raise ValueError("Invalid value for `support`, length must be greater than or equal to `11`") # noqa: E501 - if support is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', support): # noqa: E501 - raise ValueError(r"Invalid value for `support`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if support is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', support): # noqa: E501 + raise ValueError(r"Invalid value for `support`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._support = support diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_mode_settings_extended.py b/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_mode_settings_extended.py index b8a0df5b0..a002e5c5a 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_mode_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_mode_settings_extended.py @@ -79,8 +79,8 @@ def cloud_storage_console(self, cloud_storage_console): raise ValueError("Invalid value for `cloud_storage_console`, length must be less than or equal to `2048`") # noqa: E501 if cloud_storage_console is not None and len(cloud_storage_console) < 11: raise ValueError("Invalid value for `cloud_storage_console`, length must be greater than or equal to `11`") # noqa: E501 - if cloud_storage_console is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', cloud_storage_console): # noqa: E501 - raise ValueError(r"Invalid value for `cloud_storage_console`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if cloud_storage_console is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', cloud_storage_console): # noqa: E501 + raise ValueError(r"Invalid value for `cloud_storage_console`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._cloud_storage_console = cloud_storage_console @@ -106,8 +106,8 @@ def monitoring(self, monitoring): raise ValueError("Invalid value for `monitoring`, length must be less than or equal to `2048`") # noqa: E501 if monitoring is not None and len(monitoring) < 11: raise ValueError("Invalid value for `monitoring`, length must be greater than or equal to `11`") # noqa: E501 - if monitoring is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', monitoring): # noqa: E501 - raise ValueError(r"Invalid value for `monitoring`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if monitoring is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', monitoring): # noqa: E501 + raise ValueError(r"Invalid value for `monitoring`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._monitoring = monitoring @@ -133,8 +133,8 @@ def support(self, support): raise ValueError("Invalid value for `support`, length must be less than or equal to `2048`") # noqa: E501 if support is not None and len(support) < 11: raise ValueError("Invalid value for `support`, length must be greater than or equal to `11`") # noqa: E501 - if support is not None and not re.search(r'^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', support): # noqa: E501 - raise ValueError(r"Invalid value for `support`, must be a follow pattern or equal to `/^(http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)[a-z0-9]+([-.]{1}[a-z0-9]+)*[.][a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www[.]|https:\/\/www[.]|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])[.]){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])([:][0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 + if support is not None and not re.search(r'^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$', support): # noqa: E501 + raise ValueError(r"Invalid value for `support`, must be a follow pattern or equal to `/^(http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)[a-z0-9]+([-\\.]{1}[a-z0-9]+)*\\.[a-z]{2,5}(:[0-9]{1,5})?(\/[^ ]*)?$|^((http:\/\/www\\.|https:\/\/www\\.|http:\/\/|https:\/\/)?([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\:[0-9]{0,4})?(\/[a-zA-Z0-9_]*)?$/`") # noqa: E501 self._support = support diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_node.py b/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_node.py index 9cc4968f0..9c9abc24c 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_node.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_node.py @@ -218,8 +218,8 @@ def internal_ip_address(self, internal_ip_address): raise ValueError("Invalid value for `internal_ip_address`, length must be less than or equal to `45`") # noqa: E501 if internal_ip_address is not None and len(internal_ip_address) < 2: raise ValueError("Invalid value for `internal_ip_address`, length must be greater than or equal to `2`") # noqa: E501 - if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 - raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 + raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._internal_ip_address = internal_ip_address diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_node_extended.py b/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_node_extended.py index 0c3d6990f..98fbcd1b4 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_node_extended.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/cluster_node_extended.py @@ -218,8 +218,8 @@ def internal_ip_address(self, internal_ip_address): raise ValueError("Invalid value for `internal_ip_address`, length must be less than or equal to `45`") # noqa: E501 if internal_ip_address is not None and len(internal_ip_address) < 2: raise ValueError("Invalid value for `internal_ip_address`, length must be greater than or equal to `2`") # noqa: E501 - if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 - raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 + raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._internal_ip_address = internal_ip_address diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/config_network_network.py b/isilon_sdk/isilon_sdk/v9_9_0/models/config_network_network.py index 8308e38aa..b52ae557f 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/config_network_network.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/config_network_network.py @@ -81,8 +81,8 @@ def gateway(self, gateway): raise ValueError("Invalid value for `gateway`, length must be less than or equal to `45`") # noqa: E501 if gateway is not None and len(gateway) < 2: raise ValueError("Invalid value for `gateway`, length must be greater than or equal to `2`") # noqa: E501 - if gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', gateway): # noqa: E501 - raise ValueError(r"Invalid value for `gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', gateway): # noqa: E501 + raise ValueError(r"Invalid value for `gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._gateway = gateway diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/config_network_network_range.py b/isilon_sdk/isilon_sdk/v9_9_0/models/config_network_network_range.py index ec1e70438..e15509bb2 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/config_network_network_range.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/config_network_network_range.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `45`") # noqa: E501 if high is not None and len(high) < 2: raise ValueError("Invalid value for `high`, length must be greater than or equal to `2`") # noqa: E501 - if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if high is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._high = high @@ -105,8 +105,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `45`") # noqa: E501 if low is not None and len(low) < 2: raise ValueError("Invalid value for `low`, length must be greater than or equal to `2`") # noqa: E501 - if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if low is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/config_node.py b/isilon_sdk/isilon_sdk/v9_9_0/models/config_node.py index d8ea9e1a2..b918e193c 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/config_node.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/config_node.py @@ -118,8 +118,8 @@ def ip_addr(self, ip_addr): raise ValueError("Invalid value for `ip_addr`, length must be less than or equal to `45`") # noqa: E501 if ip_addr is not None and len(ip_addr) < 2: raise ValueError("Invalid value for `ip_addr`, length must be greater than or equal to `2`") # noqa: E501 - if ip_addr is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ip_addr): # noqa: E501 - raise ValueError(r"Invalid value for `ip_addr`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if ip_addr is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ip_addr): # noqa: E501 + raise ValueError(r"Invalid value for `ip_addr`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._ip_addr = ip_addr diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/diagnostics_gather_settings_extended.py b/isilon_sdk/isilon_sdk/v9_9_0/models/diagnostics_gather_settings_extended.py index 19b98f03f..ea951839a 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/diagnostics_gather_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/diagnostics_gather_settings_extended.py @@ -228,8 +228,8 @@ def ftp_upload_host(self, ftp_upload_host): :param ftp_upload_host: The ftp_upload_host of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_host = ftp_upload_host @@ -347,8 +347,8 @@ def ftp_upload_proxy(self, ftp_upload_proxy): :param ftp_upload_proxy: The ftp_upload_proxy of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_proxy = ftp_upload_proxy @@ -622,8 +622,8 @@ def http_upload_host(self, http_upload_host): :param http_upload_host: The http_upload_host of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_host = http_upload_host @@ -672,8 +672,8 @@ def http_upload_proxy(self, http_upload_proxy): :param http_upload_proxy: The http_upload_proxy of this DiagnosticsGatherSettingsExtended. # noqa: E501 :type: str """ - if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_proxy = http_upload_proxy diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/diagnostics_gather_settings_settings.py b/isilon_sdk/isilon_sdk/v9_9_0/models/diagnostics_gather_settings_settings.py index 3247714f8..6b714300a 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/diagnostics_gather_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/diagnostics_gather_settings_settings.py @@ -223,8 +223,8 @@ def ftp_upload_host(self, ftp_upload_host): :param ftp_upload_host: The ftp_upload_host of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_host = ftp_upload_host @@ -319,8 +319,8 @@ def ftp_upload_proxy(self, ftp_upload_proxy): :param ftp_upload_proxy: The ftp_upload_proxy of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_proxy = ftp_upload_proxy @@ -594,8 +594,8 @@ def http_upload_host(self, http_upload_host): :param http_upload_host: The http_upload_host of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_host = http_upload_host @@ -644,8 +644,8 @@ def http_upload_proxy(self, http_upload_proxy): :param http_upload_proxy: The http_upload_proxy of this DiagnosticsGatherSettingsSettings. # noqa: E501 :type: str """ - if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_proxy = http_upload_proxy diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/diagnostics_gather_start_item.py b/isilon_sdk/isilon_sdk/v9_9_0/models/diagnostics_gather_start_item.py index bfa9622f5..3f70937ad 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/diagnostics_gather_start_item.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/diagnostics_gather_start_item.py @@ -233,8 +233,8 @@ def ftp_upload_host(self, ftp_upload_host): :param ftp_upload_host: The ftp_upload_host of this DiagnosticsGatherStartItem. # noqa: E501 :type: str """ - if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_host = ftp_upload_host @@ -352,8 +352,8 @@ def ftp_upload_proxy(self, ftp_upload_proxy): :param ftp_upload_proxy: The ftp_upload_proxy of this DiagnosticsGatherStartItem. # noqa: E501 :type: str """ - if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if ftp_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', ftp_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `ftp_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._ftp_upload_proxy = ftp_upload_proxy @@ -627,8 +627,8 @@ def http_upload_host(self, http_upload_host): :param http_upload_host: The http_upload_host of this DiagnosticsGatherStartItem. # noqa: E501 :type: str """ - if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_host): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_host = http_upload_host @@ -677,8 +677,8 @@ def http_upload_proxy(self, http_upload_proxy): :param http_upload_proxy: The http_upload_proxy of this DiagnosticsGatherStartItem. # noqa: E501 :type: str """ - if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 - raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if http_upload_proxy is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', http_upload_proxy): # noqa: E501 + raise ValueError(r"Invalid value for `http_upload_proxy`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._http_upload_proxy = http_upload_proxy diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/diagnostics_netlogger_settings_settings.py b/isilon_sdk/isilon_sdk/v9_9_0/models/diagnostics_netlogger_settings_settings.py index 5fa0eef44..a0a0389ae 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/diagnostics_netlogger_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/diagnostics_netlogger_settings_settings.py @@ -102,8 +102,8 @@ def clients(self, clients): :param clients: The clients of this DiagnosticsNetloggerSettingsSettings. # noqa: E501 :type: str """ - if clients is not None and not re.search(r'^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$', clients): # noqa: E501 - raise ValueError(r"Invalid value for `clients`, must be a follow pattern or equal to `/^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$/`") # noqa: E501 + if clients is not None and not re.search(r'^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$', clients): # noqa: E501 + raise ValueError(r"Invalid value for `clients`, must be a follow pattern or equal to `/^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$/`") # noqa: E501 self._clients = clients diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/diagnostics_netlogger_start_item.py b/isilon_sdk/isilon_sdk/v9_9_0/models/diagnostics_netlogger_start_item.py index 3450a1ef2..5bbc88bd9 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/diagnostics_netlogger_start_item.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/diagnostics_netlogger_start_item.py @@ -102,8 +102,8 @@ def clients(self, clients): :param clients: The clients of this DiagnosticsNetloggerStartItem. # noqa: E501 :type: str """ - if clients is not None and not re.search(r'^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$', clients): # noqa: E501 - raise ValueError(r"Invalid value for `clients`, must be a follow pattern or equal to `/^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$/`") # noqa: E501 + if clients is not None and not re.search(r'^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$', clients): # noqa: E501 + raise ValueError(r"Invalid value for `clients`, must be a follow pattern or equal to `/^$|^(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7})(,(((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)|([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?|[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}))*$/`") # noqa: E501 self._clients = clients diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/event_channel_parameters.py b/isilon_sdk/isilon_sdk/v9_9_0/models/event_channel_parameters.py index 3c42ca8a7..b37152bf2 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/event_channel_parameters.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/event_channel_parameters.py @@ -205,8 +205,8 @@ def custom_template(self, custom_template): raise ValueError("Invalid value for `custom_template`, length must be less than or equal to `4096`") # noqa: E501 if custom_template is not None and len(custom_template) < 0: raise ValueError("Invalid value for `custom_template`, length must be greater than or equal to `0`") # noqa: E501 - if custom_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', custom_template): # noqa: E501 - raise ValueError(r"Invalid value for `custom_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if custom_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', custom_template): # noqa: E501 + raise ValueError(r"Invalid value for `custom_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._custom_template = custom_template diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/groupnet_subnet.py b/isilon_sdk/isilon_sdk/v9_9_0/models/groupnet_subnet.py index c9d52c347..c0a99a76c 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/groupnet_subnet.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/groupnet_subnet.py @@ -331,8 +331,8 @@ def sc_service_name(self, sc_service_name): raise ValueError("Invalid value for `sc_service_name`, length must be less than or equal to `2048`") # noqa: E501 if sc_service_name is not None and len(sc_service_name) < 0: raise ValueError("Invalid value for `sc_service_name`, length must be greater than or equal to `0`") # noqa: E501 - if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 - raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 + raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_service_name = sc_service_name diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/groupnet_subnet_create_params.py b/isilon_sdk/isilon_sdk/v9_9_0/models/groupnet_subnet_create_params.py index 1b1ccca0b..2cbfc1b1b 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/groupnet_subnet_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/groupnet_subnet_create_params.py @@ -337,8 +337,8 @@ def sc_service_name(self, sc_service_name): raise ValueError("Invalid value for `sc_service_name`, length must be less than or equal to `2048`") # noqa: E501 if sc_service_name is not None and len(sc_service_name) < 0: raise ValueError("Invalid value for `sc_service_name`, length must be greater than or equal to `0`") # noqa: E501 - if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 - raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 + raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_service_name = sc_service_name diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/groupnet_subnet_extended.py b/isilon_sdk/isilon_sdk/v9_9_0/models/groupnet_subnet_extended.py index 30110c12a..11df622ce 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/groupnet_subnet_extended.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/groupnet_subnet_extended.py @@ -361,8 +361,8 @@ def sc_service_name(self, sc_service_name): raise ValueError("Invalid value for `sc_service_name`, length must be less than or equal to `2048`") # noqa: E501 if sc_service_name is not None and len(sc_service_name) < 0: raise ValueError("Invalid value for `sc_service_name`, length must be greater than or equal to `0`") # noqa: E501 - if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 - raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_service_name is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_service_name): # noqa: E501 + raise ValueError(r"Invalid value for `sc_service_name`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_service_name = sc_service_name diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/groupnet_subnet_sc_service_addr.py b/isilon_sdk/isilon_sdk/v9_9_0/models/groupnet_subnet_sc_service_addr.py index 828f5a30e..19b537198 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/groupnet_subnet_sc_service_addr.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/groupnet_subnet_sc_service_addr.py @@ -76,8 +76,8 @@ def high(self, high): raise ValueError("Invalid value for `high`, length must be less than or equal to `40`") # noqa: E501 if high is not None and len(high) < 1: raise ValueError("Invalid value for `high`, length must be greater than or equal to `1`") # noqa: E501 - if high is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', high): # noqa: E501 - raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if high is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', high): # noqa: E501 + raise ValueError(r"Invalid value for `high`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._high = high @@ -107,8 +107,8 @@ def low(self, low): raise ValueError("Invalid value for `low`, length must be less than or equal to `40`") # noqa: E501 if low is not None and len(low) < 1: raise ValueError("Invalid value for `low`, length must be greater than or equal to `1`") # noqa: E501 - if low is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', low): # noqa: E501 - raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if low is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', low): # noqa: E501 + raise ValueError(r"Invalid value for `low`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._low = low diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/network_interface.py b/isilon_sdk/isilon_sdk/v9_9_0/models/network_interface.py index 84541ee13..73ab7f957 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/network_interface.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/network_interface.py @@ -203,8 +203,8 @@ def ipv4_gateway(self, ipv4_gateway): raise ValueError("Invalid value for `ipv4_gateway`, length must be less than or equal to `16`") # noqa: E501 if ipv4_gateway is not None and len(ipv4_gateway) < 1: raise ValueError("Invalid value for `ipv4_gateway`, length must be greater than or equal to `1`") # noqa: E501 - if ipv4_gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ipv4_gateway): # noqa: E501 - raise ValueError(r"Invalid value for `ipv4_gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if ipv4_gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ipv4_gateway): # noqa: E501 + raise ValueError(r"Invalid value for `ipv4_gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._ipv4_gateway = ipv4_gateway diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/network_interface_vlan.py b/isilon_sdk/isilon_sdk/v9_9_0/models/network_interface_vlan.py index 196da5b14..081a5e22f 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/network_interface_vlan.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/network_interface_vlan.py @@ -197,8 +197,8 @@ def ipv4_gateway(self, ipv4_gateway): raise ValueError("Invalid value for `ipv4_gateway`, length must be less than or equal to `16`") # noqa: E501 if ipv4_gateway is not None and len(ipv4_gateway) < 1: raise ValueError("Invalid value for `ipv4_gateway`, length must be greater than or equal to `1`") # noqa: E501 - if ipv4_gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ipv4_gateway): # noqa: E501 - raise ValueError(r"Invalid value for `ipv4_gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if ipv4_gateway is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', ipv4_gateway): # noqa: E501 + raise ValueError(r"Invalid value for `ipv4_gateway`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._ipv4_gateway = ipv4_gateway diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/network_pool.py b/isilon_sdk/isilon_sdk/v9_9_0/models/network_pool.py index 4ad51efd1..3ded41b27 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/network_pool.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/network_pool.py @@ -642,8 +642,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/node_internal_ip_address_node.py b/isilon_sdk/isilon_sdk/v9_9_0/models/node_internal_ip_address_node.py index 464e1903a..3c0ced321 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/node_internal_ip_address_node.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/node_internal_ip_address_node.py @@ -146,8 +146,8 @@ def internal_ip_address(self, internal_ip_address): raise ValueError("Invalid value for `internal_ip_address`, length must be less than or equal to `45`") # noqa: E501 if internal_ip_address is not None and len(internal_ip_address) < 2: raise ValueError("Invalid value for `internal_ip_address`, length must be greater than or equal to `2`") # noqa: E501 - if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 - raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 + raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._internal_ip_address = internal_ip_address diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/nodes_node_internal_ip_address.py b/isilon_sdk/isilon_sdk/v9_9_0/models/nodes_node_internal_ip_address.py index 0531b6c5e..6e936ccbe 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/nodes_node_internal_ip_address.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/nodes_node_internal_ip_address.py @@ -72,8 +72,8 @@ def internal_ip_address(self, internal_ip_address): raise ValueError("Invalid value for `internal_ip_address`, length must be less than or equal to `45`") # noqa: E501 if internal_ip_address is not None and len(internal_ip_address) < 2: raise ValueError("Invalid value for `internal_ip_address`, length must be greater than or equal to `2`") # noqa: E501 - if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 - raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 + if internal_ip_address is not None and not re.search(r'^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$', internal_ip_address): # noqa: E501 + raise ValueError(r"Invalid value for `internal_ip_address`, must be a follow pattern or equal to `/^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$/`") # noqa: E501 self._internal_ip_address = internal_ip_address diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_ads_ads_item.py b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_ads_ads_item.py index 1f745e316..a39470b1e 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_ads_ads_item.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_ads_ads_item.py @@ -652,8 +652,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_ads_ads_item_extended.py b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_ads_ads_item_extended.py index 3851327ae..0b4be0e1e 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_ads_ads_item_extended.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_ads_ads_item_extended.py @@ -642,8 +642,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_ads_id_params.py b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_ads_id_params.py index cc58032e8..6f661657d 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_ads_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_ads_id_params.py @@ -554,8 +554,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_ads_item.py b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_ads_item.py index f0b3c480f..73691b673 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_ads_item.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_ads_item.py @@ -598,8 +598,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_file_file_item.py b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_file_file_item.py index 395b3bc3b..8cd54aa02 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_file_file_item.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_file_file_item.py @@ -466,8 +466,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_file_id_params.py b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_file_id_params.py index 9f3115772..3f31c0fc0 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_file_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_file_id_params.py @@ -474,8 +474,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_file_item.py b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_file_item.py index b8843e02f..1665f8e08 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_file_item.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_file_item.py @@ -445,8 +445,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_ldap_id_params.py b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_ldap_id_params.py index 25381c7da..3452a9cf8 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_ldap_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_ldap_id_params.py @@ -1108,8 +1108,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template @@ -2076,8 +2076,8 @@ def tls_protocol_min(self, tls_protocol_min): raise ValueError("Invalid value for `tls_protocol_min`, length must be less than or equal to `255`") # noqa: E501 if tls_protocol_min is not None and len(tls_protocol_min) < 0: raise ValueError("Invalid value for `tls_protocol_min`, length must be greater than or equal to `0`") # noqa: E501 - if tls_protocol_min is not None and not re.search(r'^[0-9]+[.][0-9]+$', tls_protocol_min): # noqa: E501 - raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+[.][0-9]+$/`") # noqa: E501 + if tls_protocol_min is not None and not re.search(r'^[0-9]+\\.[0-9]+$', tls_protocol_min): # noqa: E501 + raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+\\.[0-9]+$/`") # noqa: E501 self._tls_protocol_min = tls_protocol_min diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_ldap_item.py b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_ldap_item.py index d03dc10db..b39a7cd71 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_ldap_item.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_ldap_item.py @@ -1151,8 +1151,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template @@ -2153,8 +2153,8 @@ def tls_protocol_min(self, tls_protocol_min): raise ValueError("Invalid value for `tls_protocol_min`, length must be less than or equal to `255`") # noqa: E501 if tls_protocol_min is not None and len(tls_protocol_min) < 0: raise ValueError("Invalid value for `tls_protocol_min`, length must be greater than or equal to `0`") # noqa: E501 - if tls_protocol_min is not None and not re.search(r'^[0-9]+[.][0-9]+$', tls_protocol_min): # noqa: E501 - raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+[.][0-9]+$/`") # noqa: E501 + if tls_protocol_min is not None and not re.search(r'^[0-9]+\\.[0-9]+$', tls_protocol_min): # noqa: E501 + raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+\\.[0-9]+$/`") # noqa: E501 self._tls_protocol_min = tls_protocol_min diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_ldap_ldap_item.py b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_ldap_ldap_item.py index aa1d6647b..238253dc2 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_ldap_ldap_item.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_ldap_ldap_item.py @@ -1135,8 +1135,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template @@ -2181,8 +2181,8 @@ def tls_protocol_min(self, tls_protocol_min): raise ValueError("Invalid value for `tls_protocol_min`, length must be less than or equal to `255`") # noqa: E501 if tls_protocol_min is not None and len(tls_protocol_min) < 0: raise ValueError("Invalid value for `tls_protocol_min`, length must be greater than or equal to `0`") # noqa: E501 - if tls_protocol_min is not None and not re.search(r'^[0-9]+[.][0-9]+$', tls_protocol_min): # noqa: E501 - raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+[.][0-9]+$/`") # noqa: E501 + if tls_protocol_min is not None and not re.search(r'^[0-9]+\\.[0-9]+$', tls_protocol_min): # noqa: E501 + raise ValueError(r"Invalid value for `tls_protocol_min`, must be a follow pattern or equal to `/^[0-9]+\\.[0-9]+$/`") # noqa: E501 self._tls_protocol_min = tls_protocol_min diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_local_id_params.py b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_local_id_params.py index aa718205e..a91a38e6d 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_local_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_local_id_params.py @@ -263,8 +263,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_local_local_item.py b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_local_local_item.py index 7a30b32fd..37255aedd 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_local_local_item.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_local_local_item.py @@ -227,8 +227,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_nis_id_params.py b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_nis_id_params.py index a0dc053e7..7c786ea96 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_nis_id_params.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_nis_id_params.py @@ -464,8 +464,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_nis_item.py b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_nis_item.py index 9b391f5b2..01fe0380b 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_nis_item.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_nis_item.py @@ -493,8 +493,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_nis_nis_item.py b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_nis_nis_item.py index 594a4307e..f57d8fcdc 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_nis_nis_item.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_nis_nis_item.py @@ -516,8 +516,8 @@ def home_directory_template(self, home_directory_template): raise ValueError("Invalid value for `home_directory_template`, length must be less than or equal to `4096`") # noqa: E501 if home_directory_template is not None and len(home_directory_template) < 0: raise ValueError("Invalid value for `home_directory_template`, length must be greater than or equal to `0`") # noqa: E501 - if home_directory_template is not None and not re.search(r'^((\/[^\/]+)(\/?))*$', home_directory_template): # noqa: E501 - raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/]+)(\/?))*$/`") # noqa: E501 + if home_directory_template is not None and not re.search(r'^((\/[^\/[:cntrl:]]+)(\/?))*$', home_directory_template): # noqa: E501 + raise ValueError(r"Invalid value for `home_directory_template`, must be a follow pattern or equal to `/^((\/[^\/[:cntrl:]]+)(\/?))*$/`") # noqa: E501 self._home_directory_template = home_directory_template diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_saml_services_sp_extended.py b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_saml_services_sp_extended.py index fee7601bb..6503b1ea0 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_saml_services_sp_extended.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_saml_services_sp_extended.py @@ -106,8 +106,8 @@ def email(self, email): raise ValueError("Invalid value for `email`, length must be less than or equal to `254`") # noqa: E501 if email is not None and len(email) < 3: raise ValueError("Invalid value for `email`, length must be greater than or equal to `3`") # noqa: E501 - if email is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', email): # noqa: E501 - raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if email is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', email): # noqa: E501 + raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._email = email diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_saml_services_sp_sp.py b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_saml_services_sp_sp.py index afc89fe61..0f037b51b 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/providers_saml_services_sp_sp.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/providers_saml_services_sp_sp.py @@ -158,8 +158,8 @@ def email(self, email): raise ValueError("Invalid value for `email`, length must be less than or equal to `254`") # noqa: E501 if email is not None and len(email) < 3: raise ValueError("Invalid value for `email`, length must be greater than or equal to `3`") # noqa: E501 - if email is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', email): # noqa: E501 - raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if email is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', email): # noqa: E501 + raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._email = email diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/s3_settings_zone_settings.py b/isilon_sdk/isilon_sdk/v9_9_0/models/s3_settings_zone_settings.py index 65b57c1f3..ab5655ed6 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/s3_settings_zone_settings.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/s3_settings_zone_settings.py @@ -96,8 +96,8 @@ def base_domain(self, base_domain): raise ValueError("Invalid value for `base_domain`, length must be less than or equal to `255`") # noqa: E501 if base_domain is not None and len(base_domain) < 0: raise ValueError("Invalid value for `base_domain`, length must be greater than or equal to `0`") # noqa: E501 - if base_domain is not None and not re.search(r'^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$', base_domain): # noqa: E501 - raise ValueError(r"Invalid value for `base_domain`, must be a follow pattern or equal to `/^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$/`") # noqa: E501 + if base_domain is not None and not re.search(r'^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$', base_domain): # noqa: E501 + raise ValueError(r"Invalid value for `base_domain`, must be a follow pattern or equal to `/^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$/`") # noqa: E501 self._base_domain = base_domain diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/snmp_settings_extended.py b/isilon_sdk/isilon_sdk/v9_9_0/models/snmp_settings_extended.py index 33ce5bff9..cebf24f22 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/snmp_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/snmp_settings_extended.py @@ -386,8 +386,8 @@ def system_contact(self, system_contact): raise ValueError("Invalid value for `system_contact`, length must be less than or equal to `254`") # noqa: E501 if system_contact is not None and len(system_contact) < 3: raise ValueError("Invalid value for `system_contact`, length must be greater than or equal to `3`") # noqa: E501 - if system_contact is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', system_contact): # noqa: E501 - raise ValueError(r"Invalid value for `system_contact`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if system_contact is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', system_contact): # noqa: E501 + raise ValueError(r"Invalid value for `system_contact`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._system_contact = system_contact diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/snmp_settings_settings.py b/isilon_sdk/isilon_sdk/v9_9_0/models/snmp_settings_settings.py index 196481f27..602126d79 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/snmp_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/snmp_settings_settings.py @@ -322,8 +322,8 @@ def system_contact(self, system_contact): raise ValueError("Invalid value for `system_contact`, length must be less than or equal to `254`") # noqa: E501 if system_contact is not None and len(system_contact) < 3: raise ValueError("Invalid value for `system_contact`, length must be greater than or equal to `3`") # noqa: E501 - if system_contact is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}', system_contact): # noqa: E501 - raise ValueError(r"Invalid value for `system_contact`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+[.][a-zA-Z]{2,63}/`") # noqa: E501 + if system_contact is not None and not re.search(r'[a-zA-Z0-9!#%&\'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}', system_contact): # noqa: E501 + raise ValueError(r"Invalid value for `system_contact`, must be a follow pattern or equal to `/[a-zA-Z0-9!#%&'*+= ^_`{|}~\/?$.-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,63}/`") # noqa: E501 self._system_contact = system_contact diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/ssh_settings_extended.py b/isilon_sdk/isilon_sdk/v9_9_0/models/ssh_settings_extended.py index fe11374ae..df24ac7ef 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/ssh_settings_extended.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/ssh_settings_extended.py @@ -303,8 +303,8 @@ def ca_signature_algorithms(self, ca_signature_algorithms): raise ValueError("Invalid value for `ca_signature_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if ca_signature_algorithms is not None and len(ca_signature_algorithms) < 0: raise ValueError("Invalid value for `ca_signature_algorithms`, length must be greater than or equal to `0`") # noqa: E501 - if ca_signature_algorithms is not None and not re.search(r'^([+]?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$', ca_signature_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `ca_signature_algorithms`, must be a follow pattern or equal to `/^([+]?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$/`") # noqa: E501 + if ca_signature_algorithms is not None and not re.search(r'^(\\+?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$', ca_signature_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `ca_signature_algorithms`, must be a follow pattern or equal to `/^(\\+?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$/`") # noqa: E501 self._ca_signature_algorithms = ca_signature_algorithms @@ -355,8 +355,8 @@ def ciphers(self, ciphers): raise ValueError("Invalid value for `ciphers`, length must be less than or equal to `4096`") # noqa: E501 if ciphers is not None and len(ciphers) < 7: raise ValueError("Invalid value for `ciphers`, length must be greater than or equal to `7`") # noqa: E501 - if ciphers is not None and not re.search(r'^([+]?)(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com)(,(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com))*$', ciphers): # noqa: E501 - raise ValueError(r"Invalid value for `ciphers`, must be a follow pattern or equal to `/^([+]?)(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com)(,(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com))*$/`") # noqa: E501 + if ciphers is not None and not re.search(r'^(\\+?)(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com)(,(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com))*$', ciphers): # noqa: E501 + raise ValueError(r"Invalid value for `ciphers`, must be a follow pattern or equal to `/^(\\+?)(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com)(,(aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com))*$/`") # noqa: E501 self._ciphers = ciphers @@ -384,8 +384,8 @@ def host_key_algorithms(self, host_key_algorithms): raise ValueError("Invalid value for `host_key_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if host_key_algorithms is not None and len(host_key_algorithms) < 7: raise ValueError("Invalid value for `host_key_algorithms`, length must be greater than or equal to `7`") # noqa: E501 - if host_key_algorithms is not None and not re.search(r'^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$', host_key_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `host_key_algorithms`, must be a follow pattern or equal to `/^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$/`") # noqa: E501 + if host_key_algorithms is not None and not re.search(r'^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$', host_key_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `host_key_algorithms`, must be a follow pattern or equal to `/^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$/`") # noqa: E501 self._host_key_algorithms = host_key_algorithms @@ -436,8 +436,8 @@ def kex_algorithms(self, kex_algorithms): raise ValueError("Invalid value for `kex_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if kex_algorithms is not None and len(kex_algorithms) < 18: raise ValueError("Invalid value for `kex_algorithms`, length must be greater than or equal to `18`") # noqa: E501 - if kex_algorithms is not None and not re.search(r'^([+]?)(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$', kex_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `kex_algorithms`, must be a follow pattern or equal to `/^([+]?)(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$/`") # noqa: E501 + if kex_algorithms is not None and not re.search(r'^(\\+?)(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$', kex_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `kex_algorithms`, must be a follow pattern or equal to `/^(\\+?)(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$/`") # noqa: E501 self._kex_algorithms = kex_algorithms @@ -544,8 +544,8 @@ def macs(self, macs): raise ValueError("Invalid value for `macs`, length must be less than or equal to `4096`") # noqa: E501 if macs is not None and len(macs) < 8: raise ValueError("Invalid value for `macs`, length must be greater than or equal to `8`") # noqa: E501 - if macs is not None and not re.search(r'^([+]?)(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$', macs): # noqa: E501 - raise ValueError(r"Invalid value for `macs`, must be a follow pattern or equal to `/^([+]?)(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$/`") # noqa: E501 + if macs is not None and not re.search(r'^(\\+?)(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$', macs): # noqa: E501 + raise ValueError(r"Invalid value for `macs`, must be a follow pattern or equal to `/^(\\+?)(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-sha1|hmac-sha2-256|hmac-sha2-512|umac-128@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$/`") # noqa: E501 self._macs = macs @@ -802,8 +802,8 @@ def pubkey_accepted_key_types(self, pubkey_accepted_key_types): raise ValueError("Invalid value for `pubkey_accepted_key_types`, length must be less than or equal to `4096`") # noqa: E501 if pubkey_accepted_key_types is not None and len(pubkey_accepted_key_types) < 7: raise ValueError("Invalid value for `pubkey_accepted_key_types`, length must be greater than or equal to `7`") # noqa: E501 - if pubkey_accepted_key_types is not None and not re.search(r'^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$', pubkey_accepted_key_types): # noqa: E501 - raise ValueError(r"Invalid value for `pubkey_accepted_key_types`, must be a follow pattern or equal to `/^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$/`") # noqa: E501 + if pubkey_accepted_key_types is not None and not re.search(r'^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$', pubkey_accepted_key_types): # noqa: E501 + raise ValueError(r"Invalid value for `pubkey_accepted_key_types`, must be a follow pattern or equal to `/^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$/`") # noqa: E501 self._pubkey_accepted_key_types = pubkey_accepted_key_types @@ -877,6 +877,8 @@ def subsystem(self, subsystem): raise ValueError("Invalid value for `subsystem`, length must be less than or equal to `1024`") # noqa: E501 if subsystem is not None and len(subsystem) < 0: raise ValueError("Invalid value for `subsystem`, length must be greater than or equal to `0`") # noqa: E501 + if subsystem is not None and not re.search(r'b\'^[^\\\\n]*$\'', subsystem): # noqa: E501 + raise ValueError(r"Invalid value for `subsystem`, must be a follow pattern or equal to `/b'^[^\\\\n]*$'/`") # noqa: E501 self._subsystem = subsystem diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/ssh_settings_settings.py b/isilon_sdk/isilon_sdk/v9_9_0/models/ssh_settings_settings.py index fdc8ec98c..1b26cc6bb 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/ssh_settings_settings.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/ssh_settings_settings.py @@ -303,8 +303,8 @@ def ca_signature_algorithms(self, ca_signature_algorithms): raise ValueError("Invalid value for `ca_signature_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if ca_signature_algorithms is not None and len(ca_signature_algorithms) < 0: raise ValueError("Invalid value for `ca_signature_algorithms`, length must be greater than or equal to `0`") # noqa: E501 - if ca_signature_algorithms is not None and not re.search(r'^([+]?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$', ca_signature_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `ca_signature_algorithms`, must be a follow pattern or equal to `/^([+]?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$/`") # noqa: E501 + if ca_signature_algorithms is not None and not re.search(r'^(\\+?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$', ca_signature_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `ca_signature_algorithms`, must be a follow pattern or equal to `/^(\\+?)(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa)(,(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|rsa-sha2-512|rsa-sha2-256|ssh-rsa))*$/`") # noqa: E501 self._ca_signature_algorithms = ca_signature_algorithms @@ -355,8 +355,8 @@ def ciphers(self, ciphers): raise ValueError("Invalid value for `ciphers`, length must be less than or equal to `4096`") # noqa: E501 if ciphers is not None and len(ciphers) < 7: raise ValueError("Invalid value for `ciphers`, length must be greater than or equal to `7`") # noqa: E501 - if ciphers is not None and not re.search(r'^([+]?)(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com)(,(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com))*$', ciphers): # noqa: E501 - raise ValueError(r"Invalid value for `ciphers`, must be a follow pattern or equal to `/^([+]?)(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com)(,(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh[.]com|aes256-gcm@openssh[.]com|chacha20-poly1305@openssh[.]com))*$/`") # noqa: E501 + if ciphers is not None and not re.search(r'^(\\+?)(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com)(,(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com))*$', ciphers): # noqa: E501 + raise ValueError(r"Invalid value for `ciphers`, must be a follow pattern or equal to `/^(\\+?)(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com)(,(3des-cbc|aes128-cbc|aes192-cbc|aes256-cbc|aes128-ctr|aes192-ctr|aes256-ctr|aes128-gcm@openssh\\.com|aes256-gcm@openssh\\.com|chacha20-poly1305@openssh\\.com))*$/`") # noqa: E501 self._ciphers = ciphers @@ -384,8 +384,8 @@ def host_key_algorithms(self, host_key_algorithms): raise ValueError("Invalid value for `host_key_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if host_key_algorithms is not None and len(host_key_algorithms) < 7: raise ValueError("Invalid value for `host_key_algorithms`, length must be greater than or equal to `7`") # noqa: E501 - if host_key_algorithms is not None and not re.search(r'^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$', host_key_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `host_key_algorithms`, must be a follow pattern or equal to `/^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$/`") # noqa: E501 + if host_key_algorithms is not None and not re.search(r'^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$', host_key_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `host_key_algorithms`, must be a follow pattern or equal to `/^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$/`") # noqa: E501 self._host_key_algorithms = host_key_algorithms @@ -436,8 +436,8 @@ def kex_algorithms(self, kex_algorithms): raise ValueError("Invalid value for `kex_algorithms`, length must be less than or equal to `4096`") # noqa: E501 if kex_algorithms is not None and len(kex_algorithms) < 18: raise ValueError("Invalid value for `kex_algorithms`, length must be greater than or equal to `18`") # noqa: E501 - if kex_algorithms is not None and not re.search(r'^([+]?)(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$', kex_algorithms): # noqa: E501 - raise ValueError(r"Invalid value for `kex_algorithms`, must be a follow pattern or equal to `/^([+]?)(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh[.]org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$/`") # noqa: E501 + if kex_algorithms is not None and not re.search(r'^(\\+?)(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$', kex_algorithms): # noqa: E501 + raise ValueError(r"Invalid value for `kex_algorithms`, must be a follow pattern or equal to `/^(\\+?)(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521)(,(curve25519-sha256|curve25519-sha256@libssh\\.org|diffie-hellman-group1-sha1|diffie-hellman-group14-sha1|diffie-hellman-group14-sha256|diffie-hellman-group16-sha512|diffie-hellman-group18-sha512|diffie-hellman-group-exchange-sha1|diffie-hellman-group-exchange-sha256|ecdh-sha2-nistp256|ecdh-sha2-nistp384|ecdh-sha2-nistp521))*$/`") # noqa: E501 self._kex_algorithms = kex_algorithms @@ -544,8 +544,8 @@ def macs(self, macs): raise ValueError("Invalid value for `macs`, length must be less than or equal to `4096`") # noqa: E501 if macs is not None and len(macs) < 8: raise ValueError("Invalid value for `macs`, length must be greater than or equal to `8`") # noqa: E501 - if macs is not None and not re.search(r'^([+]?)(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$', macs): # noqa: E501 - raise ValueError(r"Invalid value for `macs`, must be a follow pattern or equal to `/^([+]?)(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$/`") # noqa: E501 + if macs is not None and not re.search(r'^(\\+?)(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$', macs): # noqa: E501 + raise ValueError(r"Invalid value for `macs`, must be a follow pattern or equal to `/^(\\+?)(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com)(,(hmac-md5|hmac-md5-96|hmac-sha1|hmac-sha1-96|hmac-sha2-256|hmac-sha2-512|umac-64@openssh.com|umac-128@openssh.com|hmac-md5-etm@openssh.com|hmac-md5-96-etm@openssh.com|hmac-sha1-etm@openssh.com|hmac-sha1-96-etm@openssh.com|hmac-sha2-256-etm@openssh.com|hmac-sha2-512-etm@openssh.com|umac-64-etm@openssh.com|umac-128-etm@openssh.com))*$/`") # noqa: E501 self._macs = macs @@ -802,8 +802,8 @@ def pubkey_accepted_key_types(self, pubkey_accepted_key_types): raise ValueError("Invalid value for `pubkey_accepted_key_types`, length must be less than or equal to `4096`") # noqa: E501 if pubkey_accepted_key_types is not None and len(pubkey_accepted_key_types) < 7: raise ValueError("Invalid value for `pubkey_accepted_key_types`, length must be greater than or equal to `7`") # noqa: E501 - if pubkey_accepted_key_types is not None and not re.search(r'^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$', pubkey_accepted_key_types): # noqa: E501 - raise ValueError(r"Invalid value for `pubkey_accepted_key_types`, must be a follow pattern or equal to `/^([+]?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh[.]com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh[.]com|ssh-dss-cert-v01@openssh[.]com|ecdsa-sha2-nistp256-cert-v01@openssh[.]com|ecdsa-sha2-nistp384-cert-v01@openssh[.]com|ecdsa-sha2-nistp521-cert-v01@openssh[.]com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh[.]com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh[.]com))*$/`") # noqa: E501 + if pubkey_accepted_key_types is not None and not re.search(r'^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$', pubkey_accepted_key_types): # noqa: E501 + raise ValueError(r"Invalid value for `pubkey_accepted_key_types`, must be a follow pattern or equal to `/^(\\+?)(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com)(,(ssh-ed25519|ssh-ed25519-cert-v01@openssh\\.com|ssh-rsa|ssh-dss|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-rsa-cert-v01@openssh\\.com|ssh-dss-cert-v01@openssh\\.com|ecdsa-sha2-nistp256-cert-v01@openssh\\.com|ecdsa-sha2-nistp384-cert-v01@openssh\\.com|ecdsa-sha2-nistp521-cert-v01@openssh\\.com|rsa-sha2-256|rsa-sha2-256-cert-v01@openssh\\.com|rsa-sha2-512|rsa-sha2-512-cert-v01@openssh\\.com))*$/`") # noqa: E501 self._pubkey_accepted_key_types = pubkey_accepted_key_types @@ -877,6 +877,8 @@ def subsystem(self, subsystem): raise ValueError("Invalid value for `subsystem`, length must be less than or equal to `1024`") # noqa: E501 if subsystem is not None and len(subsystem) < 0: raise ValueError("Invalid value for `subsystem`, length must be greater than or equal to `0`") # noqa: E501 + if subsystem is not None and not re.search(r'b\'^[^\\\\n]*$\'', subsystem): # noqa: E501 + raise ValueError(r"Invalid value for `subsystem`, must be a follow pattern or equal to `/b'^[^\\\\n]*$'/`") # noqa: E501 self._subsystem = subsystem diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/subnets_subnet_pool.py b/isilon_sdk/isilon_sdk/v9_9_0/models/subnets_subnet_pool.py index bb13de9ec..16a261788 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/subnets_subnet_pool.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/subnets_subnet_pool.py @@ -418,8 +418,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/subnets_subnet_pool_create_params.py b/isilon_sdk/isilon_sdk/v9_9_0/models/subnets_subnet_pool_create_params.py index e67c4ffb3..8910647a9 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/subnets_subnet_pool_create_params.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/subnets_subnet_pool_create_params.py @@ -443,8 +443,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/subnets_subnet_pool_static_route.py b/isilon_sdk/isilon_sdk/v9_9_0/models/subnets_subnet_pool_static_route.py index 8add04c39..d53b69392 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/subnets_subnet_pool_static_route.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/subnets_subnet_pool_static_route.py @@ -80,8 +80,8 @@ def gateway(self, gateway): raise ValueError("Invalid value for `gateway`, length must be less than or equal to `40`") # noqa: E501 if gateway is not None and len(gateway) < 1: raise ValueError("Invalid value for `gateway`, length must be greater than or equal to `1`") # noqa: E501 - if gateway is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', gateway): # noqa: E501 - raise ValueError(r"Invalid value for `gateway`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if gateway is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', gateway): # noqa: E501 + raise ValueError(r"Invalid value for `gateway`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._gateway = gateway @@ -140,8 +140,8 @@ def subnet(self, subnet): raise ValueError("Invalid value for `subnet`, length must be less than or equal to `40`") # noqa: E501 if subnet is not None and len(subnet) < 1: raise ValueError("Invalid value for `subnet`, length must be greater than or equal to `1`") # noqa: E501 - if subnet is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', subnet): # noqa: E501 - raise ValueError(r"Invalid value for `subnet`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if subnet is not None and not re.search(r'(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', subnet): # noqa: E501 + raise ValueError(r"Invalid value for `subnet`, must be a follow pattern or equal to `/(^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._subnet = subnet diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/subnets_subnet_pools_pool.py b/isilon_sdk/isilon_sdk/v9_9_0/models/subnets_subnet_pools_pool.py index 6d69e78ea..e09acfdab 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/subnets_subnet_pools_pool.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/subnets_subnet_pools_pool.py @@ -652,8 +652,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/subnets_subnet_pools_pool_extended.py b/isilon_sdk/isilon_sdk/v9_9_0/models/subnets_subnet_pools_pool_extended.py index 1991aa641..0968efa48 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/subnets_subnet_pools_pool_extended.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/subnets_subnet_pools_pool_extended.py @@ -642,8 +642,8 @@ def sc_dns_zone(self, sc_dns_zone): raise ValueError("Invalid value for `sc_dns_zone`, length must be less than or equal to `2048`") # noqa: E501 if sc_dns_zone is not None and len(sc_dns_zone) < 0: raise ValueError("Invalid value for `sc_dns_zone`, length must be greater than or equal to `0`") # noqa: E501 - if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 - raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+([.][a-zA-Z0-9-]*)*$/`") # noqa: E501 + if sc_dns_zone is not None and not re.search(r'^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$', sc_dns_zone): # noqa: E501 + raise ValueError(r"Invalid value for `sc_dns_zone`, must be a follow pattern or equal to `/^$|^[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)*$/`") # noqa: E501 self._sc_dns_zone = sc_dns_zone diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/supportassist_settings_connection_gateway_endpoint.py b/isilon_sdk/isilon_sdk/v9_9_0/models/supportassist_settings_connection_gateway_endpoint.py index 064bafa31..ae99188d7 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/supportassist_settings_connection_gateway_endpoint.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/supportassist_settings_connection_gateway_endpoint.py @@ -120,8 +120,8 @@ def host(self, host): raise ValueError("Invalid value for `host`, length must be less than or equal to `255`") # noqa: E501 if host is not None and len(host) < 0: raise ValueError("Invalid value for `host`, length must be greater than or equal to `0`") # noqa: E501 - if host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', host): # noqa: E501 - raise ValueError(r"Invalid value for `host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])([.]([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])([.]([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 + if host is not None and not re.search(r'(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)', host): # noqa: E501 + raise ValueError(r"Invalid value for `host`, must be a follow pattern or equal to `/(^$|^((([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-]{0,61})?[a-zA-Z0-9])*)$|^([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])(\\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])){3}$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5}::([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){0,5})?$|^[0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}$)/`") # noqa: E501 self._host = host diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/supportassist_settings_contact_primary.py b/isilon_sdk/isilon_sdk/v9_9_0/models/supportassist_settings_contact_primary.py index 918d690b6..2200eea66 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/supportassist_settings_contact_primary.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/supportassist_settings_contact_primary.py @@ -44,7 +44,7 @@ class SupportassistSettingsContactPrimary(object): 'phone': 'phone' } - def __init__(self, email='', first_name='', last_name='', phone=None): # noqa: E501 + def __init__(self, email='', first_name='', last_name='', phone=''): # noqa: E501 """SupportassistSettingsContactPrimary - a model defined in Swagger""" # noqa: E501 self._email = None @@ -86,8 +86,8 @@ def email(self, email): raise ValueError("Invalid value for `email`, length must be less than or equal to `320`") # noqa: E501 if email is not None and len(email) < 0: raise ValueError("Invalid value for `email`, length must be greater than or equal to `0`") # noqa: E501 - if email is not None and not re.search(r'(^$|^([a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+[.])+[a-zA-Z0-9]+$))', email): # noqa: E501 - raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/(^$|^([a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+[.])+[a-zA-Z0-9]+$))/`") # noqa: E501 + if email is not None and not re.search(r'(^$|^([a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]+$))', email): # noqa: E501 + raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/(^$|^([a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]+$))/`") # noqa: E501 self._email = email @@ -115,8 +115,8 @@ def first_name(self, first_name): raise ValueError("Invalid value for `first_name`, length must be less than or equal to `50`") # noqa: E501 if first_name is not None and len(first_name) < 0: raise ValueError("Invalid value for `first_name`, length must be greater than or equal to `0`") # noqa: E501 - if first_name is not None and not re.search(r'[a-zA-Z]*[-.\']*', first_name): # noqa: E501 - raise ValueError(r"Invalid value for `first_name`, must be a follow pattern or equal to `/[a-zA-Z]*[-.']*/`") # noqa: E501 + if first_name is not None and not re.search(r'[a-zA-Z]*[\\-\\.\\\']*', first_name): # noqa: E501 + raise ValueError(r"Invalid value for `first_name`, must be a follow pattern or equal to `/[a-zA-Z]*[\\-\\.\\']*/`") # noqa: E501 self._first_name = first_name @@ -144,8 +144,8 @@ def last_name(self, last_name): raise ValueError("Invalid value for `last_name`, length must be less than or equal to `50`") # noqa: E501 if last_name is not None and len(last_name) < 0: raise ValueError("Invalid value for `last_name`, length must be greater than or equal to `0`") # noqa: E501 - if last_name is not None and not re.search(r'[a-zA-Z]*[-.\']*', last_name): # noqa: E501 - raise ValueError(r"Invalid value for `last_name`, must be a follow pattern or equal to `/[a-zA-Z]*[-.']*/`") # noqa: E501 + if last_name is not None and not re.search(r'[a-zA-Z]*[\\-\\.\\\']*', last_name): # noqa: E501 + raise ValueError(r"Invalid value for `last_name`, must be a follow pattern or equal to `/[a-zA-Z]*[\\-\\.\\']*/`") # noqa: E501 self._last_name = last_name @@ -173,6 +173,8 @@ def phone(self, phone): raise ValueError("Invalid value for `phone`, length must be less than or equal to `40`") # noqa: E501 if phone is not None and len(phone) < 0: raise ValueError("Invalid value for `phone`, length must be greater than or equal to `0`") # noqa: E501 + if phone is not None and not re.search(r'(^$|([\\.\\-\\+\/\\sxX]*([0-9]+|[\\(\\d+\\)])+)+)', phone): # noqa: E501 + raise ValueError(r"Invalid value for `phone`, must be a follow pattern or equal to `/(^$|([\\.\\-\\+\/\\sxX]*([0-9]+|[\\(\\d+\\)])+)+)/`") # noqa: E501 self._phone = phone diff --git a/isilon_sdk/isilon_sdk/v9_9_0/models/supportassist_settings_contact_primary_extended.py b/isilon_sdk/isilon_sdk/v9_9_0/models/supportassist_settings_contact_primary_extended.py index b9a910615..531683b48 100644 --- a/isilon_sdk/isilon_sdk/v9_9_0/models/supportassist_settings_contact_primary_extended.py +++ b/isilon_sdk/isilon_sdk/v9_9_0/models/supportassist_settings_contact_primary_extended.py @@ -86,8 +86,8 @@ def email(self, email): raise ValueError("Invalid value for `email`, length must be less than or equal to `320`") # noqa: E501 if email is not None and len(email) < 0: raise ValueError("Invalid value for `email`, length must be greater than or equal to `0`") # noqa: E501 - if email is not None and not re.search(r'^[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+[.])+[a-zA-Z0-9]+$', email): # noqa: E501 - raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/^[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+[.])+[a-zA-Z0-9]+$/`") # noqa: E501 + if email is not None and not re.search(r'^[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]+$', email): # noqa: E501 + raise ValueError(r"Invalid value for `email`, must be a follow pattern or equal to `/^[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]+$/`") # noqa: E501 self._email = email @@ -115,8 +115,8 @@ def first_name(self, first_name): raise ValueError("Invalid value for `first_name`, length must be less than or equal to `50`") # noqa: E501 if first_name is not None and len(first_name) < 0: raise ValueError("Invalid value for `first_name`, length must be greater than or equal to `0`") # noqa: E501 - if first_name is not None and not re.search(r'[a-zA-Z]*[-.\']*', first_name): # noqa: E501 - raise ValueError(r"Invalid value for `first_name`, must be a follow pattern or equal to `/[a-zA-Z]*[-.']*/`") # noqa: E501 + if first_name is not None and not re.search(r'[a-zA-Z]*[\\-\\.\\\']*', first_name): # noqa: E501 + raise ValueError(r"Invalid value for `first_name`, must be a follow pattern or equal to `/[a-zA-Z]*[\\-\\.\\']*/`") # noqa: E501 self._first_name = first_name @@ -144,8 +144,8 @@ def last_name(self, last_name): raise ValueError("Invalid value for `last_name`, length must be less than or equal to `50`") # noqa: E501 if last_name is not None and len(last_name) < 0: raise ValueError("Invalid value for `last_name`, length must be greater than or equal to `0`") # noqa: E501 - if last_name is not None and not re.search(r'[a-zA-Z]*[-.\']*', last_name): # noqa: E501 - raise ValueError(r"Invalid value for `last_name`, must be a follow pattern or equal to `/[a-zA-Z]*[-.']*/`") # noqa: E501 + if last_name is not None and not re.search(r'[a-zA-Z]*[\\-\\.\\\']*', last_name): # noqa: E501 + raise ValueError(r"Invalid value for `last_name`, must be a follow pattern or equal to `/[a-zA-Z]*[\\-\\.\\']*/`") # noqa: E501 self._last_name = last_name @@ -173,6 +173,8 @@ def phone(self, phone): raise ValueError("Invalid value for `phone`, length must be less than or equal to `40`") # noqa: E501 if phone is not None and len(phone) < 0: raise ValueError("Invalid value for `phone`, length must be greater than or equal to `0`") # noqa: E501 + if phone is not None and not re.search(r'([\\.\\-\\+\/\\sxX]*([0-9]+|[\\(\\d+\\)])+)+', phone): # noqa: E501 + raise ValueError(r"Invalid value for `phone`, must be a follow pattern or equal to `/([\\.\\-\\+\/\\sxX]*([0-9]+|[\\(\\d+\\)])+)+/`") # noqa: E501 self._phone = phone diff --git a/isilon_sdk/version_config.json b/isilon_sdk/version_config.json index 43da97fd3..576ac1dd7 100644 --- a/isilon_sdk/version_config.json +++ b/isilon_sdk/version_config.json @@ -1 +1 @@ -{"sdk_version": "0.6.0"} \ No newline at end of file +{"sdk_version": "0.5.0"} \ No newline at end of file